/* ========================================
   TOTAL VITALITY MED SPA - STYLES
   Where Science Meets Style
======================================== */

/* CSS Variables - Dark Mode (Default) */
:root {
    /* Base Colors */
    --color-black: #0a0a0a;
    --color-dark: #1a1a1a;
    --color-gray-dark: #2a2a2a;
    --color-gray: #666666;
    --color-gray-light: #999999;
    --color-white: #ffffff;
    --color-cream: #f8f7f4;
    --color-accent: #c9a86c;
    --color-accent-light: #d4b87a;
    --color-accent-dark: #b8975b;

    /* Theme Colors (Dark Mode) */
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #2a2a2a;
    --bg-card: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #999999;
    --text-muted: #666666;
    --border-color: rgba(255, 255, 255, 0.1);
    --header-bg: rgba(10, 10, 10, 0.95);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-smooth: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 30px rgba(201, 168, 108, 0.3);
}

/* Light Mode Theme - V5 Minimal Zen Inspired */
[data-theme="light"] {
    --bg-primary: #FDFCFA;
    --bg-secondary: #F7F5F0;
    --bg-tertiary: #E8E4DC;
    --bg-card: #FDFCFA;
    --text-primary: #2C2C2C;
    --text-secondary: #4A4A4A;
    --text-muted: #8B8678;
    --border-color: #E8E4DC;
    --header-bg: rgba(247, 245, 240, 0.95);
    --color-accent: #A3A78E;
    --color-accent-light: #B8BCA6;
    --color-accent-dark: #8B8F7A;
    --color-stone: #8B8678;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 0 30px rgba(163, 167, 142, 0.15);
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.4s ease, color 0.4s ease;
}

/* Light mode color adjustments only */
[data-theme="light"] h1,
[data-theme="light"] h2,
[data-theme="light"] h3 {
    color: #2C2C2C;
}

[data-theme="light"] em {
    font-style: italic;
    color: var(--color-accent);
}

/* Hero section keeps dark mode styling in light mode (white text over video) */
[data-theme="light"] .hero h1,
[data-theme="light"] .hero h2,
[data-theme="light"] .hero .hero-title,
[data-theme="light"] .hero .hero-tagline,
[data-theme="light"] .hero .hero-subtitle {
    color: #fff;
}

[data-theme="light"] .hero .hero-tagline {
    color: var(--color-accent);
}

[data-theme="light"] .hero .title-accent {
    color: var(--color-accent);
}

[data-theme="light"] .hero .btn-primary {
    background: var(--color-accent);
    color: #fff;
}

[data-theme="light"] .hero .btn-primary:hover {
    background: var(--color-accent-light);
    color: #fff;
}

[data-theme="light"] .hero .btn-secondary {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

[data-theme="light"] .hero .btn-secondary:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
}

html {
    overflow-x: hidden;
    max-width: 100vw;
}

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

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ========================================
   LOADER
======================================== */
.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.loader-logo {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    display: flex;
    justify-content: center;
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: #d0d0d0;
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .loader-bar {
    background: #444;
}

.loader-bar::after {
    content: '';
    position: absolute;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    animation: loaderSlide 1.5s ease-in-out infinite;
}

@keyframes loaderSlide {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* ========================================
   LOGO STYLES
======================================== */
/* Stacked Logo Layout */
.logo-stack {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-row-1 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1em;
}

.logo-total {
    text-transform: lowercase;
    letter-spacing: -0.02em;
}

.logo-plus {
    font-weight: 600;
    margin-right: -0.04em;
    font-size: 3rem;
    color: #c1a974;
}

.logo-row-2 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.15em;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.logo-row-3 {
    font-size: 0.55em;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-top: 0.15em;
}

/* ========================================
   NAVIGATION
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--spacing-sm) 0;
    transition: var(--transition-smooth);
    background: transparent;
}

/* Force light text on header when over video (before scroll) */
.header:not(.scrolled) .nav-logo,
.header:not(.scrolled) .nav-link,
.header:not(.scrolled) .logo-row-3 {
    color: #fff;
}

/* Large logo when not scrolled */
.header:not(.scrolled) .nav-logo {
    font-size: 1.45rem;
}

/* Horizontal logo when scrolled */
.header.scrolled .logo-stack {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0;
    transition: all 0.3s ease;
    margin-top: -20px;
}

.header.scrolled .logo-row-1,
.header.scrolled .logo-row-2 {
    display: inline;
}

.header.scrolled .logo-row-3 {
    width: 100%;
    margin-top: 0.1em;
}

.header.scrolled {
    background: var(--header-bg);
    backdrop-filter: blur(20px);
    padding: 0.75rem 0;
}

.header.scrolled .nav-logo {
    font-size: 1.35rem;
}

.header.scrolled .nav-menu {
    margin-left: 1.5rem;
}

/* Theme Toggle */
.theme-toggle {
    background: transparent;
    border: none;
    width: 42px;
    height: 42px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1rem;
    transition: var(--transition-base);
    position: relative;
    color: #fff;
}

.header.scrolled .theme-toggle {
    color: var(--text-primary);
}

.theme-toggle:hover {
    color: var(--color-accent);
}

.theme-icon {
    position: absolute;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-icon-light {
    opacity: 0;
    transform: rotate(-90deg) scale(0.8);
}

.theme-icon-dark {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

[data-theme="light"] .theme-icon-light {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

[data-theme="light"] .theme-icon-dark {
    opacity: 0;
    transform: rotate(90deg) scale(0.8);
}

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

.nav-logo {
    font-size: 1.45rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-left: var(--spacing-lg);
}

/* Hide mobile-only elements on desktop */
.mobile-nav-logo,
.mobile-nav-footer {
    display: none;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    position: relative;
    padding: 0.5rem 0;
}

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

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

.nav-ctas {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
}

.nav-cta-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    white-space: nowrap;
}



.nav-cta-phone::after {
    display: none;
}

.nav-cta {
    background: var(--color-accent);
    color: #ffffff !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 2px;
    font-weight: 600;
    white-space: nowrap;
    border: 1px solid transparent;
    box-sizing: border-box;
}

[data-theme="light"] .nav-cta {
    background: var(--color-accent);
    color: #ffffff !important;
}

[data-theme="light"] .nav-cta:hover {
    background: var(--color-accent-light);
}

.nav-cta::after {
    display: none;
}

/* ========================================
   MEGA MENU
======================================== */
.nav-item {
    position: relative;
}

.nav-item.has-megamenu>.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-chevron {
    transition: transform 0.3s ease;
}

.nav-item.has-megamenu:hover .nav-chevron {
    transform: rotate(180deg);
}

.megamenu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--bg-primary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 998;
    padding-top: 20px;
}

.megamenu::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: calc((100% - 1400px) / 2 + 1400px / 4);
    height: 100%;
    background: #f5f5f5;
    pointer-events: none;
}

@media (max-width: 1400px) {
    .megamenu::before {
        width: 25%;
    }
}

.nav-item.has-megamenu:hover .megamenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.megamenu-inner {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

.megamenu-left {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr auto;
    gap: 0;
}

.megamenu-left-footer {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: var(--spacing-md);
    margin-top: auto;
    border-top: 1px solid var(--border-color);
}

.megamenu-column {
    padding: var(--spacing-md);
}

.megamenu-column.megamenu-featured {
    padding: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.megamenu-title {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: var(--spacing-sm);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.megamenu-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.megamenu-links li {
    margin-bottom: 0.25rem;
}

.megamenu-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.6rem 0.75rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.megamenu-links a:hover {
    background: var(--bg-secondary);
    color: var(--color-accent);
}

.megamenu-links a svg {
    opacity: 0.5;
    transition: opacity 0.2s ease;
    flex-shrink: 0;
}

.megamenu-links a:hover svg {
    opacity: 1;
    color: var(--color-accent);
}

/* megamenu-featured: Styles applied via .megamenu-column.megamenu-featured selector */

.megamenu-featured .megamenu-title {
    border-bottom-color: var(--border-color);
}

/* Megamenu Left Footer Link */
.megamenu-footer-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.megamenu-footer-link:hover {
    color: var(--color-accent);
}

/* When megamenu is open, header gets split background with dark text */
/* Match megamenu calculation: right column is 1/4 of 1400px max-width container, plus any viewport overflow */
.header:not(.scrolled):has(.nav-item.has-megamenu:hover) {
    background: #fff;
    box-shadow: none;
}



.header.scrolled:has(.nav-item.has-megamenu:hover) {
    background: #fff;
}



.header:not(.scrolled):has(.nav-item.has-megamenu:hover) .nav-logo,
.header:not(.scrolled):has(.nav-item.has-megamenu:hover) .nav-link:not(.nav-cta),
.header:not(.scrolled):has(.nav-item.has-megamenu:hover) .logo-total,
.header:not(.scrolled):has(.nav-item.has-megamenu:hover) .logo-row-2,
.header:not(.scrolled):has(.nav-item.has-megamenu:hover) .logo-row-3 {
    color: #1a1a1a;
}

.header:not(.scrolled):has(.nav-item.has-megamenu:hover) .logo-plus {
    color: var(--color-accent);
}

.header:not(.scrolled) .megamenu {
    background: #fff;
    border-top: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.header:not(.scrolled) .megamenu-links a {
    color: #1a1a1a;
}

.header:not(.scrolled) .megamenu-title {
    color: #666;
}

/* Footer link colors for header states */
.header:not(.scrolled) .megamenu-footer-link,
.header.scrolled .megamenu-footer-link {
    color: #666;
}

.header:not(.scrolled) .megamenu-footer-link:hover,
.header.scrolled .megamenu-footer-link:hover {
    color: var(--color-accent);
}

/* Featured column background handled by .megamenu-column.megamenu-featured */

.nav-cta:hover {
    background: var(--color-accent-light);
    transform: translateY(-2px);
}

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

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-base);
}

/* Hamburger icon white when not scrolled (over dark hero) */
.header:not(.scrolled) .nav-toggle span {
    background: #fff;
}

.header.scrolled .nav-toggle span {
    background: var(--text-primary);
}

/* ========================================
   BUTTONS
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(201, 168, 108, 0.3);
}

/* Light mode: flat charcoal button */
[data-theme="light"] .btn-primary {
    background: #2C2C2C;
    box-shadow: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-accent-light) 0%, var(--color-accent) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 168, 108, 0.4);
    color: #fff;
}

[data-theme="light"] .btn-primary:hover {
    background: var(--bg-primary);
    color: #2C2C2C;
    box-shadow: none;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

[data-theme="light"] .btn-secondary {
    border: 1px solid #2C2C2C;
    color: #2C2C2C;
}

.btn-secondary:hover {
    border-color: var(--color-accent);
    background: var(--color-accent);
    color: #fff;
    transform: translateY(-3px);
}

[data-theme="light"] .btn-secondary:hover {
    background: #2C2C2C;
    border-color: #2C2C2C;
    color: #fff;
    transform: none;
}

/* Hero secondary button - white text over video */
.hero .btn-secondary {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.hero .btn-secondary:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
}

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

[data-theme="light"] .btn-outline {
    border: 1px solid #2C2C2C;
    color: #2C2C2C;
}

.btn-outline:hover {
    background: var(--color-accent);
    color: #fff;
    transform: translateY(-3px);
}

[data-theme="light"] .btn-outline:hover {
    background: #2C2C2C;
    border-color: #2C2C2C;
    color: #fff;
    transform: none;
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: var(--spacing-xl) 0;
    overflow: hidden;
    max-width: 100vw;
}

/* Ensure hero background doesn't cause overflow */
.hero-video-bg,
.hero-video-bg video,
.hero-video-bg img {
    max-width: 100vw;
}

/* Video Background */
.hero-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-video-bg video,
.hero-video-bg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Blur the static hero image so it reads as atmosphere, not a photo */
.hero-video-bg img {
    filter: blur(5px) brightness(1.1) saturate(1.2);
    transform: scale(1.15);
    /* prevent blur edge bleed */
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.4) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.55) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-text {
    max-width: 800px;
    color: #fff;
}

.hero-tagline {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-accent);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
}

.title-line {
    display: block;
}

.title-accent {
    color: var(--color-accent);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--spacing-md);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    justify-content: center;
}

/* Hero text always light (video overlay behind) */
.hero .hero-tagline,
.hero .hero-title,
.hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.hero .hero-title {
    color: #fff;
}

.hero .title-accent {
    color: var(--color-accent);
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: var(--spacing-md);
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    cursor: pointer;
}

.scroll-arrow {
    width: 24px;
    height: 40px;
    border: 1px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        top: 8px;
        opacity: 1;
    }

    50% {
        top: 20px;
        opacity: 0.3;
    }
}

/* ========================================
   SECTION STYLES
======================================== */
/* V5-style numbered section labels - both themes */
.section-label {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: var(--spacing-sm);
}

[data-theme="light"] .section-label {
    color: var(--color-stone, #8B8678);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: var(--spacing-sm);
}

[data-theme="light"] .section-title {
    color: #2C2C2C;
}

.section-title em,
.title-accent {
    font-style: italic;
    color: var(--color-accent);
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.9;
}



.section-header.centered {
    text-align: center;
}

.section-header.centered .section-subtitle {
    margin: 0 auto;
}



/* ========================================
   SERVICES SECTION
======================================== */
.services {
    padding: var(--spacing-xl) 0;
    background: var(--bg-secondary);
    transition: background-color 0.4s ease;
}

[data-theme="light"] .services {
    background: var(--bg-secondary);
}

.services-tabs {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin: var(--spacing-lg) 0;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.75rem 2rem;
    background: transparent;
    border: 1px solid var(--text-muted);
    color: var(--text-secondary);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition-base);
}

[data-theme="light"] .tab-btn {
    border-color: var(--border-color);
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
}

[data-theme="light"] .tab-btn:hover,
[data-theme="light"] .tab-btn.active {
    background: #2C2C2C;
    border-color: #2C2C2C;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.service-card {
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
}

[data-theme="light"] .service-card {
    border: 1px solid transparent;
}

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

[data-theme="light"] .service-card:hover {
    border-color: var(--color-accent);
}

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

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

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

.service-card-content {
    padding: var(--spacing-md);
}



.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}



.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}



.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-accent);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: var(--spacing-sm);
    transition: var(--transition-base);
}

[data-theme="light"] .service-card-link {
    color: #2C2C2C;
}

.service-card-link:hover {
    gap: 1rem;
}

[data-theme="light"] .service-card-link:hover {
    color: var(--color-accent);
}

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

/* ========================================
   MARQUEE
======================================== */
.marquee {
    background: var(--color-black);
    padding: 1.25rem 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

/* Light mode: subtle cream marquee */
[data-theme="light"] .marquee {
    background: var(--bg-tertiary);
}

.marquee-track {
    display: flex;
    gap: 3rem;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
}

.marquee-track span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.6);
}

[data-theme="light"] .marquee-track span {
    color: var(--color-stone, #8B8678);
}

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

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

/* ========================================
   ABOUT SECTION - V5-style grid layout
======================================== */
.about {
    min-height: auto;
    padding: 8rem var(--spacing-lg);
    background: var(--bg-secondary);
    transition: background-color 0.4s ease;
}

[data-theme="light"] .about {
    background: var(--bg-primary);
}

/* V5-style: label on left, content on right */
.about-content {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content .section-label {
    margin-bottom: 0;
}

.about-main {
    max-width: 650px;
}

.about-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 400;
    line-height: 1.12;
    margin-bottom: 1.75rem;
    color: var(--text-primary);
}



.about-title em {
    font-style: italic;
    color: var(--color-accent);
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 1rem;
    max-width: 550px;
}



/* Horizontal stats layout */
.about-features {
    display: flex;
    flex-direction: row;
    gap: 3.5rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.feature {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.feature-icon {
    display: none;
}

.feature-text h4 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 0.2rem;
    color: var(--text-primary);
}

[data-theme="light"] .feature-text h4 {
    color: #2C2C2C;
}

.feature-text p {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

[data-theme="light"] .feature-text p {
    color: var(--color-stone, #8B8678);
}

/* About image - hide or repurpose */
.about-image {
    display: none;
}

/* ========================================
   ABOUT US SECTION - Two-column layout
======================================== */
.about-us-section {
    min-height: auto;
    padding: 0;
    background: var(--bg-secondary);
    transition: background-color 0.4s ease;
}

[data-theme="light"] .about-us-section {
    background: #FAF9F7;
}

.about-us-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 700px;
}

.about-us-content {
    padding: 6rem 4rem 6rem 8rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-us-content .section-label {
    color: var(--color-accent);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
}

.about-us-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 1.75rem;
    color: var(--text-primary);
}

[data-theme="light"] .about-us-title {
    color: #1a1a1a;
}

.about-us-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
    max-width: 480px;
}

[data-theme="light"] .about-us-text {
    color: #4a4a4a;
}

/* Vertical features list */
.about-us-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 2.5rem;
}

.about-us-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.about-us-feature .feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: var(--color-accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.about-us-feature .feature-icon svg {
    width: 20px;
    height: 20px;
}

.about-us-feature .feature-content h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

[data-theme="light"] .about-us-feature .feature-content h4 {
    color: #1a1a1a;
}

.about-us-feature .feature-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

[data-theme="light"] .about-us-feature .feature-content p {
    color: #6a6a6a;
}

/* About Us image */
.about-us-image {
    display: block;
    overflow: hidden;
}

.about-us-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================
   EXPERTISE SECTION
======================================== */
.expertise {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    transition: background 0.4s ease;
}

[data-theme="light"] .expertise {
    background: var(--bg-secondary);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.expertise-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: var(--spacing-md);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

[data-theme="light"] .expertise-card {
    background: var(--bg-primary);
    border: 1px solid transparent;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

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

[data-theme="light"] .expertise-card:hover {
    border-color: var(--color-accent);
}

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

.expertise-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-accent);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: var(--spacing-sm);
}

/* Light mode: zen-style numbers */
[data-theme="light"] .expertise-number {
    color: var(--color-stone, #8B8678);
}

.expertise-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}



.expertise-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}



/* ========================================
   TESTIMONIALS SECTION
======================================== */
.testimonials {
    padding: var(--spacing-xl) 0;
    background: var(--bg-secondary);
    transition: background-color 0.4s ease;
}

[data-theme="light"] .testimonials {
    background: #fff;
}

/* Testimonials Header - Match About section layout exactly */
.testimonials-content {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.testimonials-content .section-label {
    margin-bottom: 0;
}

.testimonials-main {
    max-width: 650px;
}

.testimonials-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 400;
    line-height: 1.12;
    color: var(--text-primary);
}

.testimonials-title em {
    font-style: italic;
    color: var(--color-accent);
}

[data-theme="light"] .testimonials-title {
    color: #2C2C2C;
}

/* Swiper container - full width edge to edge */
.testimonials .container {
    position: relative;
    max-width: 100%;
    padding: 0;
    overflow: hidden;
}


.testimonials-swiper {
    margin-top: var(--spacing-md);
    padding: 20px 0 50px 0 !important;
    overflow: visible !important;
    width: 100%;
}

.testimonials-swiper .swiper-wrapper {
    overflow: visible !important;
}

/* Pagination below cards */
.testimonials-pagination {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 3rem;
}

.testimonials-swiper .swiper-slide {
    height: auto;
}

.testimonials-swiper .swiper-wrapper {
    align-items: stretch;
}

/* Elegant card style */
.testimonial-card {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .testimonial-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

[data-theme="light"] .testimonial-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

/* Quote icon */
.testimonial-quote-icon {
    color: var(--color-accent);
    opacity: 0.25;
    margin-bottom: 1.25rem;
    width: 32px;
    height: 32px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: auto;
    color: var(--text-secondary);
    flex: 1;
}

[data-theme="light"] .testimonial-text {
    color: #555;
}

.testimonial-author {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="light"] .testimonial-author {
    border-top-color: rgba(0, 0, 0, 0.08);
}

.testimonial-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

[data-theme="light"] .testimonial-info h4 {
    color: #2C2C2C;
}

.testimonial-info p {
    font-size: 0.8rem;
    color: var(--color-accent);
}

[data-theme="light"] .testimonial-info p {
    color: var(--color-stone, #8B8678);
}

/* Swiper Custom Styles - Pagination */
.testimonials-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--text-muted);
    opacity: 0.3;
    transition: var(--transition-base);
    border-radius: 50%;
}

.testimonials-pagination .swiper-pagination-bullet-active {
    background: var(--color-accent);
    opacity: 1;
    transform: scale(1.2);
}

/* Arrow buttons positioned at edges */
.testimonials-swiper .swiper-button-prev,
.testimonials-swiper .swiper-button-next {
    width: 44px;
    height: 44px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    transition: var(--transition-base);
    top: 50%;
    margin-top: -52px;
    z-index: 10;
}

.testimonials-swiper .swiper-button-prev {
    left: 20px;
}

.testimonials-swiper .swiper-button-next {
    right: 20px;
}

.testimonials-swiper .swiper-button-prev:hover,
.testimonials-swiper .swiper-button-next:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.testimonials-swiper .swiper-button-prev::after,
.testimonials-swiper .swiper-button-next::after {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.testimonials-swiper .swiper-button-prev:hover::after,
.testimonials-swiper .swiper-button-next:hover::after {
    color: #fff;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-base);
}

.testimonial-dot.active {
    background: var(--color-accent);
    transform: scale(1.3);
}

/* ========================================
   CTA SECTION - V2 Style
======================================== */
.cta-v2 {
    background: #1a1a1a;
    padding: 10rem 8rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 8rem;
    align-items: center;
}

[data-theme="light"] .cta-v2 {
    background: var(--bg-secondary);
}

[data-theme="light"] .cta-v2-content h2 {
    color: #2C2C2C;
}

[data-theme="light"] .cta-v2-content>p {
    color: rgba(44, 44, 44, 0.7);
}

[data-theme="light"] .btn-cta-outline {
    border-color: #2C2C2C;
    color: #2C2C2C;
}

[data-theme="light"] .btn-cta-outline:hover {
    background: #2C2C2C;
    color: #fff;
}

[data-theme="light"] .cta-v2-info .info-col {
    border-left-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .cta-v2-info .info-label {
    color: rgba(44, 44, 44, 0.5);
}

[data-theme="light"] .cta-v2-info .info-value {
    color: #2C2C2C;
}

[data-theme="light"] .cta-v2-info .info-note {
    color: rgba(44, 44, 44, 0.6);
}

.cta-v2-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 4.5vw, 4.5rem);
    font-weight: 400;
    color: #fff;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.cta-v2-content h2 em {
    font-style: italic;
    color: var(--color-accent);
}

.cta-v2-content>p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.15rem;
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 400px;
}

.cta-v2-actions {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: var(--color-accent);
    color: #fff;
    padding: 1.35rem 2.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    letter-spacing: 0.02em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px -10px rgba(196, 167, 125, 0.4);
}

.btn-cta-primary:hover {
    background: var(--color-accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px -10px rgba(196, 167, 125, 0.5);
}

.btn-cta-outline {
    background: transparent;
    color: #fff;
    padding: 1.35rem 2.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.25);
    letter-spacing: 0.02em;
    transition: all 0.3s;
}

.btn-cta-outline:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
}

.cta-v2-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.cta-v2-info .info-col {
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    padding-left: 2rem;
    transition: border-color 0.3s;
}

.cta-v2-info .info-col:hover {
    border-left-color: var(--color-accent);
}

.cta-v2-info .info-label {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.cta-v2-info .info-value {
    display: block;
    color: #fff;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.35rem;
}

.cta-v2-info .info-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background: var(--bg-secondary);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    transition: background-color 0.4s ease;
}

/* Light mode: light footer */
[data-theme="light"] .footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
}

[data-theme="light"] .footer .logo-stack,
[data-theme="light"] .footer .logo-total,
[data-theme="light"] .footer .logo-row-2 {
    color: #2C2C2C;
}

[data-theme="light"] .footer .logo-row-3 {
    color: var(--color-stone, #8B8678);
}

[data-theme="light"] .footer-brand p {
    color: var(--text-secondary);
}

[data-theme="light"] .footer-links h4,
[data-theme="light"] .footer-contact h4 {
    color: #2C2C2C;
}

[data-theme="light"] .footer-links a,
[data-theme="light"] .footer-contact p,
[data-theme="light"] .footer-contact a {
    color: var(--text-secondary);
}

[data-theme="light"] .footer-links a:hover,
[data-theme="light"] .footer-contact a:hover {
    color: var(--color-accent);
}

[data-theme="light"] .social-links a {
    border-color: var(--border-color);
    color: #2C2C2C;
}

[data-theme="light"] .social-links a:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: transparent;
}

[data-theme="light"] .footer-bottom {
    border-top-color: var(--border-color);
}

[data-theme="light"] .footer-bottom p,
[data-theme="light"] .footer-legal a {
    color: var(--text-muted);
}

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

.footer-brand p {
    color: var(--text-secondary);
    margin: var(--spacing-sm) 0;
    font-size: 0.95rem;
}

.footer-logo {
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    transition: var(--transition-base);
}

.social-links a:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: var(--transition-base);
}

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


.footer-contact p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: var(--text-secondary);
    transition: var(--transition-base);
}

.footer-contact a:hover {
    color: var(--color-accent);
}

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

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: var(--spacing-md);
}

.footer-legal a {
    color: var(--text-muted);
    font-size: 0.85rem;
}

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

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 1200px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 992px) {
    .hero-text {
        max-width: 100%;
        padding: 0 var(--spacing-sm);
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .about {
        padding: 5rem var(--spacing-md);
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-features {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .about-us-container {
        grid-template-columns: 1fr;
    }

    .about-us-content {
        padding: 4rem 2rem;
        order: 2;
    }

    .about-us-image {
        order: 1;
        height: 400px;
    }

    .about-us-features {
        gap: 1rem;
    }

    .cta-v2 {
        grid-template-columns: 1fr;
        padding: 5rem 2rem;
        gap: 4rem;
    }

    .cta-v2-content>p {
        max-width: 100%;
    }

    .cta-v2-actions {
        flex-direction: column;
    }

    .btn-cta-primary,
    .btn-cta-outline {
        width: 100%;
        text-align: center;
    }

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

    .testimonials-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 var(--spacing-md);
    }
}

/* Progressive nav spacing adjustments for smooth responsive scaling */

/* Stage 1: 1200px - Minor gap reduction only */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 1.75rem;
    }
}

/* Stage 2: 1100px - Hide phone number */
@media (max-width: 1100px) {
    .nav-cta-phone {
        display: none;
    }
}

/* Stage 3: 1000px - Reduce gaps slightly */
@media (max-width: 1000px) {
    .nav-menu {
        gap: 1.25rem;
        margin-left: 1.5rem;
    }

    .nav-ctas {
        gap: 0.6rem;
    }

    /* Scrolled: nav closer to logo */
    .header.scrolled .nav-menu {
        margin-left: 1rem;
    }
}

/* Stage 4: 920px - Slight font/padding reduction */
@media (max-width: 920px) and (min-width: 851px) {
    .nav-menu {
        gap: 1rem;
        margin-left: 1rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .nav-cta {
        padding: 0.55rem 0.9rem !important;
        font-size: 0.85rem;
    }

    /* Scrolled: nav even closer to logo */
    .header.scrolled .nav-menu {
        margin-left: 0.5rem;
        gap: 0.75rem;
    }

    .header.scrolled .nav-link {
        font-size: 0.85rem;
    }
}

/* ========================================
   MOBILE SLIDE NAVIGATION
======================================== */

/* Hide mobile nav on desktop */
.mobile-nav {
    display: none;
}

@media (max-width: 850px) {

    /* Show mobile nav container on mobile */
    .mobile-nav {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.35s ease, visibility 0.35s ease;
    }

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

    /* Panels container - enables horizontal sliding */
    .mobile-nav-panels {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Individual panels */
    .mobile-nav-panel {
        flex: 0 0 100%;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        padding: calc(env(safe-area-inset-top) + 1.5rem) calc(env(safe-area-inset-right) + 1.5rem) calc(env(safe-area-inset-bottom) + 2rem) calc(env(safe-area-inset-left) + 1.5rem);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Panel navigation via transform */
    .mobile-nav-panels[data-active="main"] {
        transform: translateX(0);
    }

    .mobile-nav-panels[data-active="services"] {
        transform: translateX(-100%);
    }

    .mobile-nav-panels[data-active="weight"] {
        transform: translateX(-200%);
    }

    .mobile-nav-panels[data-active="hormone"] {
        transform: translateX(-300%);
    }

    .mobile-nav-panels[data-active="aesthetics"] {
        transform: translateX(-400%);
    }

    .mobile-nav-panels[data-active="wellness"] {
        transform: translateX(-500%);
    }

    /* Panel header */
    .mobile-nav-header {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid var(--border-color);
    }

    .mobile-nav-logo-link {
        display: block;
    }

    .mobile-nav-logo-link .logo-stack {
        font-size: 1.1rem;
    }

    /* Close button */
    .mobile-nav-close {
        margin-left: auto;
        background: none;
        border: none;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-secondary);
        cursor: pointer;
        transition: color 0.2s ease, transform 0.2s ease;
        border-radius: 50%;
    }

    .mobile-nav-close:hover {
        color: var(--color-accent);
        transform: rotate(90deg);
    }

    /* Back button */
    .mobile-nav-back {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        background: none;
        border: none;
        color: var(--text-secondary);
        font-family: var(--font-primary);
        font-size: 0.9rem;
        cursor: pointer;
        padding: 0.5rem;
        margin-left: -0.5rem;
        transition: color 0.2s ease;
    }

    .mobile-nav-back:hover {
        color: var(--color-accent);
    }

    .mobile-nav-back svg {
        flex-shrink: 0;
    }

    .mobile-nav-title {
        font-family: var(--font-primary);
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--text-primary);
        margin-left: auto;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    /* Nav list */
    .mobile-nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        flex: 1;
    }

    .mobile-nav-list li {
        border-bottom: 1px solid var(--border-color);
    }

    .mobile-nav-list li:last-child {
        border-bottom: none;
    }

    /* Nav items - both links and drill buttons */
    .mobile-nav-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 1.25rem 0;
        background: none;
        border: none;
        font-family: var(--font-primary);
        font-size: 1.05rem;
        font-weight: 500;
        color: var(--text-primary);
        text-decoration: none;
        cursor: pointer;
        transition: color 0.2s ease;
    }

    .mobile-nav-item:hover {
        color: var(--color-accent);
    }

    .mobile-nav-drill svg {
        color: var(--text-muted);
        transition: transform 0.2s ease, color 0.2s ease;
    }

    .mobile-nav-drill:hover svg {
        transform: translateX(4px);
        color: var(--color-accent);
    }

    /* Overview links - slightly different styling */
    .mobile-nav-overview {
        justify-content: flex-start;
        font-size: 0.95rem;
        color: var(--color-accent);
        font-weight: 500;
    }

    .mobile-nav-overview::before {
        content: '→';
        margin-right: 0.5rem;
    }

    /* Footer */
    .mobile-nav .mobile-nav-footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: auto;
        padding-top: 2rem;
    }

    .mobile-nav .mobile-nav-footer .btn-primary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .mobile-nav .mobile-nav-phone {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--text-secondary);
        font-size: 1rem;
        transition: color 0.2s ease;
    }

    .mobile-nav .mobile-nav-phone:hover {
        color: var(--color-accent);
    }

    /* Hide desktop nav-menu on mobile - use new mobile-nav instead */
    .nav-menu-desktop {
        display: none !important;
    }

    /* Premium Mobile Navigation */
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0 !important;
        right: 0;
        bottom: 0;
        width: 100% !important;
        max-width: 100vw !important;
        height: 100vh;
        height: 100dvh;
        margin: 0 !important;
        background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        /* iOS Safari safe areas */
        padding: calc(100px + env(safe-area-inset-top)) calc(var(--spacing-lg) + env(safe-area-inset-right)) calc(var(--spacing-xl) + env(safe-area-inset-bottom)) calc(var(--spacing-lg) + env(safe-area-inset-left));
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        /* Hide scrollbars but allow scrolling */
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* Firefox */
        -ms-overflow-style: none;
        /* IE/Edge */
    }

    .nav-menu::-webkit-scrollbar {
        display: none;
        /* Chrome/Safari */
    }

    /* Force dark text in mobile nav - override header non-scrolled white */
    .nav-menu .nav-link,
    .nav-menu .mobile-nav-logo .nav-logo,
    .nav-menu .mobile-nav-logo .logo-row-3 {
        color: var(--text-primary) !important;
    }

    /* Force mobile nav logo to always be stacked (not horizontal) */
    .nav-menu .mobile-nav-logo .logo-stack {
        flex-direction: column !important;
        align-items: center !important;
    }

    .nav-menu .mobile-nav-logo .logo-row-1,
    .nav-menu .mobile-nav-logo .logo-row-2 {
        display: block !important;
    }

    .nav-menu .mobile-nav-logo .logo-row-3 {
        width: auto !important;
        margin-top: 0.15em !important;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* Mobile nav logo */
    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 100px;
        background: linear-gradient(to bottom, var(--bg-primary), transparent);
        pointer-events: none;
        z-index: 1;
    }

    .mobile-nav-logo {
        display: flex;
        justify-content: center;
        margin-bottom: var(--spacing-lg);
        padding-top: var(--spacing-sm);
        opacity: 0;
        transform: translateY(-20px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-bottom: none !important;
    }

    .nav-menu.active .mobile-nav-logo {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.05s;
    }

    .mobile-nav-logo .logo-stack {
        font-size: 1.3rem;
        text-align: center;
    }

    .nav-menu .nav-item {
        text-align: center;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-bottom: 1px solid var(--border-color);
    }

    /* Force all nav items including Services to center align */
    .nav-menu .nav-item,
    .nav-menu .nav-item.has-megamenu {
        text-align: center !important;
    }

    .nav-menu .nav-item .nav-link {
        display: inline-block;
        text-align: center;
    }

    .nav-menu .nav-item:last-of-type {
        border-bottom: none;
    }

    .nav-menu.active .nav-item {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered animation for menu items (offset for mobile-nav-logo which is :nth-child(1)) */
    .nav-menu.active .nav-item:nth-child(2) {
        transition-delay: 0.1s;
    }

    .nav-menu.active .nav-item:nth-child(3) {
        transition-delay: 0.15s;
    }

    .nav-menu.active .nav-item:nth-child(4) {
        transition-delay: 0.2s;
    }

    .nav-menu.active .nav-item:nth-child(5) {
        transition-delay: 0.25s;
    }

    .nav-menu .nav-link {
        display: block;
        font-size: 1.25rem;
        font-weight: 500;
        letter-spacing: 0.05em;
        color: var(--text-primary);
        padding: var(--spacing-md) var(--spacing-sm);
        position: relative;
        transition: all 0.3s ease;
    }

    .nav-menu .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: var(--color-accent);
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

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

    .nav-menu .nav-link:hover::after {
        width: 40px;
    }

    /* Mobile nav footer with contact */
    .mobile-nav-footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-md);
        margin-top: auto;
        padding-top: var(--spacing-xl);
        padding-bottom: var(--spacing-lg);
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.35s;
        border-bottom: none !important;
    }

    .nav-menu.active .mobile-nav-footer {
        opacity: 1;
        transform: translateY(0);
    }

    .mobile-nav-footer .btn-primary {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem;
        font-size: 0.85rem;
    }

    .mobile-nav-phone {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 1rem;
        font-weight: 500;
        color: var(--text-secondary);
        transition: color 0.3s ease;
    }

    .mobile-nav-phone:hover {
        color: var(--color-accent);
    }

    .mobile-nav-phone svg {
        width: 18px;
        height: 18px;
    }

    /* Hamburger toggle styling */
    .nav-toggle {
        display: flex;
        z-index: 1001;
        width: 32px;
        height: 32px;
        align-items: center;
        justify-content: center;
    }

    .nav-toggle span {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* When menu is open, hamburger becomes X - always use text-primary */
    .nav-toggle.active span {
        background: var(--text-primary) !important;
    }

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

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

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

    /* Hide mega menu on mobile */
    .megamenu {
        display: none !important;
    }

    /* Show chevron on mobile for parent links */
    .nav-menu .nav-item.has-mobile-submenu .nav-chevron {
        display: inline-block;
        margin-left: 0.35rem;
        transition: transform 0.3s ease;
    }

    .nav-menu .nav-item.has-mobile-submenu.submenu-open .nav-chevron {
        transform: rotate(180deg);
    }

    /* Mobile Submenu Accordion Styles */
    .mobile-submenu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        background: rgba(0, 0, 0, 0.03);
        border-radius: 8px;
        margin: 0.5rem 0 0 0;
    }

    [data-theme="dark"] .mobile-submenu {
        background: rgba(255, 255, 255, 0.03);
    }

    .nav-item.has-mobile-submenu.submenu-open .mobile-submenu {
        max-height: 800px;
    }

    .mobile-submenu-group {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid var(--border-color);
    }

    .mobile-submenu-group:last-child {
        border-bottom: none;
    }

    .mobile-submenu-title {
        display: block;
        font-size: 0.7rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--color-accent);
        margin-bottom: 0.5rem;
    }

    .mobile-submenu-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-submenu-links li {
        margin: 0;
    }

    .mobile-submenu-links a {
        display: block;
        padding: 0.5rem 0;
        font-size: 0.95rem;
        color: var(--text-secondary);
        transition: color 0.2s ease, padding-left 0.2s ease;
    }

    .mobile-submenu-links a:hover {
        color: var(--color-accent);
        padding-left: 0.5rem;
    }

    /* Prevent nav-link default styles from applying to chevron */
    .nav-chevron {
        display: none;
    }

    /* Hide nav CTAs on mobile header (show in mobile menu) */
    .nav-ctas {
        display: none;
    }

    /* Show theme toggle on mobile next to hamburger */
    .theme-toggle {
        display: flex !important;
        order: 1;
        margin-left: auto;
        margin-right: 0.5rem;
        width: 36px;
        height: 36px;
    }

    .nav-toggle {
        order: 2;
    }

    /* Light mode: adjust hero padding for mobile */
    [data-theme="light"] .hero-content {
        padding-left: var(--spacing-md);
        padding-right: var(--spacing-md);
    }

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

    .testimonial-card {
        flex: 0 0 100%;
    }

    .cta-form {
        flex-direction: column;
    }

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

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
}

/* ========================================
   CUSTOM CURSOR (Optional enhancement)
======================================== */
.cursor {
    width: 24px;
    height: 24px;
    border: 1px solid var(--color-accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: border-color 0.3s ease, background 0.3s ease;
    transform: translate(-50%, -50%);
}

.cursor::after {
    display: none;
}

.cursor.hover {
    transform: translate(-50%, -50%) scale(1.5);
    background: rgba(201, 168, 108, 0.1);
}

[data-theme="light"] .cursor.hover {
    background: rgba(168, 135, 77, 0.1);
}

/* Native cursor stays visible — custom ring is a companion effect */

/* ========================================
   PARTICLE STYLES
======================================== */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-accent);
    border-radius: 50%;
    opacity: 0.3;
    animation: particleFloat 20s infinite linear;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.3;
    }

    90% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

/* ========================================
   PAGE LAYOUTS - Multi-page Site
======================================== */

/* Header Solid State (for inner pages) */
.header-solid {
    background: var(--header-bg);
    backdrop-filter: blur(20px);
}

.header-solid .nav-logo,
.header-solid .nav-link,
.header-solid .logo-row-3,
.header-solid .theme-toggle {
    color: var(--text-primary);
}

/* Page Hero Section */
.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding: 140px 0 72px;
    overflow: hidden;
}

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

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

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.7) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.page-hero-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.2vw, 3.4rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.1rem;
}

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

.page-hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 600px;
}

/* Ensure inner page hero text stays light in light theme */
[data-theme="light"] .page-hero-title,
[data-theme="light"] .page-hero-title em {
    color: #f5f5f5;
}

[data-theme="light"] .service-hero-title,
[data-theme="light"] .service-hero-title em {
    color: #f5f5f5;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--color-accent);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb span:last-child {
    color: rgba(255, 255, 255, 0.9);
}

/* ========================================
   ABOUT PAGE STYLES
======================================== */
.about-mission {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-content .section-label {
    margin-bottom: 1.5rem;
}

.mission-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 1.25rem;
}

.mission-image {
    position: relative;
}

.mission-image img {
    border-radius: 8px;
    width: 100%;
}

.mission-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 2px solid var(--color-accent);
    border-radius: 8px;
    z-index: -1;
}

/* About Difference Section */
.about-difference {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.difference-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.difference-lead {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-top: 1.5rem;
}

.difference-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
}

.stat-icon {
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* About Philosophy Section */
.about-philosophy {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.philosophy-image img {
    border-radius: 8px;
    width: 100%;
}

.philosophy-content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 1.25rem;
}

/* About Values Section */
.about-values {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.values-header {
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
}

.value-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-accent);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.value-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Page CTA Section */
.page-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #d7b898 0%, #d5c4a5 100%);
    text-align: center;
}

.page-cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: #0d0d0d;
    margin-bottom: 1rem;
}

.page-cta-content h2 em {
    font-style: italic;
    color: #0d0d0d;
}

.page-cta-content p {
    color: rgba(13, 13, 13, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.page-cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.page-cta .btn-primary {
    background: #0d0d0d;
    color: #fff;
    border-color: #0d0d0d;
}

.page-cta .btn-primary:hover {
    background: #1a1a1a;
    color: #ffffff;
}

.page-cta .btn-secondary {
    background: transparent;
    color: #0d0d0d;
    border-color: #0d0d0d;
}

.page-cta .btn-secondary:hover {
    background: rgba(0, 0, 0, 0.1);
}

/* ========================================
   SERVICES PAGE STYLES
======================================== */
.services-overview {
    padding: 4rem 0;
    background: var(--bg-primary);
}

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

.lead-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Service Categories */
.service-categories {
    padding: 2rem 0 6rem;
    background: var(--bg-primary);
}

.service-category {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    margin-bottom: 6rem;
    align-items: center;
}

.service-category:last-child {
    margin-bottom: 0;
}

.service-category-reverse {
    direction: rtl;
}

.service-category-reverse>* {
    direction: ltr;
}

.category-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.category-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 50%);
    pointer-events: none;
}

.category-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.category-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 0.75rem;
}

.category-content h2 em {
    font-style: italic;
    color: var(--color-accent);
}

.category-tagline {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1.25rem;
}

.category-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.category-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.category-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.category-features svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

/* Services Note */
.services-note {
    padding: 2rem 0 4rem;
    background: var(--bg-primary);
}

.note-content {
    background: var(--bg-secondary);
    border-left: 3px solid var(--color-accent);
    padding: 1.5rem 2rem;
    border-radius: 0 8px 8px 0;
}

.note-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ========================================
   SERVICE DETAIL PAGE STYLES
======================================== */
.service-hero {
    position: relative;
    min-height: 45vh;
    display: flex;
    align-items: center;
    padding: 140px 0 60px;
}

.service-hero-bg {
    position: absolute;
    inset: 0;
}

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

.service-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.65) 100%);
}

.service-hero-content {
    position: relative;
    z-index: 1;
}

.service-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    color: #fff;
    margin-bottom: 0.5rem;
}

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

.service-hero-tagline {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

/* Service Overview Section */
.service-overview {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.service-overview-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-overview-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 1.5rem;
}

.service-overview-content h2 em {
    font-style: italic;
    color: var(--color-accent);
}

.service-overview-content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 1.25rem;
}

.service-overview-image img {
    width: 100%;
    border-radius: 8px;
}

/* Service Process Section */
.service-process {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.process-header {
    text-align: center;
    margin-bottom: 4rem;
}

.process-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 0.75rem;
}

.process-header h2 em {
    font-style: italic;
    color: var(--color-accent);
}

.process-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.process-step {
    position: relative;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1rem;
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Service Benefits Section */
.service-benefits {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 2rem;
}

.benefits-content h2 em {
    font-style: italic;
    color: var(--color-accent);
}

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

.benefits-list li {
    display: flex;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.benefits-list li:hover {
    padding-left: 0.5rem;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefit-icon {
    color: var(--color-accent);
    flex-shrink: 0;
    margin-top: 0.25rem;
    transition: transform 0.3s ease;
}

.benefits-list li:hover .benefit-icon {
    transform: scale(1.15);
}

.benefit-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.benefit-text strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.benefits-image img {
    width: 100%;
    border-radius: 8px;
}

/* Service FAQ Section */
.service-faq {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.faq-header h2 em {
    font-style: italic;
    color: var(--color-accent);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.faq-grid .faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.faq-grid .faq-item::before {
    content: '?';
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-accent);
    opacity: 0.08;
    line-height: 1;
    transition: opacity 0.3s ease;
}

.faq-grid .faq-item:hover {
    border-color: var(--color-accent);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.faq-grid .faq-item:hover::before {
    opacity: 0.15;
}

.faq-grid .faq-item h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    padding-right: 2rem;
}

.faq-grid .faq-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

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

/* Service Symptoms Section */
.service-symptoms {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.symptoms-header {
    text-align: center;
    margin-bottom: 3rem;
}

.symptoms-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 0.75rem;
}

.symptoms-header h2 em {
    font-style: italic;
    color: var(--color-accent);
}

.symptoms-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.symptoms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.symptom-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.25rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.symptom-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--color-accent);
    transition: width 0.4s ease;
}

.symptom-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.symptom-card:hover::after {
    width: 60%;
}

.symptom-icon {
    color: var(--color-accent);
    margin-bottom: 1.25rem;
    transition: transform 0.3s ease;
}

.symptom-card:hover .symptom-icon {
    transform: scale(1.1);
}

.symptom-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.symptom-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Service Treatments Section */
.service-treatments {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.treatments-header {
    margin-bottom: 3rem;
}

.treatments-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.treatments-header h2 em {
    font-style: italic;
    color: var(--color-accent);
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* Grid variants */
.treatments-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.treatments-grid-5 {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}

@media (max-width: 1200px) {
    .treatments-grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {

    .treatments-grid,
    .treatments-grid-3,
    .treatments-grid-5 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {

    .treatments-grid,
    .treatments-grid-3,
    .treatments-grid-5 {
        grid-template-columns: 1fr;
    }
}

.treatment-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.treatment-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-accent);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
}

.treatment-image {
    overflow: hidden;
}

.treatment-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.treatment-content {
    padding: 2rem;
}

.treatment-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.treatment-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

.treatment-content li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 0.35rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.treatment-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

/* Treatment Card - Premium Style */
.treatment-card-image {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.treatment-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.treatment-card:hover .treatment-card-image img {
    transform: scale(1.08);
}

.treatment-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50%);
    pointer-events: none;
}

.treatment-card-content {
    padding: 1.75rem;
}

.treatment-card-tag {
    display: inline-block;
    background: var(--color-accent);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    margin-bottom: 0.75rem;
}

.treatment-card-content h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    margin-bottom: 0.6rem;
    color: var(--text-primary);
}

.treatment-card-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.treatment-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-accent);
    transition: gap 0.3s ease;
}

.treatment-card:hover .treatment-card-link {
    gap: 0.75rem;
}

.treatment-card-link svg {
    transition: transform 0.3s ease;
}

.treatment-card:hover .treatment-card-link svg {
    transform: translateX(4px);
}

/* Featured treatment card - full width */
.treatment-card-featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.treatment-card-featured .treatment-card-image {
    height: 100%;
    min-height: 280px;
}

.treatment-card-featured .treatment-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.5rem;
}

@media (max-width: 768px) {
    .treatment-card-featured {
        grid-template-columns: 1fr;
    }

    .treatment-card-featured .treatment-card-image {
        min-height: 200px;
    }
}

/* Service Expect Section */
.service-expect {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.expect-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 3rem;
}

.expect-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 2.5rem;
}

.expect-content h2 em {
    font-style: italic;
    color: var(--color-accent);
}

.expect-timeline {
    position: relative;
    padding-left: 2rem;
}

.expect-timeline::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -2rem;
    top: 6px;
    width: 14px;
    height: 14px;
    background: var(--color-accent);
    border-radius: 50%;
    border: 3px solid var(--bg-primary);
}

.timeline-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.expect-sidebar .sidebar-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
}

.sidebar-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.sidebar-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-card li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    line-height: 1.5;
}

.sidebar-card li:last-child {
    border-bottom: none;
}

.sidebar-card strong {
    color: var(--text-primary);
}

/* Service Wellness Areas */
.service-wellness-areas {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.wellness-header {
    text-align: center;
    margin-bottom: 3rem;
}

.wellness-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 0.75rem;
}

.wellness-header h2 em {
    font-style: italic;
    color: var(--color-accent);
}

.wellness-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.wellness-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.wellness-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.25rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.wellness-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--color-accent);
    transition: width 0.4s ease;
}

.wellness-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.wellness-card:hover::after {
    width: 60%;
}

.wellness-icon {
    color: var(--color-accent);
    margin-bottom: 1.25rem;
    transition: transform 0.3s ease;
}

.wellness-card:hover .wellness-icon {
    transform: scale(1.1);
}

.wellness-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.wellness-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* Service Approach Section */
.service-approach {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.approach-image img {
    width: 100%;
    border-radius: 8px;
}

.approach-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 1.5rem;
}

.approach-content h2 em {
    font-style: italic;
    color: var(--color-accent);
}

.approach-content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.approach-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.approach-list li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding: 0.65rem 0;
    line-height: 1.6;
}

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

/* ========================================
   CONTACT PAGE STYLES
======================================== */
.contact-content {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 4rem;
}

.form-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 0.75rem;
}

.form-header h2 em {
    font-style: italic;
    color: var(--color-accent);
}

.form-header p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-form {
    background: var(--bg-secondary);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.form-group label span {
    color: var(--color-accent);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-family: inherit;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(201, 168, 108, 0.15);
}

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

.btn-full {
    width: 100%;
}

.form-disclaimer {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 1rem;
    text-align: center;
}

/* Form Alerts */
.form-alert {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.form-alert-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #16a34a;
}

[data-theme="light"] .form-alert-success {
    background: rgba(34, 197, 94, 0.08);
    color: #15803d;
}

.form-alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

[data-theme="light"] .form-alert-error {
    background: rgba(239, 68, 68, 0.08);
    color: #dc2626;
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.75rem;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--color-accent);
}

.contact-card-icon {
    color: var(--color-accent);
    margin-bottom: 0.75rem;
}

.contact-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.contact-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.contact-card a {
    color: var(--color-accent);
    transition: color 0.3s ease;
}

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

.contact-note {
    font-size: 0.85rem !important;
    color: var(--text-muted) !important;
    margin-top: 0.5rem !important;
}

.contact-card-highlight {
    background: transparent;
    border: 2px solid var(--color-accent);
}

.contact-card-highlight .contact-card-icon {
    color: var(--color-accent);
}

.contact-card-highlight h3 {
    color: var(--text-primary);
}

.contact-card-highlight p {
    color: var(--text-secondary);
}

/* Contact Map */
.contact-map {
    background: var(--bg-secondary);
}

.map-header {
    padding: 3rem 0;
    text-align: center;
}

.map-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin-bottom: 0.5rem;
}

.map-header h2 em {
    font-style: italic;
    color: var(--color-accent);
}

.map-header p {
    color: var(--text-secondary);
}

.map-container {
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(30%);
}

/* Contact Hours Note */
.contact-hours-note {
    padding: 4rem 0;
    background: var(--bg-primary);
}

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

.hours-note-content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.85;
    font-style: italic;
}

/* ========================================
   RESULTS PAGE STYLES
======================================== */
.results-testimonials {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.testimonials-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-intro h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 0.75rem;
}

.testimonials-intro h2 em {
    font-style: italic;
    color: var(--color-accent);
}

.testimonials-intro p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Featured Testimonial */
.featured-testimonial {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 3rem;
    position: relative;
}

.featured-quote-icon {
    color: var(--color-accent);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.featured-testimonial blockquote {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.featured-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Testimonial Cards */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
}

.testimonial-quote-icon {
    color: var(--color-accent);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.testimonial-card blockquote {
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.testimonial-author h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.testimonial-author p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Results Gallery */
.results-gallery {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.gallery-header {
    text-align: center;
    margin-bottom: 2rem;
}

.gallery-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 0.75rem;
}

.gallery-header h2 em {
    font-style: italic;
    color: var(--color-accent);
}

.gallery-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.gallery-note {
    text-align: center;
    padding: 3rem;
    background: var(--bg-card);
    border: 1px dashed var(--border-color);
    border-radius: 8px;
}

.gallery-note p {
    color: var(--text-muted);
    font-style: italic;
}

/* ========================================
   FAQ PAGE STYLES
======================================== */
.faq-content {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.faq-wrapper {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 4rem;
}

.faq-sidebar {
    position: sticky;
    top: 120px;
    align-self: start;
}

.faq-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq-nav-link {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.faq-nav-link:hover,
.faq-nav-link.active {
    background: var(--bg-secondary);
    color: var(--color-accent);
}

.faq-section {
    margin-bottom: 3rem;
}

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

.faq-section-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--color-accent);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    background: var(--bg-secondary);
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-card);
}

.faq-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 1.25rem 1.5rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.75;
    background: var(--bg-card);
}

/* FAQ Contact Section */
.faq-contact {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

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

.faq-contact-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 0.75rem;
}

.faq-contact-content h2 em {
    font-style: italic;
    color: var(--color-accent);
}

.faq-contact-content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.faq-contact-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ========================================
   POLICIES PAGE STYLES
======================================== */
.policies-content {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.policies-wrapper {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 4rem;
}

.policies-sidebar {
    position: sticky;
    top: 120px;
    align-self: start;
}

.policies-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.policies-nav-link {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.policies-nav-link:hover,
.policies-nav-link.active {
    background: var(--bg-secondary);
    color: var(--color-accent);
}

.policy-section {
    margin-bottom: 4rem;
}

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

.policy-section h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.policy-section h3 {
    font-size: 1.15rem;
    margin: 2rem 0 0.75rem;
}

.policy-section p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 1rem;
}

.policy-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.policy-section li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 0.5rem;
}

.policy-highlight {
    background: var(--bg-secondary);
    border-left: 3px solid var(--color-accent);
    padding: 1.5rem 2rem;
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
}

.policy-highlight h3 {
    margin-top: 0;
}

.policy-highlight ul {
    margin-bottom: 0;
}

.policy-note {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.policy-note p {
    margin: 0;
    font-size: 0.9rem;
}

.policy-updated {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.policy-updated p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Policies CTA */
.policies-cta {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

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

.policies-cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin-bottom: 0.75rem;
}

.policies-cta-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* ========================================
   SERVICE PAGE - PREMIUM COMPONENTS
   Polished design with section numbers,
   alternating backgrounds, refined details
======================================== */

/* Section Label Pattern (matches homepage) */
.service-section-label {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 1.75rem;
}

.service-section-label .section-num {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.service-section-label .section-text {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
}

/* Service Highlights - Premium badges */
.service-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 0.5rem 0;
}

.highlight-item svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

.highlight-item.highlight-featured {
    width: 100%;
    margin-bottom: 0.75rem;
}

.highlight-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 12px rgba(201, 168, 108, 0.25);
}

.highlight-label svg {
    color: #fff;
    stroke: #fff;
}

[data-theme="light"] .highlight-label {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    box-shadow: 0 4px 12px rgba(163, 167, 142, 0.3);
}

/* ========================================
   CANDIDACY SECTION - Refined Cards
======================================== */
.service-candidacy {
    padding: 6rem 0;
    background: var(--bg-primary);
    position: relative;
}

/* Subtle top border accent */
.service-candidacy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    border-radius: 2px;
}

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

.candidacy-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.5vw, 2.5rem);
    font-weight: 400;
    margin-bottom: 0.75rem;
}

.candidacy-content h2 em {
    font-style: italic;
    color: var(--color-accent);
}

.candidacy-intro {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    letter-spacing: 0.02em;
}

.candidacy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 1024px) {
    .candidacy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .candidacy-grid {
        grid-template-columns: 1fr;
    }
}

.candidacy-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.25rem 1.75rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.candidacy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.candidacy-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .candidacy-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

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

/* Icon circle with subtle gradient */
.candidacy-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201, 168, 108, 0.1) 0%, rgba(201, 168, 108, 0.05) 100%);
    border-radius: 50%;
    color: var(--color-accent);
    transition: all 0.3s ease;
}

[data-theme="light"] .candidacy-icon {
    background: linear-gradient(135deg, rgba(163, 167, 142, 0.15) 0%, rgba(163, 167, 142, 0.08) 100%);
}

.candidacy-card:hover .candidacy-icon {
    background: var(--color-accent);
    color: #fff;
    transform: scale(1.05);
}

.candidacy-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.candidacy-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.candidacy-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 1rem;
}

/* ========================================
   PROCESS SECTION - Enhanced Steps
======================================== */
.service-process {
    padding: 6rem 0;
    background: var(--bg-secondary);
    position: relative;
}

.service-process .process-header {
    text-align: center;
    margin-bottom: 4rem;
}

.service-process .process-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.5vw, 2.5rem);
    font-weight: 400;
    margin-bottom: 0.75rem;
}

.service-process .process-header h2 em {
    font-style: italic;
    color: var(--color-accent);
}

.service-process .process-header p {
    font-size: 1rem;
    color: var(--text-secondary);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
}

.process-step {
    position: relative;
    padding: 2.5rem 2rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step:hover {
    transform: translateY(-6px);
    border-color: var(--color-accent);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.step-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--color-accent);
    opacity: 0.25;
    line-height: 1;
    margin-bottom: 1rem;
    transition: opacity 0.3s ease;
}

[data-theme="light"] .step-number {
    color: var(--color-stone);
}

.process-step:hover .step-number {
    opacity: 0.5;
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ========================================
   BENEFITS SUMMARY - Card Grid
======================================== */
.service-benefits-summary {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.benefits-summary-content {
    text-align: center;
}

.benefits-summary-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.5vw, 2.5rem);
    font-weight: 400;
    margin-bottom: 3rem;
}

.benefits-summary-content h2 em {
    font-style: italic;
    color: var(--color-accent);
}

.benefits-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
}

.benefit-summary-card {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.35s ease;
    border: 1px solid transparent;
}

.benefit-summary-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-color);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.benefit-summary-card svg {
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.benefit-summary-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.benefit-summary-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ========================================
   FAQ ACCORDION - Premium Styled
======================================== */
.service-faq {
    padding: 6rem 0;
    background: var(--bg-secondary);
    position: relative;
}

.service-faq .faq-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.service-faq .faq-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.5vw, 2.5rem);
    font-weight: 400;
}

.service-faq .faq-header h2 em {
    font-style: italic;
    color: var(--color-accent);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-accordion .faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-accordion .faq-item:last-child {
    margin-bottom: 0;
}

.faq-accordion .faq-item:hover {
    border-color: rgba(201, 168, 108, 0.3);
}

[data-theme="light"] .faq-accordion .faq-item:hover {
    border-color: rgba(163, 167, 142, 0.4);
}

.faq-accordion .faq-item.active {
    border-color: var(--color-accent);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.75rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
}

.faq-question span {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--text-primary);
    padding-right: 1.5rem;
    line-height: 1.4;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--color-accent);
    flex-shrink: 0;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-question:hover span {
    color: var(--color-accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
    padding: 0 1.75rem 1.5rem;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 400px;
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ========================================
   ADDITIONAL COMPONENTS
======================================== */

/* Benefits Categories (for aesthetics/wellness pages) */
.benefits-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    text-align: left;
}

.benefit-category {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.25rem;
    transition: all 0.3s ease;
}

.benefit-category:hover {
    border-color: var(--color-accent);
}

.benefit-category h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
    color: var(--color-accent);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.benefit-category h3 svg {
    flex-shrink: 0;
}

.benefit-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-category li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.benefit-category li:last-child {
    border-bottom: none;
}

.benefit-category li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
}

.benefits-note {
    margin-top: 2rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(201, 168, 108, 0.08) 0%, rgba(201, 168, 108, 0.03) 100%);
    border-left: 3px solid var(--color-accent);
    border-radius: 0 8px 8px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
}

[data-theme="light"] .benefits-note {
    background: linear-gradient(135deg, rgba(163, 167, 142, 0.12) 0%, rgba(163, 167, 142, 0.04) 100%);
}

/* Treatment Areas Section */
.service-areas {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.areas-header {
    text-align: center;
    margin-bottom: 3rem;
}

.areas-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.5vw, 2.5rem);
    font-weight: 400;
}

.areas-header h2 em {
    font-style: italic;
    color: var(--color-accent);
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.areas-grid .area-card {
    flex: 0 1 230px;
    max-width: 260px;
}

.area-card {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.area-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

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

.area-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.area-card:hover h3 {
    color: var(--color-accent);
}

.area-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Service Approach Section */
.service-approach {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.approach-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 1024px) {
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.approach-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.5vw, 2.5rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.approach-content h2 em {
    font-style: italic;
    color: var(--color-accent);
}

.approach-content>p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 1.5rem;
}

.approach-philosophy {
    margin: 2rem 0;
}

.philosophy-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.philosophy-item svg {
    color: var(--color-accent);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.philosophy-item span {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.approach-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-style: italic;
}

.approach-image {
    position: relative;
}

.approach-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Service Difference Section */
.service-difference {
    padding: 6rem 0;
    background: var(--bg-primary);
}

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

.difference-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.5vw, 2.5rem);
    font-weight: 400;
    margin-bottom: 3rem;
}

.difference-content h2 em {
    font-style: italic;
    color: var(--color-accent);
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.difference-card {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 2.25rem 2rem;
    text-align: center;
    transition: all 0.35s ease;
    border: 1px solid transparent;
}

.difference-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-accent);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.difference-card.highlight {
    border-color: var(--color-accent);
    background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(201, 168, 108, 0.06) 100%);
}

[data-theme="light"] .difference-card.highlight {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(163, 167, 142, 0.1) 100%);
}

.difference-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201, 168, 108, 0.12) 0%, rgba(201, 168, 108, 0.04) 100%);
    border-radius: 50%;
    color: var(--color-accent);
}

[data-theme="light"] .difference-icon {
    background: linear-gradient(135deg, rgba(163, 167, 142, 0.18) 0%, rgba(163, 167, 142, 0.06) 100%);
}

.difference-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 0.6rem;
}

.difference-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

/* Expect Section (What to Expect cards) */
.service-expect {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.expect-header {
    text-align: center;
    margin-bottom: 3rem;
}

.expect-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.5vw, 2.5rem);
    font-weight: 400;
}

.expect-header h2 em {
    font-style: italic;
    color: var(--color-accent);
}

.expect-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.expect-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.25rem;
    transition: all 0.3s ease;
}

.expect-card:hover {
    border-color: var(--color-accent);
}

.expect-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
    color: var(--color-accent);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.expect-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.expect-card li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 0.5rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.expect-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.95rem;
    width: 5px;
    height: 5px;
    background: var(--color-accent);
    border-radius: 50%;
}

/* ========================================
   CONSULTATION PAGE STYLES
======================================== */
.consultation-process {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.process-header {
    text-align: center;
    margin-bottom: 3rem;
}

.process-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 0.75rem;
}

.process-header h2 em {
    font-style: italic;
    color: var(--color-accent);
}

.process-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.process-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.process-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-accent);
    box-shadow: 0 20px 40px rgba(201, 168, 108, 0.1);
}

.process-card:hover::before {
    opacity: 1;
}

.process-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    color: var(--color-accent);
    opacity: 0.4;
    line-height: 1;
}

.process-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    padding-right: 2rem;
}

.process-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Consultation Importance Section */
.consultation-importance {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.importance-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 4rem;
    align-items: center;
}

.importance-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 1rem;
}

.importance-content h2 em {
    font-style: italic;
    color: var(--color-accent);
}

.importance-content>p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.importance-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.importance-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.importance-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    transition: all 0.3s ease;
}

.importance-item:hover .importance-icon {
    background: var(--color-accent);
    color: #0d0d0d;
    border-color: var(--color-accent);
    transform: scale(1.05);
}

.importance-text h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.importance-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.quote-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.quote-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at top right, rgba(201, 168, 108, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.quote-card .quote-icon {
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.quote-card blockquote {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.quote-attribution span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Consultation Fee Section */
.consultation-fee {
    padding: 3rem 0;
    background: var(--bg-secondary);
}

.fee-box {
    max-width: 600px;
    margin: 0 auto;
    background: transparent;
    border: 2px solid var(--color-accent);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.fee-box:hover {
    border-color: var(--text-primary);
    box-shadow: 0 8px 32px rgba(201, 168, 108, 0.15);
}

.fee-content h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.fee-amount {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 4rem);
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.fee-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========================================
   FIRST-TIME GUIDE PAGE STYLES
======================================== */
.firsttime-reasons {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.reasons-header {
    text-align: center;
    margin-bottom: 3rem;
}

.reasons-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.reasons-header h2 em {
    font-style: italic;
    color: var(--color-accent);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.reason-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.reason-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(201, 168, 108, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.reason-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--color-accent);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15);
}

.reason-card:hover::after {
    opacity: 1;
}

.reason-card:hover .reason-icon {
    transform: scale(1.15);
}

.reason-icon {
    color: var(--color-accent);
    margin-bottom: 1.25rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.reason-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.reason-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.reasons-note {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 1.5rem;
    background: var(--bg-card);
    border-left: 3px solid var(--color-accent);
    border-radius: 0 8px 8px 0;
}

.reasons-note p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
}

/* First-Time Expect Section */
.firsttime-expect {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.expect-timeline-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.expect-phase {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.expect-phase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--color-accent);
    border-radius: 12px 0 0 12px;
    transition: height 0.4s ease;
}

.expect-phase:hover {
    border-color: var(--color-accent);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.expect-phase:hover::before {
    height: 100%;
}

.phase-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    color: var(--color-accent);
}

.phase-header h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--text-primary);
}

.expect-phase ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.expect-phase li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.expect-phase li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

.results-timeline {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
}

.results-timeline h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.timeline-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

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

.timeline-point .days {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-accent);
    display: block;
}

.timeline-point .label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.5rem;
}

.timeline-point p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.timeline-connector {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), rgba(201, 168, 108, 0.3), var(--color-accent));
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.timeline-connector::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: timeline-pulse 2s ease-in-out infinite;
}

@keyframes timeline-pulse {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.timeline-note {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
}

/* First-Time Concerns Section */
.firsttime-concerns {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.concerns-header {
    text-align: center;
    margin-bottom: 3rem;
}

.concerns-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.concerns-header h2 em {
    font-style: italic;
    color: var(--color-accent);
}

.concerns-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.concern-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.25rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.concern-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1;
    color: var(--color-accent);
    opacity: 0.1;
    transition: opacity 0.3s ease;
}

.concern-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.concern-card:hover::before {
    opacity: 0.2;
}

.concern-question {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-accent);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.concern-answer {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* First-Time Maintenance Section */
.firsttime-maintenance {
    padding: 4rem 0;
    background: var(--bg-primary);
}

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

.maintenance-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 1.5rem;
}

.maintenance-content h2 em {
    font-style: italic;
    color: var(--color-accent);
}

.maintenance-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

/* First-Time Why Us Section */
.firsttime-whyus {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.whyus-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
    align-items: center;
}

.whyus-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 1rem;
}

.whyus-content h2 em {
    font-style: italic;
    color: var(--color-accent);
}

.whyus-content>p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.whyus-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.whyus-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.whyus-item svg {
    flex-shrink: 0;
    color: var(--color-accent);
    margin-top: 2px;
}

.whyus-item span {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.whyus-note {
    margin-top: 2rem;
    padding: 1.25rem;
    background: var(--bg-card);
    border-left: 3px solid var(--color-accent);
    border-radius: 0 8px 8px 0;
}

.whyus-note p {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--color-accent);
    margin: 0;
}

.whyus-image img {
    width: 100%;
    border-radius: 8px;
}

/* First-Time Options Section */
.firsttime-options {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.options-header {
    text-align: center;
    margin-bottom: 2rem;
}

.options-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 0.5rem;
}

.options-header h2 em {
    font-style: italic;
    color: var(--color-accent);
}

.options-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.options-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.option-card {
    display: block;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.option-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 168, 108, 0.08) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.option-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--color-accent);
    box-shadow: 0 20px 50px rgba(201, 168, 108, 0.15);
}

.option-card:hover::before {
    opacity: 1;
}

.option-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.option-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-accent);
    transition: gap 0.3s ease;
}

.option-card:hover .card-link {
    gap: 0.75rem;
}

/* ========================================
   PAGE LAYOUTS - RESPONSIVE
======================================== */
@media (max-width: 1024px) {

    .mission-grid,
    .philosophy-grid,
    .service-overview-grid,
    .benefits-grid,
    .approach-grid,
    .expect-grid,
    .importance-grid,
    .whyus-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

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

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

    .service-category {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-category-reverse {
        direction: ltr;
    }

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

    .faq-grid,
    .testimonials-grid,
    .symptoms-grid,
    .wellness-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

    .faq-wrapper,
    .policies-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .faq-sidebar,
    .policies-sidebar {
        position: static;
    }

    .faq-nav,
    .policies-nav {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 40vh;
        padding: 120px 0 60px;
    }

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

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

    .faq-grid,
    .testimonials-grid,
    .symptoms-grid,
    .wellness-grid,
    .concerns-grid,
    .options-cards {
        grid-template-columns: 1fr;
    }

    .process-grid,
    .reasons-grid,
    .expect-timeline-wrapper {
        grid-template-columns: 1fr;
    }

    .timeline-row {
        flex-direction: column;
        gap: 1rem;
    }

    .timeline-connector {
        width: 3px;
        height: 40px;
    }

    .contact-sidebar {
        grid-template-columns: 1fr;
    }

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

    .contact-form {
        padding: 1.5rem;
    }

    .featured-testimonial {
        padding: 2rem;
    }

    .featured-testimonial blockquote {
        font-size: 1.1rem;
    }

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

    .page-cta-actions .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        min-height: 35vh;
    }

    .page-hero-title {
        font-size: 2rem;
    }

    .mission-image-accent {
        display: none;
    }

    .category-image img {
        height: 280px;
    }

    .faq-nav,
    .policies-nav {
        display: none;
    }
}