:root {
    /* Mapped Original Colors */
    --primary-color: #5C415C;
    --primary-dark: #3f2c3f;
    --accent-color: #B172B1;
    --accent-light: #F7C1F7;
    --gold-accent: #B4A996;
    --bg-light: #fdfdfd;
    --bg-gray: #f5f5f5;
    
    /* Base Colors */
    --text-color: #333333;
    --text-muted: #666666;
    --white: #ffffff;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Layout */
    --container-max: 1200px;
    --transition-smooth: all 0.3s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.2;
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    font-family: var(--font-heading);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(92, 65, 92, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(92, 65, 92, 0.4);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Header */
.main-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    font-size: 1.5rem;
    margin-bottom: 0;
}

.header-logo {
    max-height: 50px;
    width: auto;
}

.logo span {
    font-size: 0.8rem;
    color: var(--gold-accent);
    letter-spacing: 1px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--accent-color);
}

/* Hero Banner */
.hero-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-gray) 0%, var(--bg-light) 100%);
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-muted);
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.stat-item {
    background: var(--white);
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border-left: 4px solid var(--accent-color);
}

.stat-item strong {
    display: block;
    font-size: 1.5rem;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.stat-item span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-height: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    object-fit: cover;
}

/* Section Common */
.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

/* Benefits */
.benefits {
    padding: 80px 0;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--bg-gray);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.03);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(92, 65, 92, 0.1);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.svg-icon {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
}

.benefit-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Differences */
.differences {
    padding: 80px 0;
    background: var(--bg-light);
}

.differences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.diff-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    border-top: 4px solid var(--gold-accent);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.diff-card h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.cta-wrapper {
    margin-top: 20px;
}

/* About */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.about-content {
    flex: 1;
}

.subtitle {
    color: var(--accent-color);
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.crm {
    color: var(--gold-accent);
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

.about-list {
    list-style: none;
    margin-bottom: 30px;
}

.about-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
    color: var(--text-color);
}

.about-list li::before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.5rem;
    line-height: 1;
}

/* Treatments */
.treatments {
    background: var(--bg-gray);
}

.treatment-header {
    padding: 60px 20px 20px;
    margin-bottom: 0;
}

.treatment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.treatment-card {
    position: relative;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    background-color: var(--primary-color);
    background-size: cover;
    background-position: center;
    cursor: pointer;
}

.overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(92, 65, 92, 0.95) 0%, rgba(92, 65, 92, 0.2) 100%);
    transition: var(--transition-smooth);
    z-index: 1;
}

.treatment-card:hover .overlay {
    background: linear-gradient(to top, rgba(92, 65, 92, 0.95) 0%, rgba(92, 65, 92, 0.6) 100%);
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    color: var(--white);
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.treatment-card:hover .card-content {
    transform: translateY(0);
}

.card-content h4 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 10px;
    transition: var(--transition-smooth);
}

.card-content p {
    font-size: 0.95rem;
    opacity: 0;
    transition: var(--transition-smooth);
    max-height: 0;
    overflow: hidden;
}

.treatment-card:hover .card-content p {
    opacity: 1;
    max-height: 200px; /* Allow enough space for expansion */
    margin-top: 15px;
}

/* Footer */
.main-footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo h2 {
    color: var(--white);
    margin-bottom: 10px;
}

.footer-logo p {
    color: var(--accent-light);
}

.footer-contact h4 {
    color: var(--white);
    margin-bottom: 15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-container, .about-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .about-list li {
        text-align: left;
    }

    .hero-image img {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none; /* simple mobile behavior */
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }

    .treatment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .treatment-grid {
        grid-template-columns: 1fr;
    }
}
