﻿/* =============================================
   SMILE MORE TODAY â€” Enterprise Design System
   ============================================= */

/* ---------- CSS Custom Properties ---------- */
:root {
    /* Brand Colors */
    --color-primary: #006078;
    --color-primary-light: #A68B5B;
    --color-primary-dark: #006078;
    --color-primary-subtle: #F5EDE3;

    /* Neutrals */
    --color-white: #FFFFFF;
    --color-off-white: #FAF8F5;
    --color-cream: #F7F3EE;
    --color-sand: #EDE8E0;
    --color-gray-100: #F5F5F5;
    --color-gray-200: #E5E5E5;
    --color-gray-300: #D4D4D4;
    --color-gray-400: #A3A3A3;
    --color-gray-500: #737373;
    --color-gray-600: #525252;
    --color-gray-700: #404040;
    --color-gray-800: #262626;
    --color-gray-900: #171717;
    --color-black: #0A0A0A;

    /* Accent */
    --color-accent: #909C87;
    --color-accent-light: #909C87;
    --color-gold: #C9A96E;
    --color-teal: #5B8E8E;
    --color-teal-light: #7FB3B3;

    /* Typography */
    --font-display: 'Playfair Display', 'Georgia', serif;
    --font-heading: 'Cormorant Garamond', 'Georgia', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 5rem;

    /* Borders & Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50%;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 40px rgba(139, 111, 71, 0.15);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    /* Layout */
    --container-max: 1280px;
    --header-height: 80px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-gray-800);
    background-color: var(--color-off-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* ---------- Typography Utilities ---------- */
.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: var(--space-lg);
    position: relative;
    padding-left: 2.5rem;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 2rem;
    height: 1px;
    background: var(--color-primary);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--color-gray-900);
    margin-bottom: var(--space-lg);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--color-gray-500);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

/* ---------- Buttons ---------- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.9rem 2.2rem;
    background: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left var(--transition-slow);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.9rem 2.2rem;
    background: transparent;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1002;
    transition: all var(--transition-base);
    height: var(--header-height);
}

.site-header.scrolled {
    background: #000;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
}

.header-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    z-index: 10;
}

.logo-img {
    height: 45px;
    width: auto;
    transition: all var(--transition-base);
    filter: brightness(0) invert(1);
}

.site-header.scrolled:not(.menu-open) .logo-img {
    filter: none;
}

.site-header.menu-open {
    background: transparent !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
}

.site-header.menu-open .logo-img {
    filter: brightness(0) invert(1) !important;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
}

.nav-links a {
    font-size: 0.88rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding: var(--space-xs) 0;
    transition: color var(--transition-fast);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--color-primary);
    transition: width var(--transition-base);
}

.nav-links a:hover {
    color: var(--color-white);
}

.nav-links a:hover::after {
    width: 100%;
}

.site-header.scrolled .nav-links a {
    color: var(--color-white);
}

.site-header.scrolled .nav-links a:hover {
    color: var(--color-gray-900);
}

/* ---------- Desktop Dropdown ---------- */
.nav-links>li {
    position: relative;
}

.dropdown-arrow {
    font-size: 0.6rem;
    margin-left: 4px;
    transition: transform var(--transition-base);
    display: inline-block;
    vertical-align: middle;
}

.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -16px;
    min-width: 240px;
    background: rgba(38, 38, 38, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    padding: var(--space-sm) 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--transition-base);
    z-index: 1001;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-top: 2px solid var(--color-primary);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    list-style: none;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 0.85rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8) !important;
    transition: all var(--transition-fast);
    letter-spacing: 0.01em;
    white-space: nowrap;
    position: relative;
}

.dropdown-menu li a::after {
    display: none;
}

.dropdown-menu li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: var(--color-primary);
    transition: width var(--transition-base);
}

.dropdown-menu li a:hover {
    color: var(--color-white) !important;
    background: rgba(255, 255, 255, 0.05);
    padding-left: 1.75rem;
}

.dropdown-menu li a:hover::before {
    width: 3px;
}

.dropdown-menu li+li {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Scrolled header dropdown */
.site-header.scrolled .dropdown-menu {
    background: rgba(38, 38, 38, 0.98);
}

.site-header.scrolled .dropdown-menu li a {
    color: rgba(255, 255, 255, 0.8) !important;
}

.site-header.scrolled .dropdown-menu li a:hover {
    color: var(--color-white) !important;
}

/* ---------- Mobile Dropdown ---------- */
.mobile-has-dropdown {
    position: relative;
}

.mobile-dropdown-arrow {
    font-size: 0.65rem;
    margin-left: 8px;
    transition: transform var(--transition-base);
    display: inline-block;
}

.mobile-has-dropdown.active .mobile-dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
    list-style: none;
}

.mobile-has-dropdown.active .mobile-dropdown-menu {
    max-height: 300px;
    padding: var(--space-sm) 0;
}

.mobile-dropdown-menu li {
    margin-bottom: var(--space-sm) !important;
}

.mobile-dropdown-menu li a {
    font-family: var(--font-body) !important;
    font-size: 1rem !important;
    color: rgba(255, 255, 255, 0.6) !important;
    padding-left: var(--space-xl);
    display: block;
    transition: all var(--transition-fast);
}

.mobile-dropdown-menu li a:hover {
    color: var(--color-white) !important;
    padding-left: calc(var(--space-xl) + 8px);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.search-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    cursor: pointer;
    padding: var(--space-sm);
    transition: color var(--transition-fast);
}

.search-btn:hover {
    color: var(--color-white);
}

.site-header.scrolled .search-btn {
    color: var(--color-gray-600);
}

.site-header.scrolled .search-btn:hover {
    color: var(--color-gray-900);
}

.btn-book {
    padding: 0.6rem 1.6rem;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
}

.btn-book:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
    z-index: 1002;
    position: relative;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: all var(--transition-base);
}

.site-header.scrolled:not(.menu-open) .mobile-toggle span {
    background: var(--color-gray-800);
}

.site-header.menu-open .mobile-toggle span {
    background: var(--color-white) !important;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(5px) translateX(5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-5px) translateX(5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu ul {
    text-align: center;
}

.mobile-menu li {
    margin-bottom: var(--space-xl);
}

.mobile-menu a {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-white);
    transition: color var(--transition-fast);
}

.mobile-menu a:hover {
    color: var(--color-accent);
}

.btn-book-mobile {
    display: inline-block;
    padding: 0.8rem 2rem !important;
    background: var(--color-primary);
    border-radius: var(--radius-sm);
    font-family: var(--font-body) !important;
    font-size: 1rem !important;
    margin-top: var(--space-md);
}

/* =============================================
   HERO SECTION â€” Split Layout
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--color-gray-900);
}

/* Background gradient */
.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(139, 111, 71, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(196, 154, 108, 0.08) 0%, transparent 50%),
        linear-gradient(160deg, #0f0f0f 0%, #1a1816 40%, #151312 100%);
    z-index: 0;
}

/* Floating decorative orbs */
.hero-float {
    position: absolute;
    border-radius: 50%;
    background: rgba(139, 111, 71, 0.06);
    border: 1px solid rgba(139, 111, 71, 0.08);
    z-index: 1;
    pointer-events: none;
}

.hero-float-1 {
    width: 400px;
    height: 400px;
    top: -120px;
    right: -50px;
    animation: floatOrb 18s ease-in-out infinite;
}

.hero-float-2 {
    width: 250px;
    height: 250px;
    bottom: 10%;
    left: 3%;
    animation: floatOrb 14s ease-in-out infinite reverse;
}

.hero-float-3 {
    width: 150px;
    height: 150px;
    top: 25%;
    left: 45%;
    animation: floatOrb 20s ease-in-out infinite 3s;
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(15px, -20px) scale(1.05);
    }

    50% {
        transform: translate(-10px, 15px) scale(0.95);
    }

    75% {
        transform: translate(20px, 10px) scale(1.02);
    }
}

/* Hero Split Container */
.hero-split {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-xl);
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

/* LEFT: Content */
.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 1.5rem;
    background: rgba(139, 111, 71, 0.12);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(139, 111, 71, 0.2);
    border-radius: 100px;
    color: var(--color-accent-light);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: var(--space-2xl);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: #006078;
    border-radius: 50%;
    display: inline-block;
    animation: badgePulse 2s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(108, 219, 137, 0.4);
}

@keyframes badgePulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.85);
    }
}

/* Hero Title */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    font-weight: 500;
    line-height: 1.08;
    color: var(--color-white);
    margin-bottom: var(--space-xl);
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
}

.title-accent {
    background: linear-gradient(135deg, #ffffff 20%, var(--color-accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.6);
    max-width: 480px;
    margin-bottom: var(--space-2xl);
    text-align: left;
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
    margin-bottom: var(--space-3xl);
}

.btn-hero {
    padding: 1rem 2.5rem;
    font-size: 0.95rem;
    border-radius: var(--radius-md);
}

.btn-hero.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    box-shadow: 0 4px 25px rgba(139, 111, 71, 0.35);
}

.btn-hero.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    box-shadow: 0 6px 35px rgba(139, 111, 71, 0.5);
    transform: translateY(-3px);
}

.btn-hero.btn-secondary {
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

.btn-hero.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--color-white);
    transform: translateY(-3px);
}

/* Trust Indicators */
.hero-trust {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.hero-trust-item i {
    color: var(--color-gold);
    font-size: 0.8rem;
}

.hero-trust-divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.12);
}

/* RIGHT: Image */
.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    max-height: 580px;
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 8s ease;
}

.hero-image-frame:hover img {
    transform: scale(1.04);
}

.hero-image-accent {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(139, 111, 71, 0.25);
    border-radius: var(--radius-xl);
    z-index: -1;
}

/* Floating badge on image */
.hero-image-badge {
    position: absolute;
    bottom: 25px;
    left: -20px;
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 3;
}

.hero-image-badge-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: var(--color-white);
    border-radius: var(--radius-md);
    font-size: 1rem;
}

.hero-image-badge-text strong {
    display: block;
    font-size: 0.9rem;
    color: var(--color-gray-900);
    font-weight: 600;
}

.hero-image-badge-text span {
    font-size: 0.75rem;
    color: var(--color-gray-500);
}

/* Scroll mouse indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-mouse {
    width: 22px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 3px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    50% {
        opacity: 0.2;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}














/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
    background: var(--color-primary);
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3xl);
    position: relative;
}

.stat-item {
    text-align: center;
    color: var(--color-white);
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 600;
    display: inline;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2vw, 2rem);
    font-weight: 400;
    opacity: 0.7;
    margin-left: 2px;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    opacity: 0.75;
    margin-top: var(--space-xs);
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-section {
    padding: var(--space-5xl) 0;
    background: var(--color-off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.about-content .section-tag {
    margin-bottom: var(--space-md);
}

.about-content .section-title {
    font-size: clamp(2.2rem, 4vw, 3.25rem);
    margin-bottom: var(--space-2xl);
}

.about-text {
    margin-bottom: var(--space-2xl);
}

.about-text p {
    font-size: 0.95rem;
    color: var(--color-gray-600);
    line-height: 1.85;
    margin-bottom: var(--space-md);
}

.about-text strong {
    color: var(--color-gray-800);
    font-weight: 600;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-img-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-images:hover .about-img-main img {
    transform: scale(1.03);
}

.about-img-accent {
    position: absolute;
    bottom: -30px;
    left: -30px;
    z-index: 2;
}

.accent-card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg) var(--space-xl);
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border-left: 3px solid var(--color-gold);
}

.accent-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-subtle);
    color: var(--color-primary);
    border-radius: var(--radius-full);
    font-size: 1.2rem;
}

.accent-text strong {
    display: block;
    font-size: 0.95rem;
    color: var(--color-gray-900);
}

.accent-text span {
    font-size: 0.8rem;
    color: var(--color-gray-500);
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services-section {
    padding: var(--space-5xl) 0;
    background: var(--color-cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
}

.service-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.08);
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--space-lg);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
    display: flex;
    justify-content: flex-end;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-overlay span {
    color: var(--color-white);
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.service-body {
    padding: var(--space-xl);
}

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary-subtle), var(--color-sand));
    color: var(--color-primary);
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    margin-bottom: var(--space-lg);
    transition: all var(--transition-base);
}

.service-card:hover .service-icon {
    background: var(--color-primary);
    color: var(--color-white);
}

.service-body h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--color-gray-900);
    margin-bottom: var(--space-md);
}

.service-body p {
    font-size: 0.9rem;
    color: var(--color-gray-500);
    line-height: 1.7;
}

/* =============================================
   SMILE GALLERY
   ============================================= */
.smile-gallery-section {
    padding: var(--space-5xl) 0;
    background: var(--color-off-white);
}

.smile-gallery-section .section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.25rem);
    color: var(--color-gray-900);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
}

.gallery-case {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.gallery-case:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.gallery-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}

.gallery-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-case:hover .gallery-img img {
    transform: scale(1.05);
}

.gallery-label {
    position: absolute;
    bottom: 12px;
    padding: 0.35rem 1rem;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: var(--radius-sm);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2;
    transition: all var(--transition-base);
}

.label-before {
    left: 12px;
    background: rgba(0, 0, 0, 0.55);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.label-after {
    right: 12px;
    background: rgba(0, 96, 120, 0.75);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Staggered animation delays for gallery cards */
.gallery-grid .gallery-case:nth-child(2) {
    transition-delay: 0.1s;
}

.gallery-grid .gallery-case:nth-child(3) {
    transition-delay: 0.2s;
}

.gallery-grid .gallery-case:nth-child(4) {
    transition-delay: 0.3s;
}

.gallery-grid .gallery-case:nth-child(5) {
    transition-delay: 0.4s;
}

.gallery-grid .gallery-case:nth-child(6) {
    transition-delay: 0.5s;
}

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-section {
    padding: var(--space-5xl) 0;
    background: var(--color-off-white);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.why-desc {
    font-size: 1.05rem;
    color: var(--color-gray-500);
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
}

.why-features {
    display: grid;
    gap: var(--space-sm);
}

.why-feature {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.why-feature:hover {
    background: var(--color-white);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-subtle);
    color: var(--color-primary);
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    transition: all var(--transition-base);
}

.why-feature:hover .feature-icon {
    background: var(--color-primary);
    color: var(--color-white);
}

.feature-text h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: var(--space-xs);
}

.feature-text p {
    font-size: 0.88rem;
    color: var(--color-gray-500);
    line-height: 1.65;
}

.why-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.why-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.why-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--space-lg) var(--space-xl);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.badge-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-primary);
    display: block;
    line-height: 1;
}

.badge-text {
    font-size: 0.8rem;
    color: var(--color-gray-500);
    line-height: 1.4;
    display: block;
    margin-top: var(--space-xs);
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section {
    padding: var(--space-5xl) 0;
    background: var(--color-cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
}

.testimonial-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 25px;
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--color-primary-subtle);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: var(--space-lg);
    color: var(--color-gold);
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--color-gray-600);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-gray-200);
}

.author-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: var(--color-white);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius-full);
}

.author-info strong {
    display: block;
    font-size: 0.95rem;
    color: var(--color-gray-900);
}

.author-info span {
    font-size: 0.8rem;
    color: var(--color-gray-400);
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
    padding: var(--space-5xl) 0;
    background: linear-gradient(135deg, var(--color-gray-900) 0%, var(--color-gray-800) 50%, #3d3429 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 111, 71, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(196, 154, 108, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: var(--space-lg);
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 520px;
    margin: 0 auto var(--space-2xl);
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.cta-buttons .btn-secondary {
    border-color: rgba(255, 255, 255, 0.3);
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    padding: var(--space-5xl) 0 0;
    background: var(--color-off-white);
    border-top: 1px solid var(--color-sand);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid var(--color-sand);
}

.footer-tagline {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 500;
    color: var(--color-gray-900);
    line-height: 1.3;
    margin-bottom: var(--space-lg);
}

.footer-about {
    font-size: 0.9rem;
    color: var(--color-gray-500);
    line-height: 1.7;
    max-width: 380px;
}

.footer-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
}

.footer-col h3 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: var(--space-md);
}

.footer-col p {
    font-size: 0.88rem;
    color: var(--color-gray-500);
    line-height: 1.7;
}

.footer-col a {
    color: var(--color-gray-500);
    transition: color var(--transition-fast);
}

.footer-col a:hover {
    color: var(--color-primary);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    padding: var(--space-2xl) 0;
}

.footer-social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-gray-300);
    border-radius: var(--radius-full);
    color: var(--color-gray-600);
    font-size: 0.9rem;
    transition: all var(--transition-base);
}

.footer-social a:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-xl) 0;
    border-top: 1px solid var(--color-sand);
}

.footer-links {
    display: flex;
    gap: var(--space-2xl);
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--color-gray-600);
    font-weight: 500;
    position: relative;
}

.footer-links a:hover {
    color: var(--color-gray-900);
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--color-primary);
    transform: scaleX(0);
    transition: transform var(--transition-base);
    transform-origin: left;
}

.footer-links a:hover::after {
    transform: scaleX(1);
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--color-gray-400);
}

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: var(--radius-full);
    font-size: 1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-lg);
    z-index: 100;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-primary-dark);
    transform: translateY(-3px);
}

/* =============================================
   ANIMATIONS
   ============================================= */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for grids */
.services-grid .service-card:nth-child(2) {
    transition-delay: 0.15s;
}

.services-grid .service-card:nth-child(3) {
    transition-delay: 0.3s;
}

.testimonials-grid .testimonial-card:nth-child(2) {
    transition-delay: 0.15s;
}

.testimonials-grid .testimonial-card:nth-child(3) {
    transition-delay: 0.3s;
}

.stats-grid .stat-item:nth-child(2) {
    transition-delay: 0.1s;
}

.stats-grid .stat-item:nth-child(3) {
    transition-delay: 0.2s;
}

.stats-grid .stat-item:nth-child(4) {
    transition-delay: 0.3s;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {

    .hero-split {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }

    .hero-left {
        align-items: center;
    }

    .hero-subtitle {
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-right {
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-image-badge {
        left: 10px;
    }

    .about-grid,
    .why-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }

    .about-images {
        order: -1;
    }

    .services-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .footer-top {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    /* Hide desktop nav, show mobile toggle */
    .main-nav,
    .header-actions {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    /* Hero */
    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-image-frame {
        max-height: 400px;
    }

    /* Stats */
    .stats-grid {
        flex-wrap: wrap;
        gap: var(--space-xl);
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        flex: 1 1 45%;
    }

    /* Services & Testimonials */
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    /* About */
    .about-img-main img {
        height: 350px;
    }

    /* Why */
    .why-image img {
        height: 400px;
    }

    /* Footer */
    .footer-info {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--space-lg);
    }

    /* CTA */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn-secondary {
        text-align: center;
        justify-content: center;
    }

    /* Hide decorative elements */
    .hero-float {
        display: none;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .hero-bottom-divider {
        display: none;
    }

    .hero-bottom-inner {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .hero-trust-item span {
        font-size: 0.72rem;
    }

    /* Mobile Menu improvements */
    .mobile-menu {
        padding-top: var(--header-height);
        align-items: flex-start;
        justify-content: flex-start;
        overflow-y: auto;
    }

    .mobile-menu>ul {
        width: 100%;
        padding: var(--space-3xl) var(--space-xl);
    }

    .mobile-menu li {
        margin-bottom: var(--space-lg);
    }

    .mobile-menu>ul>li>a {
        font-size: 1.6rem;
    }

    /* Mobile dropdown refinements */
    .mobile-dropdown-menu {
        text-align: left;
        padding-left: var(--space-md);
    }

    .mobile-dropdown-menu li {
        margin-bottom: var(--space-sm) !important;
    }

    .mobile-dropdown-menu li a {
        font-family: var(--font-body) !important;
        font-size: 1.05rem !important;
        color: rgba(255, 255, 255, 0.55) !important;
        padding: 0.5rem 0 0.5rem var(--space-lg);
        border-left: 2px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-dropdown-menu li a:hover {
        color: var(--color-white) !important;
        border-left-color: var(--color-primary);
    }

    /* Hide desktop dropdown on mobile */
    .dropdown-menu {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

    .hero-badge {
        font-size: 0.7rem;
    }

    .hero-title {
        font-size: clamp(1.8rem, 7vw, 2.8rem);
    }

    .about-img-accent {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: var(--space-lg);
    }

    .hero-bottom-bar {
        padding: 1rem var(--space-md);
    }

    .btn-hero {
        padding: 0.85rem 2rem;
        font-size: 0.88rem;
        width: 100%;
        justify-content: center;
    }

    .gallery-pair {
        gap: 2px;
    }

    .gallery-label {
        font-size: 0.7rem;
        padding: 0.25rem 0.75rem;
        bottom: 8px;
    }

    .label-before {
        left: 8px;
    }

    .label-after {
        right: 8px;
    }

    .mobile-menu>ul>li>a {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: clamp(1.6rem, 5vw, 2.5rem);
    }

    .footer-tagline {
        font-size: clamp(1.4rem, 4vw, 2rem);
    }
}