/* ==========================================================================
   MYRAPLUS PET HEALTH CARE — DESIGN SYSTEM & STYLESHEET
   Built for high conversion, rich aesthetics, fast load, and full dark/light mode
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS DESIGN TOKENS & THEMING
   -------------------------------------------------------------------------- */
:root {
    /* Color Tokens — Light Theme (Default) */
    --primary-hue: 168;
    --primary-color: #0E8771;          /* Emerald Pet Teal */
    --primary-hover: #0A6A58;
    --primary-light: #E8F6F3;
    
    --secondary-color: #0284C7;        /* Trust Blue */
    --secondary-hover: #0369A1;
    --accent-color: #F59E0B;           /* Warm Amber Gold */
    
    --bg-body: #F8FAFC;                 /* Clean Light Slate */
    --bg-card: #FFFFFF;
    --bg-card-hover: #F1F5F9;
    --bg-surface: #EDF2F7;
    
    --text-main: #0F172A;
    --text-muted: #475569;
    --text-light: #64748B;
    
    --border-color: #E2E8F0;
    --border-highlight: rgba(14, 135, 113, 0.2);
    
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 16px 36px rgba(15, 23, 42, 0.12);
    
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.4);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Theme Overrides */
[data-theme="dark"] {
    --primary-color: #14B8A6;
    --primary-hover: #2DD4BF;
    --primary-light: rgba(20, 184, 166, 0.15);
    
    --secondary-color: #38BDF8;
    --secondary-hover: #7DD3FC;
    --accent-color: #FBBF24;
    
    --bg-body: #0B131E;                 /* Obsidian Dark Teal */
    --bg-card: #142232;
    --bg-card-hover: #1C2D42;
    --bg-surface: #18283B;
    
    --text-main: #F1F5F9;
    --text-muted: #94A3B8;
    --text-light: #CBD5E1;
    
    --border-color: #1E293B;
    --border-highlight: rgba(20, 184, 166, 0.3);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 36px rgba(0, 0, 0, 0.5);
    
    --glass-bg: rgba(20, 34, 50, 0.85);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color var(--transition-normal), color var(--transition-normal);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    line-height: 1.25;
    font-weight: 700;
}

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

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.w-full { width: 100%; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.text-center { text-align: center; }

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY & KEYWORD HIGHLIGHTING (Rule 3A)
   -------------------------------------------------------------------------- */
.section-header {
    margin-bottom: 3rem;
}

.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 1rem;
    border-radius: var(--radius-full);
    background: var(--primary-light);
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.75rem;
    }
}

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

/* Keyword Styling (Rule 3A: Gradient/Highlight on key niche terms) */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.highlight-text {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--primary-light);
    z-index: -1;
    border-radius: 4px;
}

/* --------------------------------------------------------------------------
   4. BUTTONS & UI COMPONENTS
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all var(--transition-fast);
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(14, 135, 113, 0.35);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 135, 113, 0.45);
}

.btn-secondary {
    background-color: var(--bg-card);
    color: var(--text-main);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background-color: var(--bg-card-hover);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

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

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

.btn-whatsapp {
    background-color: #25D366;
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
    background-color: #1DA851;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.btn-light {
    background-color: #FFFFFF;
    color: #0F172A;
    font-weight: 700;
}

.btn-light:hover {
    background-color: #F1F5F9;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1.05rem;
}

/* --------------------------------------------------------------------------
   5. NAVBAR STYLES
   -------------------------------------------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #FFFFFF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    position: relative;
    box-shadow: 0 4px 12px rgba(14, 135, 113, 0.3);
}

.paw-sub {
    position: absolute;
    bottom: -2px;
    right: -2px;
    font-size: 0.65rem;
    color: var(--accent-color);
}

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

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-main);
    line-height: 1.1;
}

.brand-tag {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-menu {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 992px) {
    .nav-menu {
        display: flex;
    }
}

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

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-fast);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all var(--transition-fast);
}

.theme-toggle:hover {
    background: var(--primary-light);
    color: var(--primary-color);
}

.sun-icon { display: none; }
[data-theme="dark"] .sun-icon { display: block; }
[data-theme="dark"] .moon-icon { display: none; }

.nav-phone-btn {
    display: none;
    padding: 0.6rem 1.1rem;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .nav-phone-btn { display: inline-flex; }
}

.nav-cta {
    display: none;
    padding: 0.6rem 1.25rem;
    font-size: 0.875rem;
}

@media (min-width: 576px) {
    .nav-cta { display: inline-flex; }
}

.hamburger-menu {
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 8px;
}

@media (min-width: 992px) {
    .hamburger-menu { display: none; }
}

.hamburger-menu span {
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

/* Mobile Nav Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: var(--bg-card);
    z-index: 1100;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    transition: right var(--transition-normal);
    box-shadow: var(--shadow-lg);
}

.mobile-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.drawer-close {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
}

.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1.5rem;
    flex-grow: 1;
}

.drawer-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
}

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

.drawer-footer {
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}

.drawer-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

/* --------------------------------------------------------------------------
   6. HERO SECTION & PARALLAX BACKGROUND
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 60px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-parallax-bg {
    position: absolute;
    inset: -50px;
    background-image: url('https://images.unsplash.com/photo-1548767797-d8c844163c4c?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    z-index: 1;
    opacity: 0.12;
    transform: translateY(0);
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--bg-body) 0%, rgba(248, 250, 252, 0.8) 50%, var(--bg-body) 100%);
    z-index: 2;
}

[data-theme="dark"] .hero-overlay {
    background: linear-gradient(180deg, var(--bg-body) 0%, rgba(11, 19, 30, 0.85) 50%, var(--bg-body) 100%);
}

.hero-container {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .hero-container {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-main);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.25rem;
}

.badge-icon {
    color: var(--primary-color);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    letter-spacing: -1px;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 580px;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

/* Trust Stats Bar — Mobile Horizontal Row Layout */
.hero-trust-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow-x: auto;
}

.trust-item {
    text-align: center;
    flex: 1;
    min-width: 80px;
}

.trust-number {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.1;
}

.trust-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    white-space: nowrap;
}

.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-img {
    width: 100%;
    height: 440px;
    object-fit: cover;
}

.hero-glass-card {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.card-top {
    top: 20px;
    left: 20px;
}

.card-top h4 {
    font-size: 0.95rem;
    margin-bottom: 0.1rem;
}

.card-top p {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.icon-teal {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.card-bottom {
    bottom: 20px;
    right: 20px;
    max-width: 280px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
}

.rating-stars {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.card-bottom p {
    font-size: 0.82rem;
    font-style: italic;
    color: var(--text-main);
}

.reviewer {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* --------------------------------------------------------------------------
   7. INTERACTIVE SECTION 1: PET SYMPTOM CHECKER
   -------------------------------------------------------------------------- */
.symptom-section {
    padding: 80px 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.symptom-checker-card {
    background: var(--bg-body);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
    .symptom-checker-card {
        padding: 3rem;
    }
}

.step-heading {
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
    color: var(--text-main);
}

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

.pet-type-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    color: var(--text-main);
    font-weight: 600;
}

.pet-type-btn:hover, .pet-type-btn.active {
    border-color: var(--primary-color);
    background: var(--primary-light);
    color: var(--primary-color);
}

.pet-icon {
    font-size: 2rem;
}

.symptom-options-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .symptom-options-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.symptom-checkbox-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.symptom-checkbox-card:hover {
    border-color: var(--primary-color);
}

.symptom-checkbox-card input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: var(--bg-surface);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.symptom-checkbox-card input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--primary-color);
    color: #FFFFFF;
}

.symptom-info h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

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

.checker-result-panel {
    background: var(--bg-card);
    border: 2px dashed var(--primary-color);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    margin-top: 1.5rem;
}

.urgency-moderate {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
    background: #FEF3C7;
    color: #92400E;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.urgency-high {
    background: #FEE2E2;
    color: #991B1B;
}

.result-title {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}

.result-body {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.result-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* --------------------------------------------------------------------------
   8. SERVICES SECTION
   -------------------------------------------------------------------------- */
.services-section {
    padding: 90px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
}

.service-title {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.service-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    font-size: 0.875rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
}

.service-features i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.service-link {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link:hover {
    gap: 0.85rem;
}

/* --------------------------------------------------------------------------
   9. WHY CHOOSE US
   -------------------------------------------------------------------------- */
.why-us-section {
    padding: 90px 0;
    background: var(--bg-surface);
}

.why-us-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .why-us-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 2rem;
}

@media (min-width: 576px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.why-card {
    background: var(--bg-card);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.why-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.why-card h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.why-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.why-us-media {
    position: relative;
}

.media-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.why-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
}

.exp-years {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
}

.exp-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main);
}

/* --------------------------------------------------------------------------
   10. INTERACTIVE SECTION 2: VACCINE & CARE SCHEDULER
   -------------------------------------------------------------------------- */
.vaccine-section {
    padding: 90px 0;
}

.scheduler-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.scheduler-controls {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;

}

@media (min-width: 768px) {
    .scheduler-controls {
        grid-template-columns: 1fr 1fr;
    }
}

.control-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.toggle-group {
    display: flex;
    background: var(--bg-surface);
    padding: 4px;
    border-radius: var(--radius-md);
}

.toggle-btn {
    flex: 1;
    padding: 0.65rem 1rem;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.toggle-btn.active {
    background: var(--bg-card);
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.select-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-surface);
    color: var(--text-main);
    outline: none;
}

.timeline-output {
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.timeline-item {
    display: flex;
    gap: 1rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1.25rem;
}

.timeline-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.time-badge {
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
    background: var(--primary-color);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 0.8rem;
    white-space: nowrap;
    align-self: flex-start;
}

.time-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

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

.scheduler-footer {
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

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

/* --------------------------------------------------------------------------
   11. SEPARATE FULL-WIDTH PARALLAX BANNER (INTERACTIVE SECTION 3)
   -------------------------------------------------------------------------- */
.parallax-banner-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    color: #FFFFFF;
}

.parallax-banner-bg {
    position: absolute;
    inset: -60px;
    background-image: url('https://images.unsplash.com/photo-1629909613654-28e377c37b09?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    z-index: 1;
    will-change: transform;
}

.parallax-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14, 135, 113, 0.9), rgba(2, 132, 199, 0.85));
    z-index: 2;
}

.parallax-banner-content {
    position: relative;
    z-index: 3;
    max-width: 860px;
    margin: 0 auto;
}

.banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.banner-title {
    font-size: 2.25rem;
    color: #FFFFFF;
    margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
    .banner-title {
        font-size: 3rem;
    }
}

.banner-subtitle {
    font-size: 1.15rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.banner-cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* --------------------------------------------------------------------------
   12. ABOUT SECTION
   -------------------------------------------------------------------------- */
.about-section {
    padding: 90px 0;
}

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

@media (min-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-images {
    position: relative;
}

.about-img-main-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-1 {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.about-img-sub-wrapper {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 220px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 4px solid var(--bg-card);
    box-shadow: var(--shadow-md);
    display: none;
}

@media (min-width: 576px) {
    .about-img-sub-wrapper { display: block; }
}

.about-img-2 {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.about-text {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
    margin: 1.5rem 0;
}

@media (min-width: 576px) {
    .about-highlights {
        grid-template-columns: 1fr 1fr;
    }
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.highlight-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.about-doctor-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--primary-light);
    border-radius: var(--radius-md);
    margin-top: 1.5rem;
}

.doc-avatar {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: var(--primary-color);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.doc-info h4 {
    font-size: 1.05rem;
    margin-bottom: 0.1rem;
}

.doc-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.doc-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* --------------------------------------------------------------------------
   13. INTERACTIVE SECTION 4: CARE PACKAGE COST ESTIMATOR
   -------------------------------------------------------------------------- */
.cost-section {
    padding: 90px 0;
    background: var(--bg-surface);
}

.cost-estimator-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.estimator-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 992px) {
    .estimator-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.estimator-controls h3 {
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
}

.calc-checkbox {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.calc-checkbox:hover {
    border-color: var(--primary-color);
}

.calc-checkbox input {
    display: none;
}

.calc-box {
    width: 22px;
    height: 22px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    position: relative;
    transition: all var(--transition-fast);
}

.calc-checkbox input:checked + .calc-box {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.calc-checkbox input:checked + .calc-box::after {
    content: '✓';
    color: #FFFFFF;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.8rem;
    font-weight: bold;
}

.calc-label-info {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-weight: 600;
}

.calc-price {
    color: var(--primary-color);
}

.summary-box {
    background: var(--bg-surface);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.summary-box h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.summary-list {
    list-style: none;
    margin-bottom: 1rem;
}

.summary-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.summary-divider {
    height: 1px;
    background: var(--border-color);
    margin: 1rem 0;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-main);
}

.total-amount {
    color: var(--primary-color);
}

.summary-disclaimer {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* --------------------------------------------------------------------------
   14. TESTIMONIALS CAROUSEL
   -------------------------------------------------------------------------- */
.testimonials-section {
    padding: 90px 0;
}

.testimonials-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonials-track-container {
    overflow: hidden;
    width: 100%;
}

.testimonials-track {
    display: flex;
    gap: 1.5rem;
    transition: transform var(--transition-normal);
}

.testimonial-card {
    min-width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .testimonial-card {
        min-width: calc(50% - 0.75rem);
    }
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.stars {
    color: var(--accent-color);
    font-size: 1rem;
}

.review-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

.review-quote {
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--primary-light);
    color: var(--primary-color);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviewer-name {
    font-size: 0.95rem;
    margin-bottom: 0.1rem;
}

.reviewer-meta {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.carousel-arrow {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.carousel-arrow:hover {
    background: var(--primary-color);
    color: #FFFFFF;
    border-color: var(--primary-color);
}

/* --------------------------------------------------------------------------
   15. FAQ ACCORDION
   -------------------------------------------------------------------------- */
.faq-section {
    padding: 90px 0;
    background: var(--bg-surface);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-fast);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    transition: transform var(--transition-fast);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 1.25rem;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   16. CONTACT SECTION & WIRED FORM
   -------------------------------------------------------------------------- */
.contact-section {
    padding: 90px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
}

.info-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-card h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

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

.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
}

.form-subtext {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--text-main);
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon i {
    position: absolute;
    left: 14px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.input-with-icon input, 
.input-with-icon select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.6rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-surface);
    color: var(--text-main);
    outline: none;
    transition: border-color var(--transition-fast);
}

.form-group textarea {
    padding-left: 1rem;
}

.input-with-icon input:focus,
.input-with-icon select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
}

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

@media (min-width: 576px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-secure-note {
    font-size: 0.75rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 0.85rem;
}

/* --------------------------------------------------------------------------
   17. FOOTER STYLES
   -------------------------------------------------------------------------- */
.footer {
    background: #09111E;
    color: #94A3B8;
    padding-top: 70px;
    border-top: 1px solid #1E293B;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 50px;
}

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
}

.footer-brand .brand-name {
    color: #FFFFFF;
}

.footer-desc {
    font-size: 0.9rem;
    margin: 1rem 0 1.5rem;
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    background: #18283B;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

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

.footer h4 {
    color: #FFFFFF;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 0.65rem;
}

.footer ul a {
    font-size: 0.9rem;
    color: #94A3B8;
}

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

.footer-contact p {
    font-size: 0.88rem;
    margin-bottom: 0.65rem;
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid #1E293B;
    padding: 1.5rem 0;
    font-size: 0.85rem;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.agency-credit a {
    color: var(--primary-color);
    font-weight: 700;
}

/* --------------------------------------------------------------------------
   18. MANDATORY FIXED ELEMENTS (Scroll-to-top & WhatsApp)
   -------------------------------------------------------------------------- */
/* Scroll to Top Button (Fixed above WhatsApp) */
.scroll-top-btn {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 46px;
    height: 46px;
    border-radius: var(--radius-full);
    background: var(--primary-color);
    color: #FFFFFF;
    border: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    z-index: 990;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-4px);
}

/* WhatsApp Floating Button (Lowest position) */
.whatsapp-float-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    background-color: #25D366;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.5);
    z-index: 999;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-tooltip {
    position: absolute;
    right: 68px;
    background: #09111E;
    color: #FFFFFF;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 0.85rem;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast);
}

.whatsapp-float-btn:hover .whatsapp-tooltip {
    opacity: 1;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}
