/* ==========================================
   ADHVIK LABS — Ultra Premium Healthcare CSS
   Ludhiana Edition — "Not possible for human to make"
   ========================================== */

:root {
    --primary: #0F4CFF;
    --primary-light: #3B82F6;
    --primary-dark: #0A3AD1;
    --primary-50: #EEF2FF;
    --primary-100: #C7D7FE;
    --secondary: #10B981;
    --secondary-light: #34D399;
    --secondary-50: #ECFDF5;
    --dark: #1E293B;
    --dark-700: #334155;
    --dark-600: #475569;
    --dark-500: #64748B;
    --dark-400: #94A3B8;
    --gray-100: #F8FAFC;
    --gray-200: #F1F5F9;
    --gray-300: #E2E8F0;
    --gray-400: #CBD5E1;
    --white: #FFFFFF;
    --radius: 22px;
    --radius-sm: 16px;
    --radius-xs: 12px;
    --shadow-sm: 0 2px 8px rgba(15, 76, 255, 0.04);
    --shadow-md: 0 8px 30px rgba(15, 76, 255, 0.07);
    --shadow-lg: 0 16px 50px rgba(15, 76, 255, 0.10);
    --shadow-xl: 0 24px 70px rgba(15, 76, 255, 0.13);
    --shadow-glow: 0 0 80px rgba(15, 76, 255, 0.18);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    --font-primary: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 17px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; }

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

.section-padding {
    padding: 120px 0;
}

.bg-light-custom {
    background: var(--gray-100);
}

/* ==========================================
   PARALLAX & SCROLL ANIMATIONS
   ========================================== */
[data-parallax] {
    will-change: transform;
    transition: transform 0.1s linear;
}

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

@keyframes floatLeftRight {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-10px); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(15, 76, 255, 0.2); }
    50% { box-shadow: 0 0 40px rgba(15, 76, 255, 0.4); }
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 10px rgba(16, 185, 129, 0.5); }
    50% { opacity: 0.6; transform: scale(1.4); box-shadow: 0 0 20px rgba(16, 185, 129, 0.8); }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.scroll-reveal.revealed { opacity: 1; transform: translateY(0); }

.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.scroll-reveal-left.revealed { opacity: 1; transform: translateX(0); }

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.scroll-reveal-right.revealed { opacity: 1; transform: translateX(0); }

.scroll-reveal-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.scroll-reveal-scale.revealed { opacity: 1; transform: scale(1); }

.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.1s; }
.stagger-3 { transition-delay: 0.15s; }
.stagger-4 { transition-delay: 0.2s; }
.stagger-5 { transition-delay: 0.25s; }
.stagger-6 { transition-delay: 0.3s; }
.stagger-7 { transition-delay: 0.35s; }
.stagger-8 { transition-delay: 0.4s; }

[data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
[data-aos="fade-left"] {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
[data-aos="fade-right"].aos-animate,
[data-aos="fade-left"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

/* ==========================================
   TOP BAR
   ========================================== */
.topbar {
    background: var(--dark);
    padding: 0;
    font-size: 12.5px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.topbar-link {
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    padding: 7px 0;
}

.topbar-link i {
    font-size: 11px;
    color: var(--primary);
}

.topbar-link:hover { color: var(--white); }

.topbar-divider {
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,0.15);
}

.topbar-social-link {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.45);
    font-size: 12px;
    transition: var(--transition);
}

.topbar-social-link:hover {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

/* ==========================================
   HEADER / NAVBAR
   ========================================== */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition);
}

.main-header.scrolled {
    box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

.main-header .navbar {
    padding: 0;
    min-height: 68px;
}

.navbar-brand { margin-right: 0; }

.header-logo {
    height: 48px;
    width: auto;
    transition: var(--transition);
}

.main-header.scrolled .header-logo {
    height: 40px;
}

.main-header.scrolled .navbar {
    min-height: 56px;
}

/* Thyrocare Association Strip */
.thyrocare-association-strip {
    background: linear-gradient(90deg, var(--primary-50), #f0fdf4);
    padding: 4px 0;
    border-top: 1px solid rgba(15, 76, 255, 0.06);
}

.thyrocare-strip-text {
    font-size: 11px;
    font-weight: 500;
    color: var(--gray-500);
    letter-spacing: 0.02em;
}

.thyrocare-strip-logo {
    height: 16px;
    width: auto;
}

.thyrocare-strip-sep {
    color: var(--gray-300);
    font-size: 11px;
}

.main-header.scrolled .thyrocare-association-strip {
    display: none;
}

/* Nav links */
.navbar-nav .nav-link {
    font-weight: 500;
    font-size: 14.5px;
    color: var(--dark-600);
    padding: 8px 14px !important;
    border-radius: var(--radius-xs);
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
    letter-spacing: -0.01em;
}

.navbar-nav .nav-link:hover {
    color: var(--primary);
    background: var(--primary-50);
}

.navbar-nav .nav-link.active {
    color: var(--primary);
    font-weight: 600;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

@media (min-width: 1200px) {
    .nav-item.dropdown:hover > .dropdown-menu {
        display: block;
        animation: dropdownFadeIn 0.2s ease;
    }
    .nav-item.dropdown {
        padding-bottom: 10px;
        margin-bottom: -10px;
    }
}

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

.dropdown-menu-custom {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
    padding: 8px;
    margin-top: 0;
    min-width: 260px;
}

.dropdown-menu-custom .dropdown-item {
    border-radius: var(--radius-xs);
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-600);
    transition: var(--transition);
}

.dropdown-menu-custom .dropdown-item:hover {
    background: var(--primary-50);
    color: var(--primary);
}

/* Action buttons */
.btn-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--gray-200);
    background: transparent;
    color: var(--dark-600);
    transition: var(--transition);
    font-size: 14px;
    padding: 0;
    position: relative;
}

.btn-icon:hover {
    background: var(--primary-50);
    color: var(--primary);
    border-color: var(--primary-100);
}

.btn-user-nav {
    background: var(--primary-50);
    border-color: var(--primary-100);
    color: var(--primary);
}

.btn-nav {
    border-radius: 8px;
    padding: 8px 18px;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.btn-book-cta {
    box-shadow: 0 2px 8px rgba(15, 76, 255, 0.25);
}

.btn-book-cta:hover {
    box-shadow: 0 4px 16px rgba(15, 76, 255, 0.35);
}

.btn-membership-badge {
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 6px;
    background: color-mix(in srgb, var(--mem-color) 10%, transparent);
    color: var(--mem-color);
    border: 1px solid color-mix(in srgb, var(--mem-color) 25%, transparent);
    white-space: nowrap;
}

.btn-membership-badge:hover {
    background: color-mix(in srgb, var(--mem-color) 15%, transparent);
    color: var(--mem-color);
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(15, 76, 255, 0.3);
}

.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
    border-width: 1.5px;
}

.btn-outline-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-1px);
}

/* Mobile Menu */
.offcanvas-mobile {
    width: 320px;
    border-right: none;
    box-shadow: var(--shadow-xl);
}

.offcanvas-mobile .offcanvas-header {
    padding: 16px 20px;
}

.offcanvas-logo {
    height: 40px;
}

.mobile-nav {
    list-style: none;
    padding: 8px 12px;
    margin: 0;
}

.mobile-nav li a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 16px;
    border-radius: var(--radius-xs);
    font-weight: 500;
    font-size: 15px;
    color: var(--dark-600);
    transition: var(--transition);
}

.mobile-nav li a.active,
.mobile-nav li a:hover {
    background: var(--primary-50);
    color: var(--primary);
}

.mobile-nav li a i {
    width: 20px;
    text-align: center;
    font-size: 14px;
    color: var(--gray-400);
}

.mobile-nav li a.active i,
.mobile-nav li a:hover i {
    color: var(--primary);
}

.mobile-actions {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid var(--gray-200);
}

.mobile-membership-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: var(--radius-xs);
    background: color-mix(in srgb, var(--mem-color) 8%, transparent);
    border: 1px solid color-mix(in srgb, var(--mem-color) 20%, transparent);
}

.mobile-membership-badge i {
    font-size: 18px;
    color: var(--mem-color);
}

.mobile-membership-badge strong {
    color: var(--mem-color);
    font-size: 14px;
    display: block;
}

.mobile-membership-badge small {
    color: var(--gray-500);
    font-size: 12px;
}

.btn-membership-mobile {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: #fff;
    font-weight: 600;
    border: none;
}

.btn-membership-mobile:hover {
    background: linear-gradient(135deg, #D97706, #B45309);
    color: #fff;
}

.mobile-footer {
    padding: 16px 20px;
    border-top: 1px solid var(--gray-200);
    color: var(--gray-400);
}

/* Navbar toggler */
.navbar-toggler {
    border: 1.5px solid var(--gray-200);
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 16px;
    color: var(--dark-600);
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ==========================================
   HERO BANNER CAROUSEL
   ========================================== */
.hero-banner-carousel {
    position: relative;
    border-radius: 24px;
    overflow: visible;
    box-shadow: 0 20px 60px rgba(15, 76, 255, 0.2);
    opacity: 1 !important;
    transform: none !important;
}

.hero-slides-wrapper {
    position: relative;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
}

.hero-slide {
    display: none;
    animation: heroFadeIn 0.6s ease;
    opacity: 1 !important;
    transform: none !important;
}

.hero-slide.active {
    display: block;
}

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

.hero-banner-slide {
    border-radius: 24px;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.hero-banner-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 40%);
    pointer-events: none;
}

/* Slide Indicators */
.hero-slide-indicators {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.hero-indicator {
    width: 10px;
    height: 10px;
    border-radius: 10px;
    border: none;
    background: rgba(255,255,255,0.35);
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.hero-indicator.active {
    width: 32px;
    background: #fff;
}

.hero-indicator:hover {
    background: rgba(255,255,255,0.7);
}

/* Slide Arrows */
.hero-slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--gray-300);
    background: var(--white);
    color: var(--dark-600);
    font-size: 14px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.hero-slide-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(15, 76, 255, 0.3);
}

.hero-arrow-prev { left: -22px; }
.hero-arrow-next { right: -22px; }

@media (max-width: 768px) {
    .hero-slide-arrow { display: none; }
    .hero-slide-indicators { bottom: 10px; }
    .hero-indicator { width: 8px; height: 8px; }
    .hero-indicator.active { width: 24px; }
}

/* ==========================================
   GIFT HEALTH CAMPAIGN BANNER
   ========================================== */
.gift-health-banner {
    border-radius: 24px;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.gift-banner-content {
    padding: 40px 44px;
    position: relative;
    z-index: 2;
}

.gift-banner-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    color: #FDE68A;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.gift-banner-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 900;
    color: white;
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.gift-strike {
    text-decoration: line-through;
    text-decoration-color: #EF4444;
    text-decoration-thickness: 3px;
    opacity: 0.7;
    color: #FCA5A5;
}

.gift-highlight {
    background: linear-gradient(135deg, #FDE68A, #34D399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gift-hooks {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.gift-hook {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
}

.gift-hook strong { color: white; }

.hook-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
}

.hook-red { background: rgba(239, 68, 68, 0.25); color: #FCA5A5; }
.hook-green { background: rgba(16, 185, 129, 0.3); color: #6EE7B7; }

.gift-cta-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-gift-primary {
    background: linear-gradient(135deg, #FDE68A, #F59E0B);
    color: #1a0a3e;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 14px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
}

.btn-gift-primary:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.5);
    color: #1a0a3e;
}

.gift-starting {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.gift-starting strong {
    color: #FDE68A;
    font-size: 20px;
}

/* Gift Banner Visual */
.gift-banner-visual {
    align-items: center;
    justify-content: center;
    padding: 30px;
    position: relative;
}

.gift-visual-stack {
    position: relative;
    width: 100%;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gift-banner-img {
    width: 100%;
    max-width: 380px;
    height: auto;
    filter: drop-shadow(0 8px 30px rgba(0,0,0,0.3));
}

.gift-card-pop {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 14px 18px;
    border-radius: 16px;
    position: absolute;
    white-space: nowrap;
    animation: floatUpDown 5s ease-in-out infinite;
}

.gift-card-pop strong {
    display: block;
    font-size: 13px;
    color: white;
    font-weight: 700;
}

.gift-card-pop small {
    font-size: 11px;
    color: rgba(255,255,255,0.7);
}

.gift-pop-emoji {
    font-size: 28px;
    line-height: 1;
}

.gift-pop-1 { top: 0; left: 10px; animation-delay: 0s; }
.gift-pop-2 { top: 90px; right: 0; animation-delay: -1.5s; }
.gift-pop-3 { bottom: 20px; left: 20px; animation-delay: -3s; }

.gift-big-emoji {
    position: absolute;
    font-size: 100px;
    opacity: 0.08;
    bottom: -10px;
    right: 10px;
    transform: rotate(-15deg);
}

/* ==========================================
   HERO SECTION — MAIN CONTENT
   ========================================== */
.hero-section {
    position: relative;
    overflow: hidden;
    background: #f8f6f1;
}

/* Hero Banner Slider */
.hero-banner-slider {
    position: relative;
}

.hero-slides-wrapper {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
    z-index: 1;
}

.hero-slide:first-child {
    position: relative;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.hero-banner {
    padding: 60px 0 50px;
    height: 480px;
    display: flex;
    align-items: center;
    border-radius: 0 0 24px 24px;
    position: relative;
    overflow: hidden;
}

.hero-banner-text {
    position: relative;
    z-index: 2;
}

.hero-banner-headline {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: #3d2e1f;
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

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

.hero-subline {
    text-transform: none;
    font-weight: 500;
    font-style: italic;
    font-size: 0.6em;
    color: #6b5b4a;
    letter-spacing: 0;
}

/* Price Box - Healthians style */
.hero-price-box {
    display: inline-flex;
    align-items: center;
    gap: 0;
    border: 2px solid #3d2e1f;
    border-radius: 8px;
    margin-bottom: 24px;
    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(8px);
}

.hero-test-name {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 900;
    color: #3d2e1f;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.3;
}

.hero-price-divider {
    width: 2px;
    height: 45px;
    background: #3d2e1f;
}

.hero-price {
    padding: 10px 20px;
    font-size: 28px;
    font-weight: 900;
    color: #3d2e1f;
    line-height: 1.1;
}

.hero-price small {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

/* Book Now button */
.btn-hero-book {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #3d2e1f;
    color: #fff;
    border: 2px solid #3d2e1f;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition);
    text-decoration: none;
}

.btn-hero-book:hover {
    background: transparent;
    color: #3d2e1f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Hero banner image */
.hero-banner-visual {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-banner-image {
    max-width: 100%;
    max-height: 360px;
    width: auto;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.15));
}

/* Slide arrows */
.hero-slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(0,0,0,0.1);
    color: #333;
    font-size: 16px;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.hero-slide-arrow:hover {
    background: #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.hero-arrow-prev { left: 16px; }
.hero-arrow-next { right: 16px; }

/* Slide indicators */
.hero-slide-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 16px 0;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.hero-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.2);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.hero-indicator.active {
    background: var(--primary);
    width: 28px;
    border-radius: 5px;
}

/* Search Strip */
.hero-search-strip {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.hero-search-box {
    max-width: 700px;
    margin: 0 auto;
}

.search-box-inner {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1.5px solid #e2e8f0;
    padding: 6px;
    position: relative;
    transition: var(--transition);
}

.search-box-inner:focus-within {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(15, 76, 255, 0.15), 0 0 0 3px rgba(15, 76, 255, 0.06);
}

.search-box-input {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 6px 4px 16px;
}

.search-box-input i {
    color: var(--dark-400);
    font-size: 16px;
}

.search-box-input input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 15px;
    font-family: var(--font-body);
    color: var(--dark);
    padding: 10px 0;
    background: transparent;
    font-weight: 500;
}

.search-box-input input::placeholder {
    color: var(--dark-400);
    font-weight: 400;
}

.search-box-input .btn-search {
    border-radius: 10px;
    padding: 10px 32px;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(15, 76, 255, 0.25);
}

.hero-search-results {
    display: none;
    max-height: 260px;
    overflow-y: auto;
    border-top: 1px solid var(--gray-200);
    padding: 10px;
}

/* Trust Badges Strip */
.hero-trust-strip {
    background: #fff;
    padding: 18px 0;
    border-bottom: 1px solid #eee;
}

.hero-trust-row {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-trust-badge span {
    font-size: 12px;
    font-weight: 600;
    color: var(--dark-600);
    line-height: 1.3;
}

.trust-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.trust-icon-green { background: #ECFDF5; color: #10B981; }
.trust-icon-blue { background: #EEF2FF; color: #0F4CFF; }
.trust-icon-purple { background: #F5F3FF; color: #8B5CF6; }
.trust-icon-orange { background: #FFF7ED; color: #F97316; }

/* Stats Dashboard Card */
.hero-stats-card {
    background: var(--white);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 20px 60px rgba(15, 76, 255, 0.08), 0 1px 3px rgba(0,0,0,0.04);
    border: 1px solid rgba(226, 232, 240, 0.6);
    position: relative;
    z-index: 2;
}

.stats-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stats-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10B981;
    animation: pulse-dot 2s infinite;
}

.stats-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stats-card-item {
    text-align: center;
    padding: 16px 8px;
    border-radius: 16px;
    background: var(--gray-100);
    transition: var(--transition);
}

.stats-card-item:hover {
    background: var(--primary-50);
    transform: translateY(-2px);
}

.stats-card-item strong {
    display: block;
    font-size: 28px;
    font-weight: 900;
    color: var(--primary);
    font-family: var(--font-primary);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.stats-card-item span {
    font-size: 11px;
    color: var(--dark-500);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Floating Notification Cards */
.hero-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 14px 18px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(15, 76, 255, 0.1), 0 1px 3px rgba(0,0,0,0.04);
    border: 1px solid rgba(226, 232, 240, 0.5);
    z-index: 3;
    white-space: nowrap;
}

.hero-float-card strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
}

.hero-float-card small {
    font-size: 11px;
    color: var(--dark-400);
    font-weight: 500;
}

.float-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.hero-float-1 {
    top: -20px;
    left: -50px;
    animation: floatUpDown 5s ease-in-out infinite;
}

.hero-float-2 {
    bottom: 100px;
    right: -30px;
    animation: floatUpDown 6s ease-in-out infinite;
    animation-delay: -2s;
}

.hero-float-3 {
    bottom: 20px;
    left: 10px;
    animation: floatUpDown 7s ease-in-out infinite;
    animation-delay: -4s;
}

/* Decorative Orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-orb-1 {
    width: 180px;
    height: 180px;
    border: 2px dashed rgba(15, 76, 255, 0.08);
    top: 40px;
    right: -30px;
    animation: rotate-slow 30s linear infinite;
}

.hero-orb-2 {
    width: 120px;
    height: 120px;
    border: 2px dashed rgba(16, 185, 129, 0.08);
    bottom: 60px;
    left: -20px;
    animation: rotate-slow 25s linear infinite reverse;
}

/* ==========================================
   POPULAR SEARCHES
   ========================================== */
.section-popular-searches {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 20px 0;
}

.popular-searches-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.popular-label {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-500);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.popular-label i {
    color: #F97316;
}

.popular-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.popular-tag {
    display: inline-block;
    padding: 10px 24px;
    background: var(--gray-100);
    border: 1.5px solid var(--gray-300);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-600);
    transition: var(--transition-bounce);
}

.popular-tag:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(15, 76, 255, 0.3);
}

/* ==========================================
   SECTION HEADERS — BIG & BOLD
   ========================================== */
.section-badge {
    display: inline-block;
    padding: 10px 26px;
    background: linear-gradient(135deg, var(--primary-50), rgba(16, 185, 129, 0.06));
    color: var(--primary);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    border: 1px solid rgba(15, 76, 255, 0.1);
    margin-bottom: 8px;
}

.section-badge-light {
    background: rgba(255,255,255,0.12);
    color: var(--white);
    border-color: rgba(255,255,255,0.15);
}

.section-title {
    font-size: clamp(2.5rem, 4.5vw, 3.8rem);
    margin-top: 20px;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    font-weight: 900;
}

.section-subtitle {
    font-size: 20px;
    color: var(--dark-500);
    max-width: 640px;
    margin: 0 auto 12px;
    line-height: 1.7;
}

.section-header {
    margin-bottom: 24px;
}

/* ==========================================
   DISEASE CARDS (Section 3) — GLASS
   ========================================== */
.disease-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 18px;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    border: 1.5px solid rgba(226, 232, 240, 0.6);
    transition: var(--transition-bounce);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.disease-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: var(--transition);
}

.disease-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

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

.disease-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 16px;
    transition: var(--transition-bounce);
}

.disease-card:hover .disease-icon {
    transform: scale(1.15) rotate(5deg);
}

.disease-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.disease-count {
    font-size: 14px;
    color: var(--dark-400);
    font-weight: 600;
}

/* ==========================================
   PACKAGE CARDS (Section 4) — PREMIUM
   ========================================== */
.packages-swiper {
    padding-bottom: 70px;
}

.packages-swiper .swiper-slide {
    height: auto;
}

.package-card {
    background: var(--white);
    border-radius: 24px;
    border: 1.5px solid rgba(226, 232, 240, 0.6);
    overflow: hidden;
    transition: var(--transition-bounce);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

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

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    color: var(--white);
    z-index: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.package-icon-area {
    padding: 36px 28px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-icon-circle {
    width: 76px;
    height: 76px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    transition: var(--transition-bounce);
}

.package-card:hover .package-icon-circle {
    transform: scale(1.1) rotate(-5deg);
}

.package-body {
    padding: 0 20px 16px;
    flex: 1;
}

.package-name {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--dark);
    line-height: 1.3;
}

.package-tests {
    font-size: 15px;
    color: var(--dark-500);
    margin-bottom: 10px;
    font-weight: 500;
}

.package-tests i {
    color: var(--primary);
    margin-right: 8px;
}

.package-includes-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
    font-size: 14px;
    color: var(--dark-500);
    max-height: 180px;
    overflow-y: auto;
}

.package-includes-list li {
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1.3;
}

.package-includes-list li i {
    font-size: 10px;
    flex-shrink: 0;
}

.package-includes-list::-webkit-scrollbar {
    width: 4px;
}

.package-includes-list::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 4px;
}

.package-pricing .price-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.offer-price {
    font-size: 30px;
    font-weight: 900;
    color: var(--dark);
    font-family: var(--font-primary);
    letter-spacing: -0.02em;
}

.actual-price {
    font-size: 18px;
    color: var(--dark-400);
    text-decoration: line-through;
}

.discount-badge {
    padding: 4px 12px;
    background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
    color: var(--secondary);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
}

.package-features {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
    font-size: 12px;
    color: var(--dark-500);
    font-weight: 600;
}

.package-features span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.package-features i {
    color: var(--secondary);
    font-size: 11px;
}

.package-actions {
    padding: 16px 20px;
    display: flex;
    gap: 10px;
    border-top: 1px solid var(--gray-200);
}

.package-actions .btn {
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 15px;
    padding: 12px;
}

/* Swiper Custom */
.packages-swiper {
    padding: 0 50px;
    position: relative;
}

.swiper-button-next,
.swiper-button-prev {
    width: 44px;
    height: 44px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    border: 1.5px solid var(--gray-300);
    transition: var(--transition);
    top: 50%;
    transform: translateY(-50%);
}

.swiper-button-next {
    right: 0;
}

.swiper-button-prev {
    left: 0;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 17px;
    font-weight: 900;
    color: var(--dark-600);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(15, 76, 255, 0.3);
}

.swiper-button-next:hover::after,
.swiper-button-prev:hover::after {
    color: var(--white);
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--dark-400);
    opacity: 0.25;
    transition: var(--transition);
}

.swiper-pagination-bullet-active {
    background: var(--primary);
    opacity: 1;
    width: 30px;
    border-radius: 5px;
}

/* ==========================================
   TEST CARDS (Section 5)
   ========================================== */
.test-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1.5px solid rgba(226, 232, 240, 0.6);
    padding: 28px;
    text-align: center;
    transition: var(--transition-bounce);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.test-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 76, 255, 0.02), rgba(16, 185, 129, 0.02));
    opacity: 0;
    transition: var(--transition);
}

.test-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.test-card:hover::after { opacity: 1; }

.test-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    transition: var(--transition-bounce);
}

.test-card:hover .test-icon {
    transform: scale(1.15) rotate(-5deg);
}

.test-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.test-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    z-index: 1;
    margin-bottom: 6px;
}

.test-offer {
    font-size: 24px;
    font-weight: 900;
    color: var(--dark);
    font-family: var(--font-primary);
    letter-spacing: -0.02em;
}

.test-actual {
    font-size: 15px;
    color: var(--dark-400);
    text-decoration: line-through;
}

.test-card .btn {
    position: relative;
    z-index: 1;
    font-size: 14px;
    padding: 10px 20px;
    font-weight: 700;
}

/* ==========================================
   WHY CHOOSE US (Section 6) — GLASS
   ========================================== */
.why-card {
    text-align: center;
    padding: 36px 24px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    border: 1.5px solid rgba(226, 232, 240, 0.5);
    transition: var(--transition-bounce);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(15, 76, 255, 0.03), transparent, rgba(16, 185, 129, 0.03), transparent);
    animation: rotate-slow 20s linear infinite;
    opacity: 0;
    transition: var(--transition);
}

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

.why-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.why-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    transition: var(--transition-bounce);
    position: relative;
    z-index: 1;
}

.why-card:hover .why-icon {
    transform: scale(1.2) rotate(8deg);
}

.why-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.why-desc {
    font-size: 15px;
    color: var(--dark-500);
    line-height: 1.7;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

/* ==========================================
   HOW IT WORKS (Section 7) — TIMELINE
   ========================================== */
.hiw-steps { position: relative; }

.hiw-col {
    position: relative;
    display: flex;
    align-items: stretch;
}

.hiw-card {
    text-align: center;
    padding: 36px 24px 32px;
    background: var(--white);
    border-radius: 20px;
    border: 1.5px solid rgba(226, 232, 240, 0.7);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    position: relative;
    flex: 1;
}

.hiw-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.hiw-num {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 900;
    opacity: 0.12;
    line-height: 1;
    margin-bottom: -8px;
}

.hiw-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    border: 2px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hiw-card:hover .hiw-icon-wrap {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.hiw-title {
    font-family: var(--font-primary);
    font-size: 17px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
}

.hiw-desc {
    font-size: 14px;
    color: var(--dark-500);
    line-height: 1.7;
    margin-bottom: 0;
}

.hiw-arrow {
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

@media (max-width: 991.98px) {
    .hiw-col { justify-content: center; }
    .hiw-card { max-width: 360px; margin: 0 auto; }
}

@media (max-width: 767.98px) {
    .hiw-card { padding: 28px 20px 24px; }
    .hiw-num { font-size: 40px; }
    .hiw-icon-wrap { width: 60px; height: 60px; font-size: 24px; }
}

/* ==========================================
   HEALTH CONCERN (Section 8)
   ========================================== */
.concern-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 36px 20px 28px;
    background: var(--white);
    border-radius: 20px;
    border: 1.5px solid rgba(226, 232, 240, 0.6);
    transition: var(--transition-bounce);
    height: 100%;
    width: 200px;
    text-decoration: none;
}

.concern-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.concern-icon-wrap {
    width: 88px;
    height: 88px;
    border-radius: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 20px;
    transition: var(--transition-bounce);
}

.concern-card:hover .concern-icon-wrap {
    transform: scale(1.12) rotate(-5deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.concern-title {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--dark);
}

.concern-tests {
    font-size: 13px;
    color: var(--dark-400);
    font-weight: 500;
    line-height: 1.5;
}

@media (max-width: 991.98px) {
    .concern-card { width: 180px; }
    .concern-icon-wrap { width: 76px; height: 76px; font-size: 30px; }
}

@media (max-width: 575.98px) {
    .concern-card { width: 100%; }
}

/* ==========================================
   PARTNER LABS (Section 9)
   ========================================== */
.partner-card {
    padding: 32px 28px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1.5px solid var(--gray-200);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    transition: var(--transition);
}

.partner-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-100);
    transform: scale(1.03);
}

.partner-placeholder {
    font-weight: 800;
    font-size: 17px;
    color: var(--dark-500);
    font-family: var(--font-primary);
}

/* ==========================================
   OFFERS (Section 10)
   ========================================== */
.offer-card {
    border-radius: 24px;
    padding: 36px 30px;
    color: var(--white);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
}

.offer-card::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
}

.offer-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.offer-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.offer-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.offer-desc {
    font-size: 15px;
    opacity: 0.85;
    flex: 1;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

.offer-code {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.15);
    border: 2px dashed rgba(255,255,255,0.35);
    border-radius: var(--radius-xs);
    padding: 12px 18px;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.offer-code span {
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 2px;
}

.offer-code .btn {
    border-radius: 10px;
    padding: 6px 14px;
    font-size: 14px;
}

/* ==========================================
   TESTIMONIALS (Section 11)
   ========================================== */
.testimonials-swiper { padding-bottom: 70px; }

.testimonial-card {
    background: var(--white);
    border-radius: 24px;
    border: 1.5px solid rgba(226, 232, 240, 0.6);
    padding: 36px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition-bounce);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 28px;
    font-size: 90px;
    font-family: Georgia, serif;
    color: var(--primary-50);
    line-height: 1;
}

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

.testimonial-rating { margin-bottom: 18px; }

.testimonial-rating .fa-star {
    font-size: 18px;
    margin-right: 3px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--dark-600);
    line-height: 1.8;
    flex: 1;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1.5px solid var(--gray-200);
}

.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(15, 76, 255, 0.2);
    flex-shrink: 0;
}

.author-name {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 3px;
}

.author-city {
    font-size: 14px;
    color: var(--dark-400);
    font-weight: 500;
}

/* ==========================================
   FAQ (Section 12) — PREMIUM
   ========================================== */
.faq-accordion .accordion-item {
    border: 1.5px solid rgba(226, 232, 240, 0.6);
    border-radius: var(--radius) !important;
    margin-bottom: 16px;
    overflow: hidden;
    background: var(--white);
    transition: var(--transition);
}

.faq-accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-100);
}

.faq-accordion .accordion-button {
    font-weight: 700;
    font-size: 18px;
    color: var(--dark);
    padding: 24px 30px;
    background: var(--white);
    box-shadow: none;
    font-family: var(--font-primary);
    transition: var(--transition);
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary-50), rgba(16, 185, 129, 0.04));
    color: var(--primary);
}

.faq-accordion .accordion-button::after {
    background-size: 18px;
    transition: var(--transition);
}

.faq-accordion .accordion-body {
    padding: 0 30px 28px;
    font-size: 16px;
    color: var(--dark-500);
    line-height: 1.8;
}

/* ==========================================
   APP SECTION (Section 13) — DARK PREMIUM
   ========================================== */
.app-cta-card {
    background: linear-gradient(135deg, #0F172A 0%, var(--dark) 50%, #0F172A 100%);
    border-radius: 36px;
    padding: 64px;
    position: relative;
    overflow: hidden;
}

.app-cta-card::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(15, 76, 255, 0.15) 0%, transparent 70%);
    animation: floatUpDown 10s ease-in-out infinite;
}

.app-cta-card::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    animation: floatUpDown 12s ease-in-out infinite reverse;
}

.app-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.app-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
    line-height: 1.7;
}

.app-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    position: relative;
    z-index: 1;
}

.app-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.app-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
    padding: 14px 28px;
    color: var(--white);
    transition: var(--transition-bounce);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.app-store-btn:hover {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(255,255,255,0.1);
}

.app-store-btn i { font-size: 28px; }

.app-store-btn small {
    font-size: 11px;
    display: block;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.app-store-btn strong {
    font-size: 17px;
    display: block;
}

.app-phone-mockup {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.4));
    animation: floatUpDown 6s ease-in-out infinite;
}

/* ==========================================
   BLOG (Section 14) — EDITORIAL
   ========================================== */
.blog-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: 24px;
    border: 1.5px solid rgba(226, 232, 240, 0.6);
    overflow: hidden;
    transition: var(--transition-bounce);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.blog-thumb {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.blog-thumb-icon {
    font-size: 60px;
    opacity: 0.5;
    transition: var(--transition-bounce);
}

.blog-card:hover .blog-thumb-icon {
    transform: scale(1.15);
    opacity: 0.7;
}

.blog-body {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-category {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
    margin: 12px 0;
    flex: 1;
    line-height: 1.4;
    transition: var(--transition);
}

.blog-card:hover .blog-title { color: var(--primary); }

.blog-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: var(--dark-400);
    font-weight: 500;
}

.blog-meta i {
    margin-right: 6px;
    color: var(--primary);
    opacity: 0.5;
}

/* ==========================================
   FOOTER — DARK PREMIUM
   ========================================== */
.footer-cta {
    position: relative;
    margin-top: -60px;
    z-index: 5;
    padding: 0 0 60px;
}

.cta-card {
    background: linear-gradient(135deg, var(--primary) 0%, #2563EB 50%, var(--primary-dark) 100%);
    background-size: 200% 200%;
    animation: gradient-shift 6s ease infinite;
    border-radius: 32px;
    padding: 56px 64px;
    color: var(--white);
    box-shadow: 0 15px 50px rgba(15, 76, 255, 0.35);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}

.cta-card h3 {
    font-size: 32px;
    font-weight: 900;
}

.cta-card p {
    opacity: 0.85;
    font-size: 18px;
}

.footer-main {
    background: linear-gradient(180deg, var(--dark) 0%, #0F172A 100%);
    padding: 80px 0 60px;
}

.footer-logo { height: 64px; }

.footer-desc {
    font-size: 16px;
    color: var(--dark-400);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-thyrocare-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    padding: 14px 20px;
}

.footer-thyrocare-badge span {
    font-size: 13px;
    color: var(--gray-400);
    line-height: 1.3;
    font-weight: 600;
}

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

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-400);
    transition: var(--transition-bounce);
    font-size: 16px;
}

.social-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(15, 76, 255, 0.4);
}

.footer-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    font-size: 16px;
    color: var(--dark-400);
    transition: var(--transition);
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 6px;
}

.footer-newsletter .input-group {
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.footer-newsletter .form-control {
    background: rgba(255,255,255,0.05);
    border: 1.5px solid rgba(255,255,255,0.08);
    color: var(--white);
    font-size: 15px;
    padding: 14px 18px;
}

.footer-newsletter .form-control::placeholder { color: var(--dark-500); }

.footer-newsletter .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(15, 76, 255, 0.15);
}

.footer-newsletter .btn {
    border-radius: 0;
    padding: 14px 20px;
}

.footer-bottom {
    background: #080E1A;
    padding: 24px 0;
}

.footer-bottom p {
    font-size: 15px;
    color: var(--dark-500);
}

.payment-methods {
    color: var(--dark-500);
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: flex-end;
}

.payment-methods i {
    font-size: 26px;
    transition: var(--transition);
}

.payment-methods i:hover { color: var(--white); }

/* ==========================================
   SEARCH MODAL
   ========================================== */
.search-modal-content {
    border: none;
    border-radius: 28px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.15);
}

.search-input-wrapper { position: relative; }

.search-input-icon {
    position: absolute;
    left: 22px;
    top: 19px;
    color: var(--dark-400);
    z-index: 1;
    font-size: 20px;
}

.search-input {
    padding: 18px 22px 18px 56px;
    border-radius: var(--radius);
    border: 2px solid var(--gray-300);
    font-size: 18px;
    transition: var(--transition);
    font-weight: 500;
}

.search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 5px rgba(15, 76, 255, 0.08);
}

.search-tabs {
    display: flex;
    gap: 6px;
}

.search-tab {
    background: none;
    border: none;
    padding: 10px 18px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-400);
    border-radius: var(--radius-xs);
    cursor: pointer;
    transition: var(--transition);
}

.search-tab.active {
    background: var(--primary-50);
    color: var(--primary);
}

.trending-tag {
    display: inline-block;
    padding: 10px 22px;
    background: var(--gray-100);
    border: 1.5px solid var(--gray-300);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-600);
    transition: var(--transition-bounce);
}

.trending-tag:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Search Results — Typeahead */
.search-results { max-height: 400px; overflow-y: auto; }
.sr-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.2s;
    gap: 12px;
}
.sr-item:hover { background: var(--primary-50); }
.sr-left { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.sr-name { font-size: 14px; font-weight: 600; color: var(--dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sr-meta { display: flex; align-items: center; gap: 8px; }
.sr-type {
    font-size: 11px; font-weight: 600; padding: 2px 10px; border-radius: 50px;
    background: #EEF2FF; color: var(--primary);
}
.sr-type-package { background: #F0FDF4; color: #16A34A; }
.sr-type-disease { background: #FEF3C7; color: #D97706; }
.sr-cat { font-size: 12px; color: var(--dark-400); }
.sr-price { font-size: 15px; font-weight: 800; color: var(--primary); white-space: nowrap; font-family: var(--font-primary); }
.search-loading { padding: 24px; text-align: center; color: var(--dark-400); font-size: 14px; }
.search-loading i { margin-right: 8px; }
.search-empty { padding: 32px 16px; text-align: center; }
.search-empty i { font-size: 32px; color: var(--gray-300); margin-bottom: 12px; }
.search-empty p { font-size: 15px; color: var(--dark-500); margin-bottom: 4px; }
.search-empty span { font-size: 13px; color: var(--dark-400); }
.search-empty a { color: var(--primary); font-weight: 600; }

/* ==========================================
   LOCATION MODAL
   ========================================== */
.location-modal-content {
    border: none;
    border-radius: 28px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.15);
}

.city-btn {
    width: 100%;
    background: var(--gray-100);
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-sm);
    padding: 18px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition-bounce);
}

.city-btn:hover {
    background: var(--primary-50);
    border-color: var(--primary-100);
    color: var(--primary);
    transform: scale(1.05);
}

.city-btn i {
    font-size: 22px;
    color: var(--dark-400);
}

.city-btn:hover i { color: var(--primary); }

.city-btn span {
    font-size: 14px;
    font-weight: 700;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1199.98px) {
    .hero-banner-headline { font-size: 2.4rem; }
    .section-padding { padding: 100px 0; }
    .header-logo { height: 64px !important; }
}

@media (max-width: 991.98px) {
    .hero-banner { padding: 50px 0 40px; height: 400px; }
    .hero-banner-headline { font-size: 2rem; }
    .hero-banner-visual { display: none !important; }
    .hero-search-box { max-width: 100%; }
    .hero-trust-row { gap: 16px; justify-content: flex-start; }
    .app-cta-card { padding: 40px; }
    .cta-card { padding: 40px; }
    .section-title { font-size: 2.2rem; }
    .section-padding { padding: 80px 0; }
}

@media (max-width: 767.98px) {
    .section-padding { padding: 70px 0; }
    .hero-banner-headline { font-size: 1.7rem; }
    .hero-price { font-size: 22px; }
    .hero-test-name { font-size: 12px; }
    .btn-hero-book { padding: 10px 24px; font-size: 14px; }
    .hero-trust-badge span { font-size: 11px; }
    .section-title { font-size: 1.9rem; }
    .section-subtitle { font-size: 16px; }
    .package-body { padding: 0 20px 16px; }
    .package-actions { padding: 16px 20px; }
    .offer-price { font-size: 22px; }
    .app-cta-card { padding: 32px; border-radius: 28px; }
    .cta-card { padding: 32px; border-radius: 24px; }
    .footer-main { padding: 60px 0 40px; }
    .header-logo { height: 52px !important; }
    .footer-logo { height: 48px; }
}

@media (max-width: 575.98px) {
    .hero-banner { padding: 30px 0 20px; height: auto; min-height: 280px; }
    .hero-banner-headline { font-size: 1.5rem; }
    .hero-price-box { flex-direction: column; }
    .hero-price-divider { width: 80%; height: 2px; }
    .search-box-input .btn-search { padding: 10px 20px; font-size: 14px; }
    .hero-slide-arrow { width: 36px; height: 36px; font-size: 14px; }
    .app-features { grid-template-columns: 1fr; }
    .payment-methods { justify-content: flex-start; margin-top: 14px; }
    .section-title { font-size: 1.65rem; }
    .section-padding { padding: 60px 0; }
}

/* ==========================================
   CART SYSTEM
   ========================================== */

/* Cart Badge on Icon */
.btn-cart-trigger {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #EF4444;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0 4px;
}

/* Cart Overlay */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Cart Drawer */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    max-width: 90vw;
    height: 100vh;
    background: #fff;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 30px rgba(0,0,0,0.15);
    transition: right 0.3s ease;
}

.cart-drawer.active {
    right: 0;
}

.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #e2e8f0;
}

.cart-drawer-header h5 {
    margin: 0;
    font-weight: 700;
    font-size: 18px;
    color: #1e293b;
}

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
    color: #94a3b8;
}

.cart-empty i {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.cart-empty p {
    font-size: 16px;
    margin-bottom: 16px;
}

/* Cart Item */
.cart-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid #f1f5f9;
}

.cart-item-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.cart-item-icon.test-type {
    background: #EFF6FF;
    color: #0F4CFF;
}

.cart-item-icon.package-type {
    background: #F0FDF4;
    color: #10B981;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-weight: 600;
    font-size: 14px;
    color: #1e293b;
    margin-bottom: 2px;
    line-height: 1.3;
}

.cart-item-type {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #94a3b8;
    font-weight: 600;
}

.cart-item-price {
    font-weight: 700;
    font-size: 15px;
    color: #1e293b;
    white-space: nowrap;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #cbd5e1;
    cursor: pointer;
    padding: 4px;
    font-size: 14px;
    transition: color 0.2s;
}

.cart-item-remove:hover {
    color: #EF4444;
}

/* Cart Footer */
.cart-drawer-footer {
    padding: 20px 24px;
    border-top: 1px solid #e2e8f0;
    background: #f8fafc;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 18px;
}

.cart-total span {
    color: #64748b;
    font-weight: 500;
}

.cart-total strong {
    color: #1e293b;
    font-size: 22px;
}

/* Add to Cart Button States */
.btn-add-cart.added {
    background: #10B981 !important;
    border-color: #10B981 !important;
    color: #fff !important;
    pointer-events: none;
}

.btn-add-cart.adding {
    pointer-events: none;
    opacity: 0.7;
}
