/* =========================================
   GLOBAL & VARS
   ========================================= */
:root {
    --primary: #0056D2;
    --text: #1E293B;
    --muted: #64748B;
    --bg: #F8FAFC;
    --white: #FFFFFF;
    --border: #E2E8F0;
    --radius: 12px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}

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

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
    background: rgba(255, 255, 255, 0.85);
    /* Semi-transparent */
    height: 90px;
    /* Increased height */
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    /* Soft shadow */
    backdrop-filter: blur(12px);
    /* Blur effect */
    -webkit-backdrop-filter: blur(12px);
    /* Safari support */
    transition: 0.3s;
}

.navbar-inner {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 55px;
    /* Slightly larger logo */
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    font-weight: 600;
    color: var(--muted);
    font-size: 15px;
    /* Slightly larger text */
    transition: 0.2s;
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-right {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-auth {
    background: var(--primary);
    color: white;
    padding: 12px 28px;
    /* Larger button */
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
}

.btn-auth:hover {
    background: #0044A5;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    font-size: 28px;
    /* Larger icon */
    cursor: pointer;
    color: var(--text);
}

/* =========================================
   JOB CARD (DESIGN BARU - REFERENCE)
   ========================================= */
.job-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.job-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.job-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(0, 86, 210, 0.1);
    transform: translateY(-4px);
}

/* Badge Merah di Atas Gambar */
.badge-urgency {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #EF4444;
    color: white;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 50px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.job-img {
    height: 180px;
    background: #eee;
    position: relative;
}

.job-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.job-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.job-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 5px;
    line-height: 1.3;
}

.job-loc {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Box Gaji Biru Muda */
.salary-box {
    background: #F0F9FF;
    border: 1px solid #BAE6FD;
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 15px;
}

.salary-val {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
}

.salary-est {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
    font-weight: 500;
}

/* Benefit Pills */
.benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.pill {
    font-size: 10px;
    padding: 4px 10px;
    background: #F1F5F9;
    border-radius: 6px;
    color: #475569;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.pill i {
    color: #10B981;
    font-size: 12px;
}

/* Icon Centang Hijau */

/* Footer Card */
.job-foot {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.jc-deadline {
    font-size: 12px;
    color: #EF4444;
    font-weight: 700;
}

.btn-detail-sm {
    background: #EFF6FF;
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.btn-detail-sm:hover {
    background: var(--primary);
    color: white;
}

/* =========================================
   NEWS CARD
   ========================================= */
.news-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: 0.2s;
}

.news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.news-img {
    height: 180px;
    width: 100%;
    object-fit: cover;
}

.news-body {
    padding: 20px;
}

/* =========================================
   FOOTER & RESPONSIVE
   ========================================= */
footer {
    background: #003049;
    /* Dark Blue */
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-brand img {
    height: 80px;
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
}

.footer-col h5 {
    color: white;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    margin-bottom: 12px;
    font-size: 14px;
    color: #cbd5e1;
    transition: 0.2s;
}

.footer-col a:hover {
    color: white;
    padding-left: 5px;
}

.footer-btm {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 40px;
    font-size: 13px;
    color: #94a3b8;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: white;
    font-weight: 600;
}

.page-link.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .job-grid {
        grid-template-columns: 1fr;
    }

    /* MENU MOBILE FIX */
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 76px;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        border-top: 1px solid var(--border);
    }
}

/* Header Clean */
.job-header-clean {
    margin-bottom: 20px;
}

.header-top {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 10px;
}

.company-logo-small {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #eee;
}

.header-text {
    flex: 1;
}

.job-title-main {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin: 0 0 4px;
    line-height: 1.3;
}

.company-name-text {
    font-size: 13px;
    color: var(--text-muted);
}

.btn-love {
    background: none;
    border: none;
    font-size: 24px;
    color: #94A3B8;
    cursor: pointer;
}

.header-details {
    margin-bottom: 15px;
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #333;
    margin-bottom: 6px;
}

.detail-row i {
    color: var(--primary);
    width: 20px;
    text-align: center;
    font-size: 16px;
}

/* BADGE TERAKHIR DIPERBARUI (Baru) */
.last-updated-badge {
    font-size: 11px;
    color: #64748B;
    font-style: italic;
    border: 1px solid #E2E8F0;
    padding: 6px 12px;
    border-radius: 50px;
    display: inline-block;
    background: #fff;
}

.divider-thin {
    border: 0;
    border-top: 1px solid #F1F5F9;
    margin: 25px 0;
}

/* GRID INFO 4 POIN DENGAN ICON (Sesuai Screenshot) */
.info-grid-4 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px 20px;
    margin-bottom: 20px;
}

.ig-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ig-label {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Warna Icon di Grid */
.ig-label i {
    color: var(--primary);
    font-size: 18px;
}


/* SECTIONS & TAGS */
.section-box {
    margin-bottom: 30px;
}

.section-label {
    font-size: 15px;
    font-weight: 600;
    color: #111;
    margin-bottom: 12px;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Tag Biru (Skill) */
.blue-tag {
    background: #EFF6FF;
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blue-tag i {
    font-size: 14px;
}

/* Tag Hijau (Benefit) */
.benefit-tag {
    background: #F0FDF4;
    color: #16A34A;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.benefit-tag i {
    font-size: 14px;
}

.job-description {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
}

/* GAJI BOX */
.salary-highlight-box {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    padding: 15px 20px;
    border-radius: 10px;
    display: block;
}

.salary-main-text {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.salary-sub-text {
    font-size: 13px;
    color: var(--text-muted);
}

/* STICKY FOOTER */
.sticky-apply-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    padding: 15px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
    z-index: 999;
    border-top: 1px solid #eee;
}

.btn-apply-full {
    display: block;
    width: 100%;
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    transition: 0.2s;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.btn-apply-full:hover {
    background: var(--primary-dark);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .info-grid-4 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* 1 Kolom di HP jika sempit, atau tetap 2 */
}

/* =========================================
   MODERN AUTH PAGE (LOGIN / REGISTER)
   ========================================= */
.auth-wrapper {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: #F8FAFC;
}

.auth-box {
    width: 100%;
    max-width: 420px;
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 40px;
    border: 1px solid #E2E8F0;
    text-align: left;
    /* Reset text align */
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-logo {
    height: 50px;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.auth-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 5px;
}

.auth-subtitle {
    font-size: 14px;
    color: var(--text-muted);
}

/* Form Elements */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 8px;
    display: block;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    border: 1px solid #CBD5E1;
    border-radius: 8px;
    transition: 0.2s;
    background: #F8FAFC;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px var(--primary-soft);
}

/* Button Auth Full Width */
.btn-auth-full {
    width: 100%;
    background: var(--primary);
    color: white;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: 0.2s;
    margin-top: 10px;
}

.btn-auth-full:hover {
    background: #0044a5;
    color: white;
    /* pastikan teks tetap putih */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 68, 165, 0.2);
}

/* Footer Link */
.auth-footer {
    text-align: center;
    margin-top: 25px;
    font-size: 14px;
    color: var(--text-muted);
}

.auth-footer a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Alert Box */
.alert {
    padding: 12px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-danger {
    background: #FEF2F2;
    color: #EF4444;
    border: 1px solid #FECACA;
}

.alert-success {
    background: #ECFDF5;
    color: #10B981;
    border: 1px solid #A7F3D0;
}

/* =========================================
   UPDATE TAMPILAN JOB DETAIL (MODERN - FINAL)
   ========================================= */

/* Grid Informasi 4 Kolom */
.info-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 35px;
}

/* Kotak Item (Card Kecil) */
.ig-modern-item {
    background: #FFFFFF;
    border: 1px solid #F1F5F9;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    /* Flexbox agar icon di kiri, teks di kanan */
    align-items: center;
    /* Rata tengah vertikal */
    gap: 15px;
    /* Jarak antara icon dan teks */
    transition: 0.3s;
}

.ig-modern-item:hover {
    border-color: #BFDBFE;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Lingkaran Icon */
.ig-icon-box {
    width: 50px;
    height: 50px;
    background: #EFF6FF;
    /* Background Biru Muda */
    color: var(--primary);
    /* Warna Icon Biru Utama */
    border-radius: 50%;
    /* BENTUK LINGKARAN */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    /* Ukuran Icon */
    flex-shrink: 0;
    /* Agar lingkaran tidak penyet */
}

/* Label Kecil (Pendidikan, Gender, dll) */
.ig-label {
    font-size: 12px;
    color: #64748B;
    margin-bottom: 2px;
}

/* Isi Data (SMA/SMK, Pria, dll) */
.ig-value {
    font-size: 15px;
    font-weight: 700;
    color: #0F172A;
}

/* Judul Section dengan Aksen Garis */
.section-title-modern {
    font-size: 18px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title-modern::before {
    content: '';
    display: block;
    width: 4px;
    height: 24px;
    background: var(--primary);
    border-radius: 4px;
}

/* Update agar Icon pasti terlihat */
.ig-icon-box i {
    font-size: 24px;
    /* Ukuran icon */
    line-height: 1;
    /* Jarak baris rapat */
    display: block;
    /* Pastikan block */
}

/* UPDATE STYLE BENEFIT TAG */
.benefit-tag {
    background: #FFFFFF;
    /* Background Putih */
    color: #334155;
    /* Teks Abu Gelap */
    border: 1px solid #CBD5E1;
    /* Garis Abu Tipis */
    font-size: 13px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 50px;
    /* Bentuk Pill / Kapsul */
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
}

.benefit-tag:hover {
    border-color: #10B981;
    /* Hover jadi Hijau */
    color: #047857;
    background: #ECFDF5;
    transform: translateY(-2px);
}

.benefit-tag i {
    font-size: 16px;
    color: #10B981;
    /* Ikon selalu Hijau */
}

/* =========================================
   DESAIN BOX GAJI (FLAT BLUE GRADIENT)
   ========================================= */

.salary-box-modern {
    /* Gradasi Background Biru Halus */
    background: linear-gradient(180deg, #F8FAFC 0%, #E0F2FE 100%);
    border: 1px solid #BAE6FD;
    /* Border Biru Muda */
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    overflow: hidden;
    /* Tidak ada shadow tebal biar kesan 'Flat' */
}

/* Garis Aksen Kiri (Opsional, Biru Tua) */
.salary-box-modern::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: var(--primary);
}

/* Wadah Icon (Flat Blue, No Shadow) */
.sb-icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--primary);
    /* Biru Solid */
    color: #ffffff;
    /* Icon Putih */
    border-radius: 50%;
    /* Lingkaran */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
    box-shadow: none;
    /* REQUEST: Hapus Shadow */
}

.sb-content {
    flex: 1;
}

/* Teks Gaji Utama */
.sb-main-amount {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    /* Biru Utama */
    line-height: 1.2;
    margin-bottom: 5px;
}

.sb-subtitle {
    font-size: 13px;
    color: #475569;
    /* Abu agak gelap */
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Garis Pemisah Biru Tipis */
.sb-divider {
    border-top: 1px dashed #93C5FD;
    margin: 15px 0;
}

.sb-idr-label {
    font-size: 12px;
    color: #64748B;
    margin-bottom: 2px;
}

.sb-idr-amount {
    font-size: 20px;
    font-weight: 800;
    color: #0044a5;
    /* Hijau tetap dipakai untuk Rupiah (Asosiasi Uang) */
    letter-spacing: -0.5px;
}

/* Responsif HP */
@media (max-width: 480px) {
    .salary-box-modern {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .salary-box-modern::before {
        width: 100%;
        height: 5px;
        top: 0;
        bottom: auto;
    }

    .sb-subtitle {
        justify-content: center;
    }
}

/* =========================================
   USER DROPDOWN MENU (ROUNDED BLUE + STABIL)
   ========================================= */

.user-dropdown {
    position: relative;
    display: inline-block;
}

/* Tombol Trigger (ROUNDED BIRU) */
.user-dropdown .btn-auth {
    background: var(--primary);
    /* Warna Biru */
    color: white;
    /* Teks Putih */
    padding: 10px 24px;
    /* Ukuran tombol pas */
    border-radius: 50px;
    /* Bulat Penuh */
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 700;
    font-size: 13px;
    transition: 0.2s;
}

/* Efek Hover Tombol */
.user-dropdown .btn-auth:hover {
    background: #0044A5;
    /* Biru lebih gelap saat hover */
    transform: translateY(-2px);
    /* Efek naik sedikit */
    box-shadow: 0 6px 15px rgba(0, 86, 210, 0.25);
}

/* Container Menu Dropdown */
.dropdown-content {
    display: none;
    position: absolute;
    right: 0;

    /* Jarak menu dari tombol (130% dari tinggi tombol) */
    top: 130%;

    background-color: #ffffff;
    min-width: 200px;

    /* Desain Kotak Menu */
    border: none;
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    z-index: 1000;
    padding: 8px;
}

/* --- SOLUSI ANTI ILANG (JEMBATAN TRANSPARAN) --- */
/* Area transparan ini menghubungkan tombol & menu */
.dropdown-content::before {
    content: '';
    position: absolute;
    top: -30px;
    /* Menjulur ke atas sampai kena tombol */
    left: 0;
    width: 100%;
    height: 30px;
    background: transparent;
    /* Tidak terlihat */
}

/* Tampilkan saat di-hover */
.user-dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.2s ease-in-out;
}

/* Link di dalam Menu */
.dropdown-content a {
    color: #475569;
    padding: 12px 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: 0.1s;
    margin-bottom: 2px;
}

.dropdown-content a:hover {
    background-color: #F1F5F9;
    color: var(--primary);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

/* =========================================
   DASHBOARD KANDIDAT (MODERN)
   ========================================= */

/* 1. Header Dashboard */
.dash-welcome {
    background: white;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

/* 2. Statistik Grid (Kotak Angka) */
.dash-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

/* Base Card Style */
.stat-card {
    border-radius: 16px;
    padding: 25px;
    color: white;
    /* Teks Putih agar kontras */
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Variasi Warna (Gradasi) */
.stat-blue {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.stat-orange {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    box-shadow: 0 8px 20px rgba(217, 119, 6, 0.3);
}

.stat-green {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.3);
}

/* Typography di dalam Card */
.stat-number {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 5px;
    line-height: 1;
    z-index: 2;
}

.stat-label {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Icon sebagai Background (Watermark) */
.stat-icon-bg {
    position: absolute;
    right: -10px;
    bottom: -10px;
    font-size: 80px;
    opacity: 0.15;
    /* Transparan */
    transform: rotate(-15deg);
    z-index: 1;
}

.stat-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.stat-info h4 {
    font-size: 24px;
    font-weight: 800;
    color: #0F172A;
    margin: 0;
    line-height: 1;
}

.stat-info p {
    font-size: 13px;
    color: #64748B;
    margin: 5px 0 0;
}

/* 3. List Lamaran (Card Style) */
.app-card {
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: 0.2s;
}

.app-card:hover {
    border-color: var(--primary);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.app-img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
    background: #eee;
    flex-shrink: 0;
}

.app-content {
    flex: 1;
}

.app-title {
    font-size: 16px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 5px;
    display: block;
}

.app-meta {
    font-size: 13px;
    color: #64748B;
    display: flex;
    gap: 15px;
    align-items: center;
}

.app-meta i {
    color: var(--primary);
}

/* Badge Status */
.status-badge {
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    background: #F1F5F9;
    color: #64748B;
    font-weight: 600;
}