/* ==============================
   GLOBAL
================================ */
.dokter-container{
    width:100%;
    max-width:1400px;
    margin:auto;
}

/* ================= BREADCRUMB ================= */
.dokter-breadcrumb{
    display:flex;
    align-items:center;
    gap:8px;
    margin-top:-50px;
    margin-bottom:0;
    margin-left:-37px;
    transform:translateY(-45px);
    color:#ffffff;
    font-size:14px;
    font-weight:500;
}

.dokter-breadcrumb i{
    font-size:9px;
    opacity:.8;
}

.dokter-breadcrumb a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
}

.dokter-breadcrumb a:hover{
    color:#98d733;
    text-decoration:none;
}

.dokter-breadcrumb span{
    font-weight:750;
    color:#caf5f2;
    text-decoration:none;   
}

/* ================= HERO ================= */
.dokter-hero{
    height:400px;
    position:relative;
    overflow:hidden;
    background-image:url("/static/img/profil/hero.jpg");
    background-size:cover;
    background-position:right center;
    display:flex;
    align-items:center;
    z-index: 1;
}

.dokter-hero .container {
    padding-left:80px;
}

/* RED GRADIENT */
.dokter-hero-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        90deg,
        rgba(190,0,0,0.95) 0%,
        rgba(205,0,0,0.75) 35%,
        rgba(205,0,0,0.25) 70%,
        rgba(252, 251, 251, 0.05)
    );
}

/* DOT */
.dokter-hero::before{
    content:"";
    position:absolute;
    top:25px;
    left:35px;
    width:120px;
    height:120px;
    background-image:
    radial-gradient(
        rgba(255,255,255,.8) 2px,
        transparent 2px
    );
    background-size:16px 16px;
    opacity:.5;
    z-index:3;
}

/* CONTENT */
.dokter-hero-container{
    position:relative;
    z-index:2;
    width:100%;
}

.dokter-hero-content{
    max-width:800px;
    color:white;
    transform:translateY(20px);
    padding-left:100px;
    padding-bottom: 110px;
}

.dokter-label{
    color:white;
    font-size:52px;
    font-weight:700;
    margin:0 0 16px -2px;
    line-height:1.15;
}

.dokter-hero p{
    font-size:18px;
    line-height:1.6;
    color:white;
    max-width: 620px;
    margin-bottom: 0;
}

/* =========================================================
   SOFT FADE BAGIAN BAWAH HERO
========================================================= */
.dokter-hero::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:120px;
    z-index:5;
    background:
        linear-gradient(
            to bottom,
            rgba(255,255,255,0) 0%,
            rgba(255,255,255,.35) 35%,
            rgba(255,255,255,.75) 65%,
            #ffffff 100%
        );
    pointer-events:none;
}

/* =========================================================
   DOKTER HERO STATISTICS
========================================================= */
.dokter-hero-stat-section{
    position:relative;
    z-index:10;
    margin-top:-150px;
    padding-bottom:50px;
}

.dokter-hero-stat-section .dokter-container{
    position:relative;
    z-index:2;
}

.dokter-hero-stats{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:23px;
    max-width:1200px;
    margin:0 auto;
}

.dokter-hero-stat{
    min-height:165px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    background:#ffffff;
    border:1px solid #eeeeee;
    border-radius:16px;
    box-shadow:
        0 12px 30px rgba(0,0,0,.12);
    text-align:center;
    padding:20px;
}

.dokter-hero-stat-icon{
    width:52px;
    height:52px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:12px;
    border-radius:50%;
    background:#fff0f1;
    color:#d90016;
    font-size:23px;
}

.dokter-hero-stat strong{
    display:block;
    color:#d90016;
    font-size:30px;
    line-height:1.2;
    font-weight:800;
    margin-bottom:6px;
}

.dokter-hero-stat span{
    display:block;
    color:#1f2937;
    font-size:14px;
    font-weight:600;
    line-height:1.3;
}

/* ==============================
   TOOLBAR
================================ */
.dokter-filter-box{
    display:grid;
    grid-template-columns:1fr 580px;
    align-items:center;
    gap:30px;

    margin-bottom:25px;

    background:white;
    padding:25px;

    border-radius:18px;

    box-shadow:
        0 8px 25px rgba(0,0,0,.06);
}

/* ==============================
   SEARCH
================================ */

.dokter-search{
    width:100%;
}

.dokter-search input{
    width:340px;
    max-width:100%;

    padding:14px 18px;

    border-radius:12px;
    border:1px solid #ddd;

    font-size:15px;
    box-sizing:border-box;
}

.dokter-search input:focus{
    outline:none;
    border-color:#d71920;
}

/* ==============================
   FILTER ROW
================================ */

.dokter-filter-row{
    display:grid;

    grid-template-columns:
        repeat(2, minmax(0,1fr));

    gap:12px;

    width:100%;
}

/* ==============================
   DROPDOWN
================================ */

.dokter-filter{
    width:100%;
}

.dokter-filter select{
    width:100%;
    height:52px;

    padding:0 18px;

    border-radius:12px;

    border:1px solid #ddd;

    background:#fff;

    font-size:15px;

    color:#1f2937;

    box-sizing:border-box;

    cursor:pointer;
}

.dokter-filter select:focus{
    outline:none;
    border-color:#d71920;
}

/* ==============================
   ALPHABET FILTER
================================ */
.alphabet-filter{
    display:flex;
    flex-wrap:nowrap;
    gap:7px;
    margin-bottom:40px;

    width:100%;
    max-width:none;

    overflow:visible;
}

.alphabet-filter::-webkit-scrollbar{
    display:none;
}

.alphabet-filter button{
    flex:0 0 auto;
    border:none;
    background:#f1f5f9;
    border-radius:10px;
    padding:8px 11px;
    min-width:36px;
    cursor:pointer;
    transition:.2s;
}

.alphabet-filter button:hover{
    background:#fee2e2;
}

.alphabet-filter button.active{
    background:#d71920;
    color:white;
}

/* ==============================
   GRID
================================ */
.dokter-grid{
    display:grid;
    /* grid-template-columns:
    repeat(auto-fill,minmax(280px,1fr)); */
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

/* ==============================
   CARD
================================ */
.dokter-card{
    background:white;
    border-radius:18px;
    overflow:hidden;
    cursor:pointer;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    border:1px solid #f1f1f1;   
    transition:
    transform .3s ease,
    box-shadow .3s ease,
    border-color .3s ease;
}

.dokter-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(215,25,32,.15);
    border-color:#f3b0b0;  
}

.dokter-card::before{
    content:"";
    display:block;
    height:5px;
    background:#d71920;
}

.dokter-card.hide{
    display:none;
}

.dokter-photo{
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
    height:250px;
    background:
    linear-gradient(
        135deg,
        #fff5f5,
        #f8fafc
    );
}

.dokter-photo img{
    width:100%;
    height:100%;
    object-fit:contain;
    transition:.35s;
}

.dokter-photo img.small-photo{
    transform:scale(1.35);
}

.dokter-card:hover img{
    transform:scale(1.05);
}

.foto-placeholder{
    font-size:60px;
}

/* INFO */
.dokter-info{
    padding:16px;
}

.dokter-info h3{
    color:#111827;
    min-height:48px;
    font-size:18px;
    margin-bottom:10px;
    line-height:1.4;
}

.dokter-info .spesialis{
    margin-bottom:6px;
    color:#d71920;
    font-weight:600;
    min-height:42px;
}

.dokter-info .poli{
    color:#64748b;
    font-size:14px;
}

.dokter-info .poli i{
    color:#d71920;
    margin-right:8px;
    font-size:14px;
}

/* ==============================
   DETAIL DOKTER
================================ */

.dokter-detail{
    max-width:1180px;
}

.dokter-detail h3{
    font-size: 25px;
}

/* ==============================
   DOCTOR CTA PROFILE CARD
================================ */
.dokter-header{
    position:relative;
    display:flex;
    align-items:center;
    gap:55px;
    min-height:300px;
    padding:45px 55px;
    border-radius:32px;
    overflow:hidden;
    background:
    linear-gradient(
        135deg,
        #ffffff 0%,
        #fff5f5 45%,
        #ffe4e6 100%
    );
    box-shadow:0 20px 50px rgba(215,25,32,.15);
    border:none;
    margin-bottom:55px;
}


/* garis merah atas */
.dokter-header::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:8px;
    background:
    linear-gradient(
        90deg,
        #b91c1c,
        #ef4444,
        #fca5a5
    );
}

/* shape kanan */
.dokter-header::after{
    content:"";
    position:absolute;
    right:-120px;
    top:-120px;
    width:350px;
    height:350px;
    border-radius:50%;
    background:
    linear-gradient(
        135deg,
        rgba(215,25,32,.18),
        rgba(255,255,255,0)
    );
}

/* FOTO */
.dokter-header .foto img{
    width:210px;
    height:250px;
    object-fit:contain;
    background:white;
    border-radius:28px;
    border:8px solid rgba(255,255,255,.8);
    box-shadow:0 20px 40px rgba(0,0,0,.18);
    position:relative;
    z-index:2;
}

.dokter-header .foto-placeholder{
    width:180px;
    height:220px;
    border-radius:20px;
    background:#f8fafc;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:70px;
}

/* INFO */
.dokter-header .info{
    position:relative;
    z-index:2;
}


.dokter-header .info::after{
    content:"";
    position:absolute;
    right:-400px;
    bottom:-100px;
    width:500px;
    height:180px;
    background:
    radial-gradient(
        circle,
        rgba(215,25,32,.08) 2px,
        transparent 3px
    );
    background-size:20px 20px;
}

.dokter-header .info h1{
    font-size:42px;
    line-height:1.15;
    font-weight:800;
    color:#0f172a;
    margin-bottom:20px;
}

.dokter-header .info .spesialis{
    display:inline-flex;
    align-items:center;
    background:#d71920;
    color:white;
    padding:10px 22px;
    border-radius:50px;
    font-size:17px;
    font-weight:700;
    box-shadow:0 8px 20px rgba(215,25,32,.25);
}

.dokter-header .info .poli{

    margin-top:18px;

    font-size:18px;

    color:#475569;

    font-weight:500;

}

/* ==============================
   TAB
================================ */
.dokter-tabs{
    display:flex;
    gap:10px;
    border-bottom:1px solid #eee;
    margin-bottom:35px;
}

.dokter-detail .tab-content{
    display:none;
}

.dokter-detail .tab-content.active{
    display:block;
}

.tab-btn{
    background:white;
    border:none;
    padding:14px 25px;
    cursor:pointer;
    font-weight:600;
    color:#64748b;
    font-size:19px;
}

.tab-btn.active{
    color:#d71920;
    border-bottom:3px solid #d71920;
}

/* ==============================
   JADWAL
================================ */
.jadwal-card{
    width:420px;
    background:white;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.jadwal-header{
    padding:18px;
    display:flex;
    align-items:center;
    gap:12px;
    background:#fff5f5;
    color:#111827;
}

.jadwal-header i{
    color:#d71920;
}

.jadwal-list{
    list-style:none;
    padding:0;
    margin:0;
}

.jadwal-item{
    display:flex;
    justify-content:space-between;
    padding:16px 18px;
    border-bottom:1px solid #f1f5f9;
}

.jadwal-item:last-child{
    border-bottom:none;
}

.jadwal-item .hari{
    font-weight:600;
    color:#334155;
}

.jadwal-item .jam{
    color:#64748b;
}

.dokter-statistik,
.dokter-filter-box,
.alphabet-filter,
.dokter-grid{
    width:1180px;
    max-width:90%;
    margin-left:auto;
    margin-right:auto;
}

/* ==============================
   PROFIL DOKTER
================================ */
.profil-card{
    background:white;
    border-radius:24px;
    padding:35px;
    box-shadow:0 15px 40px rgba(15,23,42,.08);
    border:1px solid #f1f5f9;
}

.profil-title span{
    font-size:12px;
    letter-spacing:3px;
    color:#d71920;
    font-weight:700;
}

.profil-title h2{
    margin-top:8px;
    font-size:28px;
    color:#0f172a;
}

.profil-highlight{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin:30px 0;
}

.profil-item{
    display:flex;
    align-items:center;
    gap:18px;
    background:#fff5f5;
    padding:20px;
    border-radius:18px;
}

.profil-item i{
    width:45px;
    height:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#d71920;
    color:white;
    border-radius:50%;
    font-size:20px;
}

.profil-item strong{
    display:block;
    color:#0f172a;
    margin-bottom:5px;
}

.profil-item p{
    margin:0;
    color:#64748b;
}

.profil-description{
    margin-top:25px;
    padding-top:25px;
    border-top:1px solid #e5e7eb;
}

.profil-description p{
    font-size:17px;
    line-height:1.9;
    color:#475569;
    text-align:justify;
}

/* ==============================
   DETAIL SPACING
================================ */
.dokter-detail{
    padding-top:40px;
    padding-bottom:80px;
}

/* ==============================
   HIDDEN CARD SAAT FILTER
================================ */

.dokter-card.dokter-hidden{
    display:none !important;
}

/* ==============================
   MOBILE
================================ */
@media(max-width:600px){
    .dokter-container{
        padding-top:10px !important;
    }

    /* =====================================================
       HERO MOBILE
    ===================================================== */
    .dokter-hero{
        height:300px;
        position:relative;
        overflow:hidden;
        align-items:flex-start;
        background-position:68% center;
    }

    /* -----------------------------------------------------
       OVERLAY MOBILE
    ----------------------------------------------------- */
    .dokter-hero-overlay{
        background:
        linear-gradient(
            90deg,
            rgba(190,0,0,.94) 0%,
            rgba(205,0,0,.72) 42%,
            rgba(205,0,0,.25) 75%,
            rgba(255,255,255,.05) 100%
        );
    }

    /* -----------------------------------------------------
       DOT PATTERN
    ----------------------------------------------------- */
    .dokter-hero::before{
        top:22px;
        left:18px;
        width:90px;
        height:90px;
        background-size:13px 13px;
        opacity:.45;
    }

    /* -----------------------------------------------------
       CONTENT
    ----------------------------------------------------- */
    .dokter-hero-container{
        width:100%;
    }

    .dokter-hero-content{
        max-width:none;
        padding-left:20px;
        padding-right:20px;
        padding-top:-10px;
        padding-bottom:0;
        transform:none;
    }
    
    /* -----------------------------------------------------
       BREADCRUMB
    ----------------------------------------------------- */
    .dokter-breadcrumb{
        display:none;

    }

    /* -----------------------------------------------------
       JUDUL
    ----------------------------------------------------- */
    .dokter-label{
        font-size:30px;
        line-height:1.15;
        font-weight:800;
        margin:0 0 12px;
        color:#fff;
   }

    /* -----------------------------------------------------
       DESKRIPSI
    ----------------------------------------------------- */
    .dokter-hero p{
        font-size:14px;
        line-height:1.55;
        max-width:330px;
        margin:0;
        color:#fff;
    }

    /* =====================================================
       SOFT FADE BAWAH HERO
    ===================================================== */
    .dokter-hero::after{
        height:100px;
        background:
        linear-gradient(
            to bottom,
            rgba(255,255,255,0) 0%,
            rgba(255,255,255,.18) 25%,
            rgba(255,255,255,.65) 65%,
            #fff 100%
        );
        z-index:5;
        pointer-events:none;
    }

    /* =====================================================
       HERO STATS MOBILE
    ===================================================== */
    .dokter-hero-stat-section{
        position:relative;
        z-index:20;
        margin-top:-65px;
        padding:0 14px 28px;
    }

    .dokter-hero-stat-section .dokter-container{
        width:100%;
        max-width:none;
    }

    /* -----------------------------------------------------
       4 CARD SATU BARIS
    ----------------------------------------------------- */
    .dokter-hero-stats{
        display:grid;
        grid-template-columns:
            repeat(3, minmax(0,1fr));
        gap:7px;
        width:100%;
        max-width:none;
        margin:0 auto;
    }

    /* -----------------------------------------------------
       CARD
    ----------------------------------------------------- */
    .dokter-hero-stat{
        min-height:80px;
        padding:10px 4px;
        border-radius:13px;
        border:1px solid #eeeeee;
        background:#fff;
        box-shadow:
            0 8px 22px rgba(0,0,0,.12);
        text-align:center;
    }

    /* -----------------------------------------------------
       ICON
    ----------------------------------------------------- */
    .dokter-hero-stat-icon{
        width:36px;
        height:36px;
        margin-bottom:6px;
        font-size:16px;
        background:#fff0f1;
        color:#d90016;
    }

    /* -----------------------------------------------------
       ANGKA / NILAI
    ----------------------------------------------------- */
    .dokter-hero-stat strong{
        font-size:17px;
        line-height:1.1;
        margin-bottom:3px;
        white-space:nowrap;
        color:#d90016;
    }

    /* -----------------------------------------------------
       LABEL
    ----------------------------------------------------- */
    .dokter-hero-stat span{
        font-size:11px;
        line-height:1.2;
        font-weight:600;
        color:#1f2937;
    }

    /* =====================================================
    FILTER DOKTER MOBILE
    ===================================================== */

    .dokter-filter-box{
        display:flex;
        flex-direction:column;
        align-items:stretch;
        gap:14px;

        width:100%;
        max-width:none;

        margin:0 0 25px;

        padding:20px;

        background:#ffffff;

        border-radius:18px;

        box-shadow:
            0 8px 25px rgba(0,0,0,.06);
    }


    /* ================= SEARCH ================= */

    .dokter-search{
        width:100%;
    }

    .dokter-search input{
        width:100%;
        height:52px;

        display:block;

        box-sizing:border-box;

        background:#fff;

        border:1px solid #dfe3e8;

        border-radius:12px;

        padding:0 16px;

        font-size:14px;

        color:#1f2937;

        box-shadow:
            0 4px 12px rgba(0,0,0,.03);
    }

    .dokter-search input::placeholder{
        color:#94a3b8;
    }

    .dokter-search input:focus{
        outline:none;
        border-color:#d71920;
    }


    /* ================= FILTER ROW ================= */

    .dokter-filter-row{
        display:grid;

        grid-template-columns:
            repeat(2, minmax(0,1fr));

        gap:12px;

        width:100%;
    }


    /* ================= DROPDOWN ================= */

    .dokter-filter{
        width:100%;
    }

    .dokter-filter select{
        width:100%;
        height:52px;

        box-sizing:border-box;

        padding:0 14px;

        border-radius:12px;

        border:1px solid #dfe3e8;

        background:#ffffff;

        color:#1f2937;

        font-size:14px;

        cursor:pointer;
    }

    .dokter-filter select:focus{
        outline:none;
        border-color:#d71920;
    }

    /* ==============================
    FILTER ABJAD MOBILE
    ================================ */

    .alphabet-filter{
        width:100%;
        max-width:100%;

        display:flex;
        flex-wrap:wrap;

        gap:8px;

        overflow:visible;

        margin-bottom:30px;
    }

    .alphabet-filter button{
        flex:0 0 auto;

        min-width:38px;

        padding:8px 11px;
    }

    /* =====================================================
    CARD DAFTAR DOKTER
    ===================================================== */

    .dokter-grid{
        display:grid;
        grid-template-columns:1fr;
        gap:14px;
    }


    /* ===============================
    CARD
    ================================ */

    .dokter-card{
        position:relative;

        display:flex;
        align-items:center;

        width:100%;
        min-height:125px;

        padding:12px;

        background:#fff;

        border-radius:16px;

        border:1px solid #f1f1f1;

        box-shadow:
            0 5px 18px rgba(0,0,0,.06);

        cursor:pointer;

        overflow:hidden;

        box-sizing:border-box;

        transition:
            transform .2s ease,
            box-shadow .2s ease;
    }


    /* ===============================
    FOTO
    ================================ */

    .dokter-photo{
        flex:0 0 105px;

        width:105px;
        height:105px;

        border-radius:12px;

        overflow:hidden;

        background:#f8f8f8;

        display:flex;
        align-items:flex-end;
        justify-content:center;
    }


    .dokter-photo img{
        width:100%;
        height:100%;

        object-fit:contain;

        display:block;
    }


    /* ===============================
    INFO
    ================================ */

    .dokter-info{
        flex:1;

        min-width:0;

        padding:
            4px 8px 4px 14px;
    }


    /* ===============================
    NAMA
    ================================ */

    .dokter-info h3{
        margin:0 0 4px;

        font-size:16px;

        line-height:1.35;

        font-weight:700;

        color:#0f2747;
    }


    /* ===============================
    SPESIALIS
    ================================ */

    .dokter-info .spesialis{
        margin:0 0 7px;

        font-size:13px;

        line-height:1.35;

        font-weight:600;

        color:#e00012;
    }


    /* ===============================
    POLI
    ================================ */

    .dokter-info .poli{
        display:flex;
        align-items:flex-start;

        gap:6px;

        margin:0;

        font-size:12px;

        line-height:1.4;

        color:#64748b;
    }


    .dokter-info .poli i{
        flex:0 0 auto;

        margin-top:2px;

        font-size:11px;

        color:#475569;
    }

        /* =====================================================
       DETAIL DOKTER - MOBILE
       TIDAK MENGGANGGU VERSI PC
    ===================================================== */

    /* ==============================
       CONTAINER DETAIL
    ============================== */

    .dokter-detail{
        width:100%;
        max-width:none;
        box-sizing:border-box;
        padding-top:20px;
        padding-bottom:60px;
        overflow:hidden;
    }


    /* ==============================
       HEADER DOKTER
    ============================== */

    .dokter-header{
        width:100%;
        min-height:0;

        display:flex;
        align-items:center;

        gap:16px;

        box-sizing:border-box;

        padding:20px 16px;

        margin-bottom:28px;

        border-radius:22px;

        overflow:hidden;

        box-shadow:
            0 12px 30px rgba(215,25,32,.12);
    }


    /* garis merah atas */
    .dokter-header::before{
        height:5px;
    }


    /* shape dekorasi kanan */
    .dokter-header::after{
        right:-150px;
        top:-150px;
        width:300px;
        height:300px;
    }


    /* ==============================
       FOTO DOKTER
    ============================== */

    .dokter-header .foto{
        flex:0 0 105px;
        width:105px;
    }

    .dokter-header .foto img{
        width:105px;
        height:125px;

        object-fit:contain;

        border-radius:16px;

        border:5px solid rgba(255,255,255,.85);

        box-shadow:
            0 10px 22px rgba(0,0,0,.12);
    }


    .dokter-header .foto-placeholder{
        width:105px;
        height:125px;

        border-radius:16px;

        font-size:45px;
    }


    /* ==============================
       INFO DOKTER
    ============================== */

    .dokter-header .info{
        flex:1;
        min-width:0;
    }


    .dokter-header .info h1{
        font-size:23px;
        line-height:1.2;

        font-weight:800;

        margin:0 0 10px;

        color:#0f172a;

        overflow-wrap:anywhere;
        word-break:normal;
    }


    .dokter-header .info .spesialis{
        display:inline-flex;

        max-width:100%;

        box-sizing:border-box;

        padding:7px 13px;

        border-radius:30px;

        font-size:13px;
        line-height:1.25;

        font-weight:700;

        white-space:normal;

        box-shadow:
            0 5px 14px rgba(215,25,32,.20);
    }


    .dokter-header .info .poli{
        margin-top:10px;

        font-size:14px;

        line-height:1.4;

        color:#475569;

        font-weight:500;

        overflow-wrap:anywhere;
    }


    /* dekorasi titik jangan sampai membuat overflow */
    .dokter-header .info::after{
        right:-220px;
        bottom:-100px;
        width:300px;
        height:150px;
    }


    /* ==============================
       TAB
    ============================== */

    .dokter-tabs{
        display:grid;
        grid-template-columns:repeat(2,1fr);

        gap:0;

        width:100%;

        margin-bottom:28px;

        border-bottom:1px solid #e5e7eb;
    }


    .tab-btn{
        width:100%;

        padding:12px 10px;

        background:#fff;

        border:none;

        font-size:17px;

        font-weight:700;

        color:#64748b;
    }


    .tab-btn.active{
        color:#d71920;

        border-bottom:3px solid #d71920;
    }


    /* ==============================
       TAB CONTENT
    ============================== */

    .dokter-detail .tab-content{
        width:100%;
        max-width:none;

        box-sizing:border-box;
    }


    /* ==============================
       JADWAL
    ============================== */

    .jadwal-card{
        width:100%;
        max-width:none;

        box-sizing:border-box;

        border-radius:18px;

        overflow:hidden;

        box-shadow:
            0 8px 25px rgba(0,0,0,.07);
    }


    .jadwal-header{
        padding:15px;

        gap:10px;

        font-size:15px;
    }


    .jadwal-item{
        display:flex;

        align-items:center;

        gap:12px;

        padding:14px 15px;

        font-size:14px;
    }


    .jadwal-item .hari{
        flex:1;
    }


    .jadwal-item .jam{
        text-align:right;
        white-space:nowrap;
    }


    /* ==============================
       PROFIL DOKTER
    ============================== */

    .profil-card{
        width:100%;

        box-sizing:border-box;

        padding:22px 18px;

        border-radius:20px;

        overflow:hidden;
    }


    .profil-title span{
        font-size:11px;

        letter-spacing:2.5px;
    }


    .profil-title h2{
        margin-top:7px;

        font-size:24px;

        line-height:1.25;
    }


    /* ==============================
       HIGHLIGHT
    ============================== */

    .profil-highlight{
        display:grid;

        grid-template-columns:1fr;

        gap:12px;

        margin:22px 0;
    }


    .profil-item{
        display:flex;

        align-items:center;

        gap:13px;

        padding:15px;

        border-radius:16px;

        box-sizing:border-box;
    }


    .profil-item i{
        flex:0 0 42px;

        width:42px;
        height:42px;

        font-size:18px;
    }


    .profil-item strong{
        font-size:14px;

        margin-bottom:3px;
    }


    .profil-item p{
        font-size:13px;

        line-height:1.4;

        overflow-wrap:anywhere;
    }


    /* ==============================
       DESKRIPSI PROFIL
    ============================== */

    .profil-description{
        margin-top:20px;

        padding-top:20px;
    }


    .profil-description p{
        margin:0;

        font-size:15px;

        line-height:1.8;

        color:#475569;

        text-align:left;

        overflow-wrap:anywhere;
        word-break:normal;
    }
}
