/*
 * ============================================================
 * BETHSAIDA HOSPITAL SERANG — ADVANCED TRAUMA CENTER
 * WYSIWYG EXTERNAL STYLESHEET
 * ============================================================
 *
 * File:
 * advanced-trauma-center-clean.css
 *
 * Production URL:
 * https://www.bethsaidahospitals.com/assets/img/center/advanced-trauma-center-clean.css
 *
 * Struktur:
 * CSS 01 — Core / Hero / Overview / Conditions / Modal / CTA
 * CSS 02 — Doctor Showcase
 * CSS 03 — Facility Gallery / Section Overrides
 *
 * Catatan:
 * - Semua CSS dari source dipertahankan sesuai urutan cascade.
 * - Referensi asset dinamis telah diubah menjadi URL absolut agar valid
 *   sebagai stylesheet eksternal.
 */


/* ============================================================
   CSS 01 — CORE / HERO / OVERVIEW / CONDITIONS / MODAL / CTA
============================================================ */

/* =========================================================
   BETHSAIDA DETAIL CENTER OF EXCELLENCE
   Heart & Vascular Center
========================================================= */

:root{
    --bethsaida-blue:#003D83;
    --bethsaida-blue-dark:#071A3A;
    --bethsaida-blue-2:#203E76;
    --bethsaida-red:#ED1C24;
    --bethsaida-soft:#F4F8FF;
    --bethsaida-soft-blue:#EAF3FF;
    --bethsaida-text:#1E2A3A;
    --bethsaida-muted:#6C7A89;
    --white:#ffffff;
    --shadow-soft:0 18px 45px rgba(0,61,131,.12);
    --shadow-hover:0 28px 70px rgba(0,61,131,.22);
    --radius-lg:28px;
    --radius-md:20px;
    --radius-pill:999px;
}

body{
    color:var(--bethsaida-text);
}

/* =========================
   HERO DETAIL
========================= */
.hvc-hero{
    position:relative;
    min-height:88vh;
    display:flex;
    align-items:center;
    overflow:hidden;
    color:#fff;

    /*
      Replace this image with your actual background.
      Example:
      background-image:url('https://www.bethsaidahospitals.com/assets/img/center/heart-vascular-bg.jpg');
    */
    background-image:
        linear-gradient(90deg, rgba(3,20,55,.92) 0%, rgba(0,61,131,.82) 45%, rgba(3,20,55,.72) 100%),
        url('https://www.bethsaidahospitals.com/assets/img/center/trauma-bg.jpg');

    background-size:cover;
    background-position:center;
    background-attachment:fixed;
}

.hvc-hero::after{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 20% 80%, rgba(237,28,36,.28), transparent 24%),
        radial-gradient(circle at 70% 20%, rgba(255,255,255,.18), transparent 26%),
        linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.36));
    pointer-events:none;
}

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

.hvc-kicker{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:9px 18px;
    border-radius:var(--radius-pill);
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(10px);
    color:#fff;
    font-size:13px;
    font-weight:700;
    letter-spacing:.4px;
    margin-bottom:20px;
}

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

.hvc-hero-title{
    font-size:clamp(42px, 6vw, 88px);
    line-height:1.02;
    font-weight:800;
    letter-spacing:-2.8px;
    margin-bottom:26px;
    color:rgba(255,255,255,.9);
}

.hvc-hero-desc{
    max-width:620px;
    color:rgba(255,255,255,.9);
    font-size:18px;
    line-height:1.8;
    margin-bottom:34px;
}

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

.hvc-btn-primary,
.hvc-btn-outline{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:13px 24px;
    border-radius:var(--radius-pill);
    font-size:15px;
    font-weight:800;
    text-decoration:none;
    transition:.25s ease;
}

.hvc-btn-primary{
    background:#fff;
    color:var(--bethsaida-blue);
}

.hvc-btn-outline{
    border:1px solid rgba(255,255,255,.46);
    color:#fff;
    background:rgba(255,255,255,.08);
}

.hvc-btn-primary:hover,
.hvc-btn-outline:hover{
    transform:translateY(-3px);
    color:var(--bethsaida-blue);
}

.hvc-btn-outline:hover{
    background:#fff;
}

/* =========================
   BRAND LINE
========================= */
.bethsaida-brand-line{
    height:10px;
    width:100%;
    background:linear-gradient(
        90deg,
        var(--bethsaida-blue) 0%,
        var(--bethsaida-blue) 42%,
        var(--bethsaida-red) 42%,
        var(--bethsaida-red) 58%,
        var(--bethsaida-blue) 58%,
        var(--bethsaida-blue) 100%
    );
}

/* =========================
   GENERAL SECTION
========================= */
.hvc-section{
    padding:90px 0;
    background:var(--bethsaida-soft);
}

.hvc-section-white{
    background:#fff;
}

.hvc-section-header{
    max-width:760px;
    margin:0 auto 54px;
    text-align:center;
}

.hvc-eyebrow{
    color:var(--bethsaida-red);
    font-size:13px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:1.4px;
    margin-bottom:10px;
}

.hvc-section-title{
    color:var(--bethsaida-text);
    font-size:clamp(32px, 4vw, 52px);
    font-weight:800;
    letter-spacing:-1.6px;
    margin-bottom:16px;
}

.hvc-section-desc{
    color:var(--bethsaida-muted);
    font-size:17px;
    line-height:1.8;
    margin:0;
}

/* =========================
   OVERVIEW CARDS
========================= */
.hvc-info-card{
    height:100%;
    background:#fff;
    border-radius:var(--radius-lg);
    padding:34px;
    box-shadow:var(--shadow-soft);
    border:1px solid rgba(0,61,131,.06);
}

.hvc-info-card.dark{
    color:#fff;
    background:
        linear-gradient(135deg, rgba(0,61,131,.96), rgba(7,26,58,.96)),
        url('https://www.bethsaidahospitals.com/assets/img/center/heart-vascular-bg.jpg');
    background-size:cover;
    background-position:center;
}

.hvc-info-card h3{
    font-size:26px;
    font-weight:800;
    margin-bottom:20px;
}

.hvc-info-card.dark h3,
.hvc-info-card.dark p,
.hvc-info-card.dark li{
    color:#fff;
}

.hvc-info-card p{
    color:var(--bethsaida-muted);
    font-size:16px;
    line-height:1.8;
}

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

.hvc-list li{
    position:relative;
    padding-left:28px;
    margin-bottom:12px;
    color:var(--bethsaida-muted);
    line-height:1.6;
    font-size:15.5px;
}

.hvc-list li::before{
    content:"";
    position:absolute;
    left:0;
    top:8px;
    width:10px;
    height:10px;
    border-radius:50%;
    background:var(--bethsaida-red);
    box-shadow:0 0 0 5px rgba(237,28,36,.12);
}

/* =========================
   CONDITIONS
========================= */
.hvc-condition-section{
    position:relative;
    padding:100px 0;
    color:#fff;
    overflow:hidden;

    background-image:
        linear-gradient(90deg, rgba(7,26,58,.94), rgba(0,61,131,.86)),
        url('https://www.bethsaidahospitals.com/assets/img/center/heart-vascular-bg.jpg');
    background-size:cover;
    background-position:center;
    background-attachment:fixed;
}

.hvc-condition-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 85% 20%, rgba(255,255,255,.18), transparent 26%),
        radial-gradient(circle at 15% 80%, rgba(237,28,36,.26), transparent 25%);
}

.hvc-condition-section .container{
    position:relative;
    z-index:2;
}

.hvc-condition-section .hvc-section-title,
.hvc-condition-section .hvc-section-desc{
    color:#fff;
}

.hvc-condition-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.hvc-condition-card{
    background:rgba(255,255,255,.1);
    border:1px solid rgba(255,255,255,.18);
    backdrop-filter:blur(12px);
    border-radius:var(--radius-lg);
    padding:30px;
    transition:.25s ease;
}

.hvc-condition-card:hover{
    transform:translateY(-7px);
    background:rgba(255,255,255,.15);
}

.hvc-condition-icon{
    width:58px;
    height:58px;
    border-radius:18px;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--bethsaida-blue);
    font-size:28px;
    margin-bottom:18px;
}

.hvc-condition-card h3{
    color:#fff;
    font-size:21px;
    font-weight:800;
    margin-bottom:14px;
}

.hvc-condition-card ul{
    padding-left:18px;
    margin:0;
}

.hvc-condition-card li{
    color:rgba(255,255,255,.9);
    line-height:1.6;
    margin-bottom:7px;
}

/* =========================
   DOCTOR SECTION
========================= */
.hvc-doctor-card{
    height:100%;
    background:#fff;
    border-radius:var(--radius-lg);
    overflow:hidden;
    box-shadow:var(--shadow-soft);
    border:1px solid rgba(0,61,131,.06);
    transition:.28s ease;
}

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

.hvc-doctor-photo{
    height:330px;
    background:linear-gradient(135deg, #eaf3ff, #fff);
    display:flex;
    align-items:flex-end;
    justify-content:center;
    overflow:hidden;
}

.hvc-doctor-photo img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:top center;
}

.hvc-doctor-body{
    padding:28px;
}

.hvc-doctor-body h3{
    font-size:22px;
    line-height:1.35;
    font-weight:800;
    color:var(--bethsaida-text);
    margin-bottom:8px;
}

.hvc-doctor-body p{
    color:var(--bethsaida-muted);
    font-size:15px;
    line-height:1.6;
    margin-bottom:22px;
}

.hvc-doctor-btn{
    border:none;
    border-radius:var(--radius-pill);
    padding:11px 18px;
    background:var(--bethsaida-blue);
    color:#fff;
    font-size:14px;
    font-weight:800;
    transition:.25s ease;
}

.hvc-doctor-btn:hover{
    background:var(--bethsaida-red);
    transform:translateX(3px);
}

/* =========================
   MODAL
========================= */
.hvc-modal{
    position:fixed;
    inset:0;
    z-index:9999;
    display:none;
    align-items:center;
    justify-content:center;
    padding:24px;
}

.hvc-modal.active{
    display:flex;
}

.hvc-modal-backdrop{
    position:absolute;
    inset:0;
    background:rgba(3,13,31,.72);
    backdrop-filter:blur(8px);
}

.hvc-modal-dialog{
    position:relative;
    z-index:2;
    width:min(1080px, 100%);
    max-height:90vh;
    overflow:auto;
    background:#fff;
    border-radius:32px;
    box-shadow:0 40px 110px rgba(0,0,0,.35);
}

.hvc-modal-close{
    position:absolute;
    top:18px;
    right:18px;
    z-index:5;
    width:44px;
    height:44px;
    border:none;
    border-radius:50%;
    background:var(--bethsaida-blue);
    color:#fff;
    font-size:24px;
    line-height:1;
    display:flex;
    align-items:center;
    justify-content:center;
}

.hvc-modal-grid{
    display:grid;
    grid-template-columns:40% 60%;
    min-height:620px;
}

.hvc-modal-photo{
    position:relative;
    background:
        linear-gradient(180deg, rgba(0,61,131,.08), rgba(0,61,131,.18)),
        #EAF3FF;
    display:flex;
    align-items:flex-end;
    justify-content:center;
    overflow:hidden;
}

.hvc-modal-photo img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:top center;
}

.hvc-modal-content{
    padding:54px 54px 44px;
}

.hvc-modal-content h2{
    color:var(--bethsaida-text);
    font-size:34px;
    line-height:1.22;
    font-weight:850;
    letter-spacing:-1px;
    margin-bottom:8px;
}

.hvc-modal-specialty{
    color:var(--bethsaida-blue);
    font-size:17px;
    font-weight:700;
    font-style:italic;
    margin-bottom:30px;
}

.hvc-modal-content h4{
    font-size:18px;
    font-weight:850;
    color:var(--bethsaida-text);
    margin-bottom:14px;
}

.hvc-modal-list{
    padding-left:18px;
    margin:0;
}

.hvc-modal-list li{
    color:var(--bethsaida-muted);
    line-height:1.65;
    margin-bottom:9px;
    font-size:15.5px;
}
.hvc-modal-action{
    margin-top:28px;
}

.hvc-modal-appointment{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:13px 22px;
    border-radius:var(--radius-pill);
    background:var(--bethsaida-blue);
    color:#fff;
    font-size:14px;
    font-weight:800;
    text-decoration:none;
    transition:.25s ease;
    box-shadow:0 14px 30px rgba(0,61,131,.22);
}

.hvc-modal-appointment:hover{
    background:var(--bethsaida-red);
    color:#fff;
    transform:translateY(-3px);
}

/* =========================
   CTA
========================= */
.hvc-cta{
    padding:80px 0;
    background:linear-gradient(135deg, var(--bethsaida-blue), var(--bethsaida-blue-dark));
    color:#fff;
}

.hvc-cta-box{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:28px;
}

.hvc-cta h2{
    color: #EAF3FF;
    font-size:36px;
    font-weight:850;
    letter-spacing:-1px;
    margin-bottom:10px;
}

.hvc-cta p{
    color:rgba(255,255,255,.82);
    font-size:17px;
    margin:0;
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:991px){
    .hvc-hero{
        min-height:74vh;
        background-attachment:scroll;
        
        background-position:center center;
    }

    .hvc-condition-section{
        background-attachment:scroll;
    }

    .hvc-condition-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .hvc-modal-grid{
        grid-template-columns:1fr;
    }

    .hvc-modal-photo{
        height:420px;
    }

    .hvc-cta-box{
        flex-direction:column;
        align-items:flex-start;
    }
}

@media(max-width:767px){
    .hvc-section,
    .hvc-condition-section{
        padding:64px 0;
    }

    .hvc-hero-title{
        letter-spacing:-1.4px;
    }

    .hvc-info-card{
        padding:26px;
    }

    .hvc-modal-content{
        padding:36px 26px;
    }

    .hvc-modal-content h2{
        font-size:27px;
    }

    .hvc-doctor-photo{
        height:300px;
    }
}


/* ============================================================
   CSS 02 — DOCTOR SHOWCASE
============================================================ */

/* =========================
   DOCTOR SHOWCASE SECTION
   4 DOCTOR VERSION
========================= */

.hvc-doctor-showcase {
    position: relative;
    padding: 80px 0 130px;
    overflow: hidden;
    color: #fff;
    background-image: url('https://www.bethsaidahospitals.com/assets/img/center/bethsaida-serang-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hvc-doctor-showcase::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,33,75,.28);
    z-index:1;
}

.hvc-doctor-showcase::after{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 15% 30%, rgba(255,255,255,.08), transparent 25%),
        linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,13,35,.38) 100%);
    z-index:1;
}

.hvc-doctor-showcase .container{
    position:relative;
    z-index:2;
}

.hvc-doctor-badge{
    display:inline-flex;
    align-items:center;
    padding:8px 18px;
    border-radius:0 0 10px 10px;
    background:rgba(42,108,184,.88);
    color:#fff;
    font-size:12px;
    font-weight:700;
    position:absolute;
    top:-80px;
    left:15px;
}

.hvc-doctor-heading{
    margin-bottom:38px;
}

.hvc-doctor-heading h2{
    color:#fff;
    font-size:clamp(34px, 4.4vw, 56px);
    line-height:1.05;
    font-weight:850;
    letter-spacing:-1.8px;
    margin:0;
}

.hvc-doctor-list{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:24px 28px;
    max-width:100%;
}

.hvc-doctor-item{
    display:flex;
    align-items:center;
    gap:18px;
    position:relative;
}

.hvc-doctor-thumb{
    width:118px;
    height:118px;
    min-width:118px;
    background:#fff;
    border-radius:22px 0 22px 0;
    overflow:hidden;
    box-shadow:7px 8px 0 rgba(255,255,255,.9);
    border:3px solid rgba(255,255,255,.96);
}

.hvc-doctor-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:top center;
    display:block;
}

.hvc-doctor-info{
    max-width:350px;
}

.hvc-doctor-info h3{
    color:#fff;
    font-size:16.5px;
    line-height:1.28;
    font-weight:850;
    margin-bottom:7px;
    text-shadow:0 2px 8px rgba(0,0,0,.18);
}

.hvc-doctor-info p{
    color:rgba(255,255,255,.92);
    font-size:14.5px;
    line-height:1.35;
    font-weight:600;
    font-style:italic;
    margin-bottom:11px;
}

.hvc-doctor-more{
    display:inline-flex;
    align-items:center;
    color:#fff;
    font-size:12.5px;
    font-weight:800;
    text-decoration:none;
    border-bottom:2px solid rgba(255,255,255,.65);
    padding-bottom:4px;
    transition:.25s ease;
}

.hvc-doctor-more:hover{
    color:#fff;
    transform:translateX(5px);
    border-bottom-color:var(--bethsaida-red);
}

/* Responsive */
@media(max-width:991px){
    .hvc-doctor-showcase{
        background-attachment:scroll;
        padding:70px 0 100px;
    }

    .hvc-doctor-list{
        grid-template-columns:1fr;
        gap:32px;
    }

    .hvc-doctor-badge{
        position:relative;
        top:auto;
        left:auto;
        margin-bottom:24px;
        border-radius:999px;
    }
}

@media(max-width:575px){
    .hvc-doctor-item{
        align-items:flex-start;
        gap:16px;
    }

    .hvc-doctor-thumb{
        width:104px;
        height:104px;
        min-width:104px;
    }

    .hvc-doctor-info h3{
        font-size:15px;
    }

    .hvc-doctor-info p{
        font-size:13px;
    }

    .hvc-doctor-more{
        font-size:12px;
    }
}


/* ============================================================
   CSS 03 — FACILITY GALLERY / SECTION OVERRIDES
============================================================ */

/* =========================
    GALLERY SECTION
    ========================= */
    .hvc-gallery-section{
        padding:90px 0;
        background:#f8f9fb; /* soft professional neutral background */
    }

    .hvc-gallery-grid{
        display:grid;
        grid-template-columns:repeat(4,1fr);
        gap:18px;
        margin-bottom:18px;
    }

    .hvc-gallery-grid-bottom{
        display:grid;
        grid-template-columns:repeat(3,1fr);
        gap:18px;
    }
    .hvc-gallery-grid,
    .hvc-gallery-grid-bottom{
        margin-bottom:18px;
    }

    @media(max-width:768px){

        .hvc-gallery-grid,
        .hvc-gallery-grid-bottom{
            grid-template-columns:1fr;
        }

    }

    .hvc-gallery-item{
        position:relative;
        border-radius:20px;
        overflow:hidden;
        box-shadow:0 12px 28px rgba(0,0,0,.08);
        transition:.3s ease;
    }

    .hvc-gallery-item img{
        width:100%;
        height:180px;
        object-fit:cover;
        display:block;
        transition:.3s ease;
    }

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


    .hvc-gallery-caption{
        position:absolute;
        left:12px;
        right:12px;
        bottom:12px;

        padding:12px 16px;

        color:#1f4e8c;
        font-size:18px;
        font-weight:700;
        text-align:center;

        /* Glassmorphism */
        background:rgba(255,255,255,0.25);
        backdrop-filter:blur(12px);
        -webkit-backdrop-filter:blur(12px);

        border:1px solid rgba(255,255,255,0.35);
        border-radius:16px;

        box-shadow:
            0 8px 24px rgba(0,0,0,0.15),
            inset 0 1px 0 rgba(255,255,255,0.4);

        overflow:hidden;
    }

    /* =========================
    SECTION BACKGROUND IMPROVEMENTS
    ========================= */
    .hvc-section{
        padding:90px 0;
        background: #f5f7fa; /* light elegant neutral background for contrast */
    }

    .hvc-section-white{
        background:#ffffff;
    }

    .hvc-condition-section{
        background:
            linear-gradient(90deg, rgba(3,20,55,.95), rgba(0,61,131,.86)),
            url('https://www.bethsaidahospitals.com/assets/img/center/heart-vascular-bg2.png');
        background-size:cover;
        background-position:center;
        background-attachment:fixed;
    }
