/* 
   HZB Arogyam Superspeciality Hospital - Custom Brand & UI/UX Stylesheet
   Modern High-Contrast Medical Design System with legibility, glassmorphism, and responsive components.
*/

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&display=swap');

:root {
    /* Exact Logo Brand Colors */
    --logo-yellow: #fde21b;
    /* Bright Brand Gold Yellow */
    --logo-green: #22964f;
    /* Rich Hospital Emerald Green */
    --logo-red: #db3134;
    /* Vivid Emergency Crimson Red */
    --logo-navy: #0f1d3a;
    /* Deep Professional Navy Blue */
    --accent-blue: var(--logo-green);
    /* Bright Brand Emerald Green */

    /* Semantic Mappings */
    --primary: var(--logo-navy);
    --primary-light: #172a53;
    --secondary: var(--logo-green);
    --secondary-light: #2eb863;
    --accent: var(--logo-red);
    --warning: var(--logo-yellow);

    /* Layout & Surface Colors */
    --bg-light: #f8fafc;
    --bg-subtle: #f1f5f9;
    --bg-white: #ffffff;
    --text-dark: #0f172a;
    --text-heading: #1e293b;
    --text-body: #334155;
    /* WCAG AAA high-contrast body text */
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --border-hover: #cbd5e1;

    /* Modern Gradients Using Logo Colors */
    --grad-primary: linear-gradient(135deg, #0f1d3a 0%, #1b2a5a 100%);
    --grad-secondary: linear-gradient(135deg, #22964f 0%, #157339 100%);
    --grad-mixed: linear-gradient(135deg, #0f1d3a 0%, #22964f 100%);
    --grad-emergency: linear-gradient(135deg, #db3134 0%, #ef4444 100%);
    --grad-accent: linear-gradient(135deg, #fde21b 0%, #d9b800 100%);
    --grad-hero-overlay: linear-gradient(90deg, rgba(15, 29, 58, 0.93) 0%, rgba(15, 29, 58, 0.78) 50%, rgba(15, 29, 58, 0.45) 100%);

    /* Shadows & Borders */
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -1px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 10px 25px -3px rgba(15, 23, 42, 0.12), 0 4px 6px -2px rgba(15, 23, 42, 0.05);
    --shadow-xl: 0 20px 30px -5px rgba(15, 23, 42, 0.15), 0 10px 15px -5px rgba(15, 23, 42, 0.08);
    --shadow-glow: 0 0 20px rgba(34, 150, 79, 0.25);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-full: 9999px;

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

/* Pulsating Dot Animation */
.pulsating-dot {
    width: 8px;
    height: 8px;
    background-color: #ef4444;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    animation: pulse-red 1.6s infinite;
}

@keyframes pulse-red {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(239, 68, 68, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

/* Global Typography & Standards */
body {
    color: var(--text-body);
    font-family: 'Plus Jakarta Sans', 'Roboto', sans-serif;
    background-color: var(--bg-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-dark);
    font-weight: 800;
    letter-spacing: -0.02em;
}

a {
    color: var(--logo-green);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--logo-navy);
}

/* Universal Icon-to-Text Spacing System */
i[class*="icofont-"] {
    display: inline-block;
}

.btn i.ms-1,
.btn i.ms-2,
a i.ms-1,
a i.ms-2,
span i.ms-1,
span i.ms-2 {
    margin-right: 0 !important;
    margin-left: 7px !important;
}

/* Section Common Styling & Layout Spacing */
.section-padding {
    padding: 55px 0;
}

.section-padding-sm {
    padding: 35px 0;
}

.section-padding-lg {
    padding: 75px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 38px 0;
    }

    .section-padding-lg {
        padding: 48px 0;
    }
}

.section-tag {
    color: var(--logo-green);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    display: inline-block;
    margin-bottom: 8px;
    background: rgba(13, 148, 136, 0.08);
    padding: 4px 14px;
    border-radius: var(--radius-full);
}

.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.25;
}

.section-title span {
    background: linear-gradient(135deg, var(--logo-navy) 0%, var(--logo-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn-primary-grad {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--grad-secondary) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    padding: 13px 28px !important;
    border-radius: var(--radius-full) !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.35) !important;
    transition: var(--transition) !important;
    text-decoration: none !important;
}

.btn-primary-grad:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 148, 136, 0.5) !important;
    color: #ffffff !important;
}

.btn-emergency-grad {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--grad-emergency) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    padding: 13px 28px !important;
    border-radius: var(--radius-full) !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4) !important;
    transition: var(--transition) !important;
}

.btn-emergency-grad:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.6) !important;
    color: #ffffff !important;
}

.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    padding: 12px 26px !important;
    border-radius: var(--radius-full) !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    transition: var(--transition) !important;
}

.btn-outline-custom:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: #ffffff !important;
    color: #ffffff !important;
}

.btn-outline-ayushman {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    padding: 12px 28px !important;
    border-radius: var(--radius-full) !important;
    border: 2px solid rgba(255, 255, 255, 0.8) !important;
    transition: var(--transition) !important;
}

.btn-outline-ayushman:hover {
    background: #ffffff !important;
    color: var(--logo-navy) !important;
    border-color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2) !important;
}

/* Header & Top Bar Layout System */
.top-announcement-bar {
    background: #0b1329;
    color: #cbd5e1;
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-announcement-bar a {
    color: #ffffff;
    font-weight: 600;
}

.top-announcement-bar a:hover {
    color: var(--logo-yellow);
}

.top-info-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.top-info-item i {
    font-size: 15px;
    margin-right: 2px;
}

.top-info-label {
    color: rgba(255, 255, 255, 0.75);
    margin-right: 2px;
}

.top-divider {
    color: rgba(255, 255, 255, 0.25);
    margin: 0 4px;
}

.emergency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 3px 12px;
    border-radius: var(--radius-full);
    background: rgba(219, 49, 52, 0.25);
    color: #f87171;
    font-weight: 700;
    font-size: 12px;
    border: 1px solid rgba(219, 49, 52, 0.4);
    white-space: nowrap;
}

.ayushman-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 12px;
    border-radius: var(--radius-full);
    background: rgba(34, 150, 79, 0.25);
    color: #2eb863;
    border: 1px solid rgba(34, 150, 79, 0.4);
    font-weight: 600;
    font-size: 12px;
    white-space: nowrap;
}

/* Middle Header Bar */
.header-top-bar {
    background: #ffffff;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-color);
}

.brand-logo-link {
    display: inline-block;
}

.brand-logo-link img {
    max-width: 220px;
    height: auto;
    object-fit: contain;
}

.header-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(34, 150, 79, 0.1);
    color: var(--logo-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 1px solid rgba(34, 150, 79, 0.25);
    flex-shrink: 0;
}

.header-contact-icon.blue-icon {
    background: rgba(34, 150, 79, 0.1);
    color: var(--logo-green);
    border-color: rgba(34, 150, 79, 0.25);
}

.header-contact-icon.red-icon {
    background: rgba(219, 49, 52, 0.1);
    color: var(--logo-red);
    border-color: rgba(219, 49, 52, 0.25);
}

.header-contact-text span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 2px;
}

.header-contact-text strong,
.header-contact-text strong a {
    color: var(--text-dark);
    font-size: 13.5px;
    font-weight: 700;
    white-space: nowrap;
}

.header-contact-text strong a:hover {
    color: var(--logo-green);
}

.text-danger-custom {
    color: var(--logo-red) !important;
}

/* Main Navigation Bar */
.main-navbar-wrapper {
    background: linear-gradient(90deg, #0f1d3a 0%, #1b2a5a 50%, #22964f 100%);
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.main-nav-links li {
    margin: 0;
}

.main-nav-links li a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 14px;
    color: rgba(255, 255, 255, 0.92) !important;
    font-weight: 700;
    font-size: 14.5px;
    position: relative;
    white-space: nowrap;
    transition: var(--transition);
}

.main-nav-links li a i {
    font-size: 16px;
    margin: 0 !important;
}

.main-nav-links li a:hover,
.main-nav-links li.active a {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.12);
}

.main-nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10px;
    right: 10px;
    height: 3px;
    background: var(--logo-yellow);
    border-radius: 3px 3px 0 0;
    transform: scaleX(0);
    transition: var(--transition);
}

.main-nav-links li a:hover::after,
.main-nav-links li.active a::after {
    transform: scaleX(1);
}

/* Hero Carousel */
.hero-slider-section {
    position: relative;
    overflow: hidden;
    background: #0f172a;
}

.hero-slide-item {
    min-height: 520px;
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: var(--grad-hero-overlay);
    z-index: 1;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    padding: 60px 0 80px 0;
}

.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 150, 79, 0.15);
    border: 1px solid rgba(34, 150, 79, 0.3);
    color: var(--logo-green);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 16px;
    backdrop-filter: blur(8px);
}

.hero-title-main {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.18;
    margin-bottom: 16px;
}

.hero-title-main span {
    color: var(--logo-green);
}

.hero-subtitle-text {
    font-size: clamp(0.95rem, 1.6vw, 1.15rem);
    color: #e2e8f0;
    margin-bottom: 28px;
    max-width: 620px;
    line-height: 1.6;
}

/* Hero Quick Stats Bar */
.hero-stats-bar {
    background: #ffffff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    padding: 20px 24px;
    margin-top: -35px;
    margin-bottom: 10px;
    position: relative;
    z-index: 10;
    border: 1px solid var(--border-color);
}

.stat-box-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: rgba(13, 148, 136, 0.1);
    color: var(--logo-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
}

.stat-box-item h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
    line-height: 1;
}

.stat-box-item p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 4px 0 0 0;
    font-weight: 600;
}

/* Ayushman & Emergency Highlight Banner */
.ayushman-banner-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: var(--radius-lg);
    padding: 35px 40px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(13, 148, 136, 0.3);
    box-shadow: var(--shadow-lg);
}

.ayushman-badge-chip {
    background: rgba(220, 38, 38, 0.2);
    border: 1px solid rgba(220, 38, 38, 0.4);
    color: #f87171;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    margin-bottom: 15px;
}

/* Doctors Card Styling */
.doc-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.doc-img-wrapper {
    position: relative;
    height: 270px;
    overflow: hidden;
    background: #e2e8f0;
}

.doc-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: var(--transition);
}

.doc-card:hover .doc-img-wrapper img {
    transform: scale(1.05);
}

.doc-specialty-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(15, 23, 42, 0.85);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.doc-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.doc-card-body h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.doc-card-body .doc-title {
    color: var(--logo-green);
    font-weight: 700;
    font-size: 13.5px;
    margin-bottom: 12px;
    display: block;
}

.doc-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
    font-size: 13px;
    color: var(--text-body);
}

.doc-info-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.doc-info-list li i {
    color: var(--logo-green);
    font-size: 15px;
}

/* Department Cards */
.dept-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.dept-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-blue);
}

.dept-card-img {
    height: 200px;
    overflow: hidden;
    position: relative;
    background: #e2e8f0;
}

.dept-card-img img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    transition: var(--transition);
}

.dept-card:hover .dept-card-img img {
    transform: scale(1.08);
}

.dept-card-body {
    padding: 22px;
}

.dept-card-body h5 {
    font-size: 19px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.dept-card-body p {
    color: var(--text-body);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
}

/* IVF Special Feature Card */
.ivf-special-card {
    border: 2px solid rgba(216, 27, 96, 0.2) !important;
    position: relative;
    box-shadow: 0 10px 30px rgba(216, 27, 96, 0.05) !important;
}

.ivf-special-card:hover {
    border-color: rgba(216, 27, 96, 0.6) !important;
    box-shadow: 0 15px 35px rgba(216, 27, 96, 0.12) !important;
}

.ivf-featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #d81b60 0%, #ff5c8d 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(216, 27, 96, 0.3);
    z-index: 10;
}

.text-gradient-ivf {
    color: #d81b60 !important;
    transition: all 0.3s ease;
}

.text-gradient-ivf:hover {
    color: #ff5c8d !important;
    text-decoration: underline !important;
}

/* Highlights Cards */
.highlight-card-item {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 28px 24px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.highlight-card-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--logo-green);
}

.highlight-icon-box {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.12) 0%, rgba(2, 132, 199, 0.12) 100%);
    color: var(--logo-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 18px;
}

.highlight-card-item h5 {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.highlight-card-item p {
    font-size: 13.5px;
    color: var(--text-body);
    margin: 0;
    line-height: 1.5;
}

/* Footer Section */
.footer-dark-section {
    background: #090d16;
    color: #94a3b8;
    padding: 70px 0 0 0;
    border-top: 4px solid var(--logo-green);
}

.footer-title-head {
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title-head::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: var(--logo-green);
    border-radius: var(--radius-full);
}

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

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

.footer-links-list li a {
    color: #cbd5e1;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links-list li a:hover {
    color: var(--logo-green);
    padding-left: 6px;
}

.footer-bottom-bar {
    background: #04070d;
    padding: 22px 0;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13.5px;
}

/* Floating WhatsApp Button */
.whatsapp-float-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 54px;
    height: 54px;
    background-color: #25d366;
    color: #ffffff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.whatsapp-float-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.whatsapp-float-btn:hover {
    background-color: #128c7e;
    color: #ffffff !important;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Responsive Helper Adjustments */
@media (min-width: 992px) and (max-width: 1250px) {
    .header-top-bar {
        padding: 10px 0;
    }

    .brand-logo-link img {
        max-width: 165px;
    }

    .header-top-bar .d-flex.align-items-center.gap-4 {
        gap: 12px !important;
    }

    .header-contact-item {
        gap: 8px;
    }

    .header-contact-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .header-contact-text span {
        font-size: 9px;
    }

    .header-contact-text strong {
        font-size: 12px;
    }

    .btn-emergency-grad {
        padding: 10px 18px !important;
        font-size: 12px !important;
    }

    .main-nav-links li a {
        padding: 12px 8px;
        font-size: 12px;
        gap: 4px;
    }

    .main-nav-links li a i {
        font-size: 13px;
    }
}

@media (max-width: 991px) {
    .main-nav-links {
        display: none;
    }

    .hero-slide-item {
        min-height: 440px;
    }

    .hero-stats-bar {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .hero-slide-item {
        min-height: 400px;
    }

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

    .hero-badge-pill {
        font-size: 11px;
        padding: 4px 12px;
        margin-bottom: 10px;
    }

    .hero-title-main {
        font-size: 1.55rem !important;
        line-height: 1.25 !important;
        margin-bottom: 12px !important;
    }

    .hero-subtitle-text {
        font-size: 12.5px !important;
        line-height: 1.5 !important;
        margin-bottom: 18px !important;
    }

    .hero-stats-bar {
        padding: 16px 14px;
        margin-top: 15px;
    }

    .stat-box-item {
        gap: 10px;
    }

    .stat-icon-wrapper {
        width: 40px;
        height: 40px;
        font-size: 20px;
        border-radius: var(--radius-sm);
    }

    .stat-box-item h3 {
        font-size: 18px;
    }

    .stat-box-item p {
        font-size: 11px;
    }

    .ayushman-banner-card {
        padding: 24px 20px !important;
    }

    .ayushman-banner-card h2,
    .ayushman-banner-card h3 {
        font-size: 1.35rem !important;
    }

    .section-padding {
        padding: 40px 0 !important;
    }

    .section-padding-lg {
        padding: 48px 0 !important;
    }

    .section-title {
        font-size: 1.65rem !important;
    }

    .doc-img-wrapper {
        height: 240px !important;
    }

    .doc-card-body {
        padding: 16px !important;
    }

    .doc-card-body h4 {
        font-size: 16px !important;
    }

    .dept-card-img {
        height: 180px !important;
    }

    .dept-card-body {
        padding: 18px !important;
    }

    .dept-card-body h5 {
        font-size: 17px !important;
    }

    .highlight-card-item {
        padding: 20px !important;
    }

    .highlight-icon-box {
        width: 48px !important;
        height: 48px !important;
        font-size: 22px !important;
        margin-bottom: 14px !important;
    }

    .highlight-card-item h5 {
        font-size: 16px !important;
    }
}

@media (max-width: 576px) {
    .btn-emergency-grad,
    .btn-primary-grad,
    .btn-outline-ayushman,
    .btn-outline-custom {
        width: 100% !important;
        min-width: 100% !important;
        justify-content: center !important;
    }
}

/* Custom Hospital FAQ System */
.hzb-faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hzb-faq-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(15, 29, 58, 0.04);
    overflow: hidden;
    transition: var(--transition);
}

.hzb-faq-card:hover {
    border-color: rgba(34, 150, 79, 0.4);
    box-shadow: 0 8px 24px rgba(15, 29, 58, 0.08);
    transform: translateY(-2px);
}



.hzb-faq-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: #ffffff;
    border: none;
    outline: none !important;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
    gap: 16px;
}

.hzb-faq-btn:focus {
    outline: none !important;
    box-shadow: none !important;
}

.hzb-faq-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--logo-navy);
    line-height: 1.4;
    transition: var(--transition);
}

.hzb-faq-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--bg-subtle);
    color: var(--logo-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    transition: var(--transition);
}

.hzb-faq-btn:hover .hzb-faq-title {
    color: var(--logo-green);
}

.hzb-faq-btn:hover .hzb-faq-icon {
    background: rgba(34, 150, 79, 0.1);
    color: var(--logo-green);
}

/* Expanded active state */
.hzb-faq-btn:not(.collapsed) {
    background: linear-gradient(135deg, rgba(34, 150, 79, 0.05) 0%, rgba(15, 29, 58, 0.02) 100%);
    border-bottom: 1px solid rgba(34, 150, 79, 0.12);
}

.hzb-faq-btn:not(.collapsed) .hzb-faq-title {
    color: var(--logo-green);
}

.hzb-faq-btn:not(.collapsed) .hzb-faq-icon {
    background: var(--logo-green);
    color: #ffffff;
    transform: rotate(180deg);
}

.hzb-faq-body {
    padding: 22px 24px;
    color: var(--text-body) !important;
    font-size: 15px;
    line-height: 1.8;
    background: #ffffff;
}

.hzb-faq-body * {
    color: var(--text-body) !important;
    font-family: inherit !important;
    background-color: transparent !important;
}

.hzb-faq-body p,
.hzb-faq-body h1,
.hzb-faq-body h2,
.hzb-faq-body h3,
.hzb-faq-body h4,
.hzb-faq-body h5,
.hzb-faq-body h6,
.hzb-faq-body span {
    font-size: 15px !important;
    font-weight: 500 !important;
    margin-bottom: 8px;
    line-height: 1.8;
}

.hzb-faq-body p:last-child,
.hzb-faq-body h4:last-child,
.hzb-faq-body div:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .hzb-faq-btn {
        padding: 15px 18px;
    }

    .hzb-faq-title {
        font-size: 14.5px;
    }

    .hzb-faq-body,
    .hzb-faq-body * {
        padding: 16px 18px;
        font-size: 13.5px !important;
    }
}