:root {
    --hospital-blue: #0B6EFD;
    --hospital-blue-dark: #0956c7;
    --hospital-light: #f4f7fb;
    --hospital-gray: #6b7280;
    --hospital-dark: #1f2937;
    --radius-lg: 20px;
    --shadow-card: 0 10px 40px rgba(11, 110, 253, 0.08);
    --shadow-hover: 0 20px 50px rgba(11, 110, 253, 0.18);
}

body.hospital-home {
    font-family: "Mulish", sans-serif;
    color: var(--hospital-dark);
    background: #fff;
    scroll-behavior: smooth;
}

.hospital-home ::selection {
    background: var(--hospital-blue);
    color: #fff;
}

/* Header */
.hospital-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.hospital-header.scrolled {
    box-shadow: 0 8px 30px rgba(11, 110, 253, 0.12);
}

.hospital-brand {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1.1;
}

.hospital-brand .brand-name {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--hospital-blue);
    letter-spacing: 0.5px;
}

.hospital-brand .brand-tagline {
    font-size: 0.72rem;
    color: var(--hospital-gray);
    font-weight: 600;
}

.hospital-nav .nav-link {
    font-weight: 600;
    color: var(--hospital-dark);
    padding: 0.5rem 1rem !important;
    font-size: 0.95rem;
}

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

.btn-hospital-primary {
    background: var(--hospital-blue);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-hospital-primary:hover {
    background: var(--hospital-blue-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-hospital-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-hospital-outline:hover {
    background: #fff;
    color: var(--hospital-blue);
}

.btn-hospital-light {
    background: #fff;
    color: var(--hospital-blue);
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-hospital-light:hover {
    background: var(--hospital-light);
    color: var(--hospital-blue-dark);
    transform: translateY(-2px);
}

.header-phone-link {
        color: var(--hospital-blue);
        font-weight: 700;
        text-decoration: none;
    }
    .header-phone-link:hover {
        color: var(--hospital-blue-dark);
        text-decoration: underline;
    }

    /* Hero */
.hero-hospital {
    position: relative;
    min-height: 100vh;
    padding-top: 90px;
}

.hero-hospital .swiper-slide {
    position: relative;
    min-height: calc(100vh - 90px);
}

.hero-hospital .hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.hero-hospital .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(11, 110, 253, 0.88) 0%, rgba(11, 110, 253, 0.55) 45%, rgba(0, 0, 0, 0.35) 100%);
}

.hero-hospital .hero-inner {
    position: relative;
    z-index: 2;
    min-height: calc(100vh - 90px);
    display: flex;
    align-items: center;
    color: #fff;
    padding: 60px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-badge .pulse-dot {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

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

.hero-label {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.95;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.92;
    max-width: 580px;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-hospital .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

.hero-hospital .swiper-pagination-bullet-active {
    opacity: 1;
    background: #fff;
}

/* Section common */
.section-padding {
    padding: 90px 0;
}

.section-padding.bg-light {
    background: var(--hospital-light);
}

.section-tag {
    color: var(--hospital-blue);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--hospital-dark);
    margin-bottom: 16px;
}

.section-desc {
    color: var(--hospital-gray);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 640px;
}

/* Stats */
.stats-section {
    margin-top: -60px;
    position: relative;
    z-index: 5;
    padding-bottom: 0;
}

.stat-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all 0.35s ease;
    height: 100%;
    border: 1px solid rgba(11, 110, 253, 0.08);
}

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

.stat-card .stat-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.stat-card .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--hospital-blue);
    margin-bottom: 4px;
}

.stat-card .stat-label {
    color: var(--hospital-gray);
    font-weight: 600;
    font-size: 0.95rem;
}

/* About */
.about-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.about-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.about-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--hospital-gray);
}

.about-features li i {
    color: var(--hospital-blue);
    margin-top: 4px;
}

/* Cards */
.premium-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-card);
    transition: all 0.35s ease;
    height: 100%;
    border: 1px solid rgba(11, 110, 253, 0.06);
}

.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(11, 110, 253, 0.2);
}

.premium-card .card-icon {
    width: 64px;
    height: 64px;
    background: rgba(11, 110, 253, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--hospital-blue);
    margin-bottom: 20px;
}

.premium-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.premium-card p {
    color: var(--hospital-gray);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 18px;
}

.premium-card .learn-more {
    color: var(--hospital-blue);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
}

.premium-card .learn-more:hover {
    color: var(--hospital-blue-dark);
}

/* Why choose */
.why-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: #fff;
    border-radius: 14px;
    margin-bottom: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.why-feature:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-card);
}

.why-feature i {
    width: 42px;
    height: 42px;
    background: rgba(11, 110, 253, 0.1);
    color: var(--hospital-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-feature span {
    font-weight: 600;
    color: var(--hospital-dark);
}

/* Doctor cards */
.doctor-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.35s ease;
    height: 100%;
}

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

.doctor-card .doctor-img {
    height: 280px;
    overflow: hidden;
}

.doctor-card .doctor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.doctor-card .doctor-body {
    padding: 24px;
}

.doctor-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.doctor-card .qualification {
    color: var(--hospital-blue);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.doctor-card .specialization {
    color: var(--hospital-gray);
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.doctor-card .experience {
    font-size: 0.85rem;
    color: var(--hospital-gray);
    margin-bottom: 16px;
}

/* Appointment banner */
.appointment-banner {
    background: linear-gradient(135deg, var(--hospital-blue) 0%, var(--hospital-blue-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    color: #fff;
    text-align: center;
}

.appointment-banner h2 {
    color: #fff;
    font-weight: 800;
    margin-bottom: 12px;
}

.appointment-banner p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 28px;
}

.appointment-banner .banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

/* Gallery */
.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    height: 240px;
    box-shadow: var(--shadow-card);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.12);
}

.gallery-item .gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Testimonials */
.testimonial-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow-card);
    height: 100%;
}

.testimonial-card .stars {
    color: #fbbf24;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.testimonial-card .review-text {
    color: var(--hospital-gray);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-card .patient-name {
    font-weight: 700;
    color: var(--hospital-dark);
}

.testimonial-card .treatment {
    color: var(--hospital-blue);
    font-size: 0.9rem;
    font-weight: 600;
}

/* FAQ */
.faq-accordion .accordion-item {
    border: none;
    margin-bottom: 12px;
    border-radius: 14px !important;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.faq-accordion .accordion-button {
    font-weight: 700;
    color: var(--hospital-dark);
    background: #fff;
    padding: 18px 24px;
    box-shadow: none !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: rgba(11, 110, 253, 0.08);
    color: var(--hospital-blue);
}

.faq-accordion .accordion-body {
    color: var(--hospital-gray);
    line-height: 1.7;
    padding: 0 24px 20px;
}

/* Contact */
.contact-info-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-card);
    height: 100%;
}

.contact-info-card i {
    width: 48px;
    height: 48px;
    background: rgba(11, 110, 253, 0.1);
    color: var(--hospital-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.contact-info-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-info-card p {
    color: var(--hospital-gray);
    margin: 0;
    font-size: 0.95rem;
}

.contact-form-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-card);
}

.contact-form-card .form-control {
    border-radius: 12px;
    padding: 14px 18px;
    border: 1px solid #e5e7eb;
    margin-bottom: 16px;
}

.contact-form-card .form-control:focus {
    border-color: var(--hospital-blue);
    box-shadow: 0 0 0 3px rgba(11, 110, 253, 0.15);
}

.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    min-height: 280px;
}

.map-wrap iframe {
    width: 100%;
    height: 280px;
    border: 0;
}

/* Footer */
.hospital-footer {
    background: #0a1628;
    color: rgba(255, 255, 255, 0.8);
    padding-top: 70px;
}

.hospital-footer h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

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

.hospital-footer ul li {
    margin-bottom: 10px;
}

.hospital-footer ul li a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.3s;
}

.hospital-footer ul li a:hover {
    color: #fff;
}

.hospital-footer .footer-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.hospital-footer .social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 8px;
    transition: all 0.3s;
}

.hospital-footer .social-links a:hover {
    background: var(--hospital-blue);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    padding: 24px 0;
    text-align: center;
    font-size: 0.9rem;
}

@media (max-width: 991px) {
    .hero-hospital,
    .hero-hospital .swiper-slide,
    .hero-hospital .hero-inner {
        min-height: auto;
    }

    .stats-section {
        margin-top: 40px;
    }

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

    .appointment-banner {
        padding: 40px 24px;
    }
}
