/* =============================================
   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: #f4f8f8;
    --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, 2.5rem);
    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: 700px;
    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: #01333f;
    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);
}

/* =============================================
   TOP BAR
   ============================================= */
.top-bar {
    background-color: var(--color-primary);
    /* #006078 */
    color: var(--color-white);
    padding: 10px 0;
    font-size: 0.9rem;
    position: relative;
    z-index: 1003;
    font-family: var(--font-body);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-item i {
    font-size: 1rem;
}

.top-bar-item a {
    color: var(--color-white);
    text-decoration: none;
    transition: opacity var(--transition-base);
}

.top-bar-item a:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1002;
    transition: all var(--transition-base);
    background-color: #fff;
    display: flex;
    flex-direction: column;
}

.site-header.scrolled {
    background: #fff;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
}

.site-header.scrolled .top-bar {
    display: none;
}

.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: var(--header-height);
    width: 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);

}

.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-lg);
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--color-gray-900);
    position: relative;
    padding: var(--space-xs) 0;
    transition: color var(--transition-fast);
    white-space: nowrap;
}

.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-gray-900);
}

.nav-links a:hover::after {
    width: 100%;
}

.site-header.scrolled .nav-links a {
    color: var(--color-gray-900);
}

.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: #003341;
    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: #003341;
}

.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: #01333f;
    color: var(--color-white);
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.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-gray-700);
    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-image: linear-gradient(rgba(15, 15, 15, 0.85), #003341), url(images/dental-technology.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* 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: 2;
    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: 3;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-xl);
    padding-top: calc(var(--header-height) + 4rem);
    padding-bottom: 3rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

/* LEFT: Content */
.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 850px;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 1.5rem;
    background: rgb(0 96 120 / 22%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(139, 111, 71, 0.2);
    border-radius: 100px;
    color: var(--color-white);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: var(--space-xl);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    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, 3.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%, #003341 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-2xl);
}

.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-primary) 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);
}

/* Hero Features */
.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.5rem;
    margin-bottom: var(--space-2xl);
    list-style: none;
    padding: 0;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-white);
    font-size: 0.85rem;
    font-weight: 500;
}

.hero-features li i {
    color: var(--color-primary);
    font-size: 1rem;
}

/* 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: #fff;
    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: 450px;
}

.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;

}

.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-primary);
}

.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);
}

/* =============================================
   FEATURES SECTION
   ============================================= */
.features-section {
    padding: var(--space-3xl) 0;
    background-color: #f8f9fa;

}

.features-section .section-header {
    text-align: center;
    max-width: 100%;
    margin: 0 auto var(--space-4xl);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.feature-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(0, 96, 120, 0.08);
    /* Derived from primary color */
    color: var(--color-primary);
    border-radius: var(--radius-md);
    font-size: 1.3rem;
    margin-bottom: var(--space-lg);
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--color-gray-900);
    margin-bottom: var(--space-md);
    font-weight: 600;
}

.feature-text {
    font-size: 0.92rem;
    color: var(--color-gray-600);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services-section {
    padding: var(--space-3xl) 0;

}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
}

.service-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-gray-200);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

.service-card-image-wrap {
    width: 100%;
    height: 240px;
    overflow: hidden;
    margin: 0;
}

.service-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.service-card:hover .service-card-image {
    transform: scale(1.05);
}

.service-card-content {
    padding: var(--space-xl) var(--space-xl) var(--space-2xl);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(0, 96, 120, 0.3);
    /* slight primary border on hover */
}

.service-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 96, 120, 0.05);
    /* very light primary */
    color: var(--color-primary);
    border-radius: var(--radius-full);
    font-size: 1.25rem;
    margin-bottom: var(--space-lg);
    transition: all var(--transition-base);
}

.service-card:hover .service-icon {
    background: var(--color-primary);
    color: var(--color-white);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: var(--space-sm);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--color-gray-500);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin-bottom: var(--space-xl);
    flex-grow: 1;
    /* Pushes the learn more link to the bottom */
}

.service-features-list li {
    font-size: 0.85rem;
    color: var(--color-gray-600);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features-list li::before {
    content: "";
    /* small dot */
    display: block;
    width: 4px;
    height: 4px;
    background-color: var(--color-primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.learn-more-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-base);
    text-transform: capitalize;
}

.learn-more-link:hover {
    color: var(--color-primary-dark);
    gap: 10px;
    /* Slight right arrow push */
}


/* =============================================
   MEDICARE SECTION
   ============================================= */
.medicare-section {
    padding: var(--space-4xl) 0;
    background-color: #f8f9fa;

    /* Subtle blue-green tint */
}

.medicare-section .section-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.medicare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
}

.medicare-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
}

.medicare-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-gray-900);
    margin-bottom: var(--space-xl);
    font-weight: 600;
}

.medicare-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.medicare-item h4 {
    font-size: 1.05rem;
    color: var(--color-gray-900);
    margin-bottom: var(--space-xs);
    font-weight: 600;
}

.medicare-item p {
    font-size: 0.9rem;
    color: var(--color-gray-600);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .medicare-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   TEAM SECTION
   ============================================= */
.team-section {
    padding: var(--space-3xl) 0;
    background-color: var(--color-white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.team-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-gray-200);
    padding: var(--space-3xl) var(--space-xl);
    text-align: center;
    transition: all var(--transition-base);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(0, 96, 120, 0.2);
}

.team-avatar {
    width: 90px;
    height: 90px;
    background-color: rgba(0, 96, 120, 0.05);
    color: var(--color-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: var(--space-xl);
}

.team-name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: 0.25rem;
}

.team-role {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: capitalize;
    margin-bottom: var(--space-lg);
}

.team-bio {
    font-size: 0.9rem;
    color: var(--color-gray-500);
    line-height: 1.6;
    margin-bottom: 0;
}

.team-cta {
    text-align: center;
    margin-top: var(--space-3xl);
}

@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* =============================================
   SMILE GALLERY
   ============================================= */
.smile-gallery-section {
    padding: var(--space-3xl) 0;

}



.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-color: #f8f9fa;

}

.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);
    background: var(--color-white);
    box-shadow: var(--shadow-md);
}

.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;

    /* Matching the light background behind cards */
}

.testimonials-grid {
    display: grid;
    /* Using inline styles in HTML for 2 cols, but keeping a fallback option and media queries */
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.testimonial-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    box-shadow: 0 4px 20px #0060784f;
    transition: all var(--transition-base);
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimonial-card::before {
    content: '\201D';
    /* Right double quote symbol */
    position: absolute;
    top: 25px;
    right: 25px;
    font-family: Arial, sans-serif;
    font-size: 5rem;
    color: #cad8d8;
    line-height: 1;
    opacity: 0.6;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: var(--space-lg);
    color: #eab308;
    /* Slightly deeper gold */
    font-size: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--color-gray-600);
    line-height: 1.8;
    margin-bottom: var(--space-1xl);
    font-style: italic;
    flex-grow: 1;
    /* Pushes the author info to the bottom evenly */
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding-top: var(--space-lg);
    border-top: none;
    /* Removed the border to match screenshot */
}

.author-info strong {
    display: block;
    font-size: 1rem;
    color: var(--color-gray-900);
    margin-bottom: 2px;
}

.author-info span {
    font-size: 0.85rem;
    color: #388d8d;
    font-weight: 500;
}

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr !important;
    }
}

/* =============================================
   TECHNOLOGY SECTION
   ============================================= */
.technology-section {
    padding: var(--space-5xl) 0;
    background-color: #f8f9fa;
}

.technology-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-4xl);
}



.technology-section .section-desc {
    font-size: 1.05rem;
    color: var(--color-gray-600);
    line-height: 1.6;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.tech-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: var(--space-2xl) var(--space-xl);
    text-align: center;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.tech-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--color-primary);
    background-color: rgba(0, 96, 120, 0.08);
    /* Derived from primary color */
    border-radius: 50%;
    font-size: 1.4rem;
}

.tech-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: var(--space-md);
}

.tech-text {
    font-size: 0.95rem;
    color: var(--color-gray-600);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tech-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   SERVING COMMUNITIES SECTION
   ============================================= */
.serving-communities-section {
    padding: var(--space-4xl) 0;
    background-color: #f8f9fa;
    /* Very light cyan/blue tint */
}

.serving-communities-section .section-header {
    text-align: center;
    max-width: 100%;
    margin: 0 auto var(--space-3xl);
}

.serving-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
}

.serving-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl) var(--space-2xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--color-gray-100);
}

.serving-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-gray-900);
    margin-bottom: var(--space-xl);
    display: flex;
    align-items: center;
    gap: 12px;
}

.serving-card h3 i {
    color: var(--color-primary);
    font-size: 1.2rem;
}

/* Areas We Serve Specifics */
.areas-group {
    margin-bottom: var(--space-xl);
}

.areas-group h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: var(--space-md);
}

.areas-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.area-tag {
    background: #eef6f6;
    color: var(--color-gray-700);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.areas-footer-text {
    font-size: 0.82rem;
    color: var(--color-gray-400);
    margin-top: var(--space-lg);
    font-style: italic;
}

/* Why Patients Travel Specifics */
.travel-reasons {
    list-style: none;
    padding: 0;
    margin: 0;
}

.travel-reason-item {
    display: flex;
    gap: 15px;
    margin-bottom: var(--space-lg);
}

.travel-reason-item i {
    color: var(--color-primary);
    font-size: 1rem;
    margin-top: 4px;
}

.travel-reason-content h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 2px;
}

.travel-reason-content p {
    font-size: 0.9rem;
    color: var(--color-gray-500);
    line-height: 1.4;
}

@media (max-width: 900px) {
    .serving-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   EDUCATION & RESOURCES SECTION
   ============================================= */
.resources-section {
    padding: var(--space-3xl) 0;
    background-color: var(--color-white);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.resource-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-gray-100);
    overflow: hidden;
    transition: all var(--transition-base);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.resource-img-placeholder {
    height: 180px;
    background-color: #eef6f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 2rem;
}

.resource-body {
    padding: var(--space-xl);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.resource-body h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: var(--space-md);
    line-height: 1.4;
}

.resource-body p {
    font-size: 0.9rem;
    color: var(--color-gray-500);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.resource-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}

.resource-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--color-gray-200);
    color: var(--color-gray-800);
    padding: 0.8rem 1.8rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-base);
}

.btn-outline:hover {
    background-color: var(--color-gray-50);
    border-color: var(--color-gray-300);
}

@media (max-width: 1024px) {
    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .resources-grid {
        grid-template-columns: 1fr;
    }

    .resource-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* =============================================
   NEW PATIENT OFFER SECTION
   ============================================= */
.offer-section {
    padding: var(--space-4xl) 0;
    background-color: var(--color-primary);
    color: var(--color-white);
    text-align: center;
}

.offer-header {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
    opacity: 0.9;
}

.offer-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 500;
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.offer-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: var(--space-xl);
}

.price-main {
    font-size: 4rem;
    font-weight: 700;
    font-family: var(--font-display);
}

.price-value {
    font-size: 1.2rem;
    text-decoration: line-through;
    opacity: 0.7;
}

.offer-features {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    gap: var(--space-md) var(--space-3xl);
    max-width: 800px;
    margin: 0 auto var(--space-3xl);
    text-align: left;
}

.offer-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    font-weight: 500;
}

.offer-feature-item i {
    color: var(--color-off-white);
}

.btn-special {
    background-color: #fff;
    color: #000;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-size: 1em;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all var(--transition-base);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);

}

.btn-special:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    filter: brightness(1.05);
}

.offer-disclaimer {
    margin-top: var(--space-xl);
    font-size: 0.85rem;
    font-style: italic;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .offer-features {
        grid-template-columns: 1fr;
        gap: var(--space-md);
        padding: 0 var(--space-md);
    }

    .offer-price {
        flex-direction: column;
        gap: 0;
    }

    .price-main {
        font-size: 3rem;
    }
}

/* =============================================
   FAQ SECTION
   ============================================= */
.faq-section {
    padding: var(--space-3xl) 0;

    /* Soft subtle background */
}

.faq-section .section-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    box-shadow: 0 4px 15px #00607842;
    transition: all var(--transition-base);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.8rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-gray-900);
    cursor: pointer;
    list-style: none;
    /* Hide default arrow */
    user-select: none;
    /* Prevent text selection */
}

.faq-question::-webkit-details-marker {
    display: none;
    /* Hide default arrow in Safari */
}

.faq-question span {
    padding-right: var(--space-md);
}

.faq-icon {
    font-size: 0.9rem;
    color: var(--color-gray-500);
    transition: transform 0.3s ease;
}

/* Rotate icon when opened */
details[open] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.8rem 1.25rem;
    font-size: 0.95rem;
    color: var(--color-gray-600);
    line-height: 1.6;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
    padding: var(--space-5xl) 0;
    background: linear-gradient(135deg, #006078 0%, #006078bd 50%, #006078 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: 650px;
    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 2rem;
    background: #003341;
    color: var(--color-white);
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-2xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: inline-block;
    margin-bottom: var(--space-md);
}

.footer-logo-img {
    max-width: 220px;
    height: auto;
    display: block;
}

.footer-col p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-base);
}

.footer-col a:hover {
    color: var(--color-white);
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-lg);
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 0.75rem;
}

.footer-links-list a {
    font-size: 0.9rem;
    text-decoration: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-2xl);
}

.footer-copy {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    transition: all var(--transition-base);
}

.footer-social a:hover {
    background: var(--color-white);
    color: #1b2a38;
}

/* =============================================
   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: repeat(2, 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, 3rem);
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .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-top {
        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.5rem);
    }

    .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);
    }
}