/* ==========================================================================
   CSS Variables & Global Styles - ELEGANT FUTURISTIC MEDICAL THEME
   ========================================================================== */
:root {
    /* Color Palette - Premium Elegant Minimalist */
    --clr-bg: #F4F7F6;               /* Light hint of Medical Mint/Alabaster */
    --clr-surface: #FFFFFF;          /* Pure White for Cards */
    
    --clr-primary: #0A2540;          /* Deep Navy Blue */
    --clr-secondary: #059669;        /* Medical Green */
    --clr-accent: #10B981;           /* Emerald Accent */
    
    --clr-text-main: #0B192C;        /* Dark Navy for absolute legibility */
    --clr-text-muted: #64748B;       /* Soft Gray for secondary text */
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-secondary) 100%);
    --gradient-light: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.05) 100%);

    /* Typography */
    --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing, Shadows & Utilities */
    --container-max: 1200px;
    --transition-fast: all 0.2s ease-out;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    
    --shadow-soft: 0 10px 40px -10px rgba(30, 41, 59, 0.08);
    --shadow-hover: 0 20px 50px -10px rgba(0, 131, 176, 0.15);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    font-size: 14px;
    background-color: var(--clr-bg);
}

/* Custom Minimalist Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--clr-primary);
}

body {
    font-family: var(--font-main);
    color: var(--clr-text-main);
    background-color: transparent;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    z-index: 0;
}

body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 79.5h79.5V0' stroke='%2310B981' stroke-opacity='0.15' stroke-width='0.8'/%3E%3Ccircle cx='79.5' cy='79.5' r='1.5' fill='%230A2540' fill-opacity='0.25'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: repeat;
    opacity: 0.05;
    z-index: -2;
    pointer-events: none;
}

/* ==========================================================================
   Ambient Background Auras (The Futuristic Touch)
   ========================================================================== */
.ambient-aura {
    position: fixed;
    border-radius: 50%;
    filter: blur(150px);
    z-index: -99;
    opacity: 0.35;
    animation: floatingAura 25s infinite alternate ease-in-out;
    pointer-events: none;
}

.aura-1 {
    width: 600px; height: 600px;
    background: var(--clr-primary);
    top: -100px; right: -100px;
    animation-delay: 0s;
}

.aura-2 {
    width: 700px; height: 700px;
    background: var(--clr-accent);
    top: 40%; left: -200px;
    animation-delay: -5s;
}

.aura-3 {
    width: 800px; height: 800px;
    background: var(--clr-secondary);
    bottom: -150px; right: 5%;
    animation-delay: -10s;
}

@keyframes floatingAura {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    100% { transform: translate(150px, 150px) scale(1.2) rotate(45deg); }
}

.global-glass-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    overflow-x: hidden;
    z-index: 1;
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--clr-text-main);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-gradient {
    background: linear-gradient(135deg, var(--clr-text-main) 0%, var(--clr-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.section-padding { padding: 8rem 0; position: relative; z-index: 2; }
.no-bg { background: transparent; }
.text-center { text-align: center; }
.w-100 { width: 100%; }
.align-start { align-items: flex-start !important; }
.mt-3 { margin-top: 2rem; }
.mt-4 { margin-top: 3rem; }
.mb-4 { margin-bottom: 2rem; }
.opacity-80 { opacity: 0.8;}

.section-label {
    display: inline-block;
    color: var(--clr-primary);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    padding: 0.4rem 1rem;
    background: var(--gradient-light);
    border-radius: 50px;
}

.section-title { font-size: 3.5rem; margin-bottom: 1.5rem; }
.section-desc {
    color: var(--clr-text-muted);
    font-size: 1.25rem;
    max-width: 650px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

/* ==========================================================================
   Premium Glassmorphism
   ========================================================================== */
.premium-glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-soft);
}

.premium-blur-heavy {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
}

.premium-card {
    background: var(--clr-surface);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: var(--transition-smooth);
}

.hover-elevate { transition: var(--transition-smooth); }
.hover-elevate:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }

.hover-lift { transition: var(--transition-smooth); }
.hover-lift:hover { transform: translateY(-5px); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    outline: none;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition-smooth);
}

.btn-gradient {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 10px 20px -5px rgba(0, 131, 176, 0.4);
}
.btn-gradient:hover {
    box-shadow: 0 15px 30px -5px rgba(0, 131, 176, 0.6);
}

.btn-outline {
    background-color: transparent;
    color: var(--clr-text-main);
    border: 2px solid #E2E8F0;
}
.btn-outline:hover {
    border-color: var(--clr-primary);
    background-color: transparent;
    color: var(--clr-primary);
}

.btn-dark {
    background-color: var(--clr-text-main);
    color: white;
}
.btn-dark:hover {
    background-color: #0F172A;
    box-shadow: 0 15px 30px -5px rgba(15, 23, 42, 0.4);
}

/* ==========================================================================
   Custom Smooth Cursor (Desktop Only)
   ========================================================================== */
.cursor-dot {
    width: 10px; height: 10px;
    background: var(--clr-accent);
    box-shadow: 0 0 10px var(--clr-accent);
    border: 1px solid transparent;
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none; z-index: 9999;
    will-change: transform, width, height, border-radius;
    transition: width 0.3s, height 0.3s, background 0.3s, border-color 0.3s, border-radius 0.3s, box-shadow 0.3s;
}

.cursor-hover .cursor-dot {
    width: 48px; height: 48px;
    background: rgba(16, 185, 129, 0.1);
    border-color: var(--clr-secondary);
    border-radius: 12px; /* Smooth rounded square morph */
    box-shadow: none;
    backdrop-filter: blur(2px);
}

@media (hover: none) and (pointer: coarse) {
    .cursor-dot { display: none !important; }
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    border-bottom: 1px solid transparent;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.nav-container {
    max-width: var(--container-max); margin: 0 auto; padding: 0.75rem 2rem;
    display: flex; justify-content: space-between; align-items: center;
    transition: var(--transition-smooth);
}
.navbar.scrolled .nav-container { padding: 0.4rem 2rem; }

.logo { font-size: 1.5rem; letter-spacing: -0.5px; }
.logo span { font-weight: 400; color: var(--clr-text-muted); }

.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-item {
    font-weight: 500;
    color: var(--clr-text-main);
    opacity: 0.8;
    position: relative;
}

.nav-item::after {
    content: '';
    position: absolute; bottom: -5px; left: 0; width: 0; height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-item:hover { opacity: 1; color: var(--clr-primary); }
.nav-item:hover::after { width: 100%; }

.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 6px; z-index: 1001; }
.hamburger span {
    display: block; width: 30px; height: 2px; background-color: var(--clr-text-main);
    border-radius: 2px;
    transition: var(--transition-smooth);
}
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 2.5rem;
    transform: translateY(-100%); transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 999;
}
.mobile-menu.active { transform: translateY(0); }
.mobile-menu a { font-size: 1.5rem; font-weight: 600; color: var(--clr-text-main); }

/* ==========================================================================
   Floating Action Hub
   ========================================================================== */
.action-hub { position: fixed; bottom: 2rem; right: 2rem; display: flex; flex-direction: column-reverse; gap: 1rem; z-index: 990; }
.hub-btn {
    width: 64px; height: 64px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: white;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}
.hub-btn:hover { transform: scale(1.05) translateY(-5px); box-shadow: var(--shadow-hover); }
.hub-btn.primary { background: var(--gradient-primary); }
.hub-btn.whatsapp { background: #25D366; }
.hub-btn.phone { background: var(--clr-text-main); }

.tooltip-wrap { position: relative; }
.tooltip {
    position: absolute; right: 85px; top: 50%; transform: translateY(-50%) translateX(10px);
    background: var(--clr-surface); color: var(--clr-text-main);
    padding: 0.6rem 1.2rem; border-radius: 8px; font-weight: 600; font-size: 0.875rem;
    box-shadow: var(--shadow-soft);
    opacity: 0; transition: var(--transition-fast); pointer-events: none;
    white-space: nowrap;
}
.tooltip-wrap:hover .tooltip { opacity: 1; transform: translateY(-50%) translateX(0); }

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex; align-items: center;
    padding-top: 100px; position: relative;
}

.hero-content {
    max-width: 900px; padding: 0 2rem; margin: 0 auto; text-align: center;
}

.premium-badge {
    display: inline-block;
    background: var(--clr-surface);
    color: var(--clr-primary);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 131, 176, 0.1);
}

.hero-title { font-size: 4.5rem; letter-spacing: -2px; margin-bottom: 1.5rem; line-height: 1.05;}
.hero-subtitle { font-size: 1.35rem; color: var(--clr-text-muted); max-width: 700px; margin: 0 auto 3rem; }

.hero-buttons { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 5rem; }

.hero-stats {
    display: inline-flex; justify-content: center; align-items: center; gap: 3.5rem;
    padding: 2.5rem 4rem; border-radius: var(--radius-lg);
}

.stat-item { display: flex; flex-direction: column; align-items: center; }
.stat-number { font-size: 3rem; font-weight: 800; line-height: 1; margin-bottom: 0.5rem;}
.stat-label { color: var(--clr-text-muted); font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.hero-stats .divider { width: 1px; height: 60px; background: #E2E8F0; }

/* ==========================================================================
   Grids & Elegance Layers
   ========================================================================== */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.custom-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }

.hover-float { animation: float 6s ease-in-out infinite; }
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* About Specific */
.display-relative { position: relative; }
.about-image-wrapper {
    position: relative; display: inline-block; width: 100%;
    padding: 1rem; border-radius: var(--radius-lg);
}
.doctor-image-placeholder {
    width: 100%; aspect-ratio: 4/5;
    background: var(--gradient-light);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
}
.soft-icon { font-size: 6rem; color: var(--clr-primary); opacity: 0.4; filter: blur(1px); }

.feature-list { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem;}
.feature-list li { display: flex; align-items: center; gap: 1.25rem; font-size: 1.125rem; font-weight: 500; }
.icon-circle {
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--gradient-primary); color: white;
    display: flex; align-items: center; justify-content: center; font-size: 0.875rem;
}

/* Services */
.card-icon {
    width: 70px; height: 70px; border-radius: 20px;
    background: var(--gradient-light); color: var(--clr-primary);
    display: flex; align-items: center; justify-content: center; font-size: 2rem;
    margin-bottom: 1.75rem;
    transition: var(--transition-smooth);
}
.gradient-icon { background: var(--gradient-primary); color: white; box-shadow: 0 10px 20px rgba(0, 131, 176, 0.3); }

.premium-card:hover .card-icon { transform: scale(1.1) rotate(-5deg); }
.service-card h4 { font-size: 1.35rem; margin-bottom: 1rem; }
.service-card p { color: var(--clr-text-muted); line-height: 1.7; }

/* Camp Specific */
.camp-banner {
    padding: 5rem; display: flex; align-items: center; justify-content: space-between;
    border-radius: var(--radius-lg);
    background: var(--gradient-primary); color: white;
    box-shadow: 0 30px 60px rgba(0, 131, 176, 0.2);
    position: relative; overflow: hidden;
}
.camp-banner::after {
    content: ''; position: absolute; right: -100px; bottom: -100px;
    width: 400px; height: 400px; background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
}
.camp-banner .premium-badge { border: none; color: var(--clr-text-main); }
.camp-content { max-width: 600px; position: relative; z-index: 2; }
.camp-content h2 { font-size: 3rem; margin-bottom: 1.5rem; color: white; letter-spacing: -1px; }
.camp-content p { color: rgba(255,255,255,0.9); font-size: 1.15rem; line-height: 1.8; margin-bottom: 1rem; }
.camp-visual { font-size: 12rem; opacity: 0.15; position: relative; z-index: 2; }
.glow-icon { text-shadow: 0 0 40px white; }

/* Pricing */
.pricing-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; max-width: 900px; margin: 0 auto; }
.pricing-card { position: relative; }
.pricing-header h4 { font-size: 1.5rem; margin-bottom: 1rem; }
.price { margin: 2rem 0; }
.currency { font-size: 1.5rem; font-weight: 700; color: var(--clr-text-main); vertical-align: super; }
.amount { font-size: 4.5rem; font-weight: 800; line-height: 1; }
.price-desc { color: var(--clr-text-muted); font-weight: 500; font-size: 0.875rem; margin-top: 0.5rem; text-transform: uppercase; letter-spacing: 1px; }
.featured-tag { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); color: white; padding: 0.4rem 1.5rem; border-radius: 50px; font-size: 0.875rem; font-weight: 700; box-shadow: 0 5px 15px rgba(0, 131, 176, 0.3); }
.gradient-bg { background: var(--gradient-primary); }
.pricing-card.featured { border: 2px solid var(--clr-secondary); transform: scale(1.05); box-shadow: var(--shadow-hover); }

.pricing-features { list-style: none; margin-bottom: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.pricing-features li { display: flex; align-items: center; gap: 1rem; font-size: 1.05rem; font-weight: 500;}
.pricing-features i { color: var(--clr-primary); }
.icon-accent { color: var(--clr-text-main) !important; }

/* Booking */
.info-item { display: flex; gap: 1.5rem; padding: 1.5rem; border-radius: var(--radius-md); background: white; margin-bottom: 1.5rem; border: 1px solid #F1F5F9;}
.icon-wrap { width: 50px; height: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; color: white; flex-shrink: 0; }
.info-item h5 { font-size: 1.15rem; margin-bottom: 0.25rem; }
.info-item p { color: var(--clr-text-muted); }

/* Contact Links Interactive Styles */
.contact-link {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
    position: relative;
    display: inline-block;
}
.contact-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--clr-accent);
    transition: width 0.3s ease;
}
.contact-link:hover {
    color: var(--clr-accent);
}
.contact-link:hover::after {
    width: 100%;
}

.elegant-form .form-group { margin-bottom: 1.75rem; }
.elegant-form label { display: block; font-weight: 600; font-size: 0.875rem; color: var(--clr-text-main); margin-bottom: 0.75rem; margin-left: 0.5rem;}
.elegant-input {
    width: 100%; padding: 1.2rem 1.5rem; background: #F8FAFC;
    border: 1px solid #E2E8F0; border-radius: 12px; color: var(--clr-text-main);
    font-family: inherit; font-size: 1rem; outline: none; transition: var(--transition-smooth);
    appearance: none;
}
.elegant-input:focus { border-color: var(--clr-primary); background: white; box-shadow: 0 0 0 4px rgba(0, 131, 176, 0.1); }
.select-wrapper { position: relative; }
.select-icon { position: absolute; right: 1.5rem; top: 50%; transform: translateY(-50%); color: var(--clr-text-muted); pointer-events: none; }

/* Footer */
.footer { border-top: 1px solid #E2E8F0; padding: 6rem 0 3rem; background: white; }
.footer-subtitle { letter-spacing: 3px; font-size: 0.875rem; color: var(--clr-text-muted); margin-bottom: 2rem; font-weight: 600;}
.social-links { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 2rem; }
.social-links a { width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; color: var(--clr-text-main); background: #F8FAFC; border-radius: 50%; transition: var(--transition-smooth); }
.social-links a:hover { background: var(--gradient-primary); color: white; transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0, 131, 176, 0.2); }
.copyright { color: var(--clr-text-muted); font-size: 0.875rem; }

/* ==========================================================================
   Animations & IntersectionObserver
   ========================================================================== */
[data-animate] { opacity: 0; will-change: transform, opacity; }

[data-animate="fade-in"].is-visible { animation: fadeIn 1s ease forwards; animation-delay: var(--delay, 0s); }
[data-animate="slide-up"].is-visible { animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards; animation-delay: var(--delay, 0s); }
[data-animate="slide-down"].is-visible { animation: slideDown 1s cubic-bezier(0.16, 1, 0.3, 1) forwards; animation-delay: var(--delay, 0s); }
[data-animate="slide-right"].is-visible { animation: slideRight 1s cubic-bezier(0.16, 1, 0.3, 1) forwards; animation-delay: var(--delay, 0s); }
[data-animate="slide-left"].is-visible { animation: slideLeft 1s cubic-bezier(0.16, 1, 0.3, 1) forwards; animation-delay: var(--delay, 0s); }
[data-animate="zoom-in"].is-visible { animation: zoomIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards; animation-delay: var(--delay, 0s); }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(50px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideRight { from { opacity: 0; transform: translateX(-50px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideLeft { from { opacity: 0; transform: translateX(50px); } to { opacity: 1; transform: translateX(0); } }
@keyframes zoomIn { from { opacity: 0; transform: scale(0.92); } to { opacity: 1; transform: scale(1); } }

/* ==========================================================================
   Responsive Logic
   ========================================================================== */
@media (max-width: 992px) {
    .hero-title { font-size: 3.5rem; }
    .grid-2, .custom-grid, .pricing-cards { grid-template-columns: 1fr; gap: 3rem; }
    .hero-stats { flex-wrap: wrap; }
    .hero-stats .divider { display: none; }
    .ambient-aura { filter: blur(80px); }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .hero-title { font-size: 2.75rem; }
    .hero-stats { flex-direction: column; width: 100%; border: none; background: transparent; padding: 0; box-shadow: none; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .camp-banner { flex-direction: column; text-align: center; padding: 3rem 2rem; }
    .action-hub { bottom: 1rem; right: 1rem; transform: scale(0.85); transform-origin: bottom right; }
    .step-container { padding: 1.5rem !important; }
}

/* ==========================================================================
   New Disease Booking Flow Styles
   ========================================================================== */
.booking-flow {
    max-width: 900px; margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding-bottom: 2rem;
}

.step-card {
    background: var(--clr-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 3rem; margin-top: 2rem;
    transition: var(--transition-smooth);
    border: 1px solid rgba(16, 185, 129, 0.1);
    display: none;
    opacity: 0; transform: translateY(20px);
}
.step-card.active {
    display: block; opacity: 1; transform: translateY(0);
}

.disease-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem;
}
.disease-btn {
    background: #F4F7F6; border: 1px solid #E2E8F0;
    padding: 1rem; border-radius: 12px; font-weight: 600; color: var(--clr-text-main);
    cursor: pointer; transition: var(--transition-fast); text-align: left;
    display: flex; align-items: center; justify-content: space-between;
}
.disease-btn:hover { border-color: var(--clr-accent); background: white; box-shadow: 0 5px 15px rgba(16, 185, 129, 0.1); color: var(--clr-secondary); }
.disease-btn.selected { background: var(--gradient-primary); color: white; border-color: transparent; box-shadow: 0 10px 20px rgba(10, 37, 64, 0.2); }

.payment-toggle { display: flex; gap: 1rem; margin-bottom: 2rem; background: #F4F7F6; padding: 0.5rem; border-radius: 50px; }
.toggle-btn { flex: 1; text-align: center; padding: 0.75rem; border-radius: 50px; cursor: pointer; font-weight: 600; transition: var(--transition-fast); color: var(--clr-text-muted); }
.toggle-btn.active { background: white; color: var(--clr-primary); box-shadow: 0 4px 10px rgba(0,0,0,0.05); }

.mock-card-input { display: flex; align-items: center; background: #F8FAFC; border: 1px solid #E2E8F0; padding: 1rem 1.5rem; border-radius: 12px; margin-bottom: 1rem; gap: 1rem;}
.mock-card-input input { border: none; background: transparent; flex: 1; font-size: 1rem; outline: none; font-family: monospace; color: var(--clr-text-main); }
.payment-amount { font-size: 2.5rem; font-weight: 800; color: var(--clr-secondary); margin-bottom: 0.5rem; display: flex; align-items: baseline; gap: 0.25rem;}
.payment-amount small { font-size: 1rem; color: var(--clr-text-muted); font-weight: 500;}

/* Medical Animations */
.medical-anim { position: absolute; opacity: 0.05; pointer-events: none; z-index: -1; color: var(--clr-secondary); font-size: 6rem; filter: blur(2px); animation: floatingMed 20s infinite alternate ease-in-out; }
.med-1 { top: 15%; left: 5%; }
.med-2 { bottom: 25%; right: 5%; animation-delay: -5s; color: var(--clr-primary); font-size: 10rem;}
.med-3 { top: 60%; left: 10%; font-size: 4rem; animation-delay: -8s; }
.med-4 { top: 20%; right: 10%; font-size: 8rem; animation-delay: -2s; color: var(--clr-accent); }
@keyframes floatingMed {
    0% { transform: translateY(0) rotate(0deg) scale(0.9); }
    100% { transform: translateY(80px) rotate(45deg) scale(1.1); }
}

/* ==========================================================================
   Running Marquee for Diseases
   ========================================================================== */
.marquee-wrapper {
    width: 100vw;
    margin-left: calc(-50vw + 50%); /* Full width clever hack */
    overflow: hidden;
    display: flex;
    white-space: nowrap;
    background: var(--gradient-light);
    padding: 1.5rem 0;
    margin-bottom: 4rem;
    border-top: 1px solid rgba(16, 185, 129, 0.1);
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    position: relative;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.02);
}

.marquee-wrapper::before, .marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}
.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--clr-bg), transparent);
}
.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--clr-bg), transparent);
}

.marquee-content {
    display: flex;
    animation: scrollMarquee 40s linear infinite;
    min-width: 100%;
    flex-shrink: 0;
    justify-content: space-around;
    will-change: transform;
}

.marquee-item {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--clr-text-main);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    opacity: 0.9;
}

.marquee-item i {
    font-size: 1.5rem;
}

@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.marquee-wrapper:hover .marquee-content {
    animation-play-state: paused;
}
