/* ============================================
   ECE DENTAL CLINIC — BOUTIQUE DENTAL AESTHETIC
   Warm, Luxurious, Calm, Spa-Like Design
   ============================================ */

/* ===== 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,300;1,400&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ===== CSS VARIABLES / DESIGN TOKENS ===== */
:root {
    /* Boutique Palette -> Mapped to ECE Gold */
    --sage: #CA9923;
    --sage-light: #E0B84A;
    --sage-dark: #A67D1A;
    --sage-muted: #D4AD4A;
    --sage-bg: rgba(202, 153, 35, 0.08);

    --rose-gold: #CA9923;
    --rose-gold-light: #E0B84A;
    --rose-gold-dark: #A67D1A;
    --rose-gold-bg: rgba(202, 153, 35, 0.08);

    --blush: #222E3F;
    --blush-light: #2c3a50;
    --blush-dark: #1A2332;

    /* Neutrals -> Mapped to ECE Dark Theme */
    --cream: #141B26;
    --cream-dark: #1A2332;
    --ivory: #1C2534;
    --warm-white: #0C1118;
    --linen: #222E3F;

    --charcoal: #05080C;
    --dark: #000000;
    --text-primary: #FFFFFF;
    --text-secondary: rgba(232, 228, 223, 0.8);
    --text-muted: rgba(232, 228, 223, 0.6);
    --text-light: rgba(232, 228, 223, 0.4);
    --text-on-dark: #FAF8F5;

    /* Borders */
    --border-light: rgba(255, 255, 255, 0.08);
    --border-medium: rgba(255, 255, 255, 0.12);
    --border-sage: rgba(202, 153, 35, 0.25);

    /* Backgrounds */
    --bg-primary: var(--warm-white);
    --bg-secondary: var(--ivory);
    --bg-tertiary: var(--cream);
    --bg-dark: #05080C;
    --bg-card: var(--cream-dark);

    /* Typography */
    --font-heading: 'Playfair Display', 'Cormorant Garamond', 'Georgia', serif;
    --font-body: 'Inter', 'DM Sans', 'Helvetica Neue', sans-serif;

    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 2.5rem;
    --text-5xl: 3.25rem;
    --text-6xl: 4rem;
    --text-7xl: 5rem;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 24px 56px rgba(0, 0, 0, 0.5);
    --shadow-sage: 0 8px 24px rgba(202, 153, 35, 0.2);
    --shadow-warm: 0 8px 32px rgba(202, 153, 35, 0.2);

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --space-4xl: 8rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 28px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    --transition-smooth: 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.7;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

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

h1 {
    font-size: var(--text-6xl);
}

h2 {
    font-size: var(--text-4xl);
}

h3 {
    font-size: var(--text-2xl);
}

p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===== LOADING SCREEN ===== */
.loading-screen {
    position: fixed;
    inset: 0;
    background: var(--cream);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 2px solid var(--border-light);
    border-top-color: var(--sage);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto var(--space-md);
}

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

.loading-text {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    letter-spacing: 0.3em;
    color: var(--sage);
    font-weight: 500;
}

/* ===== LAYOUT ===== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.container-lg {
    max-width: 1440px;
}

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

.section-sm {
    padding: var(--space-2xl) 0;
}

.bg-white {
    background: var(--bg-primary);
}

.bg-cream {
    background: var(--cream);
}

.bg-light {
    background: var(--bg-secondary);
}

.bg-sage {
    background: var(--sage);
    color: var(--text-on-dark);
}

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

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: all var(--transition-slow);
}

.navbar.scrolled {
    background: rgba(12, 17, 24, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--space-sm) 0;
    box-shadow: 0 1px 0 var(--border-light);
}

.navbar-video-mode {
    background: transparent;
}

.navbar-video-mode .nav-link,
.navbar-video-mode .logo-text {
    color: white;
}

.navbar-video-mode.scrolled .nav-link,
.navbar-video-mode.scrolled .logo-text {
    color: var(--text-primary);
}

.navbar-video-mode.scrolled .logo-accent {
    color: var(--sage);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 40px;
}

.logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

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

.nav-dropdown-wrapper {
    position: relative;
    display: inline-block;
}

.nav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--bg-card);
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    border-radius: var(--radius-md);
    padding: var(--space-xs) 0;
    border: 1px solid var(--border-light);
    margin-top: var(--space-xs);
}

.nav-dropdown a {
    color: var(--text-primary);
    padding: var(--space-xs) var(--space-md);
    text-decoration: none;
    display: block;
    font-size: var(--text-xs);
    font-weight: 500;
    transition: all var(--transition-fast);
}

.nav-dropdown a:hover {
    background-color: var(--cream);
    color: var(--sage);
    padding-left: var(--space-lg);
}

.nav-dropdown-wrapper:hover .nav-dropdown {
    display: block;
}

.nav-link {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
    position: relative;
}

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

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

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

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-base);
    border-radius: 2px;
}

.navbar-video-mode .mobile-menu-btn span {
    background: white;
}

.navbar-video-mode.scrolled .mobile-menu-btn span {
    background: var(--text-primary);
}

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    backdrop-filter: blur(4px);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85%;
    height: 100vh;
    background: var(--warm-white);
    z-index: 1002;
    transition: right var(--transition-smooth);
    padding: var(--space-3xl) var(--space-lg);
    display: flex;
    flex-direction: column;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    color: var(--text-primary);
    font-weight: 400;
    transition: var(--transition-base);
}

.mobile-nav-link:hover {
    color: var(--sage);
    padding-left: 8px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.04em;
    border-radius: var(--radius-full);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
    text-transform: uppercase;
}

.btn-lg {
    padding: 16px 40px;
    font-size: var(--text-base);
}

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

.btn-primary:hover {
    background: var(--sage-dark);
    border-color: var(--sage-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sage);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--border-medium);
}

.btn-secondary:hover {
    border-color: var(--sage);
    color: var(--sage);
    transform: translateY(-2px);
}

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

.btn-accent:hover {
    background: var(--rose-gold-dark);
    border-color: var(--rose-gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-warm);
}

.btn-light {
    background: white;
    color: var(--text-primary);
    border-color: white;
}

.btn-light:hover {
    background: var(--cream);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.nav-cta {
    padding: 10px 24px;
    font-size: var(--text-xs);
}

/* ===== SECTION HEADERS ===== */
.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: var(--space-md);
}

.section-title {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 400;
    margin-bottom: var(--space-md);
    line-height: 1.15;
}

.section-description {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.8;
}

.section-header.centered {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-header.centered .section-description {
    margin-left: auto;
    margin-right: auto;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video {
    background: var(--charcoal);
}

.video-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.video-background iframe,
.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.78vh;
    transform: translate(-50%, -50%);
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(30, 30, 30, 0.7) 0%,
            rgba(30, 30, 30, 0.4) 50%,
            rgba(124, 140, 110, 0.3) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 650px;
    padding-top: 90px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: white;
    margin-bottom: var(--space-lg);
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: var(--text-7xl);
    font-weight: 300;
    margin-bottom: var(--space-lg);
    line-height: 1.05;
    color: white;
}

.hero-title em {
    font-style: italic;
    color: var(--sage-light);
}

.hero-description {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-xl);
    max-width: 500px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trust-item strong {
    font-size: var(--text-lg);
    font-weight: 600;
    color: white;
}

.trust-item span {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.trust-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
}

/* ===== SERVICES SECTION ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.service-card {
    padding: var(--space-2xl);
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    transition: all var(--transition-smooth);
    cursor: pointer;
    display: block;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sage), var(--sage-light));
    transform: scaleX(0);
    transition: transform var(--transition-smooth);
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

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

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--sage-bg);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--sage);
}

.service-number {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    color: var(--sage-muted);
    opacity: 0.3;
    font-weight: 300;
    margin-bottom: var(--space-sm);
}

.service-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    margin-bottom: var(--space-sm);
    font-weight: 500;
}

.service-description {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.service-items {
    list-style: none;
    margin-bottom: var(--space-md);
}

.service-items li {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    padding: 4px 0;
    padding-left: 16px;
    position: relative;
}

.service-items li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sage-light);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--sage);
    transition: var(--transition-base);
}

.service-link:hover {
    gap: var(--space-sm);
}

/* ===== ABOUT SECTION ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: var(--radius-2xl);
}

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 2px solid var(--sage-light);
    border-radius: var(--radius-2xl);
    opacity: 0.3;
    z-index: -1;
}

.about-content .section-label {
    display: block;
}

.about-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.about-list-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.about-list-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--sage);
    margin-top: 2px;
}

.about-list-item div {
    font-size: var(--text-base);
    color: var(--text-secondary);
}

.about-list-item strong {
    color: var(--text-primary);
}

/* ===== GALLERY / BEFORE-AFTER ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

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

.patient-grid .gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4/5;
}

.gallery-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all var(--transition-smooth);
}

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

/* Side by Side Before/After */
.ba-side-by-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--border-light);
}

.ba-image-container {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.ba-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-card:hover .ba-image-container img {
    transform: scale(1.03);
}

.ba-label {
    position: absolute;
    bottom: 10px;
    padding: 5px 14px;
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    color: white;
}

.ba-before {
    left: 10px;
    background: rgba(44, 44, 44, 0.7);
    backdrop-filter: blur(4px);
}

.ba-after {
    right: 10px;
    background: var(--sage);
}

.gallery-info {
    padding: var(--space-md) var(--space-lg);
}

.gallery-treatment {
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 4px;
}

.gallery-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 500;
}

/* Comparison Slider */
.comparison-slider {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    cursor: ew-resize;
}

.comparison-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comparison-before {
    z-index: 1;
    clip-path: inset(0 50% 0 0);
}

.comparison-after {
    z-index: 0;
}

.comparison-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: white;
    z-index: 2;
    transform: translateX(-50%);
    pointer-events: none;
}

.comparison-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.comparison-labels {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    justify-content: space-between;
    z-index: 4;
    pointer-events: none;
}

.comparison-label {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    color: white;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* ===== FEATURES / WHY US ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.feature-card {
    padding: var(--space-2xl);
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all var(--transition-smooth);
}

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

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--sage-bg);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--sage);
}

.feature-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 500;
    margin-bottom: var(--space-sm);
}

.feature-description {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== MEET THE DENTIST ===== */
.dentist-section {
    position: relative;
    overflow: hidden;
}

.dentist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.dentist-image {
    position: relative;
}

.dentist-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: var(--radius-2xl);
}

.dentist-image .image-badge {
    position: absolute;
    bottom: var(--space-lg);
    left: var(--space-lg);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-lg);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--sage-dark);
}

.dentist-content .section-description {
    margin-bottom: var(--space-xl);
}

.dentist-approach {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.approach-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--sage-bg);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.approach-item:hover {
    background: var(--cream);
}

.approach-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--sage);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.approach-icon svg {
    width: 20px;
    height: 20px;
}

.approach-title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 500;
    margin-bottom: 4px;
}

.approach-text {
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    overflow: hidden;
}

.testimonials-wrapper {
    overflow: hidden;
    margin: 0 calc(-1 * var(--space-lg));
    padding: var(--space-sm) var(--space-lg);
}

.testimonials-track {
    display: flex;
    gap: var(--space-lg);
    animation: scrollTestimonials 40s linear infinite;
    width: max-content;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    width: 380px;
    flex-shrink: 0;
    padding: var(--space-xl);
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--space-md);
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    fill: var(--rose-gold);
}

.testimonial-rating {
    font-size: var(--text-lg);
    color: var(--rose-gold);
    margin-bottom: var(--space-md);
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--sage-bg);
    color: var(--sage);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: var(--text-sm);
}

.author-name {
    font-weight: 600;
    font-size: var(--text-sm);
    color: var(--text-primary);
}

.author-location {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

.trustpilot-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    margin-top: var(--space-xl);
}

.trustpilot-badge .tp-logo {
    height: 24px;
}

.trustpilot-badge .tp-score {
    font-weight: 600;
    color: var(--text-primary);
    font-size: var(--text-sm);
}

.trustpilot-badge .tp-stars {
    color: #00b67a;
    font-size: var(--text-base);
}

.trustpilot-badge .tp-count {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

/* ===== PLAN YOUR VISIT / PROCESS ===== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    counter-reset: step;
}

.process-step {
    text-align: center;
    padding: var(--space-xl) var(--space-md);
    position: relative;
}

.process-step::before {
    counter-increment: step;
    content: counter(step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--sage);
    color: white;
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 500;
    margin: 0 auto var(--space-lg);
}

.process-step::after {
    content: '';
    position: absolute;
    top: 48px;
    left: calc(50% + 40px);
    width: calc(100% - 80px);
    height: 1px;
    background: var(--border-medium);
}

.process-step:last-child::after {
    display: none;
}

.process-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 500;
    margin-bottom: var(--space-xs);
}

.process-text {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.cta-section {
    position: relative;
    padding: var(--space-4xl) 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

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

.cta-content .section-label {
    color: rgba(255, 255, 255, 0.7);
}

.cta-content .section-title {
    color: white;
    margin-bottom: var(--space-md);
}

.cta-content .section-description {
    color: rgba(255, 255, 255, 0.85);
    margin: 0 auto var(--space-xl);
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== CONTACT SECTION ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.contact-card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.contact-card:hover {
    border-color: var(--sage);
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--sage-bg);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sage);
}

.contact-icon svg {
    width: 22px;
    height: 22px;
}

.contact-details h4 {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-primary);
}

.contact-details p {
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

/* Contact Form */
.contact-form {
    background: var(--bg-card);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
}

.form-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 500;
    margin-bottom: var(--space-xl);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

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

.form-label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--text-primary);
    background: var(--cream);
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--sage);
    background: white;
    box-shadow: 0 0 0 3px var(--sage-bg);
}

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

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B6B6B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--charcoal);
    color: var(--text-on-dark);
    padding: var(--space-3xl) 0 var(--space-lg);
}

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

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--text-sm);
    margin-top: var(--space-sm);
    line-height: 1.7;
}

.footer .logo-text {
    color: white;
}

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

.footer-social {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--sage);
    color: white;
    transform: translateY(-2px);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.footer-title {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
    color: rgba(255, 255, 255, 0.9);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.footer-link {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.5);
    transition: all var(--transition-base);
}

.footer-link:hover {
    color: var(--sage-light);
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.35);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    width: 56px;
    height: 56px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 900;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
    transition: all var(--transition-base);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

.stagger-5 {
    transition-delay: 0.5s;
}

/* ===== PAGE HEADER (for inner pages) ===== */
.page-header {
    padding: calc(var(--space-4xl) + 80px) 0 var(--space-3xl);
    background: var(--cream);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -25%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: var(--sage-bg);
    pointer-events: none;
}

.page-header .section-title {
    font-size: var(--text-5xl);
}

.page-header .breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    justify-content: center;
    margin-top: var(--space-md);
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.page-header .breadcrumb a {
    color: var(--sage);
}

.page-header .breadcrumb a:hover {
    text-decoration: underline;
}

/* ===== PHOTO UPLOAD FORM ===== */
.photo-guide {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.photo-guide-step {
    text-align: center;
}

.photo-guide-step .step-number {
    width: 36px;
    height: 36px;
    background: var(--sage);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-sm);
    font-weight: 600;
    margin: 0 auto var(--space-xs);
}

.photo-guide-step p {
    font-size: var(--text-xs);
    color: var(--text-secondary);
    line-height: 1.5;
}

.file-upload-area {
    border: 2px dashed var(--border-medium);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-base);
    background: var(--cream);
    margin-bottom: var(--space-md);
}

.file-upload-area:hover {
    border-color: var(--sage);
    background: var(--sage-bg);
}

.file-upload-area svg {
    width: 40px;
    height: 40px;
    color: var(--sage);
    margin-bottom: var(--space-sm);
}

.file-upload-area p {
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.file-upload-area strong {
    color: var(--sage);
}

/* ===== STATS BAR ===== */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    padding: var(--space-2xl) 0;
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 400;
    color: var(--sage);
    margin-bottom: 4px;
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ===== LANGUAGE SELECTOR ===== */
.lang-selector {
    position: relative;
    z-index: 100;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: 1.5px solid var(--border-medium);
    border-radius: var(--radius-full);
    padding: 7px 14px;
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-base);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.lang-toggle:hover {
    border-color: var(--sage);
    color: var(--sage);
}

.lang-toggle .lang-flag {
    font-size: 16px;
    line-height: 1;
}

.lang-toggle .lang-arrow {
    font-size: 10px;
    transition: transform var(--transition-base);
    margin-left: 2px;
}

.lang-selector.open .lang-toggle .lang-arrow {
    transform: rotate(180deg);
}

.navbar-video-mode .lang-toggle {
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.85);
}

.navbar-video-mode .lang-toggle:hover {
    border-color: rgba(255, 255, 255, 0.6);
    color: white;
}

.navbar-video-mode.scrolled .lang-toggle {
    border-color: var(--border-medium);
    color: var(--text-secondary);
}

.navbar-video-mode.scrolled .lang-toggle:hover {
    border-color: var(--sage);
    color: var(--sage);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 180px;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--transition-base);
    overflow: hidden;
}

.lang-selector.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}

.lang-option:hover {
    background: var(--sage-bg);
    color: var(--sage-dark);
}

.lang-option.active {
    color: var(--sage);
    font-weight: 600;
    background: var(--sage-bg);
}

.lang-option .lang-flag {
    font-size: 18px;
    line-height: 1;
    flex-shrink: 0;
}

.lang-option .lang-name {
    flex: 1;
}

.lang-option .lang-native {
    font-size: var(--text-xs);
    color: var(--text-muted);
    margin-left: auto;
}

.lang-option.active .lang-native {
    color: var(--sage-muted);
}

/* Mobile language selector */
.mobile-lang-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border-light);
}

.mobile-lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: none;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: var(--text-xs);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.mobile-lang-btn:hover {
    border-color: var(--sage);
    color: var(--sage);
}

.mobile-lang-btn.active {
    background: var(--sage-bg);
    border-color: var(--sage);
    color: var(--sage);
    font-weight: 600;
}

.mobile-lang-btn .lang-flag {
    font-size: 14px;
    line-height: 1;
}

/* ===== MOBILE LANGUAGE EMOJI BUTTON ===== */
.mobile-lang-toggle {
    display: none;
    position: relative;
    align-items: center;
    z-index: 1001;
}

.mobile-lang-emoji {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 22px;
    padding: 6px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.mobile-lang-emoji:active {
    transform: scale(0.9);
}

.mobile-lang-popup {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    background: rgba(253, 252, 250, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-light);
    z-index: 1002;
}

.mobile-lang-popup.open {
    display: flex;
}

.mobile-lang-popup-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 22px;
    padding: 8px 12px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.mobile-lang-popup-btn:hover {
    background: var(--sage-bg);
}

.mobile-lang-popup-btn.active {
    background: var(--sage-bg);
    outline: 2px solid var(--sage);
    outline-offset: -2px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-lang-toggle {
        display: flex;
    }

    .hero-title {
        font-size: var(--text-5xl);
    }

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

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

    .about-grid,
    .dentist-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }

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

    .process-step::after {
        display: none;
    }

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

    .hero-content {
        padding-top: 100px;
    }

    .logo-text {
        font-size: var(--text-xl);
    }
}

@media (max-width: 768px) {
    :root {
        --text-6xl: 2.75rem;
        --text-7xl: 3.25rem;
        --text-5xl: 2.25rem;
        --text-4xl: 2rem;
    }

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

    .container {
        padding: 0 var(--space-md);
    }

    .hero-title {
        font-size: var(--text-5xl);
    }

    .hero-trust {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-sm);
    }

    .trust-divider {
        display: none;
    }

    .services-grid,
    .gallery-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-xs);
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .photo-guide {
        grid-template-columns: repeat(3, 1fr);
    }

    .page-header {
        padding: calc(var(--space-3xl) + 60px) 0 var(--space-2xl);
    }

    .contact-form {
        padding: var(--space-lg);
    }

    .contact-info {
        gap: var(--space-sm);
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .ba-image-container {
        height: 160px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .stats-bar {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-md);
    }

    .page-header .section-title {
        font-size: var(--text-4xl);
    }

    .testimonial-card {
        width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: var(--text-4xl);
    }

    .photo-guide {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }

    .page-header {
        padding: calc(var(--space-2xl) + 60px) 0 var(--space-xl);
    }

    .page-header .section-description {
        font-size: var(--text-base);
    }

    .stats-bar {
        grid-template-columns: 1fr;
    }
}

/* Nav Dropdown styles */
.nav-dropdown-wrapper {
    position: relative;
    display: inline-block;
}

.nav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-card);
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 100;
    border-radius: var(--radius-md);
    padding: var(--space-sm) 0;
}

.nav-dropdown a {
    color: var(--text-primary);
    padding: var(--space-sm) var(--space-md);
    text-decoration: none;
    display: block;
    font-size: var(--text-sm);
    transition: background var(--transition-fast);
}

.nav-dropdown a:hover {
    background-color: var(--bg-cream);
    color: var(--accent-light);
}

.nav-dropdown-wrapper:hover .nav-dropdown {
    display: block;
}
