/**
 * Bethsaida Homepage / Landing Page Styles
 * -----------------------------------------
 * Source: refactored from the original CodeIgniter homepage view.
 *
 * COPY/PASTE NOTE
 * - Keep the .bh-home wrapper around sections using bh-home__* classes.
 * - Center of Excellence uses the separate bhc-* namespace.
 * - Section banners below make it easy to copy only the CSS you need.
 */

/* =========================================================
   00. SHARED TOKENS / BASE STYLES
   Used by Hero, Quick Menu, Packages, Media, Navigator,
   Facilities, and Floating Widgets.
   ========================================================= */
:root {
    --bh-blue: #003d83;
    --bh-blue-deep: #082a58;
    --bh-blue-soft: #eaf4ff;
    --bh-red: #ed1c24;
    --bh-ink: #172538;
    --bh-muted: #66758a;
    --bh-line: rgba(0, 61, 131, 0.11);
    --bh-soft: #f6f9fd;
    --bh-white: #ffffff;
    --bh-radius-sm: 14px;
    --bh-radius-md: 22px;
    --bh-radius-lg: 32px;
    --bh-shadow-sm: 0 12px 30px rgba(0, 61, 131, 0.08);
    --bh-shadow-md: 0 24px 65px rgba(0, 61, 131, 0.14);
}

.bh-home,
.bh-home * {
    box-sizing: border-box;
}

.bh-home {
    overflow: clip;
    color: var(--bh-ink);
    background: #fff;
    font-family: "Muli", "Inter", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

.bh-home a {
    /* color: inherit; */
    text-decoration: none;
}

.bh-home img {
    display: block;
    max-width: 100%;
}

.bh-home button,
.bh-home input,
.bh-home select {
    font: inherit;
}

.bh-home a:focus-visible,
.bh-home button:focus-visible,
.bh-home input:focus-visible {
    outline: 3px solid rgba(0, 61, 131, 0.25);
    outline-offset: 3px;
}

.bh-home__container {
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
}

.bh-home__section {
    padding: 76px 0;
}

.bh-home__section--soft {
    background: linear-gradient(180deg, #f7fbff 0%, #f2f7fc 100%);
}
/* =========================================================
   FACILITIES & VISITOR INFORMATION
   ========================================================= */

.bh-home__section--facilities {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    background-image:
        url("https://www.bethsaidahospitals.com/assets/img/center/uro-nephro-hero-team.jpeg");

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

/*
 * Overlay warna solid transparan agar teks dan kartu
 * tetap mudah dibaca. Ini bukan linear-gradient.
 */
/* .bh-home__section--facilities::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;

    background: rgba(245, 249, 253, 0.88);
    pointer-events: none;
} */

/*
 * Menempatkan seluruh konten di atas background dan overlay.
 */
/* .bh-home__section--facilities > .bh-home__container {
    position: relative;
    z-index: 1;
} */

/*
 * Card dibuat sedikit transparan agar menyatu dengan foto,
 * tetapi informasi tetap terbaca.
 */
/* .bh-home__section--facilities .bh-home__facility-card,
.bh-home__section--facilities .bh-home__visitor-card {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(0, 61, 131, 0.1);
    box-shadow: 0 18px 45px rgba(15, 47, 97, 0.1);

    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
} */

/*
 * Responsive mobile.
 * Untuk sementara menggunakan gambar desktop.
 * Ganti URL background-image setelah gambar mobile tersedia.
 */
@media (max-width: 767px) {
    .bh-home__section--facilities {
        background-image:
            url("https://www.bethsaidahospitals.com/assets/img/center/uro-nephro-hero-team.jpeg");

        background-position: center top;
        background-size: cover;
    }

    /* .bh-home__section--facilities::before {
        background: rgba(245, 249, 253, 0.92);
    } */
}

.bh-home__section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.bh-home__kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 8px;
    color: var(--bh-red);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 1.15px;
    text-transform: uppercase;
}

.bh-home__kicker::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--bh-red);
    box-shadow: 0 0 0 5px rgba(237, 28, 36, 0.1);
}

.bh-home__title {
    margin: 0;
    color: var(--bh-ink);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: clamp(29px, 3.6vw, 44px);
    font-weight: 850;
    line-height: 1.12;
    letter-spacing: -1.25px;
}

.bh-home__lead {
    max-width: 680px;
    margin: 10px 0 0;
    color: var(--bh-muted);
    font-size: 15px;
    line-height: 1.75;
}

.bh-home__link {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 9px;
    color: var(--bh-blue);
    font-size: 13px;
    font-weight: 850;
}

.bh-home__link:hover {
    color: var(--bh-red);
}

.bh-home__link i {
    transition: transform .2s ease;
}

.bh-home__link:hover i {
    transform: translateX(3px);
}

/* =========================================================
   01. HERO + TRUST STRIP
   HTML section: #bh-home-hero / .bh-home__hero
   Dependency: Bootstrap 5 carousel markup/JS.
   ========================================================= */
.bh-home__hero {
    /* position: relative;
    padding: 22px 0 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(0, 91, 201, 0.10), transparent 25%),
        linear-gradient(180deg, #f8fbff 0%, #fff 100%); */
}

.bh-home__hero-shell {
    position: relative;
}

.bh-home__hero-carousel {
    overflow: hidden;
    border: 1px solid rgba(0, 61, 131, 0.08);
    /* border-radius: 30px; */
    background: #dfeaf5;
    box-shadow: var(--bh-shadow-md);
}

.bh-home__hero-picture,
.bh-home__hero-picture img {
    width: 100%;
}

.bh-home__hero-picture img {
    /* aspect-ratio: 2.38 / 1; */
    object-fit: cover;
}

.bh-home__hero-carousel .carousel-control-prev,
.bh-home__hero-carousel .carousel-control-next {
    width: 7%;
}

.bh-home__hero-carousel .carousel-control-prev-icon,
.bh-home__hero-carousel .carousel-control-next-icon {
    width: 42px;
    height: 42px;
    padding: 11px;
    border-radius: 50%;
    background-color: rgba(0, 34, 79, 0.72);
    background-size: 46%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.bh-home__hero-carousel .carousel-indicators {
    margin-bottom: 14px;
}

.bh-home__hero-carousel .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    background: #fff;
    opacity: .62;
    transition: width .2s ease, opacity .2s ease;
}

.bh-home__hero-carousel .carousel-indicators .active {
    width: 28px;
    opacity: 1;
}

.bh-home__trust-strip {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    width: min(940px, calc(100% - 38px));
    margin: -34px auto 0;
    overflow: hidden;
    border: 1px solid var(--bh-line);
    border-radius: 20px;
    background: var(--bh-line);
    box-shadow: var(--bh-shadow-sm);
}

.bh-home__trust-item {
    display: flex;
    min-height: 72px;
    align-items: center;
    gap: 11px;
    padding: 14px 17px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
}

.bh-home__trust-icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    flex: 0 0 38px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--bh-blue);
    background: var(--bh-blue-soft);
}

.bh-home__trust-item strong,
.bh-home__trust-item small {
    display: block;
}

.bh-home__trust-item strong {
    color: var(--bh-ink);
    font-size: 12.5px;
    line-height: 1.3;
}

.bh-home__trust-item small {
    margin-top: 2px;
    color: var(--bh-muted);
    font-size: 10.5px;
}

/* =========================================================
   02. SHORTCUT / QUICK MENU
   HTML section: .bh-home__quick
   JS dependency only for [data-bh-scroll-assessment].
   ========================================================= */
.bh-home__quick {
    padding: 58px 0 30px;
}

.bh-home__quick-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 13px;
}

.bh-home__quick-card {
    display: flex;
    min-width: 0;
    min-height: 126px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 12px;
    border: 1px solid var(--bh-line);
    border-radius: 19px;
    background: #fff;
    box-shadow: 0 9px 24px rgba(0, 61, 131, 0.06);
    text-align: center;
    transition: .24s ease;
}

.bh-home__quick-card:hover {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(145deg, var(--bh-blue), var(--bh-blue-deep));
    box-shadow: 0 18px 40px rgba(0, 61, 131, 0.18);
    transform: translateY(-5px);
}

.bh-home__quick-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: var(--bh-blue);
    background: var(--bh-blue-soft);
    font-size: 19px;
    transition: .24s ease;
}

.bh-home__quick-card:hover .bh-home__quick-icon {
    color: var(--bh-red);
    background: #fff;
}

.bh-home__quick-card strong {
    overflow: hidden;
    max-width: 100%;
    color: inherit;
    font-size: 12.5px;
    font-weight: 800;
    line-height: 1.35;
}

/* =========================================================
   04. HEALTH PACKAGES
   HTML section: #paket-kesehatan
   No dedicated JavaScript required.
   ========================================================= */
.bh-home__package-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.bh-home__package-card {
    overflow: hidden;
    border: 1px solid var(--bh-line);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--bh-shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease;
}

.bh-home__package-card:hover {
    box-shadow: var(--bh-shadow-md);
    transform: translateY(-5px);
}

.bh-home__package-image {
    display: block;
    aspect-ratio: 1.12 / 1;
    overflow: hidden;
    background: #eaf1f7;
}

.bh-home__package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.bh-home__package-card:hover .bh-home__package-image img {
    transform: scale(1.035);
}

.bh-home__package-content {
    padding: 18px 18px 20px;
}

.bh-home__tag {
    display: inline-flex;
    margin-bottom: 9px;
    padding: 5px 9px;
    border-radius: 999px;
    color: var(--bh-blue);
    background: var(--bh-blue-soft);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .45px;
    text-transform: uppercase;
}

.bh-home__package-title {
    min-height: 48px;
    margin: 0;
    color: var(--bh-ink);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.45;
}

.bh-home__package-copy {
    display: -webkit-box;
    overflow: hidden;
    min-height: 63px;
    margin: 9px 0 14px;
    color: var(--bh-muted);
    font-size: 12.5px;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

/* =========================================================
   05. VIDEO + ARTICLES
   HTML section: #media-kesehatan
   JS dependency: video thumbnail switcher.
   ========================================================= */
.bh-home__head-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 9px 20px;
}

.bh-home__media-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
}

.bh-home__media-column {
    min-width: 0;
}

.bh-home__media-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
}

.bh-home__media-label strong {
    color: var(--bh-ink);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 16px;
    font-weight: 850;
}

.bh-home__video-card {
    position: relative;
    aspect-ratio: 16 / 9;
    min-height: 0;
    overflow: hidden;
    border-radius: 26px;
    background: var(--bh-blue-deep);
    box-shadow: var(--bh-shadow-md);
}

.bh-home__video-card iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.bh-home__video-thumbnails {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.bh-home__video-thumb {
    position: relative;
    width: 100%;
    padding: 0;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 2px solid transparent;
    border-radius: 14px;
    background: #dfe8f2;
    cursor: pointer;
    box-shadow: 0 7px 18px rgba(0, 61, 131, 0.08);
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.bh-home__video-thumb:hover,
.bh-home__video-thumb.is-active {
    border-color: var(--bh-blue);
    box-shadow: 0 12px 25px rgba(0, 61, 131, 0.17);
    transform: translateY(-2px);
}

.bh-home__video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bh-home__video-thumb::after {
    content: "\f04b";
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    padding-left: 2px;
    border-radius: 50%;
    color: #fff;
    background: rgba(0, 34, 79, 0.78);
    font-family: "Font Awesome 6 Free";
    font-size: 12px;
    font-weight: 900;
    transform: translate(-50%, -50%);
    transition: background .2s ease, transform .2s ease;
}

.bh-home__video-thumb:hover::after,
.bh-home__video-thumb.is-active::after {
    background: var(--bh-red);
    transform: translate(-50%, -50%) scale(1.06);
}

.bh-home__article-featured {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 26px;
    background: #dfe8f2;
    box-shadow: var(--bh-shadow-md);
    isolation: isolate;
}

.bh-home__article-featured::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(7, 27, 55, 0.02) 25%, rgba(7, 27, 55, 0.9) 100%);
}

.bh-home__article-featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
}

.bh-home__article-featured:hover img {
    transform: scale(1.035);
}

.bh-home__article-featured-content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    padding: 24px;
    color: #fff;
}

.bh-home__article-featured .bh-home__article-category {
    color: #fff;
}

.bh-home__article-featured-title {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    color: #fff;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: clamp(20px, 2.1vw, 29px);
    font-weight: 850;
    line-height: 1.25;
    letter-spacing: -.55px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.bh-home__article-small-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.bh-home__article-card {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-height: 104px;
    padding: 10px;
    border: 1px solid var(--bh-line);
    border-radius: 16px;
    background: #fff;
    transition: .23s ease;
}

.bh-home__article-card:hover {
    border-color: rgba(0, 61, 131, .18);
    box-shadow: var(--bh-shadow-sm);
    transform: translateY(-3px);
}

.bh-home__article-image {
    aspect-ratio: 1 / .8;
    overflow: hidden;
    border-radius: 11px;
    background: #e7eef6;
}

.bh-home__article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.bh-home__article-card:hover .bh-home__article-image img {
    transform: scale(1.04);
}

.bh-home__article-category {
    display: block;
    margin-bottom: 5px;
    color: var(--bh-red);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .45px;
    text-transform: uppercase;
}

.bh-home__article-title {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    color: var(--bh-ink);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 13px;
    font-weight: 780;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

/* =========================================================
   06. HYBRID HEALTH NAVIGATOR
   HTML section: #bethsaida-self-assessment
   JS + backend endpoint dependencies. See README.md.
   ========================================================= */
.bh-home__assessment {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 8% 15%, rgba(255,255,255,.14), transparent 25%),
        linear-gradient(135deg, var(--bh-blue) 0%, var(--bh-blue-deep) 100%);
}

.bh-home__assessment::after {
    content: "";
    position: absolute;
    width: 390px;
    height: 390px;
    right: -170px;
    bottom: -210px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
    box-shadow: 0 0 0 54px rgba(255,255,255,.028), 0 0 0 105px rgba(255,255,255,.018);
    pointer-events: none;
}

.bh-home__assessment-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, .76fr) minmax(560px, 1.24fr);
    gap: 48px;
    align-items: center;
}

.bh-home__assessment-copy .bh-home__kicker {
    color: #fff;
    opacity: .82;
}

.bh-home__assessment-copy .bh-home__title {
    color: #fff;
}

.bh-home__assessment-copy .bh-home__lead {
    color: rgba(255,255,255,.78);
}

.bh-home__assessment-points {
    display: grid;
    gap: 12px;
    margin-top: 25px;
}

.bh-home__assessment-point {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: rgba(255,255,255,.86);
    font-size: 13px;
}

.bh-home__assessment-point i {
    margin-top: 4px;
    color: #fff;
}

.bh-hybrid {
    overflow: hidden;
    color: var(--bh-ink);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 28px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 30px 75px rgba(0,0,0,.22);
}

.bh-hybrid [hidden] {
    display: none !important;
}

.bh-hybrid__head {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 76px;
    padding: 15px 18px;
    border-bottom: 1px solid #e9eef4;
    background: #fff;
}

.bh-hybrid__avatar {
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: #fff;
    background: linear-gradient(145deg, var(--bh-blue), var(--bh-blue-deep));
    box-shadow: 0 9px 20px rgba(0,61,131,.18);
}

.bh-hybrid__identity {
    min-width: 0;
    flex: 1;
}

.bh-hybrid__identity strong,
.bh-hybrid__identity small {
    display: block;
}

.bh-hybrid__identity strong {
    font-size: 14px;
}

.bh-hybrid__identity small {
    margin-top: 2px;
    color: #718096;
    font-size: 10.5px;
}

.bh-hybrid__status-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 5px;
    border-radius: 50%;
    background: #17a673;
}

.bh-hybrid__reset {
    display: inline-flex;
    width: 37px;
    height: 37px;
    align-items: center;
    justify-content: center;
    border: 1px solid #dce5ef;
    border-radius: 12px;
    color: var(--bh-blue);
    background: #fff;
    cursor: pointer;
    transition: .2s ease;
}

.bh-hybrid__reset:hover {
    color: #fff;
    border-color: var(--bh-blue);
    background: var(--bh-blue);
}

.bh-hybrid__progress {
    padding: 10px 18px 11px;
    border-bottom: 1px solid #edf1f5;
    background: #f9fbfd;
}

.bh-hybrid__progress-copy {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 7px;
    color: #718096;
    font-size: 9.5px;
    font-weight: 750;
}

.bh-hybrid__progress-track {
    height: 5px;
    overflow: hidden;
    border-radius: 999px;
    background: #e3ebf4;
}

.bh-hybrid__progress-value {
    width: 20%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--bh-blue), #2472bf);
    transition: width .3s ease;
}

.bh-hybrid__messages {
    display: flex;
    min-height: 210px;
    max-height: 310px;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
    padding: 18px;
    scroll-behavior: smooth;
    background: #fff;
}

.bh-hybrid__message {
    display: flex;
    max-width: 88%;
    flex-direction: column;
    gap: 4px;
}

.bh-hybrid__message--bot {
    align-self: flex-start;
}

.bh-hybrid__message--user {
    align-self: flex-end;
    align-items: flex-end;
}

.bh-hybrid__bubble {
    padding: 11px 14px;
    border-radius: 5px 16px 16px 16px;
    color: #3d4b5e;
    background: #edf5ff;
    font-size: 12px;
    line-height: 1.55;
}

.bh-hybrid__message--user .bh-hybrid__bubble {
    color: #fff;
    border-radius: 16px 5px 16px 16px;
    background: var(--bh-blue);
}

.bh-hybrid__message-note {
    color: #8a96a5;
    font-size: 8.5px;
}

.bh-hybrid__typing {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    min-height: 38px;
    padding: 0 13px;
    border-radius: 5px 16px 16px 16px;
    background: #edf5ff;
}

.bh-hybrid__typing span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #7a91aa;
    animation: bhHybridTyping 1s infinite ease-in-out;
}

.bh-hybrid__typing span:nth-child(2) { animation-delay: .15s; }
.bh-hybrid__typing span:nth-child(3) { animation-delay: .3s; }

@keyframes bhHybridTyping {
    0%, 60%, 100% { transform: translateY(0); opacity: .55; }
    30% { transform: translateY(-3px); opacity: 1; }
}

.bh-hybrid__interaction {
    padding: 14px 18px 18px;
    border-top: 1px solid #edf1f5;
    background: #fbfcfe;
}

.bh-hybrid__options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 12px;
}

.bh-hybrid__option {
    display: flex;
    min-height: 43px;
    align-items: center;
    gap: 8px;
    padding: 9px 11px;
    border: 1px solid #d8e2ee;
    border-radius: 12px;
    color: #34445a;
    background: #fff;
    font-size: 10.8px;
    font-weight: 750;
    text-align: left;
    cursor: pointer;
    transition: .2s ease;
}

.bh-hybrid__option i {
    width: 18px;
    color: var(--bh-blue);
    text-align: center;
}

.bh-hybrid__option:hover,
.bh-hybrid__option.is-selected {
    color: #fff;
    border-color: var(--bh-blue);
    background: var(--bh-blue);
    transform: translateY(-1px);
}

.bh-hybrid__option:hover i,
.bh-hybrid__option.is-selected i {
    color: #fff;
}

.bh-hybrid__composer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    gap: 8px;
}

.bh-hybrid__input {
    width: 100%;
    min-height: 44px;
    padding: 0 13px;
    border: 1px solid #d6e0eb;
    border-radius: 12px;
    color: var(--bh-ink);
    background: #fff;
    font-size: 11.5px;
}

.bh-hybrid__input:focus {
    border-color: var(--bh-blue);
    box-shadow: 0 0 0 3px rgba(0,61,131,.08);
    outline: none;
}

.bh-hybrid__send {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 12px;
    color: #fff;
    background: var(--bh-blue);
    cursor: pointer;
}

.bh-hybrid__send:hover {
    background: var(--bh-blue-deep);
}

.bh-hybrid__input-hint {
    margin: 8px 0 0;
    color: #8a96a5;
    font-size: 8.8px;
    line-height: 1.45;
}

.bh-hybrid__result {
    margin-top: 13px;
    padding: 15px;
    border: 1px solid #cfe0f2;
    border-radius: 16px;
    background: #f4f9ff;
    animation: bhHybridIn .28s ease;
}

.bh-hybrid__result--urgent {
    border-color: rgba(237,28,36,.28);
    background: #fff6f6;
}

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

.bh-hybrid__result-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
    color: var(--bh-red);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .45px;
    text-transform: uppercase;
}

.bh-hybrid__result h3 {
    margin: 0;
    color: var(--bh-blue-deep);
    font-size: 16px;
    font-weight: 850;
}

.bh-hybrid__result p {
    margin: 7px 0 12px;
    color: var(--bh-muted);
    font-size: 11px;
    line-height: 1.55;
}

.bh-hybrid__summary {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.bh-hybrid__summary span {
    display: inline-flex;
    min-height: 27px;
    align-items: center;
    padding: 4px 9px;
    border-radius: 999px;
    color: var(--bh-blue);
    background: #fff;
    border: 1px solid #d6e4f2;
    font-size: 9px;
    font-weight: 750;
}

.bh-hybrid__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.bh-hybrid__button {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 7px 12px;
    border: 1px solid var(--bh-blue);
    border-radius: 999px;
    color: var(--bh-blue);
    background: #fff;
    font-size: 10px;
    font-weight: 800;
    cursor: pointer;
}

.bh-hybrid__button--primary {
    color: #fff;
    background: var(--bh-blue);
}

.bh-hybrid__button--danger {
    color: #fff;
    border-color: var(--bh-red);
    background: var(--bh-red);
}

.bh-hybrid__lead {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin-top: 13px;
    padding-top: 13px;
    border-top: 1px solid #dce7f2;
}

.bh-hybrid__lead-head {
    grid-column: 1 / -1;
}

.bh-hybrid__lead-head strong {
    display: block;
    color: var(--bh-blue-deep);
    font-size: 12px;
}

.bh-hybrid__lead-head p {
    margin: 3px 0 0;
    font-size: 9.5px;
}

.bh-hybrid__field {
    width: 100%;
    min-height: 41px;
    padding: 0 11px;
    border: 1px solid #d6e0eb;
    border-radius: 11px;
    color: var(--bh-ink);
    background: #fff;
    font-size: 10.5px;
}

.bh-hybrid__lead-submit {
    grid-column: 1 / -1;
    min-height: 42px;
    border: 0;
    border-radius: 11px;
    color: #fff;
    background: var(--bh-red);
    font-size: 11px;
    font-weight: 850;
    cursor: pointer;
}

.bh-hybrid__consent {
    grid-column: 1 / -1;
    display: flex;
    align-items: flex-start;
    gap: 7px;
    color: #7b8797;
    font-size: 8.8px;
    line-height: 1.45;
}

.bh-hybrid__form-status {
    grid-column: 1 / -1;
    margin: 0;
    color: var(--bh-blue);
    font-size: 9.5px;
    font-weight: 750;
}

.bh-hybrid__disclaimer {
    margin: 11px 0 0;
    color: #7a8798;
    font-size: 8.8px;
    line-height: 1.5;
}

@media (max-width: 1100px) {
    .bh-home__assessment-grid {
        grid-template-columns: minmax(0, .7fr) minmax(510px, 1.3fr);
        gap: 30px;
    }
}

@media (max-width: 900px) {
    .bh-home__assessment-grid {
        grid-template-columns: 1fr;
    }

    .bh-home__assessment-copy {
        max-width: 760px;
    }
}

@media (max-width: 620px) {
    .bh-hybrid {
        border-radius: 22px;
    }

    .bh-hybrid__head {
        min-height: 68px;
        padding: 12px 14px;
    }

    .bh-hybrid__progress {
        padding-inline: 14px;
    }

    .bh-hybrid__messages {
        min-height: 225px;
        max-height: 330px;
        padding: 14px;
    }

    .bh-hybrid__interaction {
        padding: 12px 14px 15px;
    }

    .bh-hybrid__options,
    .bh-hybrid__lead {
        grid-template-columns: 1fr;
    }

    .bh-hybrid__lead-head,
    .bh-hybrid__lead-submit,
    .bh-hybrid__consent,
    .bh-hybrid__form-status {
        grid-column: auto;
    }
}

/* =========================================================
   07. FACILITIES + VISITOR INFORMATION
   HTML section: #fasilitas-informasi
   No dedicated JavaScript required.
   ========================================================= */
.bh-home__service-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(350px, .88fr);
    gap: 24px;
}

.bh-home__facility-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.bh-home__facility-card {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 13px;
    align-items: center;
    min-height: 112px;
    padding: 17px;
    border: 1px solid var(--bh-line);
    border-radius: 19px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,61,131,.05);
    transition: .22s ease;
}

.bh-home__facility-card:hover {
    box-shadow: var(--bh-shadow-sm);
    transform: translateY(-3px);
}

.bh-home__facility-icon {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: var(--bh-blue);
    background: var(--bh-blue-soft);
    font-size: 19px;
}

.bh-home__facility-card strong {
    display: block;
    color: var(--bh-ink);
    font-size: 13px;
}

.bh-home__facility-card span {
    display: block;
    margin-top: 4px;
    color: var(--bh-muted);
    font-size: 10.5px;
    line-height: 1.5;
}

.bh-home__visitor-card {
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient(145deg, var(--bh-blue), var(--bh-blue-deep));
    box-shadow: var(--bh-shadow-md);
}

.bh-home__visitor-head {
    padding: 23px 23px 17px;
    color: #fff;
}

.bh-home__visitor-head h3 {
    margin: 0;
    color: #fff;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 22px;
    font-weight: 820;
}

.bh-home__visitor-head p {
    margin: 7px 0 0;
    color: rgba(255,255,255,.72);
    font-size: 12px;
}

.bh-home__visitor-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    padding: 1px;
    background: rgba(255,255,255,.10);
}

.bh-home__visitor-link {
    display: flex;
    min-height: 76px;
    align-items: center;
    gap: 10px;
    padding: 13px;
    color: #fff;
    background: rgba(5,34,73,.72);
    font-size: 11px;
    font-weight: 750;
    transition: .2s ease;
}

.bh-home__visitor-link:hover {
    color: #fff;
    background: rgba(237,28,36,.93);
}

.bh-home__visitor-link i {
    width: 24px;
    text-align: center;
    font-size: 16px;
}

/* =========================================================
   08. FLOATING QUICK-ACTION WIDGETS
   HTML: .bh-home__floating
   JS dependency only for AI scroll button.
   ========================================================= */
.bh-home__floating {
    position: fixed;
    z-index: 1050;
    right: 20px;
    bottom: 24px;
    display: grid;
    gap: 9px;
}

.bh-home__float-button {
    display: flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 18px;
    color: #fff;
    background: var(--bh-blue);
    box-shadow: 0 15px 34px rgba(0,39,83,.26);
    font-size: 19px;
    cursor: pointer;
    transition: .22s ease;
}

.bh-home__float-button:hover {
    color: #fff;
    transform: translateY(-3px);
}

.bh-home__float-button--vina { background: #16895d; }
.bh-home__float-button--ai { background: var(--bh-blue); }
.bh-home__float-button--emergency { background: var(--bh-red); }

.bh-home__float-button span {
    position: absolute;
    right: 65px;
    padding: 7px 10px;
    border-radius: 9px;
    color: #fff;
    background: #172538;
    font-size: 10px;
    font-weight: 750;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(5px);
    transition: .2s ease;
}

.bh-home__float-button:hover span {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 1100px) {
    .bh-home__quick-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .bh-home__package-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bh-home__media-grid,
    .bh-home__service-grid,
    .bh-home__assessment-grid {
        grid-template-columns: 1fr;
    }

    .bh-home__assessment-grid {
        gap: 32px;
    }

    .bh-home__chat {
        max-width: 720px;
    }
}

@media (max-width: 767px) {
    .bh-home__container {
        width: min(100% - 24px, 1180px);
    }

    .bh-home__section {
        padding: 56px 0;
    }

    .bh-home__section-head {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 22px;
    }

    .bh-home__title {
        font-size: 30px;
        letter-spacing: -.7px;
    }

    .bh-home__hero {
        /* padding-top: 12px; */
    }

    .bh-home__hero-carousel {
        /* border-radius: 20px; */
    }

    .bh-home__hero-picture img {
        /* aspect-ratio: 1 / 1.02; */
    }

    .bh-home__hero-carousel .carousel-control-prev,
    .bh-home__hero-carousel .carousel-control-next {
        display: none;
    }

    .bh-home__trust-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: calc(100% - 26px);
        margin-top: -20px;
        border-radius: 16px;
    }

    .bh-home__trust-item {
        min-height: 64px;
        padding: 11px;
    }

    .bh-home__trust-icon {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
    }

    .bh-home__quick {
        padding-top: 43px;
    }

    .bh-home__quick-grid {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        padding: 3px 3px 13px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .bh-home__quick-grid::-webkit-scrollbar,
    .bh-home__package-grid::-webkit-scrollbar {
        display: none;
    }

    .bh-home__quick-card {
        min-width: 132px;
        min-height: 112px;
        flex: 0 0 132px;
        scroll-snap-align: start;
    }

    .bh-home__package-grid {
        display: flex;
        gap: 13px;
        overflow-x: auto;
        padding: 3px 3px 15px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .bh-home__package-card {
        min-width: 270px;
        flex: 0 0 270px;
        scroll-snap-align: start;
    }

    .bh-home__media-grid {
        gap: 30px;
    }

    .bh-home__head-actions {
        justify-content: flex-start;
    }

    .bh-home__video-card,
    .bh-home__article-featured {
        border-radius: 21px;
    }

    .bh-home__article-featured-content {
        padding: 19px;
    }

    .bh-home__article-small-grid {
        grid-template-columns: 1fr;
    }

    .bh-home__article-card {
        grid-template-columns: 108px minmax(0, 1fr);
    }

    .bh-home__assessment-options,
    .bh-home__lead-form,
    .bh-home__facility-grid,
    .bh-home__visitor-links {
        grid-template-columns: 1fr;
    }

    .bh-home__assessment-option {
        min-height: 45px;
    }

    .bh-home__consent {
        grid-column: auto;
    }

    .bh-home__floating {
        right: 12px;
        bottom: 12px;
        display: flex;
        gap: 7px;
        padding: 6px;
        border: 1px solid rgba(0,61,131,.12);
        border-radius: 20px;
        background: rgba(255,255,255,.92);
        box-shadow: 0 14px 35px rgba(0,39,83,.18);
        backdrop-filter: blur(12px);
    }

    .bh-home__float-button {
        width: 44px;
        height: 44px;
        border-radius: 14px;
        font-size: 16px;
        box-shadow: none;
    }

    .bh-home__float-button span {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .bh-home *,
    .bh-home *::before,
    .bh-home *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* =========================================================
   03. CENTERS OF EXCELLENCE (BHC MODULE)
   Namespace: bhc-*
   JS dependency: tabs, network shortcuts, show-more cards.
   ========================================================= */
:root {
    --bhc-blue: #003d83;
    --bhc-blue-dark: #071a3a;
    --bhc-red: #ed1c24;
    --bhc-soft: #f4f8ff;
    --bhc-soft-blue: #eaf3ff;
    --bhc-text: #172538;
    --bhc-muted: #697789;
    --bhc-border: rgba(0, 61, 131, 0.10);
    --bhc-shadow: 0 22px 60px rgba(0, 61, 131, 0.11);
    --bhc-shadow-hover: 0 30px 80px rgba(0, 61, 131, 0.18);
}

.bhc-section {
    position: relative;
    width: 100%;
    padding: 100px 0;
    overflow: hidden;
    background:
        linear-gradient(180deg, #f7fbff 0%, #ffffff 48%, #f4f8ff 100%);
    color: var(--bhc-text);
}

.bhc-container {
    position: relative;
    z-index: 2;
}



.bhc-header {
    max-width: 850px;
    margin: 0 auto 54px;
    text-align: center;
}

.bhc-kicker,
.bhc-panel-eyebrow,
.bhc-bottom-kicker,
.bhc-intro-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--bhc-red);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.bhc-kicker::before,
.bhc-bottom-kicker::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--bhc-red);
    box-shadow: 0 0 0 6px rgba(237, 28, 36, 0.11);
}

.bhc-header h2 {
    margin: 18px 0 18px;
    color: var(--bhc-text);
    font-size: clamp(38px, 5vw, 66px);
    line-height: 1.04;
    font-weight: 900;
    letter-spacing: -2.3px;
}

.bhc-header h2 span {
    color: var(--bhc-blue);
}

.bhc-header p {
    max-width: 760px;
    margin: 0 auto;
    color: var(--bhc-muted);
    font-size: 17px;
    line-height: 1.8;
}

.bhc-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
    gap: 26px;
    margin-bottom: 34px;
}

.bhc-intro-card,
.bhc-network-card {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    border-radius: 32px;
    box-shadow: var(--bhc-shadow);
}

.bhc-intro-card {
    padding: 44px;
    color: #fff;
    background:
        radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.16), transparent 26%),
        linear-gradient(135deg, #003d83 0%, #102f63 56%, #071a3a 100%);
}

.bhc-intro-card::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    right: -90px;
    bottom: -100px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    box-shadow:
        0 0 0 36px rgba(255, 255, 255, 0.035),
        0 0 0 76px rgba(255, 255, 255, 0.025);
}

.bhc-intro-label {
    color: #fff;
    opacity: 0.82;
}

.bhc-intro-card h3 {
    position: relative;
    z-index: 2;
    max-width: 690px;
    margin: 20px 0 16px;
    color: #fff;
    font-size: clamp(30px, 3.2vw, 47px);
    line-height: 1.12;
    font-weight: 880;
    letter-spacing: -1.4px;
}

.bhc-intro-card > p {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0;
    color: rgba(255, 255, 255, 0.81);
    font-size: 15.5px;
    line-height: 1.75;
}

.bhc-stats {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 34px;
}

.bhc-stat {
    min-height: 94px;
    padding: 17px 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}
.icon-logo img {
    width: 60px;
}
.heading {
    text-align: center;
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
}

.heading img::after {
    width: 50px;
    height: 4px;
    background: #203E76;
    content: "";
    display: block;
    margin: 10px auto 0;
}
.bhc-stat strong {
    display: block;
    color: #fff;
    font-size: 28px;
    line-height: 1;
    font-weight: 900;
}

.bhc-stat span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 12px;
    font-weight: 700;
}

.bhc-network-card {
    padding: 28px;
    border: 1px solid rgba(0, 61, 131, 0.08);
    background:
        radial-gradient(circle at 50% 35%, rgba(0, 91, 201, 0.11), transparent 37%),
        #fff;
}

.bhc-network-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--bhc-blue);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: 0.3px;
}

.bhc-network-top i {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #fff;
    background: var(--bhc-blue);
}

.bhc-network-map {
    position: relative;
    width: 260px;
    height: 190px;
    margin: 8px auto 2px;
}

.bhc-network-node {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--bhc-blue);
    background: #fff;
    border: 1px solid rgba(0, 61, 131, 0.12);
    box-shadow: 0 14px 30px rgba(0, 61, 131, 0.12);
}

.bhc-node-main {
    width: 76px;
    height: 76px;
    left: 92px;
    top: 55px;
    color: #fff;
    font-size: 28px;
    background: linear-gradient(135deg, var(--bhc-blue), var(--bhc-blue-dark));
}

.bhc-node-one,
.bhc-node-two,
.bhc-node-three,
.bhc-node-four {
    width: 48px;
    height: 48px;
    font-size: 18px;
}

.bhc-node-one { left: 10px; top: 8px; }
.bhc-node-two { right: 10px; top: 8px; }
.bhc-node-three { left: 15px; bottom: 0; }
.bhc-node-four { right: 15px; bottom: 0; }

.bhc-network-line {
    position: absolute;
    z-index: 1;
    width: 94px;
    height: 2px;
    left: 83px;
    top: 92px;
    transform-origin: center;
    background: linear-gradient(90deg, rgba(0, 61, 131, 0.12), rgba(0, 61, 131, 0.42));
}

.bhc-line-one { transform: rotate(32deg) translate(-58px, -40px); }
.bhc-line-two { transform: rotate(-32deg) translate(58px, -40px); }
.bhc-line-three { transform: rotate(-32deg) translate(-58px, 45px); }
.bhc-line-four { transform: rotate(32deg) translate(58px, 45px); }

.bhc-network-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
}

.bhc-network-link {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) 22px;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-height: 58px;
    padding: 9px 11px;
    border: 1px solid rgba(0, 61, 131, 0.08);
    border-radius: 14px;
    color: var(--bhc-muted);
    background: var(--bhc-soft);
    text-align: left;
    cursor: pointer;
    transition: 0.25s ease;
}

.bhc-network-link:hover,
.bhc-network-link.is-active {
    color: var(--bhc-blue);
    border-color: rgba(0, 61, 131, 0.18);
    background: var(--bhc-soft-blue);
    box-shadow: 0 12px 26px rgba(0, 61, 131, 0.11);
    transform: translateY(-2px);
}

.bhc-network-link-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    color: var(--bhc-blue);
    background: #fff;
    box-shadow: 0 7px 16px rgba(0, 61, 131, 0.08);
}

.bhc-network-link-label {
    min-width: 0;
    font-size: 11.5px;
    line-height: 1.35;
    font-weight: 800;
}

.bhc-network-link-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--bhc-blue);
    font-size: 12px;
    transition: 0.25s ease;
}

.bhc-network-link:hover .bhc-network-link-arrow,
.bhc-network-link.is-active .bhc-network-link-arrow {
    color: var(--bhc-red);
    transform: translateY(3px);
}

.bhc-explorer {
    padding: 26px;
    border: 1px solid rgba(0, 61, 131, 0.08);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--bhc-shadow);
    backdrop-filter: blur(14px);
}

.bhc-tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 28px;
}

.bhc-tab {
    display: flex;
    align-items: center;
    gap: 13px;
    width: 100%;
    padding: 15px 16px;
    border: 1px solid var(--bhc-border);
    border-radius: 18px;
    color: var(--bhc-text);
    background: var(--bhc-soft);
    text-align: left;
    cursor: pointer;
    transition: 0.25s ease;
}

.bhc-tab:hover,
.bhc-tab.is-active {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, var(--bhc-blue), var(--bhc-blue-dark));
    box-shadow: 0 15px 32px rgba(0, 61, 131, 0.18);
    transform: translateY(-2px);
}

.bhc-tab-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--bhc-blue);
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 61, 131, 0.08);
}

.bhc-tab.is-active .bhc-tab-icon,
.bhc-tab:hover .bhc-tab-icon {
    color: var(--bhc-red);
}

.bhc-tab-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.bhc-tab-copy strong {
    overflow: hidden;
    font-size: 13px;
    font-weight: 850;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bhc-tab-copy small {
    margin-top: 3px;
    color: var(--bhc-muted);
    font-size: 11px;
    font-weight: 700;
}

.bhc-tab.is-active small,
.bhc-tab:hover small {
    color: rgba(255, 255, 255, 0.72);
}

.bhc-panel[hidden] {
    display: none;
}

.bhc-panel {
    animation: bhcPanelIn 0.35s ease;
}

@keyframes bhcPanelIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bhc-panel-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 24px;
    padding: 8px 4px 22px;
    border-bottom: 1px solid var(--bhc-border);
}

.bhc-panel-heading h3 {
    margin: 8px 0 8px;
    color: var(--bhc-text);
    font-size: clamp(26px, 3vw, 39px);
    font-weight: 900;
    letter-spacing: -1.1px;
}

.bhc-panel-heading p {
    max-width: 780px;
    margin: 0;
    color: var(--bhc-muted);
    font-size: 14.5px;
    line-height: 1.7;
}

.bhc-panel-count {
    min-width: 108px;
    padding: 14px 16px;
    border-radius: 18px;
    color: var(--bhc-blue);
    background: var(--bhc-soft-blue);
    text-align: center;
}

.bhc-panel-count strong {
    display: block;
    font-size: 27px;
    line-height: 1;
    font-weight: 900;
}

.bhc-panel-count span {
    display: block;
    margin-top: 6px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.bhc-center-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.bhc-center-card {
    position: relative;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) 28px;
    align-items: center;
    gap: 15px;
    min-height: 142px;
    padding: 20px;
    overflow: hidden;
    border: 1px solid var(--bhc-border);
    border-radius: 22px;
    color: inherit;
    background: #fff;
    text-decoration: none;
    box-shadow: 0 11px 28px rgba(0, 61, 131, 0.07);
    transition: 0.28s ease;
}

.bhc-center-card::after {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    right: -50px;
    bottom: -50px;
    border-radius: 50%;
    background: rgba(0, 91, 201, 0.06);
    transition: 0.28s ease;
}

.bhc-center-card:hover {
    color: inherit;
    border-color: rgba(0, 61, 131, 0.17);
    box-shadow: var(--bhc-shadow-hover);
    transform: translateY(-6px);
}

.bhc-center-card:hover::after {
    width: 160px;
    height: 160px;
    right: -80px;
    bottom: -80px;
    background: rgba(237, 28, 36, 0.055);
}

.bhc-center-icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: var(--bhc-blue);
    font-size: 21px;
    background: var(--bhc-soft-blue);
    transition: 0.28s ease;
}

.bhc-center-card:hover .bhc-center-icon {
    color: #fff;
    background: linear-gradient(135deg, var(--bhc-blue), var(--bhc-blue-dark));
    transform: rotate(-4deg) scale(1.05);
}

.bhc-center-content {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.bhc-center-name {
    color: var(--bhc-text);
    font-size: 15px;
    line-height: 1.35;
    font-weight: 850;
}

.bhc-center-desc {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 8px;
    color: var(--bhc-muted);
    font-size: 12.5px;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.bhc-center-arrow {
    position: relative;
    z-index: 2;
    color: var(--bhc-blue);
    font-size: 23px;
    font-weight: 900;
    transition: 0.25s ease;
}

.bhc-center-card:hover .bhc-center-arrow {
    color: var(--bhc-red);
    transform: translateX(4px);
}


.bhc-explorer {
    scroll-margin-top: 96px;
}

.bhc-center-card[hidden] {
    display: none !important;
}

.bhc-center-card.is-revealed {
    animation: bhcCenterCardReveal 0.35s ease both;
}

@keyframes bhcCenterCardReveal {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bhc-center-toggle-wrap {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.bhc-center-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 220px;
    padding: 12px 20px;
    border: 1px solid rgba(0, 61, 131, 0.14);
    border-radius: 999px;
    color: var(--bhc-blue);
    background: #fff;
    font-size: 13px;
    font-weight: 850;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(0, 61, 131, 0.10);
    transition: 0.25s ease;
}

.bhc-center-toggle:hover {
    color: #fff;
    border-color: var(--bhc-blue);
    background: var(--bhc-blue);
    transform: translateY(-3px);
}

.bhc-center-toggle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s ease;
}

.bhc-center-toggle[aria-expanded="true"] .bhc-center-toggle-icon {
    transform: rotate(180deg);
}

@media (max-width: 767px) {
    .bhc-network-link {
        grid-template-columns: 34px minmax(0, 1fr) 20px;
    }

    .bhc-center-toggle {
        width: 100%;
    }
}

.bhc-bottom-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    margin-top: 34px;
    padding: 30px 34px;
    border-radius: 28px;
    color: #fff;
    background:
        radial-gradient(circle at 75% 10%, rgba(255, 255, 255, 0.15), transparent 25%),
        linear-gradient(135deg, var(--bhc-blue), var(--bhc-blue-dark));
    box-shadow: 0 24px 60px rgba(0, 61, 131, 0.20);
}

.bhc-bottom-kicker {
    color: rgba(255, 255, 255, 0.76);
}

.bhc-bottom-cta h3 {
    margin: 9px 0 7px;
    color: #fff;
    font-size: clamp(24px, 2.6vw, 34px);
    font-weight: 900;
    letter-spacing: -0.8px;
}

.bhc-bottom-cta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
}

.bhc-primary-button {
    min-width: 208px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 999px;
    color: var(--bhc-blue);
    background: #fff;
    font-size: 13.5px;
    font-weight: 850;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.13);
    transition: 0.25s ease;
}

.bhc-primary-button:hover {
    color: #fff;
    background: var(--bhc-red);
    transform: translateY(-3px);
}

@media (max-width: 1199px) {
    .bhc-intro-grid {
        grid-template-columns: 1fr;
    }

    .bhc-network-card {
        min-height: auto;
    }

    .bhc-tabs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bhc-center-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .bhc-section {
        padding: 72px 0;
    }

    .bhc-header {
        margin-bottom: 38px;
        text-align: left;
    }

    .bhc-header h2 {
        letter-spacing: -1.4px;
        text-align: center;
        font-size: 34px;
    }

    .bhc-header p {
        font-size: 15px;
    }

    .bhc-intro-card,
    .bhc-network-card,
    .bhc-explorer {
        border-radius: 24px;
    }

    .bhc-intro-card {
        min-height: auto;
        padding: 28px 22px;
    }

    .bhc-stats {
        grid-template-columns: 1fr;
    }

    .bhc-stat {
        min-height: auto;
    }

    .bhc-network-card {
        padding: 22px 18px;
    }

    .bhc-network-map {
        transform: scale(0.9);
        margin-top: 0;
        margin-bottom: -8px;
    }

    .bhc-network-list {
        grid-template-columns: 1fr;
    }

    .bhc-explorer {
        padding: 16px;
    }

    .bhc-tabs {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        margin: 0 -4px 24px;
        padding: 4px 4px 10px;
        scrollbar-width: none;
    }

    .bhc-tabs::-webkit-scrollbar {
        display: none;
    }

    .bhc-tab {
        min-width: 210px;
        flex: 0 0 auto;
    }

    .bhc-panel-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .bhc-panel-count {
        min-width: 0;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .bhc-panel-count span {
        margin-top: 0;
    }

    .bhc-center-grid {
        grid-template-columns: 1fr;
    }

    .bhc-center-card {
        grid-template-columns: 50px minmax(0, 1fr) 22px;
        min-height: 128px;
        padding: 17px;
    }

    .bhc-center-icon {
        width: 50px;
        height: 50px;
        border-radius: 16px;
    }

    .bhc-bottom-cta {
        align-items: flex-start;
        flex-direction: column;
        padding: 26px 22px;
    }

    .bhc-primary-button {
        width: 100%;
    }
}



