/* ===== CSS Variables & Theme - Zospital Design System ===== */
:root {
    /* Primary Palette - Zospital Blue */
    --primary: #2563EB;
    --primary-dark: #1D4ED8;
    --primary-light: #3B82F6;
    --accent: #10B981;
    --accent-light: #34D399;
    
    /* Trust & Warmth Colors */
    --trust-gold: #D97706;
    --trust-gold-light: #FEF3C7;
    --trust-green: #059669;
    --trust-green-light: #D1FAE5;
    
    /* Background & Surfaces */
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    --bg-gray: #F1F5F9;
    --bg-blue: #2563EB;
    --bg-warm: #FFFBF5;
    
    /* Text Colors */
    --text-primary: #1F2937;
    --text-secondary: #6B7280;
    --text-muted: #9CA3AF;
    --text-white: #FFFFFF;
    
    /* Icon Background Colors (Zospital style) */
    --icon-green: #D1FAE5;
    --icon-pink: #FCE7F3;
    --icon-blue: #DBEAFE;
    --icon-yellow: #FEF3C7;
    --icon-gray: #F3F4F6;
    --icon-purple: #EDE9FE;
    
    /* Borders */
    --border-light: #E5E7EB;
    --border-medium: #D1D5DB;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    
    /* Spacing & Layout */
    --container-max: 1280px;
    --section-padding: 100px;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s ease;
}

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

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

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-light);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

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

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5 {
    font-family: 'Cabinet Grotesk', 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

.gradient-text,
.highlight {
    color: var(--primary);
}

.section-title .highlight {
    position: relative;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 6px;
    background: rgba(37, 99, 235, 0.15);
    border-radius: 3px;
    z-index: -1;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-fast);
}

.btn:hover svg {
    transform: translateX(4px);
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: var(--bg-gray);
    border-color: var(--border-medium);
}

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

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

.btn-premium {
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-emergency {
    background: #DC2626;
    color: white;
    padding: 16px 32px;
    font-size: 1.1rem;
    box-shadow: var(--shadow-md);
}

.btn-emergency:hover {
    background: #B91C1C;
    transform: translateY(-2px);
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
}

.logo-svg {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
}

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

.nav-cta {
    padding: 10px 20px !important;
    background: var(--primary) !important;
    color: white !important;
    border-radius: 8px;
}

.nav-cta:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-1px);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding: 120px 24px 80px;
    max-width: var(--container-max);
    margin: 0 auto;
    position: relative;
}

.hero-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: var(--bg-light);
    overflow: hidden;
}

.gradient-orb {
    display: none;
}

.grid-pattern {
    display: none;
}

.hero-content {
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: var(--icon-blue);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease forwards;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.15;
    color: var(--text-primary);
    animation: fadeInUp 0.8s ease 0.1s forwards;
    opacity: 0;
}

.hero-title .highlight {
    position: relative;
    color: var(--primary);
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(37, 99, 235, 0.2);
    border-radius: 4px;
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: 32px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.stat {
    text-align: left;
}

.stat-number {
    display: block;
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-light);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Visual - Doctor Image */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 1s ease 0.5s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.globe-container {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.globe {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.globe-ring,
.connection-point,
.center-point,
.tooltip {
    display: none;
}

/* Parent care illustration placeholder - Elderly Parents */
.parent-care-illustration {
    width: 85%;
    height: 85%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><defs><linearGradient id="grayHair" x1="0%25" y1="0%25" x2="100%25" y2="100%25"><stop offset="0%25" style="stop-color:%23D1D5DB"/><stop offset="100%25" style="stop-color:%239CA3AF"/></linearGradient></defs><ellipse cx="200" cy="375" rx="150" ry="20" fill="%23E2E8F0" opacity="0.4"/><circle cx="120" cy="145" r="52" fill="%239CA3AF"/><path d="M68 130 Q120 85 172 130" fill="%239CA3AF"/><circle cx="120" cy="150" r="42" fill="%23FEFCE8"/><path d="M90 135 L95 145 L85 145 Z" fill="%239CA3AF"/><path d="M150 135 L145 145 L155 145 Z" fill="%239CA3AF"/><rect x="95" cy="140" width="50" height="18" rx="2" fill="none" stroke="%231F2937" stroke-width="2"/><line x1="120" y1="140" x2="120" y2="158" stroke="%231F2937" stroke-width="2"/><circle cx="107" cy="149" r="3" fill="%231F2937"/><circle cx="133" cy="149" r="3" fill="%231F2937"/><path d="M105 172 Q120 182 135 172" stroke="%231F2937" stroke-width="2" fill="none"/><path d="M90 178 Q82 188 88 198" stroke="%239CA3AF" stroke-width="3" fill="none"/><path d="M150 178 Q158 188 152 198" stroke="%239CA3AF" stroke-width="3" fill="none"/><path d="M78 215 Q72 195 95 188 L145 188 Q168 195 162 215 L170 310 Q170 355 120 370 Q70 355 78 310 Z" fill="%23DBEAFE" stroke="%23BFDBFE" stroke-width="2"/><path d="M88 220 L95 250 M152 220 L145 250" stroke="%23BFDBFE" stroke-width="2"/><circle cx="280" cy="145" r="52" fill="%239CA3AF"/><ellipse cx="280" cy="115" rx="40" ry="25" fill="%239CA3AF"/><circle cx="280" cy="150" r="42" fill="%23FEFCE8"/><circle cx="265" cy="149" r="3" fill="%231F2937"/><circle cx="295" cy="149" r="3" fill="%231F2937"/><path d="M265 172 Q280 182 295 172" stroke="%231F2937" stroke-width="2" fill="none"/><circle cx="250" cy="160" r="10" fill="%23FECACA" opacity="0.5"/><circle cx="310" cy="160" r="10" fill="%23FECACA" opacity="0.5"/><circle cx="280" cy="125" r="12" fill="%23DC2626" opacity="0.15"/><path d="M250 178 Q242 188 248 198" stroke="%239CA3AF" stroke-width="3" fill="none"/><path d="M310 178 Q318 188 312 198" stroke="%239CA3AF" stroke-width="3" fill="none"/><path d="M238 215 Q232 195 255 188 L305 188 Q328 195 322 215 L330 310 Q330 355 280 370 Q230 355 238 310 Z" fill="%23FCE7F3" stroke="%23FBCFE8" stroke-width="2"/><ellipse cx="280" cy="230" rx="20" ry="8" fill="%23F9A8D4" opacity="0.4"/><rect x="170" y="30" width="60" height="95" rx="10" fill="%23FFFFFF" stroke="%232563EB" stroke-width="3"/><rect x="178" y="48" width="44" height="58" rx="4" fill="%23DBEAFE"/><circle cx="200" cy="70" r="14" fill="%2310B981"/><path d="M194 70 L198 74 L207 65" stroke="white" stroke-width="2.5" fill="none" stroke-linecap="round"/><path d="M185 92 L200 84 L215 92" stroke="%232563EB" stroke-width="2" fill="none"/><circle cx="200" cy="25" r="7" fill="%232563EB"/><path d="M120 300 Q155 275 190 295" stroke="%23F59E0B" stroke-width="3" fill="none" stroke-linecap="round" opacity="0.8"/><path d="M210 295 Q245 275 280 300" stroke="%23F59E0B" stroke-width="3" fill="none" stroke-linecap="round" opacity="0.8"/><circle cx="200" cy="285" r="28" fill="%23FEF3C7" stroke="%23F59E0B" stroke-width="2.5"/><path d="M188 285 L200 273 L212 285 L200 297 Z" fill="%23F59E0B"/><text x="200" y="393" text-anchor="middle" fill="%236B7280" font-size="12" font-family="sans-serif" font-weight="600">Connected Family Care</text></svg>') center center no-repeat;
    background-size: contain;
}

/* Hero floating badges */
.hero-floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    animation: floatBadge 3s ease-in-out infinite;
}

.hero-floating-badge.top-left {
    top: 20px;
    left: -20px;
    animation-delay: 0s;
}

.hero-floating-badge.bottom-right {
    bottom: 60px;
    right: -20px;
    animation-delay: 1.5s;
}

.badge-icon {
    font-size: 1.25rem;
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Hero trust strip */
.hero-trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease 0.35s forwards;
    opacity: 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.trust-item svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
}

/* WhatsApp button */
.btn-whatsapp {
    background: #25D366;
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-whatsapp:hover {
    background: #20BD5A;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp svg {
    width: 20px;
    height: 20px;
}

.btn-large {
    padding: 18px 32px;
    font-size: 1.1rem;
}

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    padding: 16px 0;
    border-bottom: 2px solid #F59E0B;
}

.urgency-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.urgency-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.urgency-badge {
    padding: 6px 12px;
    background: #DC2626;
    color: white;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s ease-in-out infinite;
}

.urgency-left p {
    color: #92400E;
    font-size: 0.95rem;
}

.btn-urgency {
    background: #DC2626;
    color: white;
    padding: 12px 24px;
    font-size: 0.95rem;
}

.btn-urgency:hover {
    background: #B91C1C;
    transform: translateY(-2px);
}

.btn-urgency svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 768px) {
    .urgency-content {
        flex-direction: column;
        text-align: center;
    }
    
    .urgency-left {
        flex-direction: column;
    }
    
    .hero-trust-strip {
        justify-content: center;
    }
    
    .hero-floating-badge {
        display: none;
    }
}

/* ===== Trust & Credibility Section ===== */
.trust-section {
    padding: 60px 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
}

.trust-header {
    text-align: center;
    margin-bottom: 40px;
}

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

/* Partner Logos */
.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border-light);
}

.partner-logo {
    opacity: 0.6;
    transition: var(--transition-smooth);
    filter: grayscale(100%);
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.logo-placeholder {
    padding: 12px 24px;
    background: var(--bg-gray);
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

.logo-placeholder.apollo { color: #1E40AF; background: #DBEAFE; }
.logo-placeholder.max { color: #DC2626; background: #FEE2E2; }
.logo-placeholder.fortis { color: #059669; background: #D1FAE5; }
.logo-placeholder.medanta { color: #7C3AED; background: #EDE9FE; }
.logo-placeholder.narayana { color: #D97706; background: #FEF3C7; }

/* Certification Badges */
.certification-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 40px;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--bg-gray);
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.cert-badge:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.cert-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 10px;
    color: white;
}

.cert-icon svg {
    width: 22px;
    height: 22px;
}

.cert-icon.nabl {
    background: #10B981;
}

.cert-text {
    display: flex;
    flex-direction: column;
}

.cert-text strong {
    font-size: 0.95rem;
    color: var(--text-primary);
}

.cert-text span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Company Info */
.company-info {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    padding: 24px;
    background: var(--bg-gray);
    border-radius: 12px;
}

.company-detail {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.company-detail .label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.company-detail .value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.company-divider {
    width: 1px;
    height: 40px;
    background: var(--border-medium);
}

@media (max-width: 768px) {
    .partner-logos {
        gap: 24px;
    }
    
    .certification-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .cert-badge {
        width: 100%;
        max-width: 300px;
    }
    
    .company-info {
        flex-direction: column;
        gap: 16px;
    }
    
    .company-divider {
        width: 60px;
        height: 1px;
    }
}

/* ===== Services Section ===== */
.services {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
    position: relative;
}

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

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    display: none;
}

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

.service-card.featured {
    grid-column: span 2;
    grid-row: span 2;
    padding: 48px;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-gray) 100%);
}

.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 24px;
}

.service-icon.green { background: var(--icon-green); color: #059669; }
.service-icon.pink { background: var(--icon-pink); color: #DB2777; }
.service-icon.blue { background: var(--icon-blue); color: var(--primary); }
.service-icon.yellow { background: var(--icon-yellow); color: #D97706; }
.service-icon.gray { background: var(--icon-gray); color: #4B5563; }
.service-icon.purple { background: var(--icon-purple); color: #7C3AED; }

.service-icon svg {
    width: 32px;
    height: 32px;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary);
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.service-link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
}

.service-link:hover {
    color: var(--primary-dark);
}

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

/* ===== Care Promise Section ===== */
.care-promise {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, #F0FDF4 0%, #ECFDF5 50%, #F0FDF4 100%);
    position: relative;
}

.care-promise::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10B981 0%, #059669 50%, #047857 100%);
}

.highlight-gold {
    color: #D97706;
    position: relative;
}

.highlight-gold::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 6px;
    background: rgba(217, 119, 6, 0.15);
    border-radius: 3px;
    z-index: -1;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.promise-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-light);
}

.promise-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent);
}

.promise-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 20px;
}

.promise-icon svg {
    width: 32px;
    height: 32px;
}

.promise-icon.green { background: #D1FAE5; color: #059669; }
.promise-icon.blue { background: #DBEAFE; color: #2563EB; }
.promise-icon.purple { background: #EDE9FE; color: #7C3AED; }
.promise-icon.orange { background: #FEF3C7; color: #D97706; }
.promise-icon.red { background: #FEE2E2; color: #DC2626; }
.promise-icon.teal { background: #CCFBF1; color: #0D9488; }

.promise-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.promise-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.promise-highlight {
    padding: 10px 16px;
    background: var(--bg-gray);
    border-radius: 8px;
    border-left: 3px solid var(--accent);
}

.promise-highlight span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Guarantee Banner */
.guarantee-banner {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 40px;
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    border-radius: var(--border-radius-lg);
    border: 2px solid #F59E0B;
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    color: #D97706;
    box-shadow: var(--shadow-md);
}

.guarantee-icon svg {
    width: 40px;
    height: 40px;
}

.guarantee-content {
    flex: 1;
}

.guarantee-content h4 {
    font-size: 1.5rem;
    color: #92400E;
    margin-bottom: 8px;
}

.guarantee-content p {
    color: #78350F;
    font-size: 1rem;
    line-height: 1.6;
}

.guarantee-banner .btn {
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .promise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .promise-grid {
        grid-template-columns: 1fr;
    }
    
    .guarantee-banner {
        flex-direction: column;
        text-align: center;
        padding: 32px;
    }
    
    .guarantee-banner .btn {
        width: 100%;
    }
}

/* Animation for promise cards */
.promise-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.promise-card:nth-child(1) { animation-delay: 0.1s; }
.promise-card:nth-child(2) { animation-delay: 0.2s; }
.promise-card:nth-child(3) { animation-delay: 0.3s; }
.promise-card:nth-child(4) { animation-delay: 0.4s; }
.promise-card:nth-child(5) { animation-delay: 0.5s; }
.promise-card:nth-child(6) { animation-delay: 0.6s; }

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

.packages::before {
    display: none;
}

.packages .section-tag {
    color: rgba(255, 255, 255, 0.8);
}

.packages .section-title {
    color: var(--text-white);
}

.packages .section-desc {
    color: rgba(255, 255, 255, 0.8);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.package-card {
    background: var(--bg-white);
    border: none;
    border-radius: var(--border-radius-lg);
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-lg);
}

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

.package-card.popular {
    background: var(--bg-white);
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.package-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.package-card.premium {
    background: var(--bg-white);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--bg-gray);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
}

.package-card.popular .package-badge {
    background: var(--primary);
    color: white;
}

.package-card.premium .package-badge {
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
    color: white;
}

.package-name {
    font-size: 1.5rem;
    margin-top: 16px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.package-price {
    margin-bottom: 8px;
}

.package-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
    vertical-align: top;
}

.package-price .amount {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
}

.package-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 32px;
}

.package-features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-light);
}

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

.package-features svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
    flex-shrink: 0;
}

.package-card .btn {
    width: 100%;
}

/* ===== How It Works Section ===== */
.how-it-works {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
    position: relative;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.step {
    position: relative;
    text-align: center;
    padding: 0 24px;
}

.step-number {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(37, 99, 235, 0.1);
    line-height: 1;
    margin-bottom: 24px;
}

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

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-gray);
    border: 2px solid var(--border-light);
    border-radius: 20px;
    color: var(--primary);
    transition: var(--transition-smooth);
}

.step:hover .step-icon {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: scale(1.1);
}

.step-icon svg {
    width: 36px;
    height: 36px;
}

.step h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

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

.step-connector {
    position: absolute;
    top: 140px;
    right: -12px;
    width: 24px;
    height: 2px;
    background: var(--border-light);
}

.step:last-child .step-connector {
    display: none;
}

/* ===== Testimonials Section ===== */
.testimonials {
    padding: var(--section-padding) 0;
    background: var(--bg-gray);
    overflow: hidden;
}

.testimonials-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 380px;
    scroll-snap-align: start;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    position: relative;
}

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

.testimonial-card.featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, #EFF6FF 0%, #FFFFFF 100%);
}

/* Verified Badge */
.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #D1FAE5;
    color: #059669;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 16px;
}

.verified-badge svg {
    width: 14px;
    height: 14px;
}

/* Avatar Colors */
.avatar.pink { background: #EC4899; }
.avatar.green { background: #10B981; }
.avatar.purple { background: #8B5CF6; }
.avatar.orange { background: #F59E0B; }

/* Parent location */
.author-info small {
    display: block;
    font-size: 0.75rem;
    color: var(--accent);
    margin-top: 2px;
}

/* Testimonial Outcome */
.testimonial-outcome {
    padding: 12px 16px;
    background: #F0FDF4;
    border-radius: 8px;
    border-left: 3px solid #10B981;
    margin-bottom: 16px;
}

.outcome-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #065F46;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.outcome-text {
    display: block;
    font-size: 0.9rem;
    color: #047857;
    margin-top: 4px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    color: white;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
    color: var(--text-primary);
}

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

.location-flag {
    margin-left: auto;
    font-size: 1.5rem;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-rating {
    color: #FBBF24;
    letter-spacing: 2px;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

.slider-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
    color: var(--text-primary);
}

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

.slider-btn svg {
    width: 20px;
    height: 20px;
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-medium);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--primary);
}

/* ===== Hospital Network Section ===== */
.hospital-network {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

.network-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 32px;
    margin-bottom: 48px;
}

.network-card {
    background: var(--bg-gray);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    border: 1px solid var(--border-light);
}

.network-card h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.network-card h3 svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.network-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* City List */
.city-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 24px;
}

.city-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: var(--bg-white);
    border-radius: 8px;
    border: 1px solid var(--border-light);
    transition: var(--transition-fast);
}

.city-item:hover {
    border-color: var(--primary);
}

.city-item.active {
    background: var(--primary);
    border-color: var(--primary);
}

.city-item.active .city-name,
.city-item.active .city-status {
    color: white;
}

.city-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

.city-count {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.city-status {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.expansion-note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #FEF3C7;
    border-radius: 8px;
    color: #92400E;
    font-size: 0.9rem;
}

.expansion-note svg {
    width: 20px;
    height: 20px;
    color: #D97706;
    flex-shrink: 0;
}

/* Hospital Logos Grid */
.hospital-logos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.hospital-logo {
    padding: 16px 12px;
    background: var(--bg-white);
    border-radius: 8px;
    border: 1px solid var(--border-light);
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.hospital-logo:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Network Stats */
.network-stats {
    display: flex;
    justify-content: space-around;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}

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

.net-stat-num {
    display: block;
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
}

.net-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Location Check CTA */
.location-check {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 40px;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    border-radius: var(--border-radius-lg);
    border: 1px solid #BFDBFE;
}

.location-check-content h4 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.location-check-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .network-grid {
        grid-template-columns: 1fr;
    }
    
    .hospital-logos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .city-list {
        grid-template-columns: 1fr;
    }
    
    .hospital-logos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .location-check {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 32px;
    }
    
    .network-stats {
        flex-direction: column;
        gap: 16px;
    }
}

/* ===== FAQ Section ===== */
.faq-section {
    padding: var(--section-padding) 0;
    background: var(--bg-gray);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

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

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: var(--transition-fast);
}

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

.faq-question span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    flex: 1;
    padding-right: 16px;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    color: var(--primary);
}

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

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

.faq-cta {
    text-align: center;
    margin-top: 48px;
}

.faq-cta p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.faq-cta .btn svg {
    width: 20px;
    height: 20px;
}

/* ===== Emergency Section ===== */
.emergency {
    padding: 80px 0;
    background: var(--bg-white);
}

.emergency-card {
    display: flex;
    align-items: center;
    gap: 32px;
    background: #FEF2F2;
    border: 1px solid #FECACA;
    border-radius: var(--border-radius-lg);
    padding: 48px;
}

.emergency-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FEE2E2;
    border-radius: 20px;
    color: #DC2626;
}

.emergency-icon svg {
    width: 40px;
    height: 40px;
}

.emergency-content {
    flex: 1;
}

.emergency-content h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #991B1B;
}

.emergency-content p {
    color: #7F1D1D;
    line-height: 1.6;
}

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

/* Free Consultation Banner */
.free-consultation-banner {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 32px 40px;
    background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
    border: 2px solid #10B981;
    border-radius: var(--border-radius-lg);
    margin-bottom: 60px;
}

.consult-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #10B981;
    color: white;
    font-size: 1.25rem;
    font-weight: 800;
    border-radius: 8px;
    flex-shrink: 0;
}

.badge-pulse {
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.consult-content {
    flex: 1;
}

.consult-content h3 {
    font-size: 1.5rem;
    color: #065F46;
    margin-bottom: 4px;
}

.consult-content p {
    color: #047857;
    font-size: 0.95rem;
}

.consult-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

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

@media (max-width: 1024px) {
    .free-consultation-banner {
        flex-direction: column;
        text-align: center;
        padding: 32px;
    }
    
    .consult-actions {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Form Header */
.form-header {
    text-align: center;
    margin-bottom: 32px;
}

.form-badge {
    display: inline-block;
    padding: 6px 16px;
    background: #10B981;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 100px;
    margin-bottom: 12px;
}

.form-header h3 {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.form-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info .section-title {
    text-align: left;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
}

.method-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--icon-blue);
    border-radius: 14px;
    color: var(--primary);
}

.method-icon svg {
    width: 24px;
    height: 24px;
}

.contact-method h4 {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-method a {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

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

.timezone-info {
    background: var(--bg-gray);
    border-radius: var(--border-radius);
    padding: 24px;
}

.timezone-info h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.timezone-info > p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.timezones {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.timezones span {
    padding: 6px 12px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Contact Form */
.contact-form-container {
    position: sticky;
    top: 100px;
}

.contact-form {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 32px;
    text-align: center;
    color: var(--text-primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236B7280' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.05rem;
}

/* ===== Footer ===== */
.footer {
    background: var(--bg-gray);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand > p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.social-links svg {
    width: 18px;
    height: 18px;
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

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

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

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
    text-align: center;
}

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

.footer-tagline {
    margin-top: 8px;
    color: var(--text-secondary) !important;
}

.footer-trust {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.footer-trust span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-trust span:not(:nth-child(2n)) {
    padding: 4px 12px;
    background: var(--bg-white);
    border-radius: 4px;
}

/* ===== Mobile Menu ===== */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.98);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

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

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mobile-menu-content a {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.mobile-menu-content a:hover {
    color: var(--primary);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 100px;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-card.featured {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .package-card.popular {
        transform: scale(1);
    }
    
    .package-card.popular:hover {
        transform: translateY(-8px);
    }
    
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }
    
    .step-connector {
        display: none;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact-info .section-title {
        text-align: center;
    }
    
    .contact-info > p {
        text-align: center;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .stat-divider {
        width: 40px;
        height: 1px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card.featured {
        grid-column: span 1;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .emergency-card {
        flex-direction: column;
        text-align: center;
        padding: 32px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand > p {
        max-width: none;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .package-card {
        padding: 32px 24px;
    }
    
    .contact-form {
        padding: 28px;
    }
    
    .testimonial-card {
        flex: 0 0 calc(100vw - 48px);
    }
}

/* ===== Animations on Scroll ===== */
.service-card,
.package-card,
.step,
.testimonial-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

.step:nth-child(1) { animation-delay: 0.1s; }
.step:nth-child(2) { animation-delay: 0.2s; }
.step:nth-child(3) { animation-delay: 0.3s; }
.step:nth-child(4) { animation-delay: 0.4s; }

/* ===== Floating Social Buttons ===== */
.floating-social {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 56px;
    height: 56px;
    border-radius: 28px;
    color: white;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
}

.floating-btn svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    margin-left: 14px;
}

.floating-label {
    opacity: 0;
    white-space: nowrap;
    font-size: 0.9rem;
    font-weight: 600;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.floating-btn:hover {
    width: auto;
    padding-right: 20px;
}

.floating-btn:hover .floating-label {
    opacity: 1;
    transform: translateX(0);
}

.floating-btn.whatsapp {
    background: #25D366;
}

.floating-btn.whatsapp:hover {
    background: #20BD5A;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.floating-btn.call {
    background: var(--primary);
}

.floating-btn.call:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

/* Floating button animation on load */
.floating-btn {
    animation: floatIn 0.6s ease backwards;
}

.floating-btn.whatsapp {
    animation-delay: 0.8s;
}

.floating-btn.call {
    animation-delay: 0.9s;
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Pulse animation for WhatsApp */
.floating-btn.whatsapp::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    background: #25D366;
    animation: floatingPulse 2s ease-in-out infinite;
    z-index: -1;
}

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

/* Mobile adjustments for floating buttons */
@media (max-width: 768px) {
    .floating-social {
        bottom: 16px;
        right: 16px;
    }
    
    .floating-btn {
        width: 52px;
        height: 52px;
    }
    
    .floating-btn svg {
        width: 24px;
        height: 24px;
        margin-left: 14px;
    }
}

/* ===== Senior Care Packages Section ===== */
.senior-packages {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, #FFFBF5 0%, #FFF7ED 100%);
    position: relative;
}

.senior-packages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #F59E0B 0%, #D97706 50%, #B45309 100%);
}

.highlight-warm {
    color: #D97706;
    position: relative;
}

.highlight-warm::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 6px;
    background: rgba(217, 119, 6, 0.15);
    border-radius: 3px;
    z-index: -1;
}

/* Senior Packages Grid */
.senior-packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

/* Senior Package Card */
.senior-package-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    position: relative;
}

.senior-package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.senior-package-card.popular {
    transform: scale(1.05);
    z-index: 2;
}

.senior-package-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-ribbon {
    position: absolute;
    top: 16px;
    right: -32px;
    background: #10B981;
    color: white;
    padding: 6px 40px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: rotate(45deg);
    z-index: 10;
}

/* Senior Package Header */
.senior-package-header {
    padding: 24px;
    text-align: center;
    position: relative;
}

.senior-package-header.silver {
    background: linear-gradient(135deg, #9CA3AF 0%, #6B7280 100%);
}

.senior-package-header.gold {
    background: linear-gradient(135deg, #FCD34D 0%, #F59E0B 100%);
}

.senior-package-header.platinum {
    background: linear-gradient(135deg, #60A5FA 0%, #2563EB 100%);
}

.senior-package-header.diamond {
    background: linear-gradient(135deg, #A855F7 0%, #7C3AED 100%);
}

.senior-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
    margin-bottom: 8px;
}

.senior-package-header h3 {
    font-size: 1.25rem;
    color: white;
    margin: 0;
}

/* Senior Package Body */
.senior-package-body {
    padding: 32px 24px;
}

.senior-price {
    text-align: center;
    margin-bottom: 12px;
}

.senior-price .currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-secondary);
    vertical-align: top;
}

.senior-price .amount {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.senior-desc {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.senior-features {
    list-style: none;
    margin-bottom: 24px;
}

.senior-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-light);
}

.senior-features li:last-child {
    border-bottom: none;
}

.senior-features svg {
    width: 16px;
    height: 16px;
    color: #10B981;
    flex-shrink: 0;
}

.senior-package-body .btn {
    width: 100%;
}

/* Specialized Packages Title */
.specialized-title {
    text-align: center;
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 32px;
    position: relative;
}

.specialized-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #D97706;
    margin: 12px auto 0;
    border-radius: 2px;
}

/* Specialized Packages Grid */
.specialized-packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

/* Specialized Card */
.specialized-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

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

.specialized-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.specialized-icon svg {
    width: 32px;
    height: 32px;
}

.specialized-icon.cardiac {
    background: #FEE2E2;
    color: #DC2626;
}

.specialized-icon.diabetes {
    background: #DBEAFE;
    color: #2563EB;
}

.specialized-icon.cancer {
    background: #FCE7F3;
    color: #DB2777;
}

.specialized-content {
    flex: 1;
}

.specialized-content h4 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.specialized-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 16px;
    line-height: 1.5;
}

.specialized-price {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #D97706;
    margin-bottom: 16px;
}

.specialized-tests {
    list-style: none;
    margin-bottom: 20px;
}

.specialized-tests li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.specialized-tests li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #D97706;
    font-weight: bold;
}

.specialized-card .btn {
    margin-top: auto;
}

/* Trust Badges */
.senior-trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    padding: 32px;
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--bg-gray);
    border-radius: 100px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-badge svg {
    width: 20px;
    height: 20px;
    color: #D97706;
}

/* Senior Packages Responsive */
@media (max-width: 1200px) {
    .senior-packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .senior-package-card.popular {
        transform: scale(1);
    }
    
    .senior-package-card.popular:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 1024px) {
    .specialized-packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .senior-packages-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 48px;
    }
    
    .specialized-packages-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .senior-trust-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .trust-badge {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .popular-ribbon {
        display: none;
    }
}

/* Animation for senior package cards */
.senior-package-card,
.specialized-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.senior-package-card:nth-child(1) { animation-delay: 0.1s; }
.senior-package-card:nth-child(2) { animation-delay: 0.2s; }
.senior-package-card:nth-child(3) { animation-delay: 0.3s; }
.senior-package-card:nth-child(4) { animation-delay: 0.4s; }

.specialized-card:nth-child(1) { animation-delay: 0.5s; }
.specialized-card:nth-child(2) { animation-delay: 0.6s; }
.specialized-card:nth-child(3) { animation-delay: 0.7s; }

/* ===== Sticky Bottom CTA ===== */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border-light);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    padding: 16px 24px;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta-content {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.sticky-cta-text {
    display: flex;
    flex-direction: column;
}

.sticky-cta-text strong {
    font-size: 1rem;
    color: var(--text-primary);
}

.sticky-cta-text span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.sticky-cta-actions {
    display: flex;
    gap: 12px;
}

.btn-sticky-call {
    background: var(--primary);
    color: white;
    padding: 12px 24px;
    font-size: 0.95rem;
    border-radius: 8px;
}

.btn-sticky-call:hover {
    background: var(--primary-dark);
}

.btn-sticky-call svg {
    width: 18px;
    height: 18px;
}

.btn-sticky-whatsapp {
    background: #25D366;
    color: white;
    padding: 12px 24px;
    font-size: 0.95rem;
    border-radius: 8px;
}

.btn-sticky-whatsapp:hover {
    background: #20BD5A;
}

.btn-sticky-whatsapp svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 768px) {
    .sticky-cta-content {
        flex-direction: column;
        gap: 12px;
    }
    
    .sticky-cta-text {
        text-align: center;
    }
    
    .sticky-cta-actions {
        width: 100%;
    }
    
    .sticky-cta-actions .btn {
        flex: 1;
        justify-content: center;
    }
    
    /* Adjust floating buttons position when sticky CTA is visible */
    .floating-social {
        bottom: 100px;
    }
}
