/* ============================================
   AYURVEDA ALMATY — LIGHT THEME
   ============================================ */

/* === CSS Custom Properties === */
:root {
    /* Primary Palette — Golden-Green Ayurvedic */
    --gold-50: #fdf8e8;
    --gold-100: #faefc5;
    --gold-200: #f5de8a;
    --gold-300: #e8b820;
    --gold-400: #d4a010;
    --gold-500: #b8890e;
    --gold-600: #9a700a;
    --gold-700: #7c5808;
    --gold-800: #5e4206;
    --gold-900: #4a3405;

    --green-50: #f0faf0;
    --green-100: #dcf5dc;
    --green-200: #b3e8b5;
    --green-300: #6fcc73;
    --green-400: #3db543;
    --green-500: #2a9430;
    --green-600: #1e7623;
    --green-700: #195e1d;
    --green-800: #174d1a;
    --green-900: #143f16;

    /* Light Theme Base */
    --bg-primary: #fafaf7;
    --bg-secondary: #f4f3ef;
    --bg-tertiary: #eceae4;
    --bg-white: #ffffff;

    /* Text */
    --text-primary: #1a1a1a;
    --text-secondary: #555555;
    --text-muted: #888888;

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #d4a010, #e8b820, #f0cc4f);
    --gradient-green: linear-gradient(135deg, #2a9430, #3db543, #6fcc73);
    --gradient-hero: linear-gradient(135deg, #2a6b2e 0%, #3d8b41 50%, #d4a010 100%);

    /* Glass (light version) */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.08);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);

    /* Spacing */
    --section-padding: clamp(4rem, 8vw, 8rem);
    --container-max: 1200px;

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-base: 0.3s var(--ease-out-expo);
    --transition-slow: 0.6s var(--ease-out-expo);
}

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

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

body {
    font-family: 'Inter', 'Noto Sans', system-ui, -apple-system, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
}

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

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

/* === Floating Particles === */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle linear infinite;
}

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

    10% {
        opacity: 0.35;
        transform: scale(1);
    }

    90% {
        opacity: 0.15;
    }

    100% {
        transform: translateY(-10vh) rotate(360deg) scale(0.5);
        opacity: 0;
    }
}

/* === Navbar === */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.5rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    z-index: 1001;
}

.logo-icon {
    color: var(--green-500);
    flex-shrink: 0;
}

.logo-text {
    color: var(--bg-white);
}

.navbar.scrolled .logo-text {
    color: var(--text-primary);
}

.navbar.scrolled .logo-icon {
    color: var(--green-600);
}

.logo-highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.92rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: color var(--transition-base);
    position: relative;
}

.navbar.scrolled .nav-links a {
    color: var(--text-secondary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width var(--transition-base);
    border-radius: 1px;
}

.nav-links a:hover {
    color: var(--gold-300);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--gold-500);
}

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

.nav-cta {
    background: var(--gradient-gold) !important;
    color: white !important;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 600 !important;
    transition: transform var(--transition-base), box-shadow var(--transition-base) !important;
}

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

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(212, 160, 16, 0.4);
    color: white !important;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all var(--transition-base);
    position: absolute;
    left: 0;
}

.navbar.scrolled .hamburger span {
    background: var(--text-primary);
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
    bottom: 0;
}

.hamburger.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu ul {
    list-style: none;
    text-align: center;
}

.mobile-menu li {
    margin: 1.5rem 0;
}

.mobile-menu a {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: color var(--transition-base);
}

.mobile-menu a:hover {
    color: var(--green-500);
}

/* === Hero Section === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    animation: heroBgZoom 30s ease-in-out infinite alternate;
}

@keyframes heroBgZoom {
    0% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1.2);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(20, 60, 20, 0.55) 0%,
            rgba(20, 60, 20, 0.4) 30%,
            rgba(20, 60, 20, 0.45) 60%,
            rgba(250, 250, 247, 0.95) 100%),
        linear-gradient(135deg,
            rgba(30, 80, 20, 0.2) 0%,
            transparent 50%,
            rgba(212, 160, 16, 0.15) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 8rem 2rem 6rem;
    max-width: 900px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
    color: white;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}

.gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
}

.hero-date-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 1.5rem 2.5rem;
    backdrop-filter: blur(20px);
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.date-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.date-icon {
    color: var(--green-500);
    flex-shrink: 0;
    width: 26px;
    height: 26px;
}

.date-item div {
    text-align: left;
}

.date-item strong {
    display: block;
    font-size: 1.15rem;
    color: var(--text-primary);
}

.date-item span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.date-divider {
    width: 1px;
    height: 44px;
    background: var(--glass-border);
}

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

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--gradient-gold);
    color: white;
    box-shadow: 0 4px 20px rgba(212, 160, 16, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 160, 16, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    gap: 1rem;
}

.btn-whatsapp:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-label {
    display: block;
    font-size: 0.8rem;
    opacity: 0.85;
    text-align: left;
}

.whatsapp-number {
    display: block;
    font-size: 1.15rem;
    font-weight: 700;
    text-align: left;
}

/* === Countdown === */
.countdown-section {
    position: relative;
    z-index: 2;
    margin-top: -2rem;
    padding-bottom: 2rem;
}

.countdown-wrapper {
    background: white;
    border: 1px solid rgba(42, 148, 48, 0.15);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 40px rgba(42, 148, 48, 0.08);
}

.countdown-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.countdown-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.countdown-unit {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
}

.countdown-separator {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--green-300);
    font-weight: 700;
    line-height: 1;
    padding-bottom: 1rem;
    animation: blink 1s step-end infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* === Section Shared === */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--green-500);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* === Glass Card (light) === */
.glass-card {
    background: var(--bg-white);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all var(--transition-base);
}

.glass-card:hover {
    border-color: rgba(42, 148, 48, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

/* === About Section === */
.about-section {
    padding: var(--section-padding) 0;
    position: relative;
    background: var(--bg-primary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3rem;
    align-items: start;
}

.doctor-image-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(42, 148, 48, 0.1), transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 0.8;
    }
}

.doctor-image-container {
    width: 300px;
    height: 300px;
    border-radius: 30px;
    overflow: hidden;
    border: 3px solid rgba(42, 148, 48, 0.2);
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.doctor-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.doctor-image-container:hover .doctor-image {
    transform: scale(1.05);
}

.doctor-name-card {
    margin-top: -2rem;
    padding: 1rem 1.5rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.doctor-name-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--green-700);
    margin-bottom: 0.2rem;
}

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

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

.stat-card {
    padding: 1.2rem;
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1.1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
    display: block;
    line-height: 1.4;
}

.achievements {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.achievement-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 16px;
    background: var(--bg-secondary);
    border: 1px solid transparent;
    transition: all var(--transition-base);
}

.achievement-item:hover {
    background: white;
    border-color: rgba(42, 148, 48, 0.15);
    transform: translateX(8px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.achievement-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(42, 148, 48, 0.08);
    border-radius: 12px;
    color: var(--green-600);
}

.achievement-text strong {
    display: block;
    font-size: 0.92rem;
    color: var(--text-primary);
    margin-bottom: 0.15rem;
}

.achievement-text p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* === Benefits Section === */
.benefits-section {
    padding: var(--section-padding) 0;
    position: relative;
    background: var(--bg-secondary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.benefit-card {
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation-delay: var(--delay);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-green);
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

.benefit-card.featured {
    background: rgba(42, 148, 48, 0.04);
    border-color: rgba(42, 148, 48, 0.18);
}

.benefit-icon-wrapper {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: rgba(42, 148, 48, 0.08);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    color: var(--green-600);
}

.benefit-card:hover .benefit-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: rgba(42, 148, 48, 0.14);
}

.benefit-icon {
    color: var(--green-600);
}

.benefit-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

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

/* === Details Section === */
.details-section {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.detail-card {
    padding: 2rem;
    text-align: center;
}

.detail-icon {
    margin-bottom: 0.75rem;
    color: var(--green-500);
    display: flex;
    justify-content: center;
}

.detail-card h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.detail-main {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.detail-sub {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.free-tag {
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem !important;
    letter-spacing: 3px;
}

.map-container {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

/* === Contact/CTA Section === */
.contact-section {
    padding: var(--section-padding) 0;
    position: relative;
    background: var(--bg-secondary);
}

.cta-card {
    background: linear-gradient(135deg, rgba(42, 148, 48, 0.06), rgba(212, 160, 16, 0.06));
    border: 1px solid rgba(42, 148, 48, 0.12);
    border-radius: 32px;
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.cta-content>p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.organizer-info {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* === Footer === */
.footer {
    background: white;
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
}

.footer-logo {
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.footer-logo svg {
    color: var(--green-500);
}

.footer-left p,
.footer-right p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-right {
    text-align: right;
}

.footer-right a {
    color: var(--green-600);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color var(--transition-base);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.3rem;
    justify-content: flex-end;
}

.footer-right a:hover {
    color: var(--green-500);
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

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

/* === Animations (scroll-based) === */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === Responsive === */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hero-content {
        padding: 7rem 1rem 5rem;
    }

    .hero-date-strip {
        flex-direction: column;
        gap: 0;
        padding: 0.5rem 1.2rem;
        align-items: stretch;
    }

    .date-divider {
        width: 100%;
        height: 1px;
        background: rgba(0, 0, 0, 0.06);
    }

    .date-item {
        width: 100%;
        justify-content: flex-start;
        padding: 0.8rem 0.5rem;
        gap: 1rem;
    }

    .date-item .date-icon {
        width: 28px;
        height: 28px;
    }

    .date-item strong {
        font-size: 1.15rem;
    }

    .date-item span {
        font-size: 0.9rem;
    }

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

    .doctor-image-container {
        width: 250px;
        height: 250px;
    }

    .cta-card {
        padding: 2.5rem 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

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

    .footer-right a {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle br {
        display: none;
    }

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

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