/* ========================================
   L'ÉCLAT BEAUTÉ
   Luxury Beauty Salon Design System
======================================== */

:root {
    /* Brand Colors */
    --gold: #B48A5A;
    --white: #FFFFFF;
    --cream: #F9F6F2;
    --charcoal: #2A2A2A;
    --gray: #6B6B6B;
    --light-gray: #E8E8E8;
    
    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Spacing Scale */
    --space-1: 0.25rem;   /* 4px */
    --space-2: 0.5rem;    /* 8px */
    --space-3: 0.75rem;   /* 12px */
    --space-4: 1rem;      /* 16px */
    --space-5: 1.5rem;    /* 24px */
    --space-6: 2rem;      /* 32px */
    --space-8: 3rem;      /* 48px */
    --space-10: 4rem;     /* 64px */
    --space-12: 6rem;     /* 96px */
    --space-16: 8rem;     /* 128px */
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-lg: 0 4px 16px rgba(0,0,0,0.08);
    
    /* Transitions */
    --transition: 0.3s ease;
}

/* ========================================
   RESET & BASE
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ========================================
   TYPOGRAPHY
======================================== */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--charcoal);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray);
}

/* ========================================
   LAYOUT SYSTEM
======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.section {
    padding: var(--space-16) 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-12);
}

.section-header h2 {
    margin-bottom: var(--space-4);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray);
}

/* ========================================
   BUTTONS
======================================== */
.btn {
    display: inline-block;
    padding: var(--space-4) var(--space-8);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--charcoal);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--white);
}

/* ========================================
   NAVIGATION
======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--light-gray);
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-5) var(--space-6);
}

.nav-logo img {
    height: 50px;
}

.nav-menu {
    display: flex;
    gap: var(--space-8);
    align-items: center;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--charcoal);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ========================================
   HERO
======================================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.4), rgba(180, 138, 90, 0.3));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
}

.hero-content h1 {
    color: var(--white);
    margin-bottom: var(--space-8);
    font-size: clamp(3rem, 7vw, 6rem);
}

/* ========================================
   SERVICES
======================================== */
.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    gap: var(--space-12);
}

.service {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: var(--space-10);
    align-items: center;
}

.service:nth-child(even) {
    grid-template-columns: 1fr 450px;
}

.service:nth-child(even) .service-image {
    order: 2;
}

.service-image {
    height: 400px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service:hover .service-image img {
    transform: scale(1.05);
}

.service-content h3 {
    margin-bottom: var(--space-5);
}

.service-content p {
    margin-bottom: var(--space-6);
    font-size: 1.0625rem;
    line-height: 1.8;
}

.service-list {
    display: grid;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
}

.service-list li {
    padding-left: var(--space-5);
    position: relative;
    color: var(--gray);
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
}

.service-price {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: var(--space-6);
}

/* ========================================
   ABOUT
======================================== */
.about {
    background: var(--cream);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    margin-bottom: var(--space-6);
}

.about-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: var(--space-5);
}

/* ========================================
   FEATURES
======================================== */
.features {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.feature {
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-5);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold);
    border-radius: 50%;
    font-size: 1.75rem;
    color: var(--gold);
}

.feature h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-3);
}

.feature p {
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* ========================================
   CTA
======================================== */
.cta {
    background: var(--charcoal);
    color: var(--white);
    text-align: center;
}

.cta h2 {
    color: var(--white);
    margin-bottom: var(--space-6);
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: var(--space-8);
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-12) 0 var(--space-6);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-10);
    margin-bottom: var(--space-10);
}

.footer-brand img {
    height: 45px;
    margin-bottom: var(--space-5);
}

.footer-brand p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.footer-section h4 {
    color: var(--white);
    font-size: 0.875rem;
    margin-bottom: var(--space-5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-section ul li {
    margin-bottom: var(--space-3);
    font-size: 0.9375rem;
}

.footer-section a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-6);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
}

.footer-bottom a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* ========================================
   PAGE HEADER
======================================== */
.page-header {
    background: var(--cream);
    padding: calc(80px + var(--space-12)) 0 var(--space-12);
    text-align: center;
    margin-top: 80px;
}

.page-header h1 {
    margin-bottom: var(--space-4);
}

.page-header p {
    font-size: 1.125rem;
    color: var(--gray);
}

/* ========================================
   TREATMENTS PAGE
======================================== */
.treatment-section {
    padding: var(--space-12) 0;
}

.treatment-section:nth-child(even) {
    background: var(--cream);
}

.treatment-intro {
    max-width: 900px;
    margin: 0 auto var(--space-10);
    padding: var(--space-6);
    background: var(--white);
    border-left: 3px solid var(--gold);
}

.treatment-intro p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--charcoal);
}

.treatment-content {
    max-width: 1000px;
    margin: 0 auto;
}

.treatment-content h3 {
    margin-bottom: var(--space-6);
}

.treatment-content p {
    margin-bottom: var(--space-5);
    line-height: 1.8;
}

.treatment-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
    margin: var(--space-8) 0;
}

.treatment-type {
    padding: var(--space-6);
    background: var(--white);
    border-top: 2px solid var(--gold);
}

.treatment-type h4 {
    margin-bottom: var(--space-3);
}

.treatment-type p {
    margin-bottom: var(--space-4);
    font-size: 0.9375rem;
}

.treatment-type-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 600;
}

/* ========================================
   PRICING PAGE
======================================== */
.pricing-category {
    padding: var(--space-12) 0;
}

.pricing-category:nth-child(even) {
    background: var(--cream);
}

.pricing-category h2 {
    text-align: center;
    margin-bottom: var(--space-10);
}

.pricing-list {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
}

.pricing-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-8);
    padding: var(--space-6);
    border-bottom: 1px solid var(--light-gray);
}

.pricing-item:last-child {
    border-bottom: none;
}

.pricing-info h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-2);
}

.pricing-info p {
    font-size: 0.9375rem;
    color: var(--gray);
}

.pricing-cost {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--gold);
    font-weight: 600;
}

.policies {
    padding: var(--space-12) 0;
    background: var(--white);
}

.policies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
    max-width: 1000px;
    margin: 0 auto;
}

.policy {
    padding: var(--space-6);
    background: var(--cream);
}

.policy-number {
    width: 45px;
    height: 45px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-4);
}

.policy h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-3);
}

.policy p {
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* ========================================
   TEAM PAGE
======================================== */
.team-intro {
    padding: var(--space-12) 0;
    text-align: center;
}

.team-intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.team-intro h2 {
    margin-bottom: var(--space-6);
}

.team-intro p {
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: var(--space-5);
}

.team-members {
    padding: var(--space-12) 0;
    background: var(--cream);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.team-member {
    background: var(--white);
}

.team-photo {
    height: 400px;
    overflow: hidden;
    background: var(--light-gray);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* Specifieke positionering voor team foto's */
.photo-romayssae {
    object-position: center 0% !important; /* Vanaf bovenkant, snijd onder af */
}

.photo-gadicha {
    object-position: center 0% !important; /* Vanaf bovenkant, snijd onder af */
}

.team-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 3rem;
}

.team-info {
    padding: var(--space-6);
}

.team-info h3 {
    margin-bottom: var(--space-2);
}

.team-role {
    font-family: var(--font-display);
    color: var(--gold);
    font-style: italic;
    font-size: 1.0625rem;
    margin-bottom: var(--space-4);
}

.team-bio {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: var(--space-5);
}

.team-specialties {
    padding-top: var(--space-4);
    border-top: 1px solid var(--light-gray);
}

.team-specialties h4 {
    font-size: 0.875rem;
    margin-bottom: var(--space-3);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.specialties {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.specialty {
    padding: var(--space-2) var(--space-4);
    background: var(--cream);
    border: 1px solid var(--gold);
    border-radius: 20px;
    font-size: 0.8125rem;
}

/* ========================================
   CONTACT PAGE
======================================== */
.contact-info {
    padding: var(--space-12) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.contact-card {
    text-align: center;
    padding: var(--space-8);
    background: var(--cream);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--space-5);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold);
    border-radius: 50%;
    font-size: 1.75rem;
    color: var(--gold);
}

.contact-card h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-4);
}

.contact-card p {
    font-size: 1rem;
    line-height: 1.7;
}

.contact-card a:hover {
    color: var(--gold);
}

.faq-section {
    padding: var(--space-12) 0;
    background: var(--cream);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: var(--space-5);
}

.faq-item {
    padding: var(--space-6);
    background: var(--white);
}

.faq-item h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-3);
}

.faq-item p {
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1024px) {
    .service,
    .service:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .service:nth-child(even) .service-image {
        order: 0;
    }
    
    .treatment-types,
    .policies-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        padding: var(--space-8);
        transition: var(--transition);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .features-grid,
    .team-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
}



/* ========================================
   FLOATING ACTION BUTTONS
======================================== */
.floating-buttons {
    position: fixed;
    bottom: var(--space-6);
    right: var(--space-6);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    z-index: 999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.floating-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.whatsapp-btn {
    background: #25D366;
}

.phone-btn {
    background: var(--gold);
}

/* ========================================
   CONTACT FORM
======================================== */
.contact-form-section {
    padding: var(--space-12) 0;
    background: var(--cream);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: var(--space-8);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: var(--space-5);
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--space-2);
    color: var(--charcoal);
    font-size: 0.9375rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: var(--space-4);
    border: 1px solid var(--light-gray);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    padding: var(--space-4);
    background: var(--gold);
    color: var(--white);
    border: none;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: background 0.3s ease;
}

.form-submit:hover {
    background: var(--charcoal);
}

@media (max-width: 768px) {
    .floating-buttons {
        bottom: var(--space-5);
        right: var(--space-5);
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .contact-form {
        padding: var(--space-6);
    }
}


/* ========================================
   REVIEWS SECTION
======================================== */
.reviews-section {
    padding: var(--space-12) 0;
    background: var(--cream);
}

.reviews-header {
    text-align: center;
    margin-bottom: var(--space-10);
}

.reviews-header h2 {
    margin-bottom: var(--space-5);
}

.google-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
}

.rating-stars {
    display: flex;
    gap: var(--space-1);
}

.rating-stars .star {
    font-size: 2rem;
    color: var(--gold);
}

.rating-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-1);
}

.rating-score {
    font-size: 2rem;
    font-weight: 700;
    color: var(--charcoal);
    font-family: var(--font-display);
}

.rating-count {
    font-size: 0.9375rem;
    color: var(--gray);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-6);
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: var(--white);
    padding: var(--space-6);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.review-header {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-1);
    color: var(--charcoal);
}

.review-stars {
    display: flex;
    gap: 2px;
}

.review-stars .star {
    font-size: 1rem;
    color: var(--gold);
}

.review-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--charcoal);
    margin-bottom: var(--space-3);
}

.review-date {
    font-size: 0.875rem;
    color: var(--gray);
}

@media (max-width: 768px) {
    .reviews-section {
        padding: var(--space-10) 0;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: var(--space-5);
    }
    
    .review-card {
        padding: var(--space-5);
    }
    
    .rating-stars .star {
        font-size: 1.5rem;
    }
    
    .rating-score {
        font-size: 1.5rem;
    }
}


/* ========================================
   COMBI DEALS STYLING
======================================== */
.combi-deals {
    background: linear-gradient(135deg, var(--cream) 0%, #FFF9F0 100%);
}

.category-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: var(--space-6);
    margin-top: var(--space-3);
}

.pricing-item.featured {
    border: 2px solid var(--gold);
    position: relative;
    background: var(--white);
}

.pricing-item.featured::before {
    content: "POPULAIR";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--white);
    padding: var(--space-1) var(--space-4);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 20px;
}

.savings {
    display: inline-block;
    background: #E8F5E9;
    color: #2E7D32;
    padding: var(--space-1) var(--space-3);
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: var(--space-2);
}

.treatment-type-savings {
    display: inline-block;
    background: #E8F5E9;
    color: #2E7D32;
    padding: var(--space-1) var(--space-3);
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: var(--space-2);
}

.treatment-benefits {
    margin-top: var(--space-8);
    padding: var(--space-6);
    background: var(--cream);
    border-radius: 8px;
}

.treatment-benefits h3 {
    margin-bottom: var(--space-4);
    color: var(--charcoal);
}

.treatment-benefits ul {
    list-style: none;
    padding: 0;
}

.treatment-benefits ul li {
    padding-left: var(--space-6);
    margin-bottom: var(--space-3);
    position: relative;
    line-height: 1.6;
}

.treatment-benefits ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    .category-intro {
        font-size: 1rem;
    }
    
    .pricing-item.featured::before {
        font-size: 0.625rem;
        padding: var(--space-1) var(--space-3);
    }
    
    .treatment-benefits {
        padding: var(--space-5);
    }
}

/* ========================================
   ANNOUNCEMENT BAR
======================================== */
.announcement-bar {
    background: #000000;
    color: #ffffff;
    padding: 12px 0;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    width: 100%;
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    animation: slideDown 0.5s ease-out;
}

.announcement-text {
    font-family: var(--font-secondary);
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #ffffff;
}

.announcement-icon {
    font-size: 1.125rem;
    color: #ffffff;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes sparkle {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

@media (max-width: 768px) {
    .announcement-bar {
        padding: var(--space-2) var(--space-4);
    }
    
    .announcement-text {
        font-size: 0.8125rem;
    }
    
    .announcement-icon {
        font-size: 1rem;
    }
}

.nav {
    position: fixed;
    top: 48px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--light-gray);
    z-index: 1000;
}
