/* --- ROOT & GLOBAL --- */
:root {
    --blue-desa: #1e5f94;
    --blue-darker: #0d3b66;
    --grad-start: #b3d7ff; 
    --grad-end: #f0f7ff;
}

.profil-bg {
    background: linear-gradient(180deg, var(--grad-start) 0%, var(--grad-end) 100%);
    background-attachment: fixed;
    min-height: 100vh;
    /* Diselaraskan ke Poppins agar seragam */
    font-family: 'Poppins', sans-serif !important;
}

.title-main {
    font-family: 'Playfair Display', serif !important;
    font-weight: 900;
    color: var(--blue-darker);
}

.text-blue { color: var(--blue-desa) !important; }
.text-blue-dark { color: var(--blue-darker) !important; }

/* --- HEADINGS --- */
.profil-heading {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 800;
    color: var(--blue-darker);
    border-left: 7px solid var(--blue-desa);
    padding-left: 15px;
    text-transform: uppercase;
    font-size: 1.5rem;
}

/* --- QUICK NAV ICONS --- */
.quick-nav-container {
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    font-family: 'Poppins', sans-serif !important;
}

.nav-icon i {
    font-size: 1.5rem;
    color: var(--blue-desa);
    transition: 0.3s;
}

.nav-icon p {
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 5px;
    color: #444;
}

.nav-icon.active i { 
    color: var(--blue-darker); 
    transform: scale(1.2); 
}

/* --- STATISTIC CARDS --- */
.info-card-stat {
    background: white;
    padding: 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 30px rgba(30, 95, 148, 0.12);
    transition: 0.3s;
}

.info-card-stat:hover { 
    transform: translateY(-5px); 
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.icon-box.blue { background: #1e5f94; }
.icon-box.green { background: #27ae60; }
.icon-box.pink { background: #e84393; }
.icon-box.sky { background: #0984e3; }

.stat-label { 
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600; 
    color: #666; 
    font-size: 0.9rem; 
    margin: 0; 
}

.stat-value { 
    font-family: 'Poppins', sans-serif !important;
    font-weight: 800; 
    color: #000; 
    margin: 0; 
}

.stat-value span { 
    font-size: 0.9rem; 
    font-weight: 500; 
    color: #888; 
}

/* --- TABLES & JOB CARDS --- */
.custom-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    overflow: hidden;
}

.job-table {
    font-family: 'Poppins', sans-serif !important;
}

.job-table thead {
    background: var(--blue-desa);
    color: white;
}

.job-table td { 
    font-weight: 500; 
    color: #333; 
    padding: 12px; 
}

.job-mini-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    border-bottom: 4px solid var(--blue-desa);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    font-family: 'Poppins', sans-serif !important;
    transition: 0.3s;
}

.job-mini-card:hover {
    transform: translateY(-3px);
}

.job-mini-card i { 
    font-size: 2rem; 
    color: var(--blue-desa); 
}

.job-mini-card p { 
    font-weight: 600; 
    color: #555; 
    margin-bottom: 5px; 
    font-size: 0.85rem;
}

.job-mini-card h4 { 
    font-weight: 800; 
    color: #000; 
    margin: 0;
}

/* --- RESPONSIVITAS --- */
@media (max-width: 768px) {
    .display-3 { font-size: 2.5rem; }
    .quick-nav-container { padding: 15px; }
    .nav-icon i { font-size: 1.2rem; }
}