/* =========================================================
   MODAL PROFIL PEJABAT
   Dinas ESDM Provinsi Sumatera Selatan
========================================================= */

/* BACKDROP */
#pejabatModal .modal-content {
    border: 0;
    border-radius: 24px;
    overflow: hidden;
    background: #f8f9fa;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* BODY */
#pejabatModal .modal-body {
    padding-top: 0;
}

/* FOTO */
#pejabatModal .img-fluid {
    transition: 0.25s ease;
}

#pejabatModal .img-fluid:hover {
    transform: translateY(-2px);
}

/* NAMA */
#pejabatModal h2 {
    font-size: 2rem;
    line-height: 1.2;
}

/* JABATAN */
#pejabatModal h5 {
    font-size: 1.15rem;
}

/* CARD DETAIL */
#pejabatModal .pejabat-deskripsi {
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

/* =========================================================
   GRID INFO
========================================================= */

#pejabatModal .info-grid {
    display: grid;
    gap: 10px;
}

@media (min-width: 768px) {
    #pejabatModal .info-grid {
        grid-template-columns: 1fr 1fr;
    }
}

#pejabatModal .info-item {
    display: flex;
    flex-direction: column;
    padding: 12px 14px;
    border-radius: 14px;
    background: #f8f9fa;
    border: 1px solid rgba(0,0,0,0.04);
}

#pejabatModal .info-item .label {
    font-size: 0.68rem;
    text-transform: uppercase;
    color: #6c757d;
    font-weight: 700;
    margin-bottom: 2px;
    letter-spacing: 0.5px;
}

#pejabatModal .info-item .value {
    font-size: 1rem;
    font-weight: 600;
    color: #212529;
}

/* =========================================================
   SECTION CARD
========================================================= */

#pejabatModal .section-card {
    border-radius: 16px;
    padding: 14px;
    margin-bottom: 14px;
    background: #f8f9fa;
    transition: 0.2s ease;
}

#pejabatModal .section-card:hover {
    transform: translateY(-2px);
}

#pejabatModal .section-card.success {
    background: #e7f4ec;
}

#pejabatModal .section-card.warning {
    background: #fff4e5;
}

#pejabatModal .section-title {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #495057;
    letter-spacing: 0.5px;
}

/* =========================================================
   LIST STYLE
========================================================= */

#pejabatModal .section-card ol {
    margin: 0;
    padding-left: 18px;
    font-size: 0.92rem;
    text-align: left;
}

#pejabatModal .section-card ol li {
    margin-bottom: 8px;
    line-height: 1.5;
    color: #495057;
    text-align: left;
}

/* =========================================================
   BUTTON
========================================================= */

#pejabatModal .btn-warning {
    background: #ffc107;
    border: none;
    color: #212529;
    font-weight: 600;
    transition: 0.2s ease;
}

#pejabatModal .btn-warning:hover {
    transform: translateY(-1px);
    filter: brightness(0.98);
}

/* BUTTON TUTUP */
#pejabatModal .modal-footer .btn-light {
    background: #f1f3f5;
    border: none;
    transition: 0.2s ease;
}

#pejabatModal .modal-footer .btn-light:hover {
    background: #e9ecef;
}

/* =========================================================
   MOBILE VERSION
========================================================= */

@media (max-width: 768px) {

    #pejabatModal .modal-dialog {
        margin: 0.75rem;
    }

    #pejabatModal .modal-content {
        border-radius: 20px;
    }

    #pejabatModal h2 {
        font-size: 1.55rem;
        text-align: center;
    }

    #pejabatModal h5 {
        font-size: 1rem;
        text-align: center;
    }

    #pejabatModal p {
        text-align: center;
    }

    #pejabatModal .pejabat-deskripsi {
        border-radius: 18px;
    }

    #pejabatModal .card-body {
        padding: 1rem !important;
    }

    #pejabatModal .section-card {
        padding: 12px;
    }

    #pejabatModal .section-card ol {
        font-size: 0.88rem;
        padding-left: 18px;
    }

    #pejabatModal .section-card ol li {
        text-align: left !important;
        line-height: 1.45;
    }

    #pejabatModal .info-item {
        padding: 10px 12px;
    }

    #pejabatModal .info-item .value {
        font-size: 0.95rem;
    }

    #pejabatModal .modal-footer {
        justify-content: center !important;
    }

}

/* =========================================================
   SCROLLBAR HALUS
========================================================= */

#pejabatModal ::-webkit-scrollbar {
    width: 6px;
}

#pejabatModal ::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.15);
    border-radius: 10px;
}