/* ===================================================================
   DESIGN SYSTEM
   Parisian Elegance • Magazine Editorial • Timeless Luxury
   Based on: docs/DESIGN-GUIDE.md
   =================================================================== */

/* ===================================
   1. DESIGN TOKENS & VARIABLES
   =================================== */

:root {
    /* Colors - BOLD Parisian Elegance Palette */
    --color-black: #0a0a0a;            /* Deep Black - maximum contrast */
    --color-charcoal: #2a2a2a;         /* Charcoal - text */
    --color-gray-dark: #3a3a3a;        /* Dark Gray - secondary text (improved contrast) */
    --color-gray: #666666;             /* Medium Gray - captions (improved contrast) */
    --color-gray-light: #d4d4d4;       /* Light Gray - borders */
    --color-cream: #faf8f5;            /* Warm Cream - backgrounds */
    --color-white: #ffffff;            /* Pure White - cards */
    
    /* BOLD Accent - Vibrant Coral Pink */
    --color-pink: #ff6b9d;             /* Vibrant Coral Pink - primary accent */
    --color-pink-light: #ffacc7;       /* Light Pink - hover, overlays */
    --color-pink-dark: #e5517a;        /* Deep Pink - active states */
    --color-pink-darker: #c93d62;      /* Darker Pink - better contrast for small text */
    
    /* Secondary Accent - Rich Gold */
    --color-gold: #d4a574;             /* Warm Gold - luxury touches */
    --color-gold-light: #e8c9a6;       /* Light Gold - subtle accents */
    
    /* Legacy aliases (for backwards compatibility) */
    --color-rose-gold: var(--color-pink);
    --color-rose-gold-light: var(--color-pink-light);
    
    /* Semantic Colors */
    --primary-color: var(--color-charcoal);
    --secondary-color: var(--color-gray-dark);
    --accent-color: var(--color-pink);
    --text-dark: var(--color-charcoal);
    --text-light: var(--color-gray-dark);
    --text-muted: var(--color-gray);
    --background-light: var(--color-cream);
    --background-white: var(--color-white);
    --background-dark: var(--color-black);
    --border-light: var(--color-gray-light);
    --border-medium: var(--color-gray);
    
    /* Status Colors */
    --success-color: #6b8e6b;          /* Muted Green */
    --warning-color: #c89f5d;          /* Golden Brown */
    --error-color: #c97676;            /* Muted Red */
    
    /* Typography - Parisian Elegance Fonts */
    --font-display: 'Bodoni Moda', 'Playfair Display', 'Didot', Georgia, serif;
    --font-heading: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'Italiana', 'Cormorant', serif;
    
    /* Typography - Dramatic Magazine Scale */
    --font-size-xs: 0.75rem;           /* 12px - Fine print */
    --font-size-sm: 0.875rem;          /* 14px - Captions */
    --font-size-base: 1rem;            /* 16px - Body */
    --font-size-md: 1.125rem;          /* 18px - Body emphasis */
    --font-size-lg: 1.25rem;           /* 20px - Lead */
    --font-size-xl: 1.5rem;            /* 24px - H5 */
    --font-size-2xl: 2rem;             /* 32px - H4 */
    --font-size-3xl: 2.5rem;           /* 40px - H3 */
    --font-size-4xl: 3.5rem;           /* 56px - H2 */
    --font-size-5xl: 5rem;             /* 80px - H1 Hero */
    --font-size-6xl: 6.5rem;           /* 104px - Display */
    
    /* Typography - Font Weights */
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Typography - Line Heights */
    --line-height-tight: 1.1;          /* Dramatic headings */
    --line-height-snug: 1.3;           /* Large display */
    --line-height-normal: 1.5;         /* UI elements */
    --line-height-relaxed: 1.7;        /* Body text */
    --line-height-loose: 1.9;          /* Editorial text */
    
    /* Typography - Letter Spacing */
    --letter-spacing-tight: -0.02em;   /* Large headings */
    --letter-spacing-normal: 0;        /* Body */
    --letter-spacing-wide: 0.05em;     /* Uppercase */
    --letter-spacing-wider: 0.1em;     /* Small caps */
    
    /* Spacing (8px base grid) - Editorial Generosity */
    --space-xs: 0.5rem;                /* 8px */
    --space-sm: 1rem;                  /* 16px */
    --space-md: 1.5rem;                /* 24px */
    --space-lg: 2rem;                  /* 32px */
    --space-xl: 3rem;                  /* 48px */
    --space-2xl: 4rem;                 /* 64px */
    --space-3xl: 6rem;                 /* 96px */
    --space-4xl: 8rem;                 /* 128px */
    --space-5xl: 6rem;                 /* 96px - reduced from 192px for better UX */
    
    /* Borders & Radius - Sharp Editorial */
    --radius-none: 0;
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-xl: 12px;
    --radius-full: 50%;
    
    /* Standardized radius usage:
       - Cards: radius-none (sharp editorial)
       - Buttons: radius-none (sharp editorial) 
       - Form inputs: radius-sm (4px)
       - Dropdowns: radius-md (6px)
       - Modals: radius-md (6px)
       - Pills/Tags: radius-full (50%)
    */
    
    /* Shadows - Subtle Editorial */
    --shadow-subtle: 0 2px 16px rgba(0,0,0,0.04);
    --shadow-standard: 0 4px 24px rgba(0,0,0,0.06);
    --shadow-prominent: 0 8px 40px rgba(0,0,0,0.08);
    --shadow-strong: 0 16px 64px rgba(0,0,0,0.12);
    
    /* Gradients - Bold & Vibrant */
    --gradient-pink: linear-gradient(135deg, #ff6b9d 0%, #ff9ebb 100%);
    --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #2a2a2a 100%);
    --gradient-overlay: linear-gradient(to bottom, rgba(10,10,10,0.6), rgba(10,10,10,0.85));
    
    /* Transitions - Elegant */
    --duration-fast: 200ms;
    --duration-normal: 400ms;
    --duration-slow: 600ms;
    --ease-smooth: cubic-bezier(0.4, 0.0, 0.2, 1);
    --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
    
    /* Container - Wide Editorial */
    --container-max-width: 1400px;
    --container-narrow: 900px;
    --container-padding: 2rem;
    
    /* Breakpoints (referenced in media queries) */
    --breakpoint-sm: 640px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 1024px;
    --breakpoint-xl: 1280px;
    --breakpoint-2xl: 1600px;
}

/* ===================================
   2. GOOGLE FONTS IMPORT
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* ===================================
   3. BASE RESET & FOUNDATION
   =================================== */

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

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

body {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-relaxed);
    color: var(--text-dark);
    background-color: var(--background-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===================================
   4. TYPOGRAPHY - PARISIAN ELEGANCE
   =================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-tight);
    letter-spacing: var(--letter-spacing-tight);
    margin-bottom: var(--space-lg);
    color: var(--color-black);
}

h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, var(--font-size-5xl));
    font-weight: var(--font-weight-light);
    line-height: var(--line-height-tight);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-xl);
}

h2 {
    font-size: clamp(2.5rem, 6vw, var(--font-size-4xl));
    font-weight: var(--font-weight-light);
    line-height: var(--line-height-snug);
    margin-bottom: var(--space-xl);
}

h3 {
    font-size: clamp(1.75rem, 4vw, var(--font-size-3xl));
    font-weight: var(--font-weight-regular);
}

h4 {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-medium);
}

h5 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-medium);
}

h6 {
    font-family: var(--font-body);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
    color: var(--color-gray-dark);
}

p {
    margin-bottom: var(--space-md);
    max-width: 70ch;
    line-height: var(--line-height-loose);
}

.lead {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-loose);
    color: var(--text-light);
    margin-bottom: var(--space-xl);
    font-weight: var(--font-weight-light);
}

.subtitle {
    font-size: var(--font-size-md);
    color: var(--color-rose-gold);
    font-weight: var(--font-weight-regular);
    font-style: italic;
    margin-bottom: var(--space-lg);
}

.section-intro {
    font-size: var(--font-size-md);
    color: var(--text-light);
    text-align: center;
    max-width: 60ch;
    margin: 0 auto var(--space-3xl);
    line-height: var(--line-height-loose);
}

/* Display text - Large editorial quotes */
.display-text {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, var(--font-size-4xl));
    font-weight: var(--font-weight-light);
    line-height: var(--line-height-snug);
    letter-spacing: var(--letter-spacing-tight);
}

/* Eyebrow Labels (e.g., "Services / Rhinoplastie") */
.eyebrow {
    font-family: var(--font-body);
    font-size: 0.875rem;  /* 14px - improved from 12px for readability */
    font-weight: var(--font-weight-bold);
    letter-spacing: var(--letter-spacing-wider);
    text-transform: uppercase;
    color: var(--color-pink-darker);  /* Darker pink for better contrast */
    margin-bottom: var(--space-md);
    display: inline-block;
}

a {
    color: var(--color-black);
    text-decoration: none;
    transition: color var(--duration-normal) var(--ease-smooth);
}

a:hover {
    color: var(--color-rose-gold);
}

a:focus-visible {
    outline: 1px solid var(--color-rose-gold);
    outline-offset: 4px;
}

strong, b {
    font-weight: var(--font-weight-semibold);
}

em, i {
    font-style: italic;
}

ul, ol {
    margin-bottom: var(--space-md);
    padding-left: var(--space-lg);
}

li {
    margin-bottom: var(--space-xs);
}

blockquote {
    font-family: var(--font-heading);
    font-size: var(--font-size-lg);
    font-style: italic;
    color: var(--text-light);
    border-left: 4px solid var(--accent-color);
    padding-left: var(--space-lg);
    margin: var(--space-2xl) 0;
}

/* ===================================
   5. LAYOUT & CONTAINERS - EDITORIAL
   =================================== */

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

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

section {
    padding: var(--space-4xl) 0;
}

/* Editorial Grid - Asymmetric */
.grid-editorial {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--space-2xl);
}

.grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--space-xl);
}

/* Magazine-style split layouts */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.split-layout.asymmetric-60-40 {
    grid-template-columns: 60% 40%;
}

.split-layout.asymmetric-40-60 {
    grid-template-columns: 40% 60%;
}

/* Overlap effect for editorial layouts */
.overlap-container {
    position: relative;
    z-index: 1;
}

.overlap-content {
    position: relative;
    z-index: 2;
    margin-top: calc(var(--space-4xl) * -1);
}

/* ===================================
   6. BUTTONS - ELEGANT MINIMAL
   =================================== */

.btn-primary,
.btn-secondary,
/* Buttons - Editorial Elegance */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    letter-spacing: var(--letter-spacing-wide);
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    border: 2px solid transparent;
    border-radius: var(--radius-none);
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-smooth);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-pink);
    color: var(--color-white);
    border-color: var(--color-pink);
    box-shadow: 0 4px 20px rgba(255,107,157,0.3);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--color-pink-dark);
    box-shadow: 0 8px 32px rgba(255,107,157,0.5);
    transform: translateY(-4px);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-outline:hover,
.btn-outline:focus {
    background: var(--color-white);
    color: var(--color-pink);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--color-white);
    color: var(--color-pink);
    border-color: var(--color-pink);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: var(--gradient-pink);
    color: var(--color-white);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(255,107,157,0.4);
}

.btn-lg {
    padding: 1.25rem 3rem;
    font-size: var(--font-size-base);
}

.btn-sm {
    padding: 0.75rem 1.75rem;
    font-size: var(--font-size-sm);
}

/* Small inline buttons for body part sections */
.body-part-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-light-gray);
}

.btn-small {
    display: inline-block;
    padding: var(--space-xs) var(--space-sm);
    font-family: var(--font-body);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-medium);
    color: var(--color-pink);
    background: var(--color-white);
    border: 1px solid var(--color-pink);
    border-radius: 20px;
    text-decoration: none;
    transition: all var(--duration-fast) var(--ease-smooth);
}

.btn-small:hover,
.btn-small:focus {
    background: var(--gradient-pink);
    color: var(--color-white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255,107,157,0.3);
}

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

.btn-rose:hover,
.btn-rose:focus {
    background: var(--color-pink-dark);
    color: var(--color-white);
    border-color: var(--color-pink-dark);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(255,107,157,0.4);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* Button Groups */
.hero-cta,
.hero-actions,
.cta-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: var(--space-xl);
}

/* ===================================
   7. CARDS - MAGAZINE EDITORIAL
   =================================== */

.card,
.service-card {
    background: var(--background-white);
    border-radius: var(--radius-none);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    transition: all var(--duration-slow) var(--ease-in-out);
    position: relative;
}

.card::before,
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-pink);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--duration-normal) var(--ease-smooth);
    z-index: 10;
}

.card:hover,
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 48px rgba(255,107,157,0.2);
}

.card:hover::before,
.service-card:hover::before {
    transform: scaleX(1);
}

/* Editorial Service Cards */
.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform var(--duration-slow) var(--ease-smooth);
}

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

.service-card-content {
    padding: var(--space-xl);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-light);
    margin-bottom: var(--space-md);
    color: var(--color-black);
}

.service-card p {
    flex: 1;
    color: var(--color-gray-dark);
    line-height: var(--line-height-loose);
    margin-bottom: var(--space-lg);
}

.service-card .btn {
    align-self: flex-start;
    margin-top: auto;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: var(--space-sm);
}

.service-card p {
    color: var(--text-light);
    flex-grow: 1;
    margin-bottom: var(--space-md);
}

.service-card .btn-secondary {
    margin-top: auto;
}

/* Service Highlights List */
.service-highlights {
    list-style: none;
    padding: 0;
    margin: var(--space-md) 0;
    text-align: left;
}

.service-highlights li {
    color: var(--text-light);
    margin-bottom: var(--space-xs);
    padding-left: var(--space-md);
    position: relative;
}

.service-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-pink);
    font-weight: bold;
    font-size: var(--font-size-lg);
}

/* ===================================
   8. FORMS
   =================================== */

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

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
}

label {
    display: block;
    font-weight: var(--font-weight-medium);
    color: var(--text-dark);
    margin-bottom: var(--space-xs);
    font-size: var(--font-size-sm);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
    width: 100%;
    padding: var(--space-sm);
    font-family: var(--font-body);
    font-size: 16px; /* Prevents iOS zoom on focus */
    color: var(--text-dark);
    background: var(--background-white);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-sm);
    transition: all var(--duration-normal) var(--ease-smooth);
    min-height: 48px; /* Better touch target */
    -webkit-appearance: none;
    appearance: none;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 95, 125, 0.1);
}

/* Form Validation States */
input.error,
select.error,
textarea.error,
input:invalid:not(:placeholder-shown),
select:invalid:not(:placeholder-shown),
textarea:invalid:not(:placeholder-shown) {
    border-color: var(--error-color);
}

input.error:focus,
select.error:focus,
textarea.error:focus,
input:invalid:focus:not(:placeholder-shown),
select:invalid:focus:not(:placeholder-shown),
textarea:invalid:focus:not(:placeholder-shown) {
    border-color: var(--error-color);
    box-shadow: 0 0 0 3px rgba(201, 118, 118, 0.2);
}

input.success,
select.success,
textarea.success,
input:valid:not(:placeholder-shown):not([type="email"]):not([type="tel"]),
select:valid:not(:placeholder-shown),
textarea:valid:not(:placeholder-shown) {
    border-color: var(--success-color);
}

.form-error {
    display: block;
    color: var(--error-color);
    font-size: var(--font-size-sm);
    margin-top: var(--space-xs);
}

.form-success {
    display: block;
    color: var(--success-color);
    font-size: var(--font-size-sm);
    margin-top: var(--space-xs);
}

/* Form feedback messages */
.form-feedback {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-top: var(--space-md);
    font-size: var(--font-size-base);
    line-height: 1.5;
    animation: feedbackSlideIn 0.3s ease-out;
}

.form-feedback svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.form-feedback-success {
    background-color: #f0fdf4;
    border: 1px solid #86efac;
    color: #166534;
}

.form-feedback-success svg {
    color: #22c55e;
}

.form-feedback-error {
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.form-feedback-error svg {
    color: #ef4444;
}

@keyframes feedbackSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Button loading state */
.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
}

.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

input::placeholder,
textarea::placeholder {
    color: var(--text-muted);
}

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

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-weight: var(--font-weight-regular);
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--color-pink);
}

.form-note {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    margin-top: var(--space-sm);
}

/* ===================================
   9. GRIDS & LAYOUTS - EDITORIAL
   =================================== */

/* Magazine-style service grid - asymmetric */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-3xl);
    margin-top: var(--space-3xl);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* Home page featured services - optimized 2-column layout */
.featured-services .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
    max-width: 100%;
}

@media (max-width: 900px) {
    .featured-services .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Limit card width on very large screens */
@media (min-width: 1400px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .featured-services .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Trust grid - refined spacing */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-3xl);
    margin-top: var(--space-3xl);
}

.trust-item {
    text-align: center;
    padding: var(--space-xl);
}

.trust-icon {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--space-md);
    color: var(--color-rose-gold);
}

.trust-item h3 {
    font-family: var(--font-heading);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-light);
    margin-bottom: var(--space-sm);
    color: var(--color-black);
}

.trust-item p {
    color: var(--color-gray-dark);
    font-size: var(--font-size-sm);
    margin: 0;
}

/* Credentials, expertise, facilities grids */
.credentials-grid,
.expertise-areas,
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-2xl);
}

.approach-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-3xl);
    margin-top: var(--space-3xl);
}

/* FAQ grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
}

/* Two Column Layouts - Editorial Split */
.about-content {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: var(--space-4xl);
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text {
    padding: var(--space-xl) 0;
}

/* ===================================
   10. HEADER & NAVIGATION - MINIMAL ELEGANT
   =================================== */

.site-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-gray-light);
    z-index: 1000;
    transition: all var(--duration-normal) var(--ease-smooth);
}

.navbar {
    padding: var(--space-xs) 0;
    position: relative;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 56px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    color: var(--color-black);
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: var(--font-weight-light);
    letter-spacing: var(--letter-spacing-wide);
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-image {
    height: 44px;
    width: auto;
    display: block;
    transition: opacity var(--duration-normal) var(--ease-smooth);
    vertical-align: middle;
}

.logo a:hover .logo-image {
    opacity: 0.8;
}

.logo h1 {
    font-size: var(--font-size-2xl);
    margin: 0;
    font-weight: var(--font-weight-light);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-xl);
    align-items: center;
    margin: 0;
    padding: 0;
    height: 100%;
}

.nav-menu > li {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-menu a {
    color: var(--color-charcoal);
    font-family: var(--font-body);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-regular);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
    padding: var(--space-xs) 0;
    position: relative;
    transition: color var(--duration-normal) var(--ease-smooth);
    display: flex;
    align-items: center;
}

/* Social icons in navbar */
.nav-social {
    display: flex;
    align-items: center;
}

.nav-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xs);
    color: var(--color-charcoal);
}

.nav-social a:hover {
    color: var(--color-pink);
}

.nav-social svg {
    width: 20px;
    height: 20px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-rose-gold);
    transition: width var(--duration-normal) var(--ease-in-out);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--color-rose-gold);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Dropdown Navigation Styles */
.nav-item-dropdown {
    position: relative;
}

.dropdown-toggle {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
}

.dropdown-toggle:focus-visible + .dropdown-label-touch + .dropdown-label,
.dropdown-toggle:focus-visible + .dropdown-label-touch + span.dropdown-label {
    outline: 2px solid var(--color-pink);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Hidden label for mobile touch toggle */
.dropdown-label-touch {
    display: none;
}

.dropdown-label {
    color: var(--color-charcoal);
    font-family: var(--font-body);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-regular);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
    padding: var(--space-sm) 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    transition: color var(--duration-normal) var(--ease-smooth);
    position: relative;
}

.dropdown-label a {
    color: inherit;
    text-decoration: none;
    transition: color var(--duration-normal) var(--ease-smooth);
    position: relative;
}

/* Only add underline to the link inside dropdown-label, not the span itself */
.dropdown-label a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-rose-gold);
    transition: width var(--duration-normal) var(--ease-in-out);
}

.dropdown-label:hover,
.dropdown-label:hover a {
    color: var(--color-rose-gold);
}

.dropdown-label:hover a::after {
    width: 100%;
}

.dropdown-arrow {
    font-size: 0.7em;
    transition: transform var(--duration-normal) var(--ease-smooth);
}

.dropdown-toggle:checked + .dropdown-label-touch + .dropdown-label .dropdown-arrow,
.nav-item-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 1px solid var(--color-light-gray);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    padding: var(--space-lg);
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--duration-normal) var(--ease-smooth),
                visibility var(--duration-normal) var(--ease-smooth);
    z-index: 1000;
    margin-top: 0;
}

/* Create a seamless hover area between label and dropdown */
.nav-item-dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: var(--space-sm);
    background: transparent;
    pointer-events: auto;
}

/* Show dropdown on hover (desktop) */
.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Show dropdown when checkbox is checked (click/touch on mobile) */
.dropdown-toggle:checked ~ .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-section {
    margin-bottom: var(--space-md);
}

.dropdown-section:last-child {
    margin-bottom: 0;
}

.dropdown-section-title {
    display: block;
    font-family: var(--font-display);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    color: var(--color-rose-gold);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
    margin-bottom: var(--space-sm);
    padding-bottom: var(--space-xs);
    border-bottom: 1px solid var(--color-light-gray);
    padding: var(--space-sm) var(--space-md);
    padding-bottom: var(--space-xs);
    margin-top: var(--space-sm);
}

.dropdown-section-title:first-child {
    margin-top: 0;
}

.dropdown-divider {
    height: 1px;
    background: var(--color-gray-light);
    margin: var(--space-xs) var(--space-md);
}

.dropdown-menu-wide {
    min-width: 320px;
}

/* Compact dropdown for longer lists */
.dropdown-menu-compact {
    padding: var(--space-sm) var(--space-md);
}

.dropdown-menu-compact .dropdown-section-title {
    padding: var(--space-xs) var(--space-md);
    margin-top: var(--space-xs);
    margin-bottom: var(--space-xs);
}

.dropdown-menu-compact .dropdown-divider {
    margin: var(--space-xs) var(--space-md);
}

.dropdown-menu-compact a {
    padding: var(--space-xs) var(--space-md);
}

/* Multi-column dropdown layout */
.dropdown-menu-columns {
    display: flex;
    gap: var(--space-lg);
    min-width: auto;
    padding: var(--space-md) var(--space-lg);
}

.dropdown-column {
    min-width: 160px;
}

.dropdown-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-section-link {
    display: block;
    font-family: var(--font-display);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    color: var(--color-rose-gold);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
    padding: var(--space-xs) 0;
    margin-bottom: var(--space-xs);
    border-bottom: 1px solid var(--color-light-gray);
    transition: color var(--duration-fast) var(--ease-smooth);
}

.dropdown-section-link:hover {
    color: var(--color-charcoal);
}

.dropdown-column ul a {
    padding: var(--space-xs) 0;
    font-size: var(--font-size-sm);
}

.dropdown-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: var(--space-sm) var(--space-md);
    color: var(--color-charcoal);
    font-family: var(--font-body);
    font-size: var(--font-size-sm);
    text-transform: none;
    letter-spacing: normal;
    border-radius: 4px;
    transition: background-color var(--duration-fast) var(--ease-smooth),
                color var(--duration-fast) var(--ease-smooth);
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background-color: var(--color-light-gray);
    color: var(--color-rose-gold);
}

/* Close dropdown when clicking outside (using label trick for mobile) */
.dropdown-toggle:checked + .dropdown-label-touch::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
}

/* Mobile menu toggle */
.menu-toggle {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    pointer-events: none;
}

.menu-toggle:focus-visible + .menu-toggle-label {
    outline: 2px solid var(--color-pink);
    outline-offset: 4px;
    border-radius: 4px;
}

/* Mobile menu label - minimum 44x44px touch target for accessibility */
.menu-toggle-label {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    background: none;
    border: none;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    z-index: 1002;
}

.menu-toggle-label span {
    width: 20px;
    height: 2px;
    background-color: var(--color-charcoal);
    display: block;
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.15s ease;
    transform-origin: center;
}

/* Hamburger animation when checked - proper X animation */
/* With 5px gap and 2px height: middle span is at 0, top is at -7px, bottom is at +7px */
.menu-toggle:checked + .menu-toggle-label span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle:checked + .menu-toggle-label span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle:checked + .menu-toggle-label span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Old mobile-menu-toggle kept for backwards compatibility */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--color-charcoal);
    transition: all var(--duration-normal) var(--ease-smooth);
}

/* ===================================
   11. HERO SECTIONS - PARISIAN ELEGANCE
   =================================== */

.hero,
.hero-section,
.hero-service,
.hero-about,
.hero-contact,
.hero-faq {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--color-cream);
    overflow: hidden;
}

/* Fullscreen hero with image */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.hero-overlay {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: var(--space-3xl) 0;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: var(--font-weight-light);
    color: var(--color-black);
    margin-bottom: var(--space-xl);
    line-height: var(--line-height-tight);
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--color-gray-dark);
    font-weight: var(--font-weight-light);
    font-style: italic;
    margin-bottom: var(--space-3xl);
    line-height: var(--line-height-relaxed);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-trust-badges {
    display: flex;
    gap: var(--space-2xl);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--space-3xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-gray-light);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-body);
    font-size: var(--font-size-xs);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
    color: var(--color-gray-dark);
}

/* Service Page Heroes - Editorial Split */
.hero-service {
    min-height: 70vh;
    background-color: var(--color-white);
}

.hero-service::before {
    display: none;
}

/* Hero with background image variant */
.hero-with-image {
    background-size: cover;
    background-position: center;
    color: var(--color-white);
}

.hero-with-image::before {
    background: linear-gradient(
        to right,
        rgba(26, 26, 26, 0.8) 0%,
        rgba(26, 26, 26, 0.4) 100%
    );
    opacity: 1;
}

.hero-with-image h1,
.hero-with-image .hero-subtitle,
.hero-with-image .badge {
    color: var(--color-white);
}

.hero-with-image .hero-trust-badges {
    border-top-color: rgba(255, 255, 255, 0.3);
}

/* ===================================
   12. SECTIONS - EDITORIAL SPACING
   =================================== */

.featured-services,
.trust-section,
.about-preview,
.contact-cta,
.services-surgical,
.services-nonsurgical,
.cta-consultation,
.philosophy,
.credentials,
.expertise,
.approach,
.facilities,
.cta-about,
.service-intro,
.service-details,
.procedure-details,
.approach-section,
.faq-service,
.cta-service,
.testimonials-preview,
.faq-intro,
.faq-categories,
.faq-section,
.faq-cta,
.legal-section,
.contact-info,
.map-section,
.faq-contact {
    padding: var(--space-5xl) 0;
}

/* Alternating backgrounds - Subtle cream tones */
.featured-services,
.credentials,
.contact-info {
    background: var(--color-cream);
}

/* Section headings - Magazine style */
section h2 {
    text-align: center;
    margin-bottom: var(--space-lg);
}

section h2 + .section-intro {
    margin-bottom: var(--space-4xl);
}

/* Center-aligned sections */
.trust-section,
.cta-consultation,
.cta-about,
.cta-service,
.faq-cta,
.contact-cta {
    text-align: center;
}

/* ===================================
   13. FOOTER
   =================================== */

.site-footer {
    background: var(--background-dark);
    color: var(--background-white);
    padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-section h3,
.footer-section h4 {
    color: var(--background-white);
    font-size: var(--font-size-md);
    margin-bottom: var(--space-md);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-sm);
    font-size: var(--font-size-sm);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: var(--space-xs);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--duration-normal) var(--ease-smooth);
}

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

.footer-location,
.footer-address {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

@media (max-width: 480px) {
    .footer-legal {
        flex-direction: column;
        text-align: center;
        gap: var(--space-sm);
    }
    
    .footer-legal-links {
        flex-direction: column;
        gap: var(--space-sm);
        align-items: center;
    }
    
    .footer-legal-links a {
        padding: var(--space-xs) 0;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
}

.footer-legal p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: var(--font-size-sm);
}

.footer-legal-links {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
    padding: 0;
    margin: 0;
}

.footer-legal-links li {
    margin: 0;
}

.footer-legal-links a {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--duration-normal) var(--ease-smooth);
}

.footer-legal-links a:hover {
    color: var(--color-white);
}

/* ===================================
   14. SPECIALIZED COMPONENTS
   =================================== */

/* Trust Items */
.trust-item {
    text-align: center;
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
}

.trust-item h3 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-xs);
    color: var(--primary-color);
}

.trust-item p {
    font-size: var(--font-size-sm);
    color: var(--text-light);
}

/* Step Numbers */
.step {
    position: relative;
    padding-left: var(--space-2xl);
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--background-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-md);
}

.step h3 {
    margin-bottom: var(--space-sm);
}

/* Timeline */
.timeline-item {
    position: relative;
    padding-left: var(--space-2xl);
    margin-bottom: var(--space-xl);
}

.timeline-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: var(--background-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-lg);
    box-shadow: var(--shadow-standard);
}

/* Indication Grid */
.indications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.indication {
    padding: var(--space-lg);
    background: var(--background-light);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent-color);
}

.indication h3 {
    color: var(--primary-color);
    font-size: var(--font-size-md);
    margin-bottom: var(--space-sm);
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    margin-bottom: var(--space-2xl);
}

.filter-btn {
    padding: var(--space-xs) var(--space-md);
    background: var(--background-white);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-full);
    color: var(--text-dark);
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-sm);
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-smooth);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--background-white);
}

/* FAQ Accordion - CSS-Only with <details> and <summary> (No JavaScript!) */
.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
    padding: var(--space-md) 0;
}

/* Style the summary element (the question) */
.faq-item summary.faq-question {
    width: 100%;
    text-align: left;
    padding: var(--space-sm) var(--space-lg) var(--space-sm) 0;
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-semibold);
    color: var(--text-dark);
    cursor: pointer;
    list-style: none; /* Remove default arrow */
    position: relative;
    transition: color var(--duration-normal) var(--ease-smooth);
    user-select: none;
}

/* Remove default disclosure triangle */
.faq-item summary::-webkit-details-marker,
.faq-item summary::marker {
    display: none;
}

/* Add custom arrow/plus icon using ::after */
.faq-item summary.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: var(--font-size-xl);
    color: var(--primary-color);
    font-weight: var(--font-weight-bold);
    transition: transform var(--duration-normal) var(--ease-smooth);
}

/* When details is open, rotate the plus to make an X */
.faq-item[open] summary.faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-item summary.faq-question:hover {
    color: var(--primary-color);
}

/* The answer content */
.faq-item .faq-answer {
    padding-top: var(--space-sm);
    animation: fadeIn var(--duration-normal) var(--ease-smooth);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* FAQ Navigation */
.faq-nav {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
    margin-bottom: var(--space-2xl);
}

.faq-nav-link {
    padding: var(--space-sm) var(--space-md);
    background: var(--background-light);
    border-radius: var(--radius-md);
    color: var(--text-dark);
    font-weight: var(--font-weight-medium);
    transition: all var(--duration-normal) var(--ease-smooth);
}

.faq-nav-link:hover {
    background: var(--primary-color);
    color: var(--background-white);
}

/* Contact Methods */
.contact-method {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    margin-bottom: var(--space-lg);
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-note {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

/* Addresses Section */
.addresses-section {
    margin-top: var(--space-lg);
}

.addresses-section h3 {
    margin-bottom: var(--space-md);
    color: var(--primary-color);
}

.address-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    margin-bottom: var(--space-lg);
    padding: var(--space-md);
    background: var(--background-cream);
    border-radius: var(--radius-md);
}

.address-item h4 {
    margin: 0 0 var(--space-xs) 0;
    font-size: var(--font-size-base);
    color: var(--primary-color);
}

.address-item p {
    margin: 0;
    line-height: 1.5;
}

.maps-link {
    display: inline-block;
    margin-top: var(--space-sm);
    color: var(--accent-color);
    font-weight: var(--font-weight-medium);
    text-decoration: none;
    transition: color var(--transition-base);
}

.maps-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Opening Hours */
.opening-hours {
    list-style: none;
    padding: 0;
}

.opening-hours li {
    display: flex;
    justify-content: space-between;
    padding: var(--space-xs) 0;
    border-bottom: 1px solid var(--border-light);
}

.day {
    font-weight: var(--font-weight-medium);
}

.time {
    color: var(--text-light);
}

/* Legal Pages */
.legal-page {
    padding: var(--space-2xl) 0;
}

.legal-section {
    margin-bottom: var(--space-2xl);
}

.legal-section h2 {
    color: var(--primary-color);
    margin-top: var(--space-xl);
}

.legal-section h3 {
    color: var(--text-dark);
    margin-top: var(--space-lg);
}

.legal-update {
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
    margin-top: var(--space-2xl);
}

/* ===================================
   15. UTILITY CLASSES
   =================================== */

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

.mt-0 { margin-top: 0; }
.mt-xs { margin-top: var(--space-xs); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.mb-0 { margin-bottom: 0; }
.mb-xs { margin-bottom: var(--space-xs); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

/* ===================================
   16. RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1024px) {
    :root {
        --container-padding: 2rem;
    }
    
    section {
        padding: var(--space-2xl) 0;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 1.5rem;
    }
    
    /* CRITICAL: Lock body scroll when mobile menu is open */
    body:has(.menu-toggle:checked) {
        overflow: hidden !important;
        position: fixed !important;
        width: 100% !important;
        height: 100% !important;
    }
    
    /* CRITICAL: Remove backdrop-filter on mobile - it breaks position:fixed on children */
    .site-header {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: #ffffff !important;
    }
    
    /* Logo size adjustment for mobile */
    .logo-image {
        height: 36px;
    }
    
    /* CSS-Only Mobile Menu using Checkbox Hack */
    .nav-menu {
        display: none;
        position: fixed !important;
        top: 57px !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: calc(100vh - 57px) !important;
        height: calc(100dvh - 57px) !important; /* Dynamic viewport height for mobile browsers */
        max-height: none !important;
        background: #ffffff !important;
        flex-direction: column;
        padding: 0 !important;
        padding-bottom: env(safe-area-inset-bottom, 0) !important;
        margin: 0 !important;
        gap: 0 !important;
        z-index: 1001 !important;
        overflow-y: scroll !important;
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        list-style: none;
        border-top: 1px solid #e0e0e0;
        align-items: stretch !important;
        touch-action: pan-y !important;
    }
    
    /* Show menu when checkbox is checked */
    .menu-toggle:checked ~ .nav-menu {
        display: flex !important;
    }
    
    /* Show the hamburger icon on mobile */
    .menu-toggle-label {
        display: flex;
    }
    
    /* Remove underline animations on mobile */
    .nav-menu a::after {
        display: none !important;
    }
    
    /* Mobile nav items styling */
    .nav-menu > li {
        width: 100% !important;
        height: auto !important;
        border-bottom: 1px solid #e8e8e8;
        list-style: none;
        display: block !important;
        flex-shrink: 0 !important;
    }
    
    .nav-menu > li:last-child {
        border-bottom: none;
        padding-bottom: 2rem; /* Extra space at bottom for scroll */
    }
    
    /* Regular nav links (non-dropdown) */
    .nav-menu > li > a {
        display: flex;
        align-items: center;
        padding: 1rem 1.25rem;
        font-size: 1rem;
        min-height: 52px;
        color: var(--color-charcoal);
        text-decoration: none;
        text-transform: none;
        letter-spacing: normal;
    }
    
    /* Mobile Dropdown Styles */
    .nav-item-dropdown {
        width: 100%;
        position: relative;
    }
    
    /* The touch label for expanding dropdowns - covers the arrow area */
    .dropdown-label-touch {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        width: 52px;
        height: 52px;
        cursor: pointer;
        z-index: 15;
        -webkit-tap-highlight-color: transparent;
        background: transparent;
    }
    
    /* Arrow chevron indicator */
    .dropdown-label-touch::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 10px;
        height: 10px;
        border-right: 2px solid var(--color-charcoal);
        border-bottom: 2px solid var(--color-charcoal);
        transform: translate(-50%, -70%) rotate(45deg);
        transition: transform 0.25s ease;
        pointer-events: none;
    }
    
    .dropdown-toggle:checked + .dropdown-label-touch::after {
        transform: translate(-50%, -30%) rotate(-135deg);
    }
    
    /* The dropdown label containing the link */
    .dropdown-label {
        display: flex;
        align-items: center;
        width: 100%;
        padding: 1rem 1.25rem;
        padding-right: 52px;
        background: transparent;
        border-radius: 0;
        min-height: 52px;
        cursor: default;
    }
    
    .dropdown-label a {
        flex: 1;
        font-size: 1rem;
        color: var(--color-charcoal);
        text-decoration: none;
        text-transform: none;
        letter-spacing: normal;
    }
    
    .dropdown-label::after {
        display: none !important;
    }
    
    .dropdown-arrow {
        display: none !important;
    }
    
    /* Disable hover behavior on mobile completely */
    .nav-item-dropdown::before {
        display: none !important;
    }
    
    .nav-item-dropdown:hover .dropdown-menu {
        display: none !important;
    }
    
    /* Dropdown menu - hidden by default on mobile */
    .dropdown-menu,
    .dropdown-menu.dropdown-menu-columns,
    .dropdown-menu.dropdown-menu-wide,
    .dropdown-menu.dropdown-menu-compact {
        position: static !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        border-radius: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        display: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        min-width: auto !important;
        background: #f5f5f5 !important;
        pointer-events: auto !important;
    }
    
    /* Show dropdown when its checkbox is checked */
    .dropdown-toggle:checked ~ .dropdown-menu,
    .dropdown-toggle:checked ~ .dropdown-menu.dropdown-menu-columns,
    .dropdown-toggle:checked ~ .dropdown-menu.dropdown-menu-wide,
    .dropdown-toggle:checked ~ .dropdown-menu.dropdown-menu-compact {
        display: block !important;
        padding: 0.5rem 0 0.5rem 1rem !important;
    }
    
    /* Multi-column dropdown on mobile - stack vertically (only when visible) */
    .dropdown-toggle:checked ~ .dropdown-menu-columns {
        flex-direction: column !important;
        padding: 0.5rem 0 0.5rem 0.5rem !important;
    }
    
    .dropdown-column {
        min-width: auto;
        margin-bottom: 0.75rem;
    }
    
    .dropdown-column:last-child {
        margin-bottom: 0;
    }
    
    .dropdown-section-link {
        display: block;
        padding: 0.5rem 0.75rem;
        margin-bottom: 0.25rem;
        font-size: 0.8125rem;
        font-weight: 600;
        color: var(--color-rose-gold);
        text-transform: uppercase;
        letter-spacing: 0.05em;
        border-bottom: 1px solid var(--color-gray-light);
    }
    
    .dropdown-column > ul {
        padding-left: 0.5rem;
        list-style: none;
        margin: 0;
    }
    
    .dropdown-column ul li {
        list-style: none;
    }
    
    .dropdown-column ul a {
        display: flex;
        align-items: center;
        padding: 0.625rem 0.75rem;
        min-height: 44px;
        font-size: 0.875rem;
        color: var(--color-charcoal);
    }
    
    .dropdown-section {
        margin-bottom: 0.5rem;
    }
    
    .dropdown-section-title {
        display: block;
        padding: 0.5rem 0.75rem;
        margin-top: 0.5rem;
        font-size: 0.75rem;
        font-weight: 600;
        color: var(--color-rose-gold);
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }
    
    .dropdown-section-title:first-child {
        margin-top: 0;
    }
    
    .dropdown-divider {
        height: 1px;
        background: var(--color-gray-light);
        margin: 0.5rem 0.75rem;
    }
    
    .dropdown-menu li {
        list-style: none;
    }
    
    .dropdown-menu a {
        display: flex;
        align-items: center;
        padding: 0.625rem 0.75rem;
        min-height: 44px;
        font-size: 0.875rem;
        color: var(--color-charcoal);
        text-decoration: none;
    }
    
    .dropdown-menu a:hover,
    .dropdown-menu a:active {
        background: rgba(0, 0, 0, 0.04);
    }
    
    /* Social icon in nav */
    .nav-social {
        display: flex;
        justify-content: center;
        padding: 1rem;
        border-bottom: none !important;
    }
    
    .nav-social a {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.75rem;
        min-width: 44px;
        min-height: 44px;
    }
    
    /* Hide legacy toggle */
    .mobile-menu-toggle {
        display: none;
    }
    
    .hero,
    .hero-section,
    .hero-service {
        padding: var(--space-2xl) 0;
        min-height: 60vh;  /* Better mobile experience - less scrolling needed */
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .footer-legal {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal-links {
        justify-content: center;
    }
    
    .hero-cta,
    .hero-actions,
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-cta .btn-primary,
    .hero-cta .btn-secondary,
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary,
    .hero-actions .btn,
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 640px) {
    :root {
        --font-size-4xl: 2.25rem;
        --font-size-3xl: 1.875rem;
        --font-size-2xl: 1.5rem;
        --container-padding: 1rem;
    }
    
    /* Keep mobile menu positioned correctly - don't change positioning */
    .nav-menu > li > a,
    .dropdown-label {
        padding: 0.875rem 1rem;
    }
    
    .services-grid,
    .trust-grid,
    .approach-steps,
    .indications-grid {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: var(--space-xl) 0;
    }
    
    /* Prevent horizontal overflow */
    body {
        overflow-x: hidden;
    }
    
    /* Ensure images don't overflow */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Better button sizing for mobile */
    .btn-primary,
    .btn-secondary,
    .btn {
        padding: 1rem 1.5rem;
        font-size: var(--font-size-sm);
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .btn-lg {
        padding: 1rem 2rem;
    }
    
    /* Hero subtitle responsive */
    .hero-subtitle {
        font-size: 1rem;
    }
    
    /* Service card image height for mobile */
    .service-card-image {
        height: 280px;
    }
}

/* Very small screens - ensure navigation usability */
@media (max-width: 375px) {
    .logo-image {
        height: 30px;
    }
    
    /* Smaller text on very small screens */
    .dropdown-label a,
    .nav-menu > li > a {
        font-size: 0.9375rem;
    }
    
    .dropdown-column ul a,
    .dropdown-menu a {
        font-size: 0.8125rem;
        padding: 0.5rem 0.625rem;
        min-height: 40px;
    }
}

/* ===================================
   17. ACCESSIBILITY
   =================================== */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Skip to Content Link - Accessible Navigation */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-pink);
    color: var(--color-white);
    padding: var(--space-md) var(--space-xl);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    border-radius: var(--radius-md);
    z-index: 10000;
    transition: top var(--duration-normal) var(--ease-smooth);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.skip-to-content:focus {
    top: var(--space-md);
    outline: 2px solid var(--color-white);
    outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ===================================
   18. LOADING STATES
   =================================== */

/* Loading Spinner */
.spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--color-gray-light);
    border-top-color: var(--color-pink);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.spinner-sm {
    width: 24px;
    height: 24px;
    border-width: 3px;
}

.spinner-lg {
    width: 64px;
    height: 64px;
    border-width: 5px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Loading Container */
.loading-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    padding: var(--space-3xl) 0;
}

/* Skeleton Screens */
.skeleton {
    background: linear-gradient(
        90deg,
        var(--color-gray-light) 0%,
        #e8e8e8 50%,
        var(--color-gray-light) 100%
    );
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    border-radius: var(--radius-md);
}

.skeleton-text {
    height: 1rem;
    margin-bottom: var(--space-sm);
    border-radius: var(--radius-sm);
}

.skeleton-text.short {
    width: 40%;
}

.skeleton-text.medium {
    width: 60%;
}

.skeleton-text.long {
    width: 100%;
}

.skeleton-heading {
    height: 2.5rem;
    margin-bottom: var(--space-lg);
    width: 70%;
}

.skeleton-image {
    aspect-ratio: 16 / 9;
    width: 100%;
}

.skeleton-card {
    height: 400px;
    width: 100%;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-overlay .spinner {
    border-color: var(--color-gray-light);
    border-top-color: var(--color-pink);
}

/* Button Loading State */
.btn.loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

/* ===================================
   19. PRINT STYLES
   =================================== */

@media print {
    /* Hide navigation and interactive elements */
    .site-header,
    .site-footer,
    .btn,
    .hero-cta,
    .cta-buttons,
    .contact-cta,
    .mobile-menu-toggle,
    .menu-toggle-label,
    .nav-menu,
    .skip-to-content,
    .dropdown-menu,
    .loading-overlay,
    .spinner {
        display: none !important;
    }
    
    /* Optimize for print */
    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }
    
    /* Reset backgrounds for printing */
    .hero,
    .hero-section,
    .hero-service,
    .contact-cta,
    section {
        background: #fff !important;
        color: #000 !important;
        min-height: auto !important;
        padding: 1rem 0 !important;
    }
    
    /* Make links visible */
    a {
        text-decoration: underline;
        color: #000;
    }
    
    a[href^="http"]::after {
        content: " (" attr(href) ")";
        font-size: 0.9em;
        color: #666;
    }
    
    /* Page breaks */
    section,
    .service-card,
    .card {
        page-break-inside: avoid;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
        color: #000;
    }
    
    /* Images */
    img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }
    
    /* Headings */
    h1 {
        font-size: 24pt;
        margin-bottom: 12pt;
    }
    
    h2 {
        font-size: 18pt;
        margin-bottom: 10pt;
        border-bottom: 1pt solid #ccc;
        padding-bottom: 6pt;
    }
    
    h3 {
        font-size: 14pt;
        margin-bottom: 8pt;
    }
    
    /* Lists and paragraphs */
    p, li {
        line-height: 1.6;
        margin-bottom: 8pt;
    }
    
    ul, ol {
        margin-left: 20pt;
    }
    
    /* Tables */
    table {
        border-collapse: collapse;
        width: 100%;
    }
    
    table th,
    table td {
        border: 1pt solid #ccc;
        padding: 6pt;
    }
    
    /* Contact information - make visible */
    .contact-info,
    .opening-hours {
        border: 1pt solid #ccc;
        padding: 12pt;
        margin: 12pt 0;
    }
    
    /* Remove shadows and gradients */
    * {
        box-shadow: none !important;
        text-shadow: none !important;
        background-image: none !important;
    }
}

/* ===================================
   END OF DESIGN SYSTEM
   =================================== */
