/* ==========================================================================
   Template: Wellness Haven - Luxury Spa & Wellness
   Version: 3.0.0
   Author: Premium Templates
   Identity: Serene, Natural, Luxurious
   Colors: Sage green + Rose gold + Cream
   ========================================================================== */

/* ==========================================================================
   CSS CUSTOM PROPERTIES
   ========================================================================== */

:root {
    /* Primary - Sage Green (Nature/Calm) */
    --color-primary-50: #f0fdf4;
    --color-primary-100: #dcfce7;
    --color-primary-200: #bbf7d0;
    --color-primary-300: #86efac;
    --color-primary-400: #4ade80;
    --color-primary-500: #84A98C;
    --color-primary-600: #52796F;
    --color-primary-700: #3d5a50;
    --color-primary-800: #2d4338;
    --color-primary-900: #1a2922;

    /* Secondary - Deeper Teal */
    --color-secondary-500: #52796F;
    --color-secondary-600: #3d5a50;
    --color-secondary-700: #2d4338;

    /* Accent - Rose Gold (Luxury) */
    --color-accent-50: #fdf2f4;
    --color-accent-100: #fce7eb;
    --color-accent-200: #f9d0d9;
    --color-accent-300: #E8B4B8;
    --color-accent-400: #e29da4;
    --color-accent-500: #d97883;
    --color-accent-600: #c45567;

    /* Neutral - Warm cream tones */
    --color-neutral-50: #fafaf8;
    --color-neutral-100: #f5f5f0;
    --color-neutral-200: #e8e6e1;
    --color-neutral-300: #d6d3cd;
    --color-neutral-400: #a8a29e;
    --color-neutral-500: #78716c;
    --color-neutral-600: #57534e;
    --color-neutral-700: #44403c;
    --color-neutral-800: #292524;
    --color-neutral-900: #1c1917;

    /* Semantic Colors */
    --color-success: #22c55e;
    --color-warning: #eab308;
    --color-error: #ef4444;
    --color-info: #3b82f6;

    /* Light Mode (Default) */
    --color-background: #f5f5f0;
    --color-surface: #ffffff;
    --color-surface-elevated: #ffffff;
    --color-text-primary: #2F3E46;
    --color-text-secondary: #52796F;
    --color-text-tertiary: #78716c;
    --color-border: #CAD2C5;
    --color-border-light: #e8e6e1;

    /* Typography Scale */
    --text-hero: clamp(3rem, 8vw, 5rem);
    --text-display: clamp(2.5rem, 5vw, 4rem);
    --text-h1: clamp(2rem, 4vw, 3rem);
    --text-h2: clamp(1.5rem, 3vw, 2.25rem);
    --text-h3: clamp(1.25rem, 2vw, 1.5rem);
    --text-body: 1rem;
    --text-small: 0.875rem;
    --text-xs: 0.75rem;

    /* Typography */
    --font-sans: 'Poppins', system-ui, -apple-system, sans-serif;
    --font-serif: 'Crimson Text', Georgia, serif;
    --font-display: 'Playfair Display', Georgia, serif;

    /* Spacing Scale (8px base) */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;

    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --radius-2xl: 3rem;
    --radius-full: 9999px;

    /* Shadows - Light Mode */
    --shadow-sm: 0 1px 2px rgba(47, 62, 70, 0.06);
    --shadow-md: 0 4px 6px rgba(47, 62, 70, 0.08);
    --shadow-lg: 0 10px 25px rgba(47, 62, 70, 0.1);
    --shadow-xl: 0 20px 50px rgba(47, 62, 70, 0.12);
    --shadow-2xl: 0 25px 60px rgba(47, 62, 70, 0.15);
    --shadow-inner: inset 0 2px 4px rgba(47, 62, 70, 0.05);

    /* Glow Effects */
    --glow-primary: 0 0 40px rgba(132, 169, 140, 0.25);
    --glow-accent: 0 0 40px rgba(232, 180, 184, 0.25);
    --glow-soft: 0 0 60px rgba(202, 210, 197, 0.3);

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

/* ==========================================================================
   DARK MODE
   ========================================================================== */

.dark {
    --color-background: #0f1412;
    --color-surface: #1a2420;
    --color-surface-elevated: #243029;
    --color-text-primary: #f5f5f0;
    --color-text-secondary: #CAD2C5;
    --color-text-tertiary: #78716c;
    --color-border: #2d4338;
    --color-border-light: #1a2922;

    /* Shadows - Dark Mode */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.5);
    --shadow-2xl: 0 25px 60px rgba(0, 0, 0, 0.6);

    /* Enhanced Glow for Dark Mode */
    --glow-primary: 0 0 60px rgba(132, 169, 140, 0.3);
    --glow-accent: 0 0 60px rgba(232, 180, 184, 0.2);
}

/* --------------------------------------------------------------------------
   Base Styles
   -------------------------------------------------------------------------- */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background: var(--color-background);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --------------------------------------------------------------------------
   Utility Classes
   -------------------------------------------------------------------------- */

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

.sr-only.focus\:not-sr-only:focus {
    position: static;
    width: auto;
    height: auto;
    padding: inherit;
    margin: inherit;
    overflow: visible;
    clip: auto;
    white-space: normal;
}

/* Backdrop blur for nav */
.nav-blur {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(245, 245, 240, 0.95);
}

/* Organic shapes */
.organic-shape {
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
}

.organic-shape-2 {
    border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
}

.organic-shape-3 {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

/* Gradient backgrounds */
.gradient-sage {
    background: linear-gradient(135deg, #84A98C 0%, #52796F 100%);
}

.gradient-soft {
    background: linear-gradient(135deg, #CAD2C5 0%, #E8B4B8 100%);
}

.gradient-peaceful {
    background: linear-gradient(180deg, rgba(245, 245, 240, 0) 0%, rgba(132, 169, 140, 0.1) 100%);
}

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

    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-scale {
        opacity: 1;
        transform: none;
    }
}

/* --------------------------------------------------------------------------
   Focus States (Accessibility)
   -------------------------------------------------------------------------- */

/* Visible focus for keyboard users only */
:focus {
    outline: none;
}

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

/* Enhanced focus for interactive elements */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

/* Skip link styling */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    z-index: 9999;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: 1rem;
}

/* --------------------------------------------------------------------------
   Touch Targets (Mobile Accessibility)
   -------------------------------------------------------------------------- */

/* Minimum 44x44px touch targets */
button,
a,
input[type="checkbox"],
input[type="radio"],
select {
    min-height: 44px;
    min-width: 44px;
}

/* Inline links exception */
p a,
li a,
span a {
    min-height: auto;
    min-width: auto;
}

/* --------------------------------------------------------------------------
   Animation Classes
   -------------------------------------------------------------------------- */

/* Reveal on scroll */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--transition-bounce);
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s var(--transition-bounce);
}

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

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s var(--transition-bounce);
}

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

.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.8s var(--transition-bounce);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* Floating animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.float {
    animation: float 6s ease-in-out infinite;
}

/* Gentle pulse */
@keyframes gentle-pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.6; }
}

.gentle-pulse {
    animation: gentle-pulse 4s ease-in-out infinite;
}

/* --------------------------------------------------------------------------
   Component Styles
   -------------------------------------------------------------------------- */

/* Navigation */
nav {
    transition: all var(--transition-base);
}

nav.scrolled {
    background: rgba(245, 245, 240, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
}

/* Cards */
.card {
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.card-soft {
    background: var(--color-surface);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-decoration: none;
}

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

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

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

.btn-secondary:hover {
    background: var(--color-primary);
    color: white;
}

.btn-soft {
    background: var(--color-accent);
    color: var(--color-text);
}

.btn-soft:hover {
    background: var(--color-primary);
    color: white;
}

/* Form inputs */
.form-input {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: var(--color-surface);
    color: var(--color-text);
    transition: border-color var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-input::placeholder {
    color: var(--color-text-muted);
}

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

/* Service icons */
.service-icon {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(132, 169, 140, 0.1) 0%, rgba(202, 210, 197, 0.1) 100%);
    color: var(--color-primary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

/* Section divider */
.section-divider {
    width: 60px;
    height: 4px;
    background: var(--color-primary);
    margin: 0 auto 2rem;
    border-radius: var(--radius-full);
}

/* --------------------------------------------------------------------------
   Custom Scrollbar
   -------------------------------------------------------------------------- */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-accent);
}

::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-secondary);
}

/* --------------------------------------------------------------------------
   Responsive Typography
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    :root {
        font-size: 14px;
    }
}

/* --------------------------------------------------------------------------
   Mobile Navigation
   -------------------------------------------------------------------------- */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: var(--color-surface);
    border-left: 1px solid var(--color-border);
    transition: right var(--transition-base);
    z-index: 1000;
    padding: 2rem;
    overflow-y: auto;
}

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

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(47, 62, 70, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 999;
}

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

/* --------------------------------------------------------------------------
   Testimonial Styles
   -------------------------------------------------------------------------- */
.testimonial {
    position: relative;
    padding: 2.5rem;
    background: var(--color-surface);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    font-size: 5rem;
    color: var(--color-accent);
    font-family: var(--font-serif);
    line-height: 1;
    opacity: 0.5;
}

/* --------------------------------------------------------------------------
   Decorative Elements
   -------------------------------------------------------------------------- */
.decorative-blob {
    position: absolute;
    border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
    opacity: 0.1;
    z-index: -1;
}

.decorative-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    z-index: -1;
}

/* --------------------------------------------------------------------------
   Hero Section Specific
   -------------------------------------------------------------------------- */
.hero-pattern {
    background-image:
        radial-gradient(circle at 20% 50%, rgba(132, 169, 140, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(232, 180, 184, 0.05) 0%, transparent 50%);
}

.dark .hero-pattern {
    background-image:
        radial-gradient(circle at 20% 50%, rgba(132, 169, 140, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(232, 180, 184, 0.08) 0%, transparent 50%);
}

/* ==========================================================================
   UNIQUE: SPA & WELLNESS COMPONENTS
   ========================================================================== */

/* Treatment Menu Card */
.treatment-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    transition: all var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.treatment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary-500), var(--color-accent-300));
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

.treatment-card:hover::before {
    opacity: 1;
}

.dark .treatment-card {
    background: var(--color-surface);
    border-color: var(--color-border);
}

/* Duration & Price Badge */
.treatment-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4);
    background: var(--color-neutral-100);
    border-radius: var(--radius-lg);
    margin-top: var(--space-6);
}

.dark .treatment-meta {
    background: var(--color-surface-elevated);
}

.treatment-duration {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--color-text-secondary);
    font-size: var(--text-small);
}

.treatment-price {
    font-size: var(--text-h3);
    font-weight: 700;
    color: var(--color-primary-600);
}

.dark .treatment-price {
    color: var(--color-primary-500);
}

/* Lotus Icon Decoration */
.lotus-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-primary-100), var(--color-accent-100));
    border-radius: 50%;
    color: var(--color-primary-600);
    font-size: 1.5rem;
}

.dark .lotus-icon {
    background: linear-gradient(135deg, var(--color-primary-900), var(--color-accent-600));
    color: var(--color-primary-300);
}

/* Wellness Package Card */
.package-card {
    background: var(--color-surface);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-bounce);
}

.package-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-2xl);
}

.package-card.featured {
    border: 2px solid var(--color-accent-300);
    box-shadow: var(--glow-accent);
}

.package-header {
    padding: var(--space-8);
    background: linear-gradient(135deg, var(--color-primary-500), var(--color-secondary-500));
    color: white;
    text-align: center;
}

.package-price {
    font-size: var(--text-display);
    font-weight: 800;
    font-family: var(--font-display);
}

.package-price span {
    font-size: var(--text-small);
    opacity: 0.8;
    font-weight: 400;
}

.package-features {
    padding: var(--space-8);
}

.package-feature {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--color-border-light);
}

.package-feature:last-child {
    border-bottom: none;
}

.package-feature svg {
    color: var(--color-primary-500);
    flex-shrink: 0;
}

.dark .package-card {
    background: var(--color-surface);
}

.dark .package-feature {
    border-color: var(--color-border);
}

/* Booking Time Slots */
.time-slot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3) var(--space-6);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    font-size: var(--text-small);
    font-weight: 500;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.time-slot:hover {
    border-color: var(--color-primary-500);
    color: var(--color-primary-600);
}

.time-slot.selected {
    background: var(--color-primary-500);
    border-color: var(--color-primary-500);
    color: white;
}

.time-slot.unavailable {
    opacity: 0.4;
    cursor: not-allowed;
}

.dark .time-slot {
    border-color: var(--color-border);
    color: var(--color-text-secondary);
}

.dark .time-slot:hover {
    border-color: var(--color-primary-400);
    color: var(--color-primary-400);
}

.dark .time-slot.selected {
    background: var(--color-primary-600);
    border-color: var(--color-primary-600);
}

/* Aromatherapy Scent Cards */
.scent-card {
    text-align: center;
    padding: var(--space-8);
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    transition: all var(--transition-bounce);
}

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

.scent-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.scent-lavender .scent-icon {
    background: linear-gradient(135deg, #c4b5fd, #a78bfa);
}

.scent-eucalyptus .scent-icon {
    background: linear-gradient(135deg, #86efac, #4ade80);
}

.scent-citrus .scent-icon {
    background: linear-gradient(135deg, #fcd34d, #fbbf24);
}

.scent-rose .scent-icon {
    background: linear-gradient(135deg, #fda4af, #fb7185);
}

.dark .scent-card {
    background: var(--color-surface);
}

/* Zen Quote Block */
.zen-quote {
    position: relative;
    padding: var(--space-12) var(--space-8);
    background: linear-gradient(135deg, var(--color-primary-50), var(--color-accent-50));
    border-radius: var(--radius-2xl);
    text-align: center;
}

.zen-quote::before,
.zen-quote::after {
    content: '"';
    position: absolute;
    font-size: 6rem;
    font-family: var(--font-serif);
    color: var(--color-primary-200);
    line-height: 1;
}

.zen-quote::before {
    top: var(--space-4);
    left: var(--space-6);
}

.zen-quote::after {
    bottom: 0;
    right: var(--space-6);
    transform: rotate(180deg);
}

.zen-quote p {
    font-family: var(--font-serif);
    font-size: var(--text-h2);
    font-style: italic;
    color: var(--color-text-primary);
    line-height: 1.6;
}

.zen-quote cite {
    display: block;
    margin-top: var(--space-6);
    font-size: var(--text-small);
    color: var(--color-text-secondary);
    font-style: normal;
}

.dark .zen-quote {
    background: linear-gradient(135deg, var(--color-primary-900), var(--color-surface-elevated));
}

.dark .zen-quote::before,
.dark .zen-quote::after {
    color: var(--color-primary-800);
}

/* Breathing Exercise Widget */
.breathing-circle {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary-400), var(--color-accent-300));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.breathing-circle::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px dashed var(--color-primary-300);
    animation: breathe-rotate 20s linear infinite;
}

.breathing-circle-inner {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: var(--text-h3);
    color: var(--color-primary-600);
}

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

@keyframes breathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.animate-breathe {
    animation: breathe 8s ease-in-out infinite;
}

.dark .breathing-circle-inner {
    background: var(--color-background);
    color: var(--color-primary-400);
}

/* Staff/Therapist Cards */
.therapist-card {
    text-align: center;
    padding: var(--space-8);
    background: var(--color-surface);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--color-border);
    transition: all var(--transition-bounce);
}

.therapist-card:hover {
    border-color: var(--color-primary-400);
    box-shadow: var(--glow-primary);
}

.therapist-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--space-6);
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--color-primary-200);
}

.therapist-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.therapist-specialty {
    display: inline-flex;
    padding: var(--space-1) var(--space-4);
    background: var(--color-primary-100);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    color: var(--color-primary-700);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dark .therapist-card {
    background: var(--color-surface);
    border-color: var(--color-border);
}

.dark .therapist-avatar {
    border-color: var(--color-primary-700);
}

.dark .therapist-specialty {
    background: var(--color-primary-900);
    color: var(--color-primary-300);
}

/* Nature Gradient Text */
.text-gradient-nature {
    background: linear-gradient(
        135deg,
        var(--color-primary-500) 0%,
        var(--color-secondary-500) 50%,
        var(--color-accent-400) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================================================
   DARK MODE SCROLLBAR
   ========================================================================== */

.dark ::-webkit-scrollbar-track {
    background: var(--color-background);
}

.dark ::-webkit-scrollbar-thumb {
    background: var(--color-primary-700);
}

.dark ::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary-600);
}

/* ==========================================================================
   SELECTION & PRINT STYLES
   ========================================================================== */

::selection {
    background: var(--color-primary-200);
    color: var(--color-primary-900);
}

.dark ::selection {
    background: var(--color-primary-800);
    color: var(--color-primary-100);
}

@media print {
    nav,
    footer,
    .no-print {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }
}

/* ==========================================================================
   PERFORMANCE OPTIMIZATIONS
   ========================================================================== */

section {
    content-visibility: auto;
    contain-intrinsic-size: 0 500px;
}

.animate-breathe,
.float,
.gentle-pulse {
    transform: translateZ(0);
    will-change: transform;
}
