/* ==========================================================================
   DESIGN SYSTEM & VARIABLES (LUXURY DARK WELLNESS EDITION)
   ========================================================================== */
:root {
    /* Color Palette */
    --clr-bg-deep: #DFF0E9;        /* Soft Mint */
    --clr-bg-base: #D2E9E1;        /* Medium Sage */
    --clr-bg-card: #EEF8F4;        /* Off-white Cards */
    --clr-primary-light: #B8DDD2;  /* Teal Accent */
    --clr-secondary: #0A9E6B;      /* Rich Emerald */
    --clr-secondary-glow: rgba(10, 158, 107, 0.18);
    --clr-accent: #D97706;         /* Deep Amber Gold */
    --clr-accent-glow: rgba(217, 119, 6, 0.22);
    --clr-text-light: #0D2620;     /* Near-black Forest */
    --clr-text-muted: #4A6B62;     /* Muted Teal-grey */
    --clr-text-dark: #F4FAF8;
    
    /* Borders & Glass */
    --glass-border: 1px solid rgba(0, 0, 0, 0.07);
    --glass-border-hover: 1px solid rgba(10, 158, 107, 0.35);
    --glass-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    --glass-shadow-glow: 0 20px 45px rgba(10, 158, 107, 0.14);
    
    /* Typography */
    --font-heading: 'Poppins', system-ui, sans-serif;
    --font-body: 'Poppins', system-ui, sans-serif;
    
    /* Spacing & Borders */
    --container-width: 1200px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    
    /* Transitions */
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--clr-bg-deep);
    color: var(--clr-text-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Ambient Glowing Orbs */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.22;
    mix-blend-mode: screen;
}

.orb-1 {
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--clr-secondary) 0%, transparent 80%);
    animation: floatGlow 15s infinite alternate ease-in-out;
}

.orb-2 {
    top: 40%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--clr-accent) 0%, transparent 80%);
    animation: floatGlow 20s infinite alternate-reverse ease-in-out;
}

.orb-3 {
    bottom: 5%;
    left: 15%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, #06B6D4 0%, transparent 80%);
    animation: floatGlow 18s infinite alternate ease-in-out 2s;
}

/* ==========================================================================
   BUTTONS & BADGES
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.95rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--clr-secondary);
    color: var(--clr-bg-deep);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--clr-secondary-glow);
}

.btn-accent {
    background-color: var(--clr-accent);
    color: var(--clr-bg-deep);
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--clr-accent-glow);
}

.btn-outline {
    background-color: transparent;
    color: var(--clr-text-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--clr-text-light);
    transform: translateY(-3px);
}

.btn-sm {
    padding: 0.65rem 1.4rem;
    font-size: 0.85rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background-color: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--clr-secondary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    margin-bottom: 2rem;
}

.badge i {
    animation: rotateArt 4s linear infinite;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
.section-header {
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.sub-title {
    color: var(--clr-secondary);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--clr-text-light);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.section-title span {
    background: linear-gradient(135deg, var(--clr-secondary) 10%, var(--clr-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-secondary) 0%, var(--clr-accent) 100%);
    margin: 1.2rem auto 1.8rem;
    border-radius: 10px;
}

.section-header:not(.text-center) .title-line {
    margin-left: 0;
}

.section-desc {
    color: var(--clr-text-muted);
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.05rem;
}

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

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS (JS Triggered)
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(223, 240, 233, 0.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
    padding: 1.5rem 0;
}

.main-header.scrolled {
    padding: 1rem 0;
    background-color: rgba(223, 240, 233, 0.97);
    border-bottom: 1px solid rgba(10, 158, 107, 0.2);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--clr-text-light);
    letter-spacing: -1px;
}

.logo-accent {
    color: var(--clr-secondary);
}

.main-nav ul {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--clr-text-muted);
    position: relative;
    padding: 0.3rem 0;
    transition: var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--clr-secondary), var(--clr-accent));
    transition: var(--transition-smooth);
    border-radius: 10px;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--clr-text-light);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle .bar {
    width: 25px;
    height: 2px;
    background-color: var(--clr-text-light);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* ==========================================================================
   HERO SECTION & STATS CARDS
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 12rem 0 6rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: transparent;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
    margin-bottom: 6rem;
}

.hero-content {
    max-width: 660px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.4rem;
    line-height: 1.15;
    color: var(--clr-text-light);
    margin-bottom: 1.8rem;
    font-weight: 900;
    letter-spacing: -1.5px;
}

.hero-title span {
    background: linear-gradient(135deg, var(--clr-secondary) 10%, var(--clr-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--clr-text-muted);
    margin-bottom: 3rem;
    line-height: 1.7;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Hero Visual Graphic */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 440px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.premium-geometric-art {
    width: 340px;
    height: 340px;
    position: relative;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 75%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.art-circle {
    width: 250px;
    height: 250px;
    border: 2px solid rgba(0, 0, 0, 0.07);
    border-radius: 50%;
    position: absolute;
    animation: rotateArt 25s linear infinite;
}

.art-wave {
    width: 300px;
    height: 300px;
    border: 1px dashed rgba(16, 185, 129, 0.2);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    position: absolute;
    animation: waveMotion 12s infinite linear;
}

.art-wave-2 {
    width: 200px;
    height: 200px;
    border: 1.5px solid rgba(245, 158, 11, 0.15);
    border-radius: 60% 40% 30% 70% / 50% 60% 40% 60%;
    position: absolute;
    animation: waveMotion 18s infinite linear reverse;
}

.floating-card {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.1rem 1.4rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--glass-shadow);
    display: flex;
    align-items: center;
    gap: 1.1rem;
    border: var(--glass-border);
    border-left: 4px solid var(--clr-secondary);
    transition: var(--transition-bounce);
    z-index: 3;
}

.floating-card:hover {
    transform: scale(1.05) translateY(-5px);
    border-color: rgba(16, 185, 129, 0.2);
}

.floating-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--clr-text-light);
}

.floating-card p {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
}

.card-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(16, 185, 129, 0.12);
    color: var(--clr-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.info-card-1 {
    top: 10%;
    left: -5%;
    animation: floatCard 6s infinite alternate ease-in-out;
}

.info-card-2 {
    bottom: 10%;
    right: -5%;
    border-left-color: var(--clr-accent);
    animation: floatCard 8s infinite alternate ease-in-out 1s;
}

/* REDESIGNED: Individual Floating Stats Cards */
.hero-stats-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
}

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

.stat-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(234, 244, 240, 0.7) 100%);
    border: var(--glass-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 2rem 1.8rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--glass-shadow);
    display: flex;
    align-items: center;
    gap: 1.4rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.08) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.stat-card:nth-child(even)::before {
    background: radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.08) 0%, transparent 60%);
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.12);
}

.stat-card:nth-child(even):hover {
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.12);
}

.stat-card:hover::before {
    opacity: 1.8;
}

.stat-icon-box {
    width: 54px;
    height: 54px;
    background-color: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.12);
    color: var(--clr-secondary);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.stat-card:nth-child(even) .stat-icon-box {
    color: var(--clr-accent);
    background-color: rgba(245, 158, 11, 0.05);
    border-color: rgba(245, 158, 11, 0.12);
}

.stat-card:hover .stat-icon-box {
    background-color: var(--clr-secondary);
    color: var(--clr-bg-deep);
    border-color: var(--clr-secondary);
    box-shadow: 0 0 15px var(--clr-secondary-glow);
    transform: rotate(10deg) scale(1.05);
}

.stat-card:nth-child(even):hover .stat-icon-box {
    background-color: var(--clr-accent);
    color: var(--clr-bg-deep);
    border-color: var(--clr-accent);
    box-shadow: 0 0 15px var(--clr-accent-glow);
    transform: rotate(-10deg) scale(1.05);
}

.stat-data {
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--clr-text-light);
    line-height: 1.1;
    letter-spacing: -1px;
    z-index: 1;
    background: linear-gradient(135deg, var(--clr-text-light) 30%, var(--clr-text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.5s ease;
}

.stat-card:hover .stat-number {
    background: linear-gradient(135deg, var(--clr-text-light) 0%, var(--clr-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-card:nth-child(even):hover .stat-number {
    background: linear-gradient(135deg, var(--clr-text-light) 0%, var(--clr-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-number::after {
    content: '+';
}

.stat-card:nth-child(3) .stat-number::after {
    content: '%';
}

.stat-label {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
    font-weight: 500;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
    padding: 9rem 0;
    background-color: var(--clr-bg-base);
    position: relative;
}

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

.service-card {
    background-color: var(--clr-bg-card);
    border-radius: var(--border-radius-md);
    padding: 3rem;
    box-shadow: var(--glass-shadow);
    transition: var(--transition-smooth);
    border: var(--glass-border);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.card-bg-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(210, 237, 228, 0.6) 0%, rgba(234, 244, 240, 0.8) 100%);
    z-index: -1;
    transform: translateY(100%);
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: var(--glass-shadow-glow);
}

.service-card:hover .card-bg-hover {
    transform: translateY(0);
}

.service-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.15);
    color: var(--clr-secondary);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 2.2rem;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background-color: var(--clr-secondary);
    color: var(--clr-bg-deep);
    border-color: var(--clr-secondary);
    transform: scale(1.05) rotate(5deg);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--clr-text-light);
    margin-bottom: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.service-card p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.65;
    font-weight: 300;
}

.service-card:hover p {
    color: var(--clr-text-muted);
}

.service-features {
    margin-bottom: 2.2rem;
}

.service-features li {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--clr-text-muted);
    font-weight: 500;
    transition: var(--transition-smooth);
}

.service-card:hover .service-features li {
    color: var(--clr-text-muted);
}

.service-features li i {
    color: var(--clr-secondary);
    font-size: 0.9rem;
}

.service-card:hover .service-features li i {
    color: var(--clr-accent);
}

.service-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--clr-secondary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
}

.service-card:hover .service-link {
    color: var(--clr-accent);
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(6px);
}

/* ==========================================================================
   INTERACTIVE SYMPTOM MAP SECTION (SMOOTH TRANSITIONS)
   ========================================================================== */
.symptom-section {
    padding: 9rem 0;
    background-color: var(--clr-bg-deep);
}

.symptom-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: center;
    background-color: var(--clr-bg-card);
    border: var(--glass-border);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--glass-shadow);
    padding: 4.5rem;
}

/* Left Column: Interactive Map */
.symptom-map-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.interactive-body {
    width: 100%;
    max-width: 280px;
    position: relative;
}

.body-image-wrapper {
    position: relative;
    width: 100%;
}

.body-anatomy-img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 12px 30px rgba(10, 158, 107, 0.18));
}


.body-silhouette {
    fill: var(--clr-primary-light);
    stroke: rgba(10, 158, 107, 0.3);
    stroke-width: 1.5px;
    transition: var(--transition-smooth);
}

.body-head {
    fill: var(--clr-primary-light);
    stroke: rgba(10, 158, 107, 0.3);
    stroke-width: 1.5px;
}

.body-arm {
    fill: var(--clr-primary-light);
    stroke: rgba(10, 158, 107, 0.2);
    stroke-width: 1px;
    opacity: 0.9;
}

.body-spine {
    stroke: var(--clr-secondary);
    stroke-width: 1px;
    stroke-dasharray: 4 5;
    opacity: 0.3;
}

.body-detail-line {
    fill: none;
    stroke: var(--clr-secondary);
    stroke-width: 1px;
    opacity: 0.22;
}

.body-joint {
    fill: rgba(10, 158, 107, 0.1);
    stroke: var(--clr-secondary);
    stroke-width: 1px;
    opacity: 0.55;
}

.hud-line {
    stroke: var(--clr-secondary);
    stroke-width: 0.8px;
    stroke-dasharray: 3 3;
    opacity: 0.45;
}

.hud-dot {
    fill: var(--clr-secondary);
    opacity: 0.65;
}

.hud-text {
    fill: var(--clr-text-muted);
    font-family: var(--font-body);
    font-size: 3px;
    font-weight: 700;
    letter-spacing: 0.4px;
}

.hotspot {
    position: absolute;
    transform: translate(-50%, -50%);
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.hotspot-outer {
    position: absolute;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--clr-secondary);
    background: rgba(10, 158, 107, 0.1);
    animation: ripple 3s infinite ease-out;
    pointer-events: none;
}

.hotspot-inner {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--clr-secondary);
    border: 2.5px solid white;
    box-shadow: 0 0 10px rgba(10, 158, 107, 0.45);
    transition: var(--transition-bounce);
    position: relative;
    z-index: 2;
    pointer-events: none;
}

.hs-label {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--clr-secondary);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.92);
    padding: 3px 8px;
    border-radius: 20px;
    border: 1px solid rgba(10, 158, 107, 0.28);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.hs-label-right { left: calc(100% + 8px); }
.hs-label-left  { right: calc(100% + 8px); }

.hotspot:hover .hs-label,
.hotspot.active .hs-label {
    opacity: 1;
}

@keyframes ripple {
    0%   { transform: scale(0.7); opacity: 0.8; }
    70%  { transform: scale(1.7); opacity: 0.15; }
    100% { transform: scale(1.9); opacity: 0; }
}

.hotspot:hover .hotspot-inner,
.hotspot.active .hotspot-inner {
    background: var(--clr-accent);
    transform: scale(1.35);
    box-shadow: 0 0 14px rgba(217, 119, 6, 0.5);
}

.hotspot:hover .hotspot-outer,
.hotspot.active .hotspot-outer {
    border-color: var(--clr-accent);
    background: rgba(217, 119, 6, 0.1);
    animation-duration: 1.2s;
}

.symptom-mobile-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 2rem;
    width: 100%;
}

.zone-btn {
    background: rgba(255, 255, 255, 0.75);
    color: var(--clr-text-muted);
    border: 1px solid rgba(10, 158, 107, 0.14);
    border-left: 3px solid rgba(10, 158, 107, 0.25);
    border-radius: var(--border-radius-sm);
    padding: 0.75rem 0.9rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.zone-btn i {
    font-size: 0.95rem;
    color: var(--clr-secondary);
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.zone-btn span {
    line-height: 1.3;
}

.zone-btn:hover {
    border-left-color: var(--clr-secondary);
    border-color: rgba(10, 158, 107, 0.3);
    color: var(--clr-text-light);
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(10, 158, 107, 0.12);
}

.zone-btn:hover i {
    transform: scale(1.15);
}

.zone-btn.active {
    background: var(--clr-secondary);
    color: var(--clr-bg-deep);
    border-color: var(--clr-secondary);
    border-left-color: var(--clr-secondary);
    font-weight: 700;
    box-shadow: 0 6px 20px var(--clr-secondary-glow);
    transform: translateY(-2px);
}

.zone-btn.active i {
    color: var(--clr-bg-deep);
    transform: scale(1.1);
}

/* Right Column: Dynamic Info Card (Highly Smoothed swaps) */
.symptom-info-card {
    background-color: rgba(255, 255, 255, 0.85);
    border: var(--glass-border);
    border-radius: var(--border-radius-md);
    padding: 3.5rem;
    border-left: 5px solid var(--clr-secondary);
    min-height: 440px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.symptom-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.info-content-panel {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.info-content-panel.active {
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: translateY(0);
}

.info-icon {
    font-size: 2.8rem;
    color: var(--clr-secondary);
    margin-bottom: 1.8rem;
    text-shadow: 0 0 15px var(--clr-secondary-glow);
}

.symptom-info-card h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--clr-text-light);
    margin-bottom: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.symptom-info-card .description {
    color: var(--clr-text-muted);
    font-size: 1.05rem;
    margin-bottom: 2.2rem;
    line-height: 1.7;
    font-weight: 300;
}

.info-meta {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.meta-item {
    font-size: 0.95rem;
}

.meta-item strong {
    color: var(--clr-text-light);
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.meta-item span {
    color: var(--clr-text-muted);
    font-weight: 300;
    line-height: 1.6;
}

/* ==========================================================================
   CLINIC EXPERIENCE SECTION
   ========================================================================== */
.experience-section {
    padding: 9rem 0;
    background-color: var(--clr-bg-base);
}

.experience-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.experience-content p {
    color: var(--clr-text-muted);
    margin-bottom: 1.8rem;
    font-size: 1.05rem;
    font-weight: 300;
}

.experience-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    margin-top: 3rem;
}

.ex-highlight {
    display: flex;
    gap: 1.4rem;
    align-items: flex-start;
}

.ex-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.15);
    color: var(--clr-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.ex-highlight h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--clr-text-light);
    margin-bottom: 0.3rem;
}

.ex-highlight p {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    margin-bottom: 0;
}

/* Image styling */
.experience-visual {
    display: flex;
    justify-content: center;
}

.experience-img-frame {
    position: relative;
    border-radius: var(--border-radius-lg);
    border: var(--glass-border);
    padding: 0.8rem;
    background-color: rgba(0, 0, 0, 0.03);
}

.experience-image {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--glass-shadow);
    object-fit: cover;
    width: 100%;
    max-width: 480px;
    height: 520px;
    transition: var(--transition-smooth);
}

.experience-badge {
    position: absolute;
    bottom: -5%;
    left: -8%;
    background-color: var(--clr-accent);
    color: var(--clr-bg-deep);
    padding: 1.5rem 1.8rem;
    border-radius: var(--border-radius-md);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.25);
    text-align: center;
    min-width: 160px;
    animation: floatCard 6s infinite alternate ease-in-out 0.5s;
}

/* ==========================================================================
   ABOUT THERAPIST SECTION
   ========================================================================== */
.therapist-section {
    padding: 9rem 0;
    background-color: var(--clr-bg-deep);
}

.therapist-container {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 6rem;
    align-items: center;
}

.therapist-visual {
    display: flex;
    justify-content: center;
}

.therapist-avatar-frame {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 480px;
    border-radius: var(--border-radius-lg);
    background: linear-gradient(135deg, var(--clr-bg-card) 0%, rgba(210, 237, 228, 0.5) 100%);
    border: var(--glass-border);
    box-shadow: var(--glass-shadow);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

.avatar-svg-placeholder {
    font-size: 8rem;
    color: rgba(16, 185, 129, 0.05);
    animation: breatheArt 6s infinite alternate ease-in-out;
}

.therapist-info-badge {
    position: absolute;
    bottom: 5%;
    left: 5%;
    right: 5%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    border: var(--glass-border);
    box-shadow: var(--glass-shadow);
    text-align: center;
    border-bottom: 4px solid var(--clr-accent);
}

.therapist-info-badge h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--clr-text-light);
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.therapist-info-badge p {
    font-size: 0.85rem;
    color: var(--clr-secondary);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.therapist-content .lead {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-style: italic;
    color: var(--clr-text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 300;
}

.therapist-content p:not(.lead) {
    color: var(--clr-text-muted);
    margin-bottom: 1.8rem;
    font-size: 1.05rem;
    font-weight: 300;
}

.credentials {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 2.5rem;
}

.cred-item {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    padding: 1rem 1.4rem;
    background-color: var(--clr-bg-card);
    border: var(--glass-border);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--glass-shadow);
    transition: var(--transition-smooth);
}

.cred-item:hover {
    border-color: rgba(16, 185, 129, 0.2);
    transform: translateX(5px);
}

.cred-year {
    font-weight: 800;
    color: var(--clr-secondary);
    font-size: 1.1rem;
    min-width: 60px;
}

.cred-name {
    color: var(--clr-text-light);
    font-weight: 500;
    font-size: 0.95rem;
}

/* ==========================================================================
   REDESIGNED: TESTIMONIALS SECTION (ASYMMETRIC SPLIT LAYOUT)
   ========================================================================== */
.testimonials-section {
    position: relative;
    padding: 10rem 0;
    background-color: var(--clr-bg-base);
    color: var(--clr-text-light);
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.testimonials-container {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 6rem;
    align-items: center;
}

.testimonials-left-col {
    position: relative;
}

.testimonials-intro {
    color: var(--clr-text-muted);
    font-size: 1.05rem;
    margin-top: 1.5rem;
    font-weight: 300;
    line-height: 1.7;
}

/* Giant glowing gold quote mark on the left side of the split layout */
.testimonials-quote-mark {
    font-size: 12rem;
    color: var(--clr-accent);
    opacity: 0.04;
    position: absolute;
    bottom: -100px;
    left: -20px;
    line-height: 1;
    pointer-events: none;
    filter: drop-shadow(0 0 15px var(--clr-accent-glow));
}

.testimonials-right-col {
    position: relative;
}

.testimonials-slider-wrapper {
    background: #ffffff;
    border: var(--glass-border);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.07);
    padding: 3rem 3rem 2.5rem;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

/* Decorative quote mark watermark */
.testimonials-slider-wrapper::before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 14rem;
    color: var(--clr-secondary);
    opacity: 0.04;
    position: absolute;
    top: -2rem;
    right: 1.5rem;
    line-height: 1;
    pointer-events: none;
}

.testimonial-slider {
    position: relative;
    min-height: 240px;
    display: flex;
    align-items: flex-start;
}

.testimonial-slide {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0.45s;
    width: 100%;
}

.testimonial-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Stars row */
.testimonial-rating {
    display: flex;
    gap: 3px;
    margin-bottom: 1.2rem;
}

.testimonial-rating i {
    color: var(--clr-accent);
    font-size: 0.85rem;
    text-shadow: 0 0 8px rgba(217, 119, 6, 0.3);
}

/* Quote text */
.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--clr-text-light);
    font-weight: 400;
    margin-bottom: 2rem;
    padding-left: 1rem;
    border-left: 3px solid var(--clr-secondary);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
}

/* Gradient accent bar — a rectangle, never distorted */
.testimonial-author::before {
    content: '';
    display: block;
    width: 4px;
    height: 38px;
    border-radius: 4px;
    flex-shrink: 0;
    background: linear-gradient(to bottom, var(--clr-secondary), #06B6D4);
}

.testimonial-slide:nth-child(even) .testimonial-author::before {
    background: linear-gradient(to bottom, var(--clr-accent), #F59E0B);
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-text-light);
    line-height: 1.3;
}

.author-info p {
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    margin-top: 0.2rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Slider controls */
.slider-controls {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.slider-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: transparent;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    color: var(--clr-text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.slider-btn:hover {
    background-color: var(--clr-secondary);
    border-color: var(--clr-secondary);
    color: #ffffff;
    box-shadow: 0 4px 14px var(--clr-secondary-glow);
    transform: scale(1.05);
}

/* Active dot becomes a pill */
.slider-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-right: auto;
}

.slider-dots .dot {
    width: 7px;
    height: 7px;
    border-radius: 50px;
    background-color: rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.slider-dots .dot.active {
    background-color: var(--clr-secondary);
    width: 22px;
    box-shadow: 0 0 8px var(--clr-secondary-glow);
}

/* ==========================================================================
   REDESIGNED: CONTACT & BOOKING SECTION
   ========================================================================== */
.contact-section {
    padding: 9rem 0;
    background-color: var(--clr-bg-deep);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 6rem;
    align-items: start;
}

.contact-intro {
    color: var(--clr-text-muted);
    font-size: 1.05rem;
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Redesigned: App-style Grid of Micro-cards */
.contact-micro-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(234, 244, 240, 0.7) 100%);
    border: var(--glass-border);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: var(--glass-shadow);
    transition: var(--transition-smooth);
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.25);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.06);
}

.cc-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.15);
    color: var(--clr-secondary);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    transition: var(--transition-smooth);
}

.contact-card:hover .cc-icon {
    background-color: var(--clr-secondary);
    color: var(--clr-bg-deep);
    border-color: var(--clr-secondary);
    transform: scale(1.05);
}

.cc-details h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--clr-text-light);
    margin-bottom: 0.25rem;
}

.cc-details p {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    font-weight: 300;
    line-height: 1.4;
}

.doctolib-badge-box {
    background-color: var(--clr-bg-card);
    border: var(--glass-border);
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    box-shadow: var(--glass-shadow);
    display: flex;
    gap: 1.8rem;
    align-items: flex-start;
    border-top: 4px solid var(--clr-secondary);
}

.db-icon {
    font-size: 2.2rem;
    color: var(--clr-secondary);
    text-shadow: 0 0 10px var(--clr-secondary-glow);
}

.doctolib-badge-box h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--clr-text-light);
    margin-bottom: 0.6rem;
}

.doctolib-badge-box p {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

/* Redesigned Form Container: Sleek line-based inputs and select wrapper */
.form-container {
    background-color: var(--clr-bg-card);
    border: var(--glass-border);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--glass-shadow);
    padding: 4rem;
}

.form-container h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--clr-text-light);
    margin-bottom: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    position: relative;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem 0.2rem;
    border-radius: 0;
    border: none;
    border-bottom: 1.5px solid rgba(0, 0, 0, 0.14);
    background-color: transparent;
    color: var(--clr-text-light);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-smooth);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(74, 107, 98, 0.45);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-bottom-color: var(--clr-secondary);
    box-shadow: none;
}

/* Select wrapper — underline style matching other inputs */
.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 4px;
    bottom: 12px;
    color: var(--clr-text-muted);
    pointer-events: none;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.select-wrapper:focus-within::after {
    color: var(--clr-secondary);
    transform: rotate(180deg);
    bottom: 14px;
}

.form-group .select-wrapper select {
    padding-right: 1.8rem;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    width: 100%;
}

.form-group .select-wrapper select option {
    background: #ffffff;
    color: var(--clr-text-light);
}

/* Custom Select Dropdown */
.custom-select-wrapper {
    position: relative;
}

.custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0 0.5rem;
    border: none;
    border-bottom: 1.5px solid rgba(0, 0, 0, 0.18);
    background: transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
    outline: none;
}

.custom-select-trigger:focus,
.custom-select-wrapper.open .custom-select-trigger {
    border-bottom-color: var(--clr-secondary);
}

.custom-select-value {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--clr-text-muted);
    transition: color 0.2s;
}

.custom-select-wrapper.has-value .custom-select-value {
    color: var(--clr-text-light);
}

.custom-select-arrow {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    transition: transform 0.3s ease, color 0.2s;
    pointer-events: none;
}

.custom-select-wrapper.open .custom-select-arrow {
    transform: rotate(180deg);
    color: var(--clr-secondary);
}

.custom-select-options {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13), 0 2px 8px rgba(10, 158, 107, 0.08);
    border: 1px solid rgba(10, 158, 107, 0.12);
    list-style: none;
    padding: 0.4rem 0;
    margin: 0;
    z-index: 100;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: max-height 0.3s ease, opacity 0.25s ease, transform 0.25s ease;
}

.custom-select-wrapper.open .custom-select-options {
    max-height: 320px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.custom-option {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.65rem 1rem;
    font-size: 0.88rem;
    font-family: var(--font-body);
    color: var(--clr-text-light);
    cursor: pointer;
    border-left: 3px solid transparent;
    transition: background 0.18s, border-color 0.18s, color 0.18s;
}

.custom-option i {
    width: 16px;
    text-align: center;
    color: var(--clr-text-muted);
    font-size: 0.8rem;
    transition: color 0.18s;
    flex-shrink: 0;
}

.custom-option:hover {
    background: rgba(10, 158, 107, 0.07);
    border-left-color: var(--clr-secondary);
    color: var(--clr-secondary);
}

.custom-option:hover i {
    color: var(--clr-secondary);
}

.custom-option.selected {
    background: rgba(10, 158, 107, 0.1);
    border-left-color: var(--clr-secondary);
    color: var(--clr-secondary);
    font-weight: 600;
}

.custom-option.selected i {
    color: var(--clr-secondary);
}

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

/* Subtle Pulsing Submit CTA Button */
.pulsing-btn {
    animation: btnPulse 3s infinite;
}

@keyframes btnPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.3);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    background-color: var(--clr-bg-deep);
    color: var(--clr-text-muted);
    padding: 7rem 0 0;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 4rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.footer-brand .logo {
    color: var(--clr-text-light);
    margin-bottom: 1.8rem;
    display: inline-block;
}

.footer-desc {
    font-size: 0.9rem;
    margin-bottom: 2rem;
    max-width: 260px;
    font-weight: 300;
}

.social-links {
    display: flex;
    gap: 1.2rem;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.04);
    border: var(--glass-border);
    color: var(--clr-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background-color: var(--clr-secondary);
    border-color: var(--clr-secondary);
    color: var(--clr-bg-deep);
    transform: translateY(-4px);
    box-shadow: 0 5px 15px var(--clr-secondary-glow);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--clr-text-light);
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

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

.footer-links a {
    font-size: 0.9rem;
    display: inline-block;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--clr-secondary);
    transform: translateX(6px);
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-weight: 300;
}

.footer-contact p i {
    color: var(--clr-secondary);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.footer-bottom {
    padding: 2.5rem 0;
    font-size: 0.8rem;
    color: rgba(13, 38, 32, 0.45);
}

.bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.disclaimer {
    font-style: italic;
}

/* ==========================================================================
   KEYFRAME ANIMATIONS
   ========================================================================== */
@keyframes floatGlow {
    0% { transform: translateY(0) scale(1) rotate(0deg); }
    100% { transform: translateY(-60px) scale(1.15) rotate(45deg); }
}

@keyframes rotateArt {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes waveMotion {
    0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; transform: rotate(0deg); }
    50% { border-radius: 60% 40% 30% 70% / 50% 60% 40% 60%; }
    100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; transform: rotate(360deg); }
}

@keyframes floatCard {
    0% { transform: translateY(0); }
    100% { transform: translateY(-18px); }
}

@keyframes breatheArt {
    0% { transform: scale(0.95); opacity: 0.04; }
    100% { transform: scale(1.05); opacity: 0.12; }
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    
    .hero-title {
        font-size: 3.6rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .symptom-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        padding: 3rem;
    }
    
    .experience-container,
    .therapist-container,
    .testimonials-container,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .experience-visual,
    .therapist-visual {
        order: -1;
    }
    
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 3.5rem;
    }
    
    .footer-grid > *:last-child {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
    .main-header {
        padding: 1.2rem 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--clr-bg-base);
        border-left: var(--glass-border);
        box-shadow: -10px 0 35px rgba(0, 0, 0, 0.12);
        padding: 7rem 3rem;
        transition: var(--transition-smooth);
        z-index: 1000;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 2.2rem;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }
    
    .mobile-menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: var(--clr-secondary);
    }
    
    .mobile-menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: var(--clr-secondary);
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .info-card-1 {
        left: 0;
    }
    
    .info-card-2 {
        right: 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-left-col {
        text-align: center;
    }
    
    .testimonials-quote-mark {
        display: none;
    }
    
    .slider-controls {
        justify-content: center;
    }

    .slider-dots {
        margin-right: 0;
    }

    .testimonials-slider-wrapper {
        padding: 2rem 1.5rem 1.8rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }
    
    .contact-micro-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-grid > * {
        grid-column: span 1 !important;
    }
    
    .bottom-container {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .symptom-container {
        padding: 2rem 1.5rem;
    }
    
    .symptom-info-card {
        padding: 2rem 1.5rem;
    }
    
    .experience-badge {
        left: 5%;
        bottom: -5%;
        padding: 1.2rem;
    }
    
    .form-container {
        padding: 2.5rem 1.8rem;
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
}
