/* ==========================================================================
   SMART CLINIC & NURSING HOME — PREMIUM HEALTHCARE DESIGN SYSTEM
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
    /* ── Premium Medical Color Palette ── */
    --clr-navy: #0A1628;
    --clr-navy-mid: #0F2847;
    --clr-primary: #0B5394;
    --clr-primary-dark: #083D6F;
    --clr-primary-light: #EBF4FF;
    --clr-accent: #0891B2;
    --clr-accent-hover: #0E7490;
    --clr-secondary: #059669;
    --clr-secondary-light: #ECFDF5;
    --clr-emergency: #DC2626;
    --clr-emergency-dark: #B91C1C;
    --clr-emergency-light: #FEF2F2;
    --clr-warning: #D97706;

    /* Neutrals */
    --clr-dark: #0F172A;
    --clr-dark-subtle: #1E293B;
    --clr-slate: #334155;
    --clr-muted: #64748B;
    --clr-light: #F1F5F9;
    --clr-light-blue: #F0F7FF;
    --clr-border: #E2E8F0;
    --clr-white: #FFFFFF;

    /* Typography */
    --font-heading: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Shadows (4-layer depth system) */
    --shadow-xs: 0 1px 3px rgba(15, 23, 42, 0.04);
    --shadow-sm: 0 2px 8px -2px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 8px 24px -4px rgba(15, 23, 42, 0.08), 0 2px 6px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 20px 40px -8px rgba(15, 23, 42, 0.12), 0 4px 12px rgba(15, 23, 42, 0.05);
    --shadow-xl: 0 28px 56px -12px rgba(15, 23, 42, 0.16), 0 6px 16px rgba(15, 23, 42, 0.06);
    --shadow-primary: 0 10px 30px -5px rgba(11, 83, 148, 0.3);
    --shadow-emergency: 0 10px 25px -5px rgba(220, 38, 38, 0.35);
    --shadow-card-hover: 0 24px 48px -10px rgba(11, 83, 148, 0.15), 0 4px 12px rgba(15, 23, 42, 0.06);

    /* Border Radius */
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 22px;
    --radius-xl: 28px;
    --radius-full: 9999px;
}

/* ── Global Reset & Base ── */
*, *::before, *::after {
    box-sizing: border-box;
}

::selection {
    background: rgba(11, 83, 148, 0.15);
    color: var(--clr-primary-dark);
}

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

body {
    font-family: var(--font-body);
    color: var(--clr-slate);
    background-color: var(--clr-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    padding-bottom: 68px;
}

@media (min-width: 992px) {
    body {
        padding-bottom: 0;
    }
}

h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: var(--font-heading);
    color: var(--clr-dark);
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: var(--clr-accent);
    text-decoration: none;
    transition: all 0.25s ease;
}

a:hover {
    color: var(--clr-primary);
}

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

/* Focus visible for accessibility */
:focus-visible {
    outline: 3px solid rgba(11, 83, 148, 0.4);
    outline-offset: 2px;
}

/* Webkit Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--clr-light);
}
::-webkit-scrollbar-thumb {
    background: var(--clr-muted);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--clr-primary);
}


/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

/* Top Information Bar */
.topbar-hospital {
    background: linear-gradient(90deg, #071526 0%, #0D284B 50%, #071526 100%);
    color: #94A3B8;
    font-size: 0.82rem;
    border-bottom: 1px solid rgba(8, 145, 178, 0.22);
    padding: 6px 0;
    white-space: nowrap;
    overflow: hidden;
}

.topbar-hospital .container {
    white-space: nowrap;
}

.topbar-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3px 11px;
    border-radius: var(--radius-full);
    color: #CBD5E1;
    font-weight: 500;
    font-size: 0.78rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.emergency-pill-top {
    background: linear-gradient(135deg, var(--clr-emergency) 0%, #EF4444 100%);
    color: #FFFFFF !important;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.8rem;
    box-shadow: 0 0 0 1px rgba(239, 68, 68, 0.4);
    animation: emergencyPulse 2s infinite;
}

.emergency-live-indicator {
    width: 7px;
    height: 7px;
    background-color: #FFFFFF;
    border-radius: 50%;
    animation: pulseDot 1.4s infinite;
}

.topbar-phone-link {
    color: #E2E8F0;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: 0.82rem;
    transition: color 0.2s ease;
}

.topbar-phone-link:hover {
    color: #38BDF8;
}

.topbar-staff-link {
    display: inline-flex;
    align-items: center;
    color: #94A3B8;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.25s ease;
}

.topbar-staff-link:hover {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
    color: #FFFFFF;
}

@keyframes emergencyPulse {
    0% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.6); }
    70% { box-shadow: 0 0 0 8px rgba(220, 38, 38, 0); }
    100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
}

/* Main Navigation */
.header-navbar-container {
    max-width: 1460px;
    margin: 0 auto;
    width: 100%;
}

.navbar-hospital {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
    padding: 10px 0;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1030;
}

.navbar-hospital.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
    padding: 7px 0;
}

/* Brand Logo Image */
.navbar-brand-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    padding: 0;
    margin-right: 18px;
    flex-shrink: 0;
}

.hospital-brand-logo-img {
    height: 54px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    display: block;
    transition: transform 0.25s ease;
}

.navbar-brand-logo:hover .hospital-brand-logo-img {
    transform: scale(1.02);
}

@media (min-width: 992px) and (max-width: 1240px) {
    .hospital-brand-logo-img {
        height: 44px;
        max-width: 190px;
    }
    .navbar-brand-logo {
        margin-right: 8px;
    }
    .navbar-hospital .nav-link {
        padding: 6px 7px !important;
        font-size: 0.84rem;
        gap: 3px;
    }
    .navbar-hospital .nav-link .nav-icon {
        font-size: 0.85rem;
    }
    .header-cta-item {
        margin-left: 6px !important;
    }
    .btn-appointment-nav.btn-animated-cta {
        padding: 7px 14px !important;
        font-size: 0.82rem !important;
        gap: 5px;
    }
}

@media (max-width: 991.98px) {
    .hospital-brand-logo-img {
        height: 42px;
        max-width: 195px;
    }
}

.brand-icon-wrapper {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-accent) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: 1.6rem;
    box-shadow: var(--shadow-primary);
    flex-shrink: 0;
}

.brand-text-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--clr-primary);
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.brand-text-subtitle {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--clr-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Single-Line Desktop Nav List */
.header-nav-list {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 4px;
    margin: 0;
    padding: 0;
}

.navbar-hospital .nav-link {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--clr-slate) !important;
    padding: 8px 12px !important;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.navbar-hospital .nav-link .nav-icon {
    font-size: 0.98rem;
    line-height: 1;
}

.navbar-hospital .nav-link .nav-chevron {
    font-size: 0.72rem;
    transition: transform 0.25s ease;
    opacity: 0.7;
}

.navbar-hospital .nav-link:hover,
.navbar-hospital .nav-link.active {
    color: var(--clr-primary) !important;
    background-color: var(--clr-primary-light);
}

.dropdown-hover:hover .nav-chevron,
.dropdown.show .nav-chevron {
    transform: rotate(180deg);
}

/* ==========================================================================
   PREMIUM MEDICAL DROPDOWNS
   ========================================================================== */
.dropdown-menu-premium,
.dropdown-menu-services {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(11, 83, 148, 0.1) !important;
    border-radius: 18px;
    box-shadow: 0 20px 45px -10px rgba(10, 22, 40, 0.15), 0 0 0 1px rgba(11, 83, 148, 0.05);
    padding: 12px;
    margin-top: 10px;
    animation: dropdownSlideFade 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Desktop Hover Dropdown */
@media (min-width: 992px) {
    .dropdown-hover {
        position: relative;
    }
    .dropdown-hover:hover > .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    .dropdown-menu-premium {
        width: 480px;
    }
    .dropdown-menu-services {
        width: 340px;
    }
}

.dropdown-header-bar {
    padding: 6px 12px 10px;
    border-bottom: 1px solid var(--clr-border);
    margin-bottom: 8px;
}

.dropdown-grid-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dropdown-item-specialty {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--clr-slate);
    transition: all 0.2s ease;
}

.dropdown-item-specialty:hover {
    background-color: var(--clr-light-blue);
    transform: translateX(4px);
    color: var(--clr-primary);
}

.dropdown-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.bg-neuro {
    background: linear-gradient(135deg, #0B5394 0%, #0891B2 100%);
}

.dropdown-item-specialty.highlight-neuro {
    background: rgba(8, 145, 178, 0.06);
    border: 1px solid rgba(8, 145, 178, 0.2);
}
.dropdown-item-specialty.highlight-neuro:hover {
    background: rgba(8, 145, 178, 0.12);
}

.badge-neuro {
    background: linear-gradient(135deg, #059669 0%, #10B981 100%);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 99px;
    margin-left: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dropdown-item-title {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--clr-dark);
    line-height: 1.2;
}

.dropdown-item-sub {
    font-size: 0.74rem;
    color: var(--clr-muted);
    line-height: 1.3;
}

.dropdown-footer-link {
    padding: 8px 12px 2px;
    border-top: 1px solid var(--clr-border);
    margin-top: 8px;
    text-align: right;
}

.dropdown-footer-link a {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--clr-primary);
    display: inline-flex;
    align-items: center;
}
.dropdown-footer-link a:hover {
    color: var(--clr-accent);
}

/* Services Dropdown Items */
.dropdown-item-service {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--clr-slate);
    transition: all 0.2s ease;
}

.dropdown-item-service:hover {
    background-color: var(--clr-light-blue);
    transform: translateX(4px);
    color: var(--clr-primary);
}

.service-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.dropdown-item-service strong {
    display: block;
    font-size: 0.88rem;
    color: var(--clr-dark);
    line-height: 1.2;
}

.dropdown-item-service small {
    display: block;
    font-size: 0.75rem;
    color: var(--clr-muted);
}

/* ==========================================================================
   ANIMATED CTA BUTTONS & MICRO-INTERACTIONS
   ========================================================================== */

/* Quick Call Button with Ringing Icon */
.btn-nav-call {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 15px;
    border-radius: var(--radius-full);
    font-size: 0.86rem;
    font-weight: 700;
    white-space: nowrap;
    color: var(--clr-primary);
    background: var(--clr-primary-light);
    border: 1px solid rgba(11, 83, 148, 0.18);
    transition: all 0.25s ease;
}

.btn-nav-call:hover {
    background: var(--clr-primary);
    color: var(--clr-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(11, 83, 148, 0.25);
}

.btn-nav-call .icon-ringing {
    display: inline-block;
    animation: phoneRing 3s infinite ease-in-out;
}

@keyframes phoneRing {
    0%, 70%, 100% { transform: rotate(0deg); }
    73% { transform: rotate(-16deg); }
    77% { transform: rotate(16deg); }
    81% { transform: rotate(-14deg); }
    85% { transform: rotate(14deg); }
    89% { transform: rotate(-8deg); }
    93% { transform: rotate(8deg); }
    97% { transform: rotate(0deg); }
}

/* WhatsApp Button with Pulsing Icon */
.btn-nav-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 15px;
    border-radius: var(--radius-full);
    font-size: 0.86rem;
    font-weight: 700;
    white-space: nowrap;
    color: #128C7E;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.25);
    transition: all 0.25s ease;
}

.btn-nav-whatsapp:hover {
    background: #25D366;
    color: var(--clr-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

.btn-nav-whatsapp .icon-pulsing {
    display: inline-block;
    animation: waPulse 2.4s infinite ease-in-out;
}

@keyframes waPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.22); }
}

/* Premium Animated Book Appointment Button */
.btn-appointment-nav.btn-animated-cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0B5394 0%, #0891B2 100%);
    color: #FFFFFF !important;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 10px 22px;
    border-radius: var(--radius-full);
    border: none;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 18px rgba(11, 83, 148, 0.35);
    animation: ctaPulseGlow 3.5s infinite ease-in-out;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

/* Shimmer Light Reflection passing across CTA */
.btn-appointment-nav.btn-animated-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -120%;
    width: 60%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
    transform: rotate(25deg);
    animation: ctaShimmer 4s infinite cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

@keyframes ctaShimmer {
    0%, 60% { left: -120%; }
    100% { left: 220%; }
}

@keyframes ctaPulseGlow {
    0%, 100% {
        box-shadow: 0 4px 18px rgba(11, 83, 148, 0.35);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 8px 26px rgba(8, 145, 178, 0.5), 0 0 0 3px rgba(8, 145, 178, 0.18);
        transform: scale(1.02);
    }
}

.btn-appointment-nav.btn-animated-cta:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 30px rgba(11, 83, 148, 0.45);
}

.btn-cta-icon {
    font-size: 1rem;
    transition: transform 0.25s ease;
}

.btn-appointment-nav.btn-animated-cta:hover .btn-cta-icon {
    transform: scale(1.2);
}

/* Mobile Off-Canvas Nav */
.mobile-nav-link {
    font-size: 1rem !important;
    padding: 12px 8px !important;
    font-weight: 600 !important;
    border-radius: var(--radius-sm) !important;
    color: var(--clr-slate) !important;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: var(--clr-primary-light) !important;
    color: var(--clr-primary) !important;
}


/* ==========================================================================
   FULL-WIDTH CINEMATIC HERO SLIDER (3-SECOND AUTO-SLIDE & FLOATING THUMBS)
   ========================================================================== */
.hero-cinematic-slider {
    position: relative;
    width: 100%;
    min-height: 620px;
    height: 86vh;
    max-height: 820px;
    overflow: hidden;
    background-color: var(--clr-navy);
}

.hero-slides-viewport {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Background image with bright clarity & Ken Burns slow zoom */
.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: transform 6s cubic-bezier(0.25, 1, 0.5, 1);
    filter: brightness(1.02) contrast(1.05);
}

.hero-slide.active .hero-slide-bg {
    transform: scale(1.08);
}

/* Transparent Gradient Overlays - Keeps photo bright on right, readable on left */
.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 18, 33, 0.92) 0%, rgba(11, 83, 148, 0.52) 48%, rgba(10, 22, 40, 0.18) 100%);
    pointer-events: none;
}

.hero-slide-overlay.overlay-cyan {
    background: linear-gradient(90deg, rgba(7, 18, 33, 0.92) 0%, rgba(8, 145, 178, 0.5) 48%, rgba(10, 22, 40, 0.18) 100%);
}

.hero-slide-overlay.overlay-red {
    background: linear-gradient(90deg, rgba(7, 18, 33, 0.92) 0%, rgba(185, 28, 28, 0.45) 48%, rgba(10, 22, 40, 0.18) 100%);
}

/* Hero Mobile Visual (hidden on desktop, shown on mobile/tablet) */
.hero-mobile-visual {
    display: none;
}

/* Hero Content Block */
.hero-content-block {
    position: relative;
    z-index: 5;
    padding: 40px 0 60px;
    color: #FFFFFF;
}

.hero-slide.active .hero-badge-live {
    animation: heroFadeSlideDown 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-slide.active .hero-main-title {
    animation: heroFadeSlideUp 0.8s 0.15s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-slide.active .hero-lead-text {
    animation: heroFadeSlideUp 0.8s 0.25s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-slide.active .hero-actions-group {
    animation: heroFadeSlideUp 0.8s 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-slide.active .hero-trust-row {
    animation: heroFadeSlideUp 0.8s 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
}

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

@keyframes heroFadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge-live {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 7px 18px;
    border-radius: var(--radius-full);
    font-size: 0.86rem;
    font-weight: 600;
    color: #E2E8F0;
    margin-bottom: 22px;
}

.hero-badge-live.badge-cyan {
    border-color: rgba(56, 189, 248, 0.35);
    background: rgba(8, 145, 178, 0.22);
}

.hero-badge-live.badge-red {
    border-color: rgba(239, 68, 68, 0.35);
    background: rgba(220, 38, 38, 0.22);
}

.pulsing-dot {
    width: 10px;
    height: 10px;
    background-color: #10B981;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.35);
    animation: pulseDot 1.8s infinite;
    flex-shrink: 0;
}

.pulsing-dot.dot-cyan {
    background-color: #38BDF8;
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.35);
}

.pulsing-dot.dot-red {
    background-color: #EF4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.35);
}

.hero-main-title {
    font-size: clamp(2.3rem, 4.6vw, 3.6rem);
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -0.8px;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.3);
}

.hero-main-title span.text-highlight {
    background: linear-gradient(120deg, #38BDF8 0%, #34D399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-main-title span.text-highlight.highlight-cyan {
    background: linear-gradient(120deg, #67E8F9 0%, #38BDF8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-main-title span.text-highlight.highlight-red {
    background: linear-gradient(120deg, #FCA5A5 0%, #F87171 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-lead-text {
    font-size: 1.12rem;
    color: #CBD5E1;
    font-weight: 400;
    max-width: 650px;
    margin-bottom: 30px;
    line-height: 1.65;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.hero-actions-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 34px;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    border: none;
    box-shadow: 0 10px 24px -4px rgba(16, 185, 129, 0.45);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-hero-primary:hover {
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 16px 36px -4px rgba(16, 185, 129, 0.55);
}

.btn-hero-emergency {
    background: rgba(220, 38, 38, 0.88);
    border: 2px solid rgba(239, 68, 68, 0.6);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1rem;
    padding: 13px 26px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.35s ease;
}

.btn-hero-emergency:hover {
    background: var(--clr-emergency);
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: var(--shadow-emergency);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1rem;
    padding: 13px 26px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.35s ease;
}

.btn-hero-secondary:hover {
    background: var(--clr-white);
    color: var(--clr-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Trust Badges Row */
.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(10, 22, 40, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.84rem;
    font-weight: 600;
    color: #E2E8F0;
}

/* Over-Banner Floating Mini Thumbnails */
.hero-thumbnails-floating-bar {
    position: absolute;
    bottom: 85px; /* Floats safely 30px above the -55px booking card overlap */
    left: 0;
    right: 0;
    z-index: 25; /* Sits above slide content and quick booking card */
    pointer-events: none;
}

.hero-thumbs-group {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    pointer-events: auto;
    background: rgba(7, 18, 33, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 8px 10px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
    max-width: 100%;
    box-sizing: border-box;
}

.hero-thumb-card {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px 8px;
    background: transparent;
    border: 1.5px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
    text-align: left;
    flex-shrink: 0;
    color: #FFFFFF;
}

.hero-thumb-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.hero-thumb-card.active {
    background: rgba(14, 116, 144, 0.35);
    border-color: #38BDF8;
    box-shadow: 0 4px 18px rgba(56, 189, 248, 0.3);
}

.hero-thumb-card .thumb-img {
    width: 44px;
    height: 32px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.hero-thumb-card .thumb-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1 1 auto;
}

.hero-thumb-card .thumb-number {
    font-size: 0.72rem;
    font-weight: 800;
    color: #38BDF8;
    display: block;
    line-height: 1;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.hero-thumb-card .thumb-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #FFFFFF;
    white-space: nowrap;
    display: block;
    line-height: 1.2;
}

.thumb-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.18);
}

.thumb-progress-fill {
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #38BDF8, #34D399);
}

.hero-thumb-card.active .thumb-progress-fill {
    animation: thumbProgress 3s linear forwards;
}

@keyframes thumbProgress {
    from { width: 0%; }
    to { width: 100%; }
}

/* Slider Prev / Next Controls */
.hero-arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(7, 18, 33, 0.65);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    z-index: 10;
    cursor: pointer;
    transition: all 0.25s ease;
}

.hero-arrow-btn.prev {
    left: 20px;
}

.hero-arrow-btn.next {
    right: 20px;
}

.hero-arrow-btn:hover {
    background: var(--clr-primary);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 18px rgba(11, 83, 148, 0.4);
}

@media (max-width: 991.98px) {
    .hero-cinematic-slider {
        height: auto;
        min-height: auto;
        max-height: none;
        padding-bottom: 75px;
    }

    .hero-slides-viewport {
        position: relative;
        width: 100%;
        height: auto;
        min-height: 100%;
        overflow: hidden;
    }

    .hero-slide {
        position: absolute;
        inset: 0;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.5s ease, visibility 0.5s ease;
        z-index: 1;
    }

    .hero-slide.active {
        position: relative;
        inset: auto;
        opacity: 1;
        visibility: visible;
        z-index: 2;
    }

    .hero-slide-bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        background-position: center 20%;
        background-size: cover;
    }

    .hero-slide-overlay {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, rgba(7, 18, 33, 0.72) 0%, rgba(10, 22, 40, 0.92) 55%, rgba(7, 18, 33, 0.98) 100%);
    }

    .hero-slide-overlay.overlay-cyan {
        background: linear-gradient(180deg, rgba(7, 18, 33, 0.72) 0%, rgba(8, 70, 95, 0.88) 55%, rgba(10, 22, 40, 0.98) 100%);
    }

    .hero-slide-overlay.overlay-red {
        background: linear-gradient(180deg, rgba(7, 18, 33, 0.72) 0%, rgba(85, 18, 18, 0.88) 55%, rgba(10, 22, 40, 0.98) 100%);
    }

    .hero-content-block {
        padding: 30px 0 50px;
    }

    .hero-arrow-btn {
        display: none;
    }

    /* Mobile Hero Banner Image Showcase */
    .hero-mobile-visual {
        display: block;
        margin: 18px 0 22px;
    }

    .hero-mobile-img-card {
        position: relative;
        width: 100%;
        border-radius: 16px;
        overflow: hidden;
        border: 2px solid rgba(255, 255, 255, 0.22);
        box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(56, 189, 248, 0.25);
        background: #0b192e;
        aspect-ratio: 16 / 9;
        max-height: 280px;
    }

    .hero-mobile-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        display: block;
        transition: transform 0.6s ease;
    }

    .hero-slide.active .hero-mobile-img {
        transform: scale(1.02);
    }

    .hero-mobile-img-badge {
        position: absolute;
        bottom: 12px;
        left: 12px;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: rgba(7, 18, 33, 0.88);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 6px 14px;
        border-radius: 30px;
        border: 1px solid rgba(255, 255, 255, 0.22);
        font-size: 0.78rem;
        font-weight: 700;
        color: #FFFFFF;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
    }

    .hero-mobile-img-badge.badge-cyan {
        border-color: rgba(56, 189, 248, 0.5);
        background: rgba(8, 70, 95, 0.9);
    }

    .hero-mobile-img-badge.badge-red {
        border-color: rgba(239, 68, 68, 0.5);
        background: rgba(95, 18, 18, 0.9);
    }

    .hero-thumbnails-floating-bar {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin-top: 20px;
        margin-bottom: 10px;
        z-index: 10;
        display: flex;
        justify-content: center;
    }

    .hero-thumbs-group {
        margin: 0 auto;
        gap: 8px;
        padding: 6px 12px;
        max-width: 480px;
        width: 100%;
    }

    .hero-thumb-card {
        padding: 6px 10px 8px;
        gap: 8px;
        flex: 1 1 0;
    }

    .hero-thumb-card .thumb-img {
        width: 38px;
        height: 28px;
        display: block !important;
        border-radius: 5px;
        object-fit: cover;
    }

    .hero-thumb-card .thumb-label {
        font-size: 0.74rem;
    }
}

@media (max-width: 767.98px) {
    .hero-cinematic-slider {
        padding-bottom: 70px;
    }

    .hero-content-block {
        padding: 20px 0 45px;
    }

    .hero-badge-live {
        font-size: 0.78rem;
        padding: 6px 14px;
        margin-bottom: 12px;
    }

    .hero-main-title {
        font-size: clamp(1.65rem, 6.5vw, 2.1rem);
        margin-bottom: 12px;
        line-height: 1.2;
    }

    .hero-mobile-visual {
        margin: 14px 0 16px;
    }

    .hero-mobile-img-card {
        aspect-ratio: 16 / 9;
        max-height: 220px;
        border-radius: 14px;
    }

    .hero-mobile-img-badge {
        font-size: 0.72rem;
        padding: 4px 10px;
        bottom: 8px;
        left: 8px;
    }

    .hero-lead-text {
        font-size: 0.92rem;
        line-height: 1.6;
        margin-bottom: 18px;
    }

    .hero-actions-group {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 20px;
    }

    .btn-hero-primary,
    .btn-hero-emergency,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
        padding: 13px 18px;
        font-size: 0.94rem;
    }

    .hero-trust-row {
        gap: 8px;
        margin-bottom: 8px;
    }

    .hero-trust-chip {
        font-size: 0.76rem;
        padding: 5px 12px;
    }

    .hero-thumbnails-floating-bar {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin-top: 16px;
        margin-bottom: 6px;
        z-index: 10;
        display: flex;
        justify-content: center;
    }

    .hero-thumbs-group {
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
        justify-content: space-between;
        gap: 6px;
        padding: 6px 8px;
        border-radius: 12px;
    }

    .hero-thumb-card {
        flex: 1 1 0;
        min-width: 0;
        padding: 5px 6px 7px;
        gap: 6px;
        justify-content: center;
        border-radius: 8px;
    }

    .hero-thumb-card .thumb-img {
        display: block !important;
        width: 32px;
        height: 24px;
        border-radius: 4px;
        object-fit: cover;
    }

    .hero-thumb-card .thumb-number {
        font-size: 0.68rem;
    }

    .hero-thumb-card .thumb-label {
        font-size: 0.7rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media (max-width: 420px) {
    .hero-mobile-img-card {
        max-height: 190px;
    }

    .hero-thumbs-group {
        gap: 4px;
        padding: 5px 6px;
    }

    .hero-thumb-card {
        padding: 4px 4px 6px;
        gap: 4px;
    }

    .hero-thumb-card .thumb-img {
        width: 28px;
        height: 22px;
    }

    .hero-thumb-card .thumb-number {
        font-size: 0.64rem;
    }

    .hero-thumb-card .thumb-label {
        display: none;
    }
}


/* ==========================================================================
   FLOATING CORNER ACTION BUTTONS (CALL & WHATSAPP ANIMATED IN BOTTOM-RIGHT)
   ========================================================================== */
.floating-contact-corner {
    --fab-size: 56px;
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    z-index: 1035;
    pointer-events: none;
}

.fab-contact-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--fab-size);
    height: var(--fab-size);
    flex: 0 0 var(--fab-size);
    padding: 0;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 50%;
    pointer-events: auto;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.88rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
    cursor: pointer;
}

.fab-contact-btn i {
    font-size: 1.5rem;
    line-height: 1;
}

.fab-label {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    padding: 7px 12px;
    border-radius: 8px;
    background: #0f2847;
    color: #fff;
    font-size: .8rem;
    line-height: 1.5;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translate(4px, -50%);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
    pointer-events: none;
}

.fab-contact-btn:focus-visible { outline: 3px solid #f5c451; outline-offset: 4px; }
.fab-contact-btn:focus-visible .fab-label { opacity: 1; visibility: visible; transform: translate(0, -50%); }
@media (hover: hover) {
    .fab-contact-btn:hover .fab-label { opacity: 1; visibility: visible; transform: translate(0, -50%); }
}

@media (max-width: 991.98px) {
    .floating-contact-corner {
        --fab-size: 48px;
        right: max(16px, env(safe-area-inset-right));
        bottom: calc(var(--mobile-action-bar-height, 72px) + 18px);
        gap: 14px;
    }
}

/* WhatsApp FAB */
.fab-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #FFFFFF !important;
}

.fab-whatsapp:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
}

/* Call FAB */
.fab-call {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    color: #FFFFFF !important;
}

.fab-call:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 28px rgba(2, 132, 199, 0.55);
}

/* Pulse Beacon Rings around FABs */
.fab-pulse-beacon {
    position: absolute;
    inset: -3px;
    border-radius: var(--radius-full);
    border: 2px solid rgba(37, 211, 102, 0.7);
    animation: fabBeacon 2.4s infinite ease-out;
    pointer-events: none;
}

.fab-pulse-beacon.blue {
    border-color: rgba(2, 132, 199, 0.7);
}

.fab-pulse-beacon.red {
    border-color: rgba(239, 68, 68, 0.6);
}

.fab-pulse-beacon.ring-2 {
    animation-delay: 1.2s;
}

@keyframes fabBeacon {
    0% {
        transform: scale(0.95);
        opacity: 0.9;
    }
    70% {
        transform: scale(1.16);
        opacity: 0;
    }
    100% {
        transform: scale(1.18);
        opacity: 0;
    }
}

.icon-ringing-fab {
    display: inline-block;
    animation: phoneRing 2.6s infinite ease-in-out;
}

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


/* ==========================================================================
   QUICK APPOINTMENT BAR WIDGET
   ========================================================================== */
.quick-booking-bar-wrapper {
    position: relative;
    margin-top: -55px;
    z-index: 20;
    padding-bottom: 10px;
}

.quick-booking-card {
    background: var(--clr-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(11, 83, 148, 0.06);
    padding: 28px 32px;
}

.quick-field-label {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--clr-muted);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.quick-field-label i {
    color: var(--clr-accent);
}

.quick-field-input {
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--clr-border);
    padding: 11px 14px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--clr-dark);
    transition: all 0.2s ease;
    background: var(--clr-white);
}

.quick-field-input:focus {
    border-color: var(--clr-accent);
    box-shadow: 0 0 0 4px rgba(8, 145, 178, 0.12);
    outline: none;
}

.btn-quick-search {
    background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-accent) 100%);
    color: #FFFFFF;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    border: none;
    box-shadow: var(--shadow-primary);
    width: 100%;
    transition: all 0.35s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.95rem;
    cursor: pointer;
}

.btn-quick-search:hover {
    background: linear-gradient(135deg, var(--clr-primary-dark) 0%, var(--clr-primary) 100%);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px -4px rgba(11, 83, 148, 0.35);
}


/* ==========================================================================
   FACTORY DIRECT SUPPLY COMPACT STRIP (MEDIUM POLYMER TONE - NOT LIGHT / NOT DARK)
   ========================================================================== */
.factory-supply-strip {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 50%, #075985 100%);
    padding: 22px 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 24px -6px rgba(2, 132, 199, 0.35);
}

.factory-supply-box {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 14px;
    padding: 18px 24px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 6px 20px rgba(3, 105, 161, 0.2);
}

.factory-icon-badge {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.32);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.factory-pill-tag {
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    padding: 2px 9px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
}

.factory-title {
    color: #ffffff;
    font-size: 1.28rem;
    font-weight: 800;
    letter-spacing: -0.2px;
    line-height: 1.3;
}

.factory-address-line {
    color: #e0f2fe;
    font-size: 0.86rem;
    line-height: 1.4;
}

.factory-address-line strong {
    color: #ffffff;
}

.factory-map-link {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    font-size: 0.74rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    transition: all 0.2s ease;
}

.factory-map-link:hover {
    background: #ffffff;
    color: #0369a1;
}

.factory-features-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
}

.feature-chip {
    background: rgba(7, 26, 46, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #f0f9ff;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 2px 9px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.btn-quote-white {
    background: #ffffff;
    color: #0369a1 !important;
    font-weight: 800;
    font-size: 0.9rem;
    padding: 9px 20px;
    border-radius: 50px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-quote-white:hover {
    background: #f0f9ff;
    color: #0284c7 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.btn-call-pill {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.86rem;
    padding: 8px 16px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-call-pill:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff !important;
    transform: translateY(-2px);
}

.btn-wa-pill {
    background: #25D366;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff !important;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-wa-pill:hover {
    background: #20BA5C;
    transform: translateY(-2px) scale(1.05);
}

/* Fallback for legacy class name */
.emergency-hotline-strip {
    background: linear-gradient(135deg, #06172a 0%, #082846 45%, #033c64 100%);
    color: white;
    padding: 24px 0;
    box-shadow: 0 8px 24px -4px rgba(2, 20, 36, 0.5);
}

.emergency-strip-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

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

.emergency-icon-ring {
    width: 54px;
    height: 54px;
    background: rgba(14, 165, 233, 0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #38bdf8;
    flex-shrink: 0;
}

.btn-emergency-call-now {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.25s ease;
}

.btn-emergency-call-now:hover {
    background: linear-gradient(135deg, #38bdf8 0%, #0369a1 100%);
    color: #ffffff;
    transform: scale(1.03);
}


/* ==========================================================================
   STATS & CLINICAL EXCELLENCE
   ========================================================================== */
.stats-section {
    background: var(--clr-light-blue);
    padding: 60px 0;
    border-bottom: 1px solid var(--clr-border);
}

.stat-card {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--clr-border);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
}

.stat-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--clr-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-weight: 700;
    color: var(--clr-dark);
    font-size: 1rem;
    margin-bottom: 4px;
}

/* Counter value fallback for old markup */
.counter-value {
    font-family: var(--font-heading);
    font-weight: 800;
}


/* ==========================================================================
   SECTION LAYOUT & TYPOGRAPHY
   ========================================================================== */
.section-padding {
    padding: 90px 0;
}

.section-bg-light {
    background-color: var(--clr-light);
}

.section-bg-blue {
    background-color: var(--clr-light-blue);
}

.section-tagline {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--clr-accent);
    margin-bottom: 10px;
    display: block;
}

.section-main-heading {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--clr-dark);
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.section-subtext {
    font-size: 1.08rem;
    color: var(--clr-muted);
    max-width: 660px;
    margin: 0 auto 55px;
    line-height: 1.7;
}


/* ==========================================================================
   DEPARTMENT & SPECIALTY CARDS
   ========================================================================== */
.department-card-luxury {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--clr-border);
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.department-card-luxury:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(8, 145, 178, 0.25);
}

.dept-image-frame {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.dept-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.department-card-luxury:hover .dept-image-frame img {
    transform: scale(1.08);
}

.dept-badge-icon {
    position: absolute;
    bottom: -22px;
    left: 22px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-accent) 100%);
    color: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 3px solid var(--clr-white);
}

.dept-content-body {
    padding: 32px 24px 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.dept-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--clr-dark);
    margin-bottom: 10px;
}

.dept-description {
    font-size: 0.92rem;
    color: var(--clr-muted);
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.65;
}

.dept-link-action {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--clr-primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.dept-link-action:hover {
    color: var(--clr-accent);
    gap: 10px;
}


/* ==========================================================================
   DOCTOR PROFILES SHOWCASE
   ========================================================================== */
.doctor-card-elite {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--clr-border);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.doctor-card-elite:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(8, 145, 178, 0.3);
}

.doctor-avatar-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: var(--clr-light);
}

.doctor-avatar-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.doctor-card-elite:hover .doctor-avatar-wrapper img {
    transform: scale(1.05);
}

.doctor-dept-chip {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(15, 23, 42, 0.82);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #FFFFFF;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: var(--radius-full);
}

.doctor-fee-chip {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: var(--clr-white);
    color: var(--clr-secondary);
    font-size: 0.85rem;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
}

.doctor-info-body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.doctor-name-heading {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--clr-dark);
    margin-bottom: 4px;
}

.doctor-qual-text {
    font-size: 0.84rem;
    color: var(--clr-muted);
    font-weight: 500;
    margin-bottom: 10px;
}

.doctor-experience-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.84rem;
    color: var(--clr-slate);
    font-weight: 600;
    margin-bottom: 10px;
}

.doctor-availability-tag {
    font-size: 0.82rem;
    color: var(--clr-slate);
    background: var(--clr-light-blue);
    border: 1px solid rgba(8, 145, 178, 0.15);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
}

/* Doctor Card Actions (View Profile + Book Visit) */
.doctor-card-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
    margin-bottom: 8px;
}

.btn-view-profile {
    background: var(--clr-light);
    color: var(--clr-slate);
    font-weight: 600;
    font-size: 0.88rem;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--clr-border);
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.25s ease;
}

.btn-view-profile:hover {
    background: var(--clr-primary-light);
    color: var(--clr-primary);
    border-color: rgba(11, 83, 148, 0.2);
}

.btn-book-doctor-slot {
    background: var(--clr-primary-light);
    color: var(--clr-primary);
    font-weight: 700;
    font-size: 0.88rem;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(11, 83, 148, 0.15);
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.25s ease;
}

.btn-book-doctor-slot:hover {
    background: var(--clr-primary);
    color: #FFFFFF;
    box-shadow: var(--shadow-primary);
}


/* ==========================================================================
   FACILITIES & INFRASTRUCTURE
   ========================================================================== */
.facility-card-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 300px;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.facility-card-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.facility-overlay-info {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(10, 22, 40, 0.92) 100%);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.facility-card-card:hover img {
    transform: scale(1.12);
}

.facility-card-card:hover .facility-overlay-info {
    background: linear-gradient(180deg, rgba(11, 83, 148, 0.2) 0%, rgba(10, 22, 40, 0.95) 100%);
}

.facility-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 6px;
}

.facility-snippet {
    font-size: 0.9rem;
    color: #CBD5E1;
    margin-bottom: 0;
    line-height: 1.6;
}


/* ==========================================================================
   HEALTH PACKAGES
   ========================================================================== */
.package-card {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--clr-border);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

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

.package-card.featured-pkg {
    border-color: var(--clr-accent);
    box-shadow: 0 15px 40px -5px rgba(8, 145, 178, 0.18);
    transform: scale(1.02);
}

.package-card.featured-pkg:hover {
    transform: scale(1.02) translateY(-6px);
    box-shadow: 0 24px 48px -8px rgba(8, 145, 178, 0.25);
}

.featured-pkg-badge {
    position: absolute;
    top: -14px;
    right: 24px;
    background: linear-gradient(135deg, var(--clr-accent) 0%, var(--clr-primary) 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 16px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
}

.package-header {
    margin-bottom: 4px;
}

.package-name {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--clr-dark);
    margin-bottom: 4px;
}

.package-desc {
    color: var(--clr-muted);
    font-size: 0.88rem;
    margin-bottom: 0;
}

.package-price {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--clr-primary);
    line-height: 1;
    margin: 18px 0;
}

.package-price.text-accent {
    color: var(--clr-accent);
}

.package-test-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    flex-grow: 1;
}

.package-test-list li {
    padding: 9px 0;
    font-size: 0.92rem;
    color: var(--clr-slate);
    border-bottom: 1px dashed var(--clr-border);
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.package-test-list li i {
    color: var(--clr-secondary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Package Book Buttons */
.btn-package-book {
    display: block;
    text-align: center;
    padding: 12px 20px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--clr-primary);
    background: var(--clr-primary-light);
    border: 1.5px solid rgba(11, 83, 148, 0.15);
    transition: all 0.25s ease;
    margin-top: auto;
}

.btn-package-book:hover {
    background: var(--clr-primary);
    color: var(--clr-white);
    box-shadow: var(--shadow-primary);
}

.btn-package-book.featured {
    background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-accent) 100%);
    color: var(--clr-white);
    border-color: transparent;
    box-shadow: var(--shadow-primary);
}

.btn-package-book.featured:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px -4px rgba(11, 83, 148, 0.4);
}


/* ==========================================================================
   TRUST & INSURANCE BAR
   ========================================================================== */
.trust-strip-section {
    background-color: var(--clr-white);
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
    padding: 48px 0;
}

.insurance-card {
    background: var(--clr-white);
    padding: 18px 16px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--clr-border);
    transition: all 0.25s ease;
}

.insurance-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(11, 83, 148, 0.2);
}

.shadow-xs {
    box-shadow: var(--shadow-xs);
}


/* ==========================================================================
   PATIENT TESTIMONIALS
   ========================================================================== */
.testimonial-card-elite {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    padding: 34px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--clr-border);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.testimonial-stars {
    color: #F59E0B;
    font-size: 1.15rem;
    margin-bottom: 18px;
    display: flex;
    gap: 3px;
}

.testimonial-text {
    font-style: italic;
    color: var(--clr-slate);
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 24px;
    flex-grow: 1;
}

.patient-profile-footer {
    display: flex;
    align-items: center;
    gap: 14px;
}

.patient-avatar-img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--clr-primary-light);
}

.verified-badge {
    margin-left: auto;
    color: var(--clr-accent);
    font-size: 1.2rem;
}


/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.premium-accordion .accordion-item {
    border: none;
    margin-bottom: 14px;
    border-radius: var(--radius-md) !important;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
}

.premium-accordion .accordion-button {
    padding: 20px 24px;
    font-size: 1.05rem;
    font-weight: 700;
    background: var(--clr-white);
    color: var(--clr-dark);
    font-family: var(--font-heading);
    border-radius: var(--radius-md) !important;
}

.premium-accordion .accordion-button:not(.collapsed) {
    color: var(--clr-primary);
    background-color: var(--clr-primary-light);
    box-shadow: none;
}

.premium-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.premium-accordion .accordion-button::after {
    width: 1.15rem;
    height: 1.15rem;
}

.premium-accordion .accordion-body {
    padding: 18px 24px 24px;
    color: var(--clr-muted);
    font-size: 0.96rem;
    line-height: 1.7;
}


/* ==========================================================================
   FINAL CTA SECTION
   ========================================================================== */
.cta-final-section {
    background: linear-gradient(115deg, #0a1e35 0%, #103b55 65%, #105b68 100%);
    color: white;
    padding: 76px 0;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.cta-final-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
    z-index: -2;
}

.cta-final-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, rgba(6, 25, 44, .94), rgba(10, 39, 58, .86) 58%, rgba(10, 39, 58, .68));
    pointer-events: none;
    z-index: -1;
}

.cta-final-layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 300px);
    align-items: center;
    gap: clamp(32px, 5vw, 80px);
}

.cta-final-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 15px;
    margin-bottom: 20px;
    border: 1px solid rgba(153, 246, 228, 0.3);
    border-radius: var(--radius-full);
    background: rgba(94, 234, 212, 0.09);
    color: #b7f7ed;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.cta-final-heading {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--clr-white);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
    line-height: 1.22;
    max-width: 720px;
    text-wrap: balance;
}

.cta-final-heading span {
    color: #99f6e4;
}

.cta-final-text {
    color: #d4e3ee;
    font-size: 1.1rem;
    margin-bottom: 0;
    max-width: 620px;
    line-height: 1.75;
}

.cta-final-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cta-final-actions a {
    justify-content: center;
    gap: 10px;
    min-height: 56px;
    width: 100%;
    border-radius: 14px;
    text-align: center;
    line-height: 1.4;
    transition: transform 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.cta-final-actions a:focus-visible {
    outline: 3px solid #99f6e4;
    outline-offset: 5px;
}

.cta-final-actions a:active {
    transform: translateY(0);
}

.cta-action-arrow {
    transition: transform 0.22s ease;
}

.btn-cta-book:hover .cta-action-arrow {
    transform: translateX(4px);
}

.btn-cta-book {
    background: var(--clr-white);
    color: #103b55;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.btn-cta-book:hover {
    background: #d5fbf3;
    color: #103b55;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-cta-call {
    background: rgba(255, 255, 255, 0.05);
    color: var(--clr-white);
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.55);
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-cta-call:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--clr-white);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

@media (max-width: 991.98px) {
    .cta-final-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 28px;
        text-align: center;
    }

    .cta-final-heading,
    .cta-final-text {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-final-actions {
        flex-direction: row;
        width: 100%;
        max-width: 580px;
        margin-inline: auto;
    }

    .cta-final-actions a {
        flex: 1;
    }
}

@media (max-width: 575.98px) {
    .cta-final-actions {
        flex-direction: column;
        max-width: 360px;
    }

    .cta-final-text {
        font-size: 1rem;
    }
}


/* ==========================================================================
   VIEW ALL BUTTONS
   ========================================================================== */
.btn-view-all {
    background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-accent) 100%);
    color: var(--clr-white);
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    box-shadow: var(--shadow-primary);
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    color: var(--clr-white);
    transform: translateY(-3px);
    box-shadow: 0 14px 28px -4px rgba(11, 83, 148, 0.4);
}

.btn-view-all-outline {
    background: transparent;
    color: var(--clr-primary);
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    border: 2px solid var(--clr-primary);
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-view-all-outline:hover {
    background: var(--clr-primary);
    color: var(--clr-white);
    box-shadow: var(--shadow-primary);
    transform: translateY(-3px);
}


/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer-hospital {
    background-color: var(--clr-navy);
    color: #94A3B8;
    padding: 80px 0 30px;
    font-size: 0.93rem;
}

.footer-about-text {
    color: #7C8EA4;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-badge {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94A3B8;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94A3B8;
    font-size: 1.05rem;
    transition: all 0.25s ease;
}

.footer-social-icon:hover {
    background: var(--clr-accent);
    border-color: var(--clr-accent);
    color: var(--clr-white);
    transform: translateY(-3px);
}

.footer-hospital h5 {
    color: #FFFFFF;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.3px;
    position: relative;
    padding-bottom: 12px;
}

.footer-hospital h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 3px;
    background: var(--clr-accent);
    border-radius: 2px;
}

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

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

.footer-links-list a {
    color: #7C8EA4;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.footer-links-list a i {
    font-size: 0.7rem;
    color: var(--clr-accent);
    opacity: 0.6;
    transition: all 0.2s ease;
}

.footer-links-list a:hover {
    color: #FFFFFF;
    transform: translateX(5px);
}

.footer-links-list a:hover i {
    opacity: 1;
}

.footer-emergency-box {
    padding: 18px;
    border-radius: var(--radius-md);
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.25);
    margin-bottom: 20px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
    color: #7C8EA4;
    font-size: 0.9rem;
}

.footer-contact-item i {
    color: var(--clr-accent);
    font-size: 1.25rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-staff-link {
    color: #64748B;
    font-size: 0.82rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
}

.footer-staff-link:hover {
    color: var(--clr-white);
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.05);
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 55px;
    padding-top: 28px;
}


/* ==========================================================================
   MOBILE STICKY ACTION BAR
   ========================================================================== */
.mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--clr-white);
    border-top: 1px solid var(--clr-border);
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    z-index: 1040;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

@media (min-width: 992px) {
    .mobile-bottom-bar {
        display: none !important;
    }
}

.mobile-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--clr-slate);
    text-decoration: none;
    gap: 3px;
    flex: 1;
    padding: 4px;
}

.mobile-action-btn i {
    font-size: 1.35rem;
}

.mobile-action-btn.emergency-btn {
    color: var(--clr-emergency);
}

.mobile-action-btn.whatsapp-btn {
    color: #25D366;
}

.mobile-action-btn.book-btn {
    color: var(--clr-primary);
}


/* ==========================================================================
   BACK TO TOP
   ========================================================================== */
#backToTopBtn {
    position: relative;
    background: var(--clr-primary);
    color: white;
    border-radius: 50%;
    border: none;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease, background-color .25s ease;
}

#backToTopBtn.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

#backToTopBtn i { font-size: 1.9rem; }

#backToTopBtn:hover {
    background: var(--clr-accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}


/* ==========================================================================
   SCROLL REVEAL ANIMATION
   ========================================================================== */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-on-scroll.revealed {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

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

.letter-spacing-1 {
    letter-spacing: 1px !important;
}


/* ==========================================================================
   RESPONSIVE: TABLET & MOBILE
   ========================================================================== */
@media (max-width: 991.98px) {
    .hero-hospital-section {
        padding: 60px 0 80px;
    }

    .hero-main-title {
        font-size: clamp(2rem, 6vw, 2.8rem);
    }

    .hero-lead-text {
        font-size: 1.05rem;
    }

    .btn-hero-primary,
    .btn-hero-emergency {
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    .quick-booking-card {
        padding: 22px 20px;
    }

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

    .emergency-strip-content {
        justify-content: center;
        text-align: center;
    }

    .emergency-left-info {
        justify-content: center;
        text-align: left;
    }

    .stats-section {
        padding: 45px 0;
    }

    .stat-card {
        padding: 24px 18px;
    }

    .stat-value {
        font-size: 2rem;
    }

    .facility-card-card {
        height: 260px;
    }

    .cta-final-section {
        padding: 60px 0;
    }
}

@media (max-width: 767.98px) {
    .hero-hospital-section {
        padding: 50px 0 70px;
    }

    .hero-badge-live {
        font-size: 0.8rem;
        padding: 6px 14px;
    }

    .hero-main-title {
        font-size: 2rem;
        letter-spacing: -0.5px;
    }

    .hero-lead-text {
        font-size: 0.98rem;
    }

    .hero-actions-group {
        flex-direction: column;
        gap: 12px;
    }

    .btn-hero-primary,
    .btn-hero-emergency {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }

    .quick-booking-bar-wrapper {
        margin-top: -40px;
    }

    .section-main-heading {
        font-size: 1.75rem;
    }

    .section-subtext {
        font-size: 0.98rem;
        margin-bottom: 40px;
    }

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

    .department-card-luxury .dept-image-frame {
        height: 170px;
    }

    .doctor-avatar-wrapper {
        height: 240px;
    }

    .facility-card-card {
        height: 240px;
    }

    .package-card {
        padding: 28px 22px;
    }

    .testimonial-card-elite {
        padding: 26px;
    }

    .cta-final-section {
        padding: 50px 0;
        text-align: center;
    }

    .cta-final-heading {
        font-size: 1.6rem;
    }

    .btn-cta-book,
    .btn-cta-call {
        width: 100%;
        justify-content: center;
    }

    .footer-hospital {
        padding: 55px 0 25px;
        text-align: center;
    }

    .footer-hospital h5::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 575.98px) {
    .hero-main-title {
        font-size: 1.75rem;
    }

    .quick-booking-card {
        padding: 18px 16px;
    }

    .stat-card {
        padding: 20px 14px;
    }

    .stat-value {
        font-size: 1.8rem;
    }

    .emergency-strip-content {
        flex-direction: column;
        gap: 14px;
    }

    .btn-emergency-call-now {
        width: 100%;
        justify-content: center;
        font-size: 1rem;
    }

    .doctor-card-actions {
        flex-direction: column;
        gap: 8px;
    }
}


/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    .fab-pulse-beacon, .icon-ringing-fab { animation: none !important; }
    .fab-contact-btn, .fab-label { transition: none !important; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal-on-scroll {
        opacity: 1;
        transform: none;
    }

    html {
        scroll-behavior: auto;
    }
}


/* ==========================================================================
   FEATURED PRODUCT / TANK MODEL SPOTLIGHT SHOWCASE
   ========================================================================== */
.doctor-spotlight-section {
    background: linear-gradient(180deg, #F8FAFC 0%, #EFF6FF 100%);
    position: relative;
    overflow: hidden;
}

.doctor-spotlight-card {
    background: #FFFFFF;
    border-radius: 28px;
    box-shadow: 0 20px 40px -15px rgba(11, 83, 148, 0.12), 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(11, 83, 148, 0.1);
    overflow: hidden;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.doctor-spotlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 60px -15px rgba(11, 83, 148, 0.18), 0 2px 6px rgba(0, 0, 0, 0.06);
}

/* Left Visual Area */
.doctor-spotlight-visual {
    position: relative;
    padding: 30px;
    height: 100%;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0A1628 0%, #0F2847 50%, #083D6F 100%);
    overflow: hidden;
}

.doctor-spotlight-visual::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(8, 145, 178, 0.25) 0%, transparent 70%);
    animation: floatGlow 6s infinite ease-in-out alternate;
}

@keyframes floatGlow {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.2) translate(-15px, 15px); }
}

.doctor-image-frame {
    position: relative;
    width: 100%;
    max-width: 380px;
    height: 450px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
    border: 3px solid rgba(255, 255, 255, 0.15);
}

.doctor-main-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.doctor-spotlight-card:hover .doctor-main-portrait {
    transform: scale(1.05);
}

.doctor-image-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 35%;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.75) 0%, transparent 100%);
    pointer-events: none;
}

/* Floating Badges */
.doctor-float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 10px 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    z-index: 5;
    animation: floatBadge 4s infinite ease-in-out alternate;
}

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

.doctor-float-badge.badge-experience {
    top: 40px;
    left: 20px;
    animation-delay: 0s;
}

.doctor-float-badge.badge-rating {
    bottom: 40px;
    right: 20px;
    animation-delay: 1.5s;
}

.doctor-float-badge.badge-reg {
    bottom: 40px;
    left: 25px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #0F172A;
    padding: 8px 14px;
    animation-delay: 0.8s;
}

.badge-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.bg-primary-gradient {
    background: linear-gradient(135deg, #0B5394 0%, #0891B2 100%);
}

.bg-warning-gradient {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

.badge-num {
    font-size: 0.95rem;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.2;
}

.badge-lbl {
    font-size: 0.72rem;
    color: #64748B;
    font-weight: 600;
}

/* Right Details Area */
.doctor-spotlight-details {
    padding: 44px 40px;
}

.doctor-specialty-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #EBF4FF;
    color: #0B5394;
    font-weight: 700;
    font-size: 0.84rem;
    padding: 6px 14px;
    border-radius: 9999px;
    border: 1px solid rgba(11, 83, 148, 0.18);
}

.pulse-dot-cyan {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0891B2;
    box-shadow: 0 0 0 0 rgba(8, 145, 178, 0.7);
    animation: cyanPulse 2s infinite;
}

@keyframes cyanPulse {
    0% { box-shadow: 0 0 0 0 rgba(8, 145, 178, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(8, 145, 178, 0); }
    100% { box-shadow: 0 0 0 0 rgba(8, 145, 178, 0); }
}

.doctor-spotlight-name {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0F172A;
    margin-top: 8px;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.doctor-credentials-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cred-chip {
    background: #F1F5F9;
    color: #334155;
    font-size: 0.84rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 8px;
    border: 1px solid #E2E8F0;
}

.doctor-spotlight-bio {
    font-size: 0.98rem;
    line-height: 1.75;
    color: #475569;
}

/* Experience Grid */
.doctor-experience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.exp-item-box {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    padding: 14px 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: all 0.25s ease;
}

.exp-item-box:hover {
    background: #FFFFFF;
    border-color: #0B5394;
    box-shadow: 0 4px 12px rgba(11, 83, 148, 0.08);
    transform: translateY(-2px);
}

.exp-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #FFFFFF;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.exp-role {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0F172A;
}

.exp-inst {
    font-size: 0.78rem;
    line-height: 1.35;
}

/* Location and Fee Meta */
.doctor-clinic-meta {
    background: #F0F7FF;
    border: 1px solid rgba(11, 83, 148, 0.15);
    border-radius: 16px;
    padding: 14px 20px;
}

.doctor-fee-badge {
    text-align: right;
    border-left: 2px dashed rgba(11, 83, 148, 0.2);
    padding-left: 20px;
}

.fee-amount {
    font-size: 1.45rem;
    font-weight: 800;
    color: #0B5394;
}

/* Action Buttons */
.doctor-spotlight-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.btn-spotlight-book {
    background: linear-gradient(135deg, #0B5394 0%, #0891B2 100%);
    color: #FFFFFF !important;
    font-weight: 700;
    font-size: 0.96rem;
    padding: 13px 28px;
    border-radius: 9999px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(11, 83, 148, 0.35);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-spotlight-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(11, 83, 148, 0.45);
    background: linear-gradient(135deg, #083D6F 0%, #0B5394 100%);
}

.btn-spotlight-call {
    background: #FEF2F2;
    color: #DC2626 !important;
    font-weight: 700;
    font-size: 0.96rem;
    padding: 12px 24px;
    border-radius: 9999px;
    border: 1.5px solid rgba(220, 38, 38, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    text-decoration: none;
}

.btn-spotlight-call:hover {
    background: #DC2626;
    color: #FFFFFF !important;
    border-color: #DC2626;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(220, 38, 38, 0.3);
}

.btn-spotlight-wa {
    background: #ECFDF5;
    color: #059669 !important;
    font-weight: 700;
    font-size: 0.96rem;
    padding: 12px 22px;
    border-radius: 9999px;
    border: 1.5px solid rgba(5, 150, 105, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    text-decoration: none;
}

.btn-spotlight-wa:hover {
    background: #25D366;
    color: #FFFFFF !important;
    border-color: #25D366;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
}

/* Responsive adjustments for spotlight */
@media (max-width: 991.98px) {
    .doctor-spotlight-visual {
        min-height: 400px;
        padding: 24px;
    }
    .doctor-image-frame {
        height: 380px;
    }
    .doctor-spotlight-details {
        padding: 32px 24px;
    }
    .doctor-spotlight-name {
        font-size: 1.85rem;
    }
    .doctor-experience-grid {
        grid-template-columns: 1fr;
    }
    .doctor-fee-badge {
        text-align: left;
        border-left: none;
        border-top: 1px dashed rgba(11, 83, 148, 0.2);
        padding-left: 0;
        padding-top: 10px;
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .doctor-float-badge.badge-experience {
        top: 20px;
        left: 10px;
        padding: 6px 10px;
    }
    .doctor-float-badge.badge-rating {
        bottom: 20px;
        right: 10px;
        padding: 6px 10px;
    }
    .doctor-float-badge.badge-reg {
        display: none;
    }
    .doctor-spotlight-actions {
        flex-direction: column;
        width: 100%;
    }
    .doctor-spotlight-actions a {
        width: 100%;
    }
}

/* Colorful Icon Classes for Doctor Experience & Highlights */
.exp-icon-red {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%) !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.35) !important;
}

.exp-icon-blue {
    background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%) !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 12px rgba(29, 78, 216, 0.35) !important;
}

.exp-icon-emerald {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%) !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.35) !important;
}

.exp-icon-amber {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%) !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.35) !important;
}

.exp-icon-purple {
    background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%) !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 12px rgba(109, 40, 217, 0.35) !important;
}

/* Colorful Specialty Chips */
.doctor-tag-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.doc-tag {
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.25s ease;
}

.doc-tag:hover {
    transform: translateY(-2px);
}

.doc-tag-cyan {
    background: #E0F2FE;
    color: #0369A1;
    border: 1px solid #BAE6FD;
}

.doc-tag-purple {
    background: #F3E8FF;
    color: #7E22CE;
    border: 1px solid #E9D5FF;
}

.doc-tag-emerald {
    background: #ECFDF5;
    color: #047857;
    border: 1px solid #A7F3D0;
}

.doc-tag-amber {
    background: #FEF3C7;
    color: #B45309;
    border: 1px solid #FDE68A;
}

/* Shimmer on Doctor Card */
.doctor-spotlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
    transform: skewX(-25deg);
    animation: cardShimmer 7s infinite ease-in-out;
    pointer-events: none;
    z-index: 2;
}

@keyframes cardShimmer {
    0%, 80%, 100% { left: -100%; }
    40% { left: 150%; }
}

/* ==========================================================================
   INNER PAGE PREMIUM BANNER WITH GRAPHICS & QUICK ACTIONS
   ========================================================================== */
.inner-page-banner {
    position: relative;
    background: linear-gradient(135deg, #07162C 0%, #0B2545 50%, #0A3C6B 100%);
    color: #FFFFFF;
    padding: 65px 0 60px;
    overflow: hidden;
    border-bottom: 3px solid rgba(8, 145, 178, 0.35);
}

.inner-page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 15% 20%, rgba(8, 145, 178, 0.28) 0%, transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(16, 185, 129, 0.22) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(11, 83, 148, 0.18) 0%, transparent 65%);
    pointer-events: none;
}

.inner-page-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background-size: 36px 36px;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
                      linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    pointer-events: none;
}

.inner-banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(8, 145, 178, 0.2);
    color: #38BDF8;
    border: 1px solid rgba(56, 189, 248, 0.4);
    padding: 6px 16px;
    border-radius: 9999px;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.inner-banner-title {
    font-size: clamp(2rem, 3.8vw, 3rem);
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.inner-banner-title .title-highlight {
    background: linear-gradient(135deg, #38BDF8 0%, #34D399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.inner-banner-lead {
    font-size: 1.1rem;
    color: #CBD5E1;
    line-height: 1.7;
    max-width: 740px;
    margin-bottom: 22px;
}

.inner-banner-cta-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.btn-inner-cta-primary {
    background: linear-gradient(135deg, #0B5394 0%, #0891B2 100%);
    color: #FFFFFF !important;
    font-weight: 700;
    font-size: 0.94rem;
    padding: 11px 26px;
    border-radius: 9999px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 18px rgba(8, 145, 178, 0.35);
    transition: all 0.25s ease;
    text-decoration: none;
}

.btn-inner-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(8, 145, 178, 0.45);
    background: linear-gradient(135deg, #083D6F 0%, #0B5394 100%);
}

.btn-inner-cta-call {
    background: rgba(220, 38, 38, 0.25);
    color: #FCA5A5 !important;
    font-weight: 700;
    font-size: 0.94rem;
    padding: 10px 22px;
    border-radius: 9999px;
    border: 1px solid rgba(239, 68, 68, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
    text-decoration: none;
}

.btn-inner-cta-call:hover {
    background: #DC2626;
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(220, 38, 38, 0.35);
}

.btn-inner-cta-wa {
    background: rgba(37, 211, 102, 0.2);
    color: #86EFAC !important;
    font-weight: 700;
    font-size: 0.94rem;
    padding: 10px 22px;
    border-radius: 9999px;
    border: 1px solid rgba(34, 197, 94, 0.45);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
    text-decoration: none;
}

.btn-inner-cta-wa:hover {
    background: #25D366;
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

/* Background Image Variants for Inner Page Banners */
.inner-page-banner.banner-bg-doctors {
    background-image: linear-gradient(90deg, rgba(7, 22, 44, 0.93) 0%, rgba(11, 37, 69, 0.88) 55%, rgba(10, 60, 107, 0.75) 100%), url('../images/banner-doctors.jpg');
    background-size: cover;
    background-position: center right;
}

.inner-page-banner.banner-bg-departments {
    background-image: linear-gradient(90deg, rgba(7, 22, 44, 0.93) 0%, rgba(11, 37, 69, 0.88) 55%, rgba(10, 60, 107, 0.75) 100%), url('../images/banner-departments.jpg');
    background-size: cover;
    background-position: center right;
}

.inner-page-banner.banner-bg-contact {
    background-image: linear-gradient(90deg, rgba(7, 22, 44, 0.93) 0%, rgba(11, 37, 69, 0.88) 55%, rgba(10, 60, 107, 0.75) 100%), url('../images/banner-contact.jpg');
    background-size: cover;
    background-position: center right;
}

.inner-page-banner.banner-bg-appointment {
    background-image: linear-gradient(90deg, rgba(7, 22, 44, 0.93) 0%, rgba(11, 37, 69, 0.88) 55%, rgba(10, 60, 107, 0.75) 100%), url('../images/banner-appointment.jpg');
    background-size: cover;
    background-position: center right;
}

/* Floating Banner Preview Card */
.inner-banner-visual-box {
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1.5px solid rgba(255, 255, 255, 0.22);
    border-radius: 20px;
    padding: 20px 22px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    animation: bannerCardFloat 5s infinite ease-in-out alternate;
}

@keyframes bannerCardFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-7px); }
}

.inner-banner-thumb-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.inner-banner-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 9999px;
    background: rgba(56, 189, 248, 0.2);
    color: #7DD3FC;
    border: 1px solid rgba(56, 189, 248, 0.35);
    margin-bottom: 8px;
}

/* ==========================================================================
   CONTACT PAGE MODERN TABS, COLORS & ENHANCED LAYOUT
   ========================================================================== */
.contact-tabs-container {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 16px 36px -10px rgba(11, 83, 148, 0.1);
    border: 1px solid rgba(11, 83, 148, 0.12);
    margin-bottom: 45px;
}

.contact-tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    border-bottom: 2px solid #F1F5F9;
    padding-bottom: 16px;
    margin-bottom: 24px;
}

.contact-tab-pill {
    background: #F8FAFC;
    color: #334155;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 9999px;
    border: 1.5px solid #E2E8F0;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.contact-tab-pill:hover {
    background: #EBF4FF;
    color: #0B5394;
    border-color: #38BDF8;
    transform: translateY(-2px);
}

.contact-tab-pill.active {
    background: linear-gradient(135deg, #0B5394 0%, #0891B2 100%);
    color: #FFFFFF;
    border-color: transparent;
    box-shadow: 0 6px 16px rgba(8, 145, 178, 0.35);
}

.contact-tab-pane {
    display: none;
    animation: fadeInUp 0.35s ease forwards;
}

.contact-tab-pane.active {
    display: block;
}

/* 4 Colorful High-Impact Quick Contact Cards */
.contact-stat-card {
    border-radius: 20px;
    padding: 24px 20px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: #FFFFFF;
    border: 1.5px solid #E2E8F0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.contact-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
}

.contact-card-emergency {
    border-top: 5px solid #DC2626;
}
.contact-card-opd {
    border-top: 5px solid #0B5394;
}
.contact-card-whatsapp {
    border-top: 5px solid #059669;
}
.contact-card-location {
    border-top: 5px solid #D97706;
}

.contact-icon-ring {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.ring-emergency { background: #FEF2F2; color: #DC2626; }
.ring-opd { background: #EBF4FF; color: #0B5394; }
.ring-whatsapp { background: #ECFDF5; color: #059669; }
.ring-location { background: #FEF3C7; color: #D97706; }

/* Interactive Map Frame */
.map-interactive-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #E2E8F0;
    position: relative;
}

.map-interactive-wrapper iframe {
    width: 100%;
    height: 380px;
    border: 0;
    display: block;
}

/* ==========================================================================
   FOOTER PAYMENT DESK & SHANDAR CARDS
   ========================================================================== */
.footer-payment-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 26px 28px;
    margin-top: 35px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.payment-methods-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.bade-payment-pill {
    background: rgba(255, 255, 255, 0.07);
    color: #FFFFFF;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.bade-payment-pill:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    color: #FFFFFF;
}

.bade-payment-pill i {
    font-size: 1.4rem;
    line-height: 1;
}

.bade-payment-pill .pill-subtext {
    display: block;
    font-size: 0.72rem;
    font-weight: 500;
    opacity: 0.8;
}

.bade-payment-pill.pill-upi {
    border-color: rgba(56, 189, 248, 0.45);
    color: #38BDF8;
}
.bade-payment-pill.pill-upi:hover {
    background: rgba(56, 189, 248, 0.15);
    border-color: #38BDF8;
}

.bade-payment-pill.pill-bank {
    border-color: rgba(251, 191, 36, 0.45);
    color: #FBBF24;
}
.bade-payment-pill.pill-bank:hover {
    background: rgba(251, 191, 36, 0.15);
    border-color: #FBBF24;
}

.bade-payment-pill.pill-netbanking {
    border-color: rgba(134, 239, 172, 0.45);
    color: #86EFAC;
}
.bade-payment-pill.pill-netbanking:hover {
    background: rgba(134, 239, 172, 0.15);
    border-color: #86EFAC;
}

.bade-payment-pill.pill-card {
    border-color: rgba(192, 132, 252, 0.45);
    color: #C084FC;
}
.bade-payment-pill.pill-card:hover {
    background: rgba(192, 132, 252, 0.15);
    border-color: #C084FC;
}

.bade-payment-pill.pill-gst {
    border-color: rgba(45, 212, 191, 0.45);
    color: #2DD4BF;
}
.bade-payment-pill.pill-gst:hover {
    background: rgba(45, 212, 191, 0.15);
    border-color: #2DD4BF;
}

.bade-payment-pill.pill-cod {
    border-color: rgba(248, 113, 113, 0.45);
    color: #FCA5A5;
}
.bade-payment-pill.pill-cod:hover {
    background: rgba(248, 113, 113, 0.15);
    border-color: #F87171;
}

@media (max-width: 767.98px) {
    .footer-payment-card {
        padding: 20px 16px;
        margin-top: 25px;
    }
    .bade-payment-pill {
        flex: 1 1 calc(50% - 8px);
        min-width: 140px;
        padding: 8px 12px;
        font-size: 0.82rem;
    }
    .bade-payment-pill i {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .bade-payment-pill {
        flex: 1 1 100%;
    }
}

.footer-top-strip-trust {
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 20px 0;
    margin-bottom: 45px;
}

.footer-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #E2E8F0;
    font-size: 0.92rem;
    font-weight: 600;
}

.footer-trust-item i {
    font-size: 1.4rem;
    color: #38BDF8;
}

.hover-underline:hover {
    text-decoration: underline !important;
}

/* ==========================================================================
   DOCTOR SPOTLIGHT COMPACT REFINEMENT (WHITE SPACE FIX)
   ========================================================================== */
.doctor-spotlight-card {
    border-radius: 20px;
    border: 1px solid rgba(11, 83, 148, 0.12);
}

.doctor-spotlight-visual {
    padding: 24px;
    min-height: 420px;
}

.doctor-image-frame {
    max-width: 340px;
    height: 400px;
    border-radius: 18px;
}

.doctor-spotlight-details {
    padding: 28px 32px;
}

.doctor-spotlight-name {
    font-size: 2rem;
    margin-top: 4px;
    margin-bottom: 8px;
}

.doctor-spotlight-bio {
    font-size: 0.94rem;
    line-height: 1.65;
    margin-bottom: 18px;
}

.doctor-experience-grid {
    gap: 10px;
    margin-bottom: 18px;
}

.exp-item-box {
    padding: 10px 14px;
    border-radius: 12px;
}

.doctor-clinic-meta {
    padding: 10px 16px;
    margin-bottom: 20px;
    border-radius: 12px;
}

/* ==========================================================================
   HINDI CORE SERVICES (हमारी प्रमुख चिकित्सा सेवाएँ)
   ========================================================================== */
.hindi-services-wrapper {
    margin-top: 36px;
    background: #FFFFFF;
    border: 1px solid rgba(11, 83, 148, 0.12);
    border-radius: 24px;
    padding: 34px 28px;
    box-shadow: 0 12px 32px -10px rgba(11, 83, 148, 0.08);
}

.hindi-services-tagline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(220, 38, 38, 0.08);
    color: #DC2626;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 9999px;
    border: 1px solid rgba(220, 38, 38, 0.2);
    margin-bottom: 8px;
}

.hindi-services-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 6px;
}

.hindi-services-subline {
    font-size: 1.02rem;
    color: #64748B;
    max-width: 720px;
    margin: 0 auto 24px;
    font-weight: 500;
}

/* Animated Category Filter Tabs */
.hindi-tabs-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 26px;
}

.hindi-tab-btn {
    background: #F8FAFC;
    color: #475569;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 9999px;
    border: 1.5px solid #E2E8F0;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hindi-tab-btn:hover {
    background: #EBF4FF;
    color: #0B5394;
    border-color: #BAE6FD;
    transform: translateY(-2px);
}

.hindi-tab-btn.active {
    background: linear-gradient(135deg, #0B5394 0%, #0891B2 100%);
    color: #FFFFFF;
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(8, 145, 178, 0.35);
}

.hindi-tab-count {
    font-size: 0.75rem;
    padding: 2px 7px;
    border-radius: 9999px;
    background: rgba(0, 0, 0, 0.08);
}

.hindi-tab-btn.active .hindi-tab-count {
    background: rgba(255, 255, 255, 0.25);
    color: #FFFFFF;
}

/* 27 Hindi Services Grid */
.hindi-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 14px;
}

.hindi-service-card {
    background: #FFFFFF;
    border: 1.5px solid #E2E8F0;
    border-radius: 16px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.hindi-service-card:hover {
    background: #F0F9FF;
    border-color: #0891B2;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(8, 145, 178, 0.12);
}

.hindi-service-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.hindi-service-card:hover .hindi-service-icon-box {
    transform: scale(1.1);
}

.icon-box-neuro { background: #E0F2FE; color: #0284C7; }
.icon-box-surgery { background: #FEF3C7; color: #D97706; }
.icon-box-laser { background: #F3E8FF; color: #7C3AED; }
.icon-box-medicine { background: #ECFDF5; color: #059669; }
.icon-box-emergency { background: #FEE2E2; color: #DC2626; }

.hindi-service-content {
    flex-grow: 1;
}

.hindi-service-badge {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 2px;
}

.badge-text-neuro { color: #0284C7; }
.badge-text-surgery { color: #D97706; }
.badge-text-laser { color: #7C3AED; }
.badge-text-medicine { color: #059669; }
.badge-text-emergency { color: #DC2626; }

.hindi-service-name {
    font-size: 0.94rem;
    font-weight: 700;
    color: #1E293B;
    line-height: 1.35;
    margin-bottom: 0;
}

.hindi-service-arrow {
    color: #94A3B8;
    font-size: 1rem;
    transition: transform 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
}

.hindi-service-card:hover .hindi-service-arrow {
    color: #0891B2;
    transform: translateX(3px);
}

.hindi-services-cta-bar {
    margin-top: 26px;
    background: linear-gradient(135deg, #07162C 0%, #0B3564 100%);
    border-radius: 16px;
    padding: 18px 24px;
    color: #FFFFFF;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.hindi-services-cta-bar .cta-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #E2E8F0;
}

/* ==========================================================================
   AYUSHMAN BHARAT & CASHLESS HEALTHCARE MEGA SECTION
   ========================================================================== */
.ayushman-mega-section {
    background: linear-gradient(135deg, #062c26 0%, #064e3b 65%, #0b6353 100%);
    color: #FFFFFF;
    padding: 85px 0 75px;
    position: relative;
    overflow: hidden;
    scroll-margin-top: 110px;
}

.ayushman-mega-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(52, 211, 153, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(14, 165, 233, 0.18) 0%, transparent 45%);
    pointer-events: none;
}

.ayushman-badge-top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #A7F3D0;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 9999px;
    backdrop-filter: blur(8px);
    margin-bottom: 12px;
    max-width: 100%;
    line-height: 1.7;
    text-align: left;
}

.ayushman-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.4;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.ayushman-heading span.highlight-gold {
    background: linear-gradient(135deg, #FDE68A 0%, #F59E0B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ayushman-lead {
    font-size: 1.12rem;
    color: #D1FAE5;
    line-height: 1.7;
    max-width: 760px;
    margin: 0 auto 34px;
}

/* Feature Cards Row */
.ayushman-features-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.ayushman-feature-card {
    position: relative;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-width: 0;
    overflow: hidden;
    background: #082f2b;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 22px;
    padding: 190px 28px 28px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    text-align: left;
}

.ayushman-card-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    z-index: -2;
    transition: transform .45s ease;
}

.ayushman-feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(3, 27, 23, .1), rgba(3, 27, 23, .3) 26%, rgba(3, 27, 23, .9) 51%, #031b17 100%);
    pointer-events: none;
}

.ayushman-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.ayushman-card-icon {
    position: absolute;
    top: 22px;
    left: 24px;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #f5d783;
    color: #063c30;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 16px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.ayushman-feature-title {
    font-size: clamp(1.15rem, 1.8vw, 1.4rem);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
    line-height: 1.6;
}

.ayushman-feature-desc {
    font-size: 1rem;
    color: #edf9f3;
    line-height: 1.85;
    margin-bottom: 0;
}

/* Step-by-Step Process Tabs / Cards */
.ayushman-steps-wrapper {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    padding: 30px;
    margin-bottom: 40px;
}

.ayushman-step-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
}

.ayushman-step-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #F59E0B;
    color: #000000;
    font-weight: 800;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.ayushman-step-content h6 {
    color: #FFFFFF;
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 1rem;
}

.ayushman-step-content h4 {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.65;
    margin-bottom: 8px;
}

.ayushman-process-title {
    color: #fff;
    font-size: 1.4rem;
    text-align: center;
    line-height: 1.65;
    margin-bottom: 28px;
}

.ayushman-step-content p {
    color: #D1FAE5;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0;
}

/* Insurance TPA Badges Strip */
.ayushman-tpa-strip {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.tpa-chip {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

/* CTA Buttons */
.btn-ayushman-primary {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: #0F172A !important;
    font-weight: 800;
    font-size: 1.02rem;
    padding: 14px 32px;
    border-radius: 9999px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.45);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-ayushman-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.6);
    background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
}

.btn-ayushman-call {
    background: rgba(255, 255, 255, 0.15);
    color: #FFFFFF !important;
    font-weight: 700;
    font-size: 1.02rem;
    padding: 13px 28px;
    border-radius: 9999px;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.25s ease;
    text-decoration: none;
}

.btn-ayushman-call:hover {
    background: #FFFFFF;
    color: #064E3B !important;
    transform: translateY(-2px);
}

.btn-ayushman-wa {
    background: rgba(37, 211, 102, 0.25);
    color: #86EFAC !important;
    font-weight: 700;
    font-size: 1.02rem;
    padding: 13px 26px;
    border-radius: 9999px;
    border: 1.5px solid rgba(34, 197, 94, 0.5);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.25s ease;
    text-decoration: none;
}

.btn-ayushman-wa:hover {
    background: #25D366;
    color: #FFFFFF !important;
    transform: translateY(-2px);
}

.ayushman-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.ayushman-actions a {
    justify-content: center;
    min-height: 54px;
    max-width: 100%;
    padding: 14px 22px;
    border-radius: 14px;
    font-size: .98rem;
    line-height: 1.7;
    text-align: center;
}

.ayushman-actions a i { flex-shrink: 0; }
.ayushman-actions a:focus-visible { outline: 3px solid #fde68a; outline-offset: 5px; }
.ayushman-mega-section .tpa-chip { line-height: 1.6; }
.ayushman-mega-section .text-white-50 { color: #c5e4d9 !important; }

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
    .ayushman-feature-card:hover .ayushman-card-photo { transform: scale(1.035); }
}

@media (max-width: 991.98px) {
    .ayushman-mega-section { padding: 60px 0; }
    .ayushman-feature-card { padding: 170px 22px 24px; }
    .ayushman-features-grid { gap: 18px; }
    .ayushman-steps-wrapper { padding: 24px; }
    .cta-final-section::before { background: rgba(6, 25, 44, .88); }
}

@media (max-width: 767.98px) {
    .ayushman-features-grid { grid-template-columns: minmax(0, 1fr); }
    .ayushman-heading { font-size: clamp(1.7rem, 5vw, 2.3rem); line-height: 1.5; }
    .ayushman-lead { font-size: 1rem; line-height: 1.9; margin-bottom: 20px; }
    .ayushman-feature-card { padding-top: 185px; }
    .ayushman-feature-title { font-size: 1.25rem; }
    .ayushman-feature-desc { font-size: 1rem; }
    .ayushman-actions { flex-direction: column; max-width: 520px; margin-inline: auto; }
    .ayushman-actions a { width: 100%; }
    .ayushman-tpa-strip { padding: 14px; gap: 8px; }
}

@media (max-width: 575.98px) {
    .ayushman-mega-section { padding: 46px 0; }
    .ayushman-badge-top { font-size: .78rem; padding: 10px 14px; border-radius: 14px; }
    .ayushman-steps-wrapper { padding: 22px 18px; }
    .ayushman-feature-card { padding: 175px 20px 24px; }
    .ayushman-process-title { font-size: 1.15rem; }
    .ayushman-step-box { gap: 12px; }
    .ayushman-mega-section .tpa-chip { font-size: .75rem; padding: 7px 10px; }
}

/* Engineering Showcase Card */
.ayushman-showcase-box {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 24px;
    backdrop-filter: blur(10px);
}

.showcase-img-frame {
    position: relative;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.showcase-badge-floating {
    position: absolute;
    bottom: 16px;
    left: 16px;
    z-index: 3;
}

@media (prefers-reduced-motion: reduce) {
    .ayushman-feature-card, .ayushman-card-photo, .ayushman-actions a { transition: none !important; transform: none !important; }
}

/* ==========================================================================
   DIRECT FACTORY SUPPLY COMPACT STRIP (MEDIUM POLYMER THEME - NOT LIGHT / NOT DARK)
   ========================================================================== */
.factory-supply-strip {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 55%, #075985 100%);
    position: relative;
    padding: 22px 0;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 10px 25px -5px rgba(2, 132, 199, 0.35);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.factory-supply-strip::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(circle at 85% 50%, rgba(255, 255, 255, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.factory-supply-box {
    position: relative;
    z-index: 2;
}

.factory-icon-badge {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.6rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.factory-pill-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 3px 10px;
    border-radius: 9999px;
    text-transform: uppercase;
}

.factory-title {
    color: #ffffff;
    font-size: clamp(1.2rem, 2.2vw, 1.55rem);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.factory-address-line {
    color: #e0f2fe;
    font-size: 0.88rem;
    line-height: 1.45;
    margin-top: 4px;
}

.factory-address-line strong {
    color: #ffffff;
}

.factory-map-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    padding: 2px 9px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.factory-map-link:hover {
    background: #ffffff;
    color: #0369a1;
    transform: translateY(-1px);
}

.factory-features-inline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.feature-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(0, 0, 0, 0.14);
    color: #f0f9ff;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-quote-white {
    background: #ffffff;
    color: #0369a1 !important;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 9px 18px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-quote-white:hover {
    background: #f0f9ff;
    color: #0284c7 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.btn-call-pill {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.88rem;
    padding: 9px 16px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-call-pill:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #ffffff !important;
    transform: translateY(-2px);
}

.btn-wa-pill {
    background: #22c55e;
    color: #ffffff !important;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.2s ease;
}

.btn-wa-pill:hover {
    background: #16a34a;
    color: #ffffff !important;
    transform: translateY(-2px) scale(1.05);
}

@media (max-width: 991.98px) {
    .factory-supply-strip {
        padding: 18px 0;
    }
    .factory-icon-badge {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 1.3rem;
    }
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */
@media print {
    .floating-contact-corner,
    .topbar-hospital,
    .navbar-hospital,
    .mobile-bottom-bar,
    #backToTopBtn,
    .emergency-hotline-strip,
    .quick-booking-bar-wrapper,
    .cta-final-section {
        display: none !important;
    }

    body {
        padding-bottom: 0;
        color: #000;
    }

    .hero-hospital-section {
        background: #f5f5f5 !important;
        color: #000 !important;
        padding: 20px 0;
    }
}
