/* ================================================================= */
/* 1. RESET & GLOBAL CORE STYLES                                    */
/* ================================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
    scroll-behavior: smooth;
}
body {
    color: #333333;
    line-height: 1.6;
    background-color: #ffffff;
    overflow-x: hidden;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none !important;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
.section-padding {
    padding: 60px 0;
}
@media (min-width: 768px) {
    .section-padding { padding: 100px 0; }
}
.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 15px;
    color: #1a365d;
    font-weight: 700;
}
@media (min-width: 768px) {
    .section-title { font-size: 2.5rem; }
}
.section-subtitle {
    font-size: 1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #666666;
    padding: 0 15px;
}
.main-content { 
    margin-top: 80px; 
}

/* --- GLOBAL BUTTONS --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    font-size: 0.95rem;
}
.btn-primary {
    background-color: #0056b3;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
}
.btn-primary:hover {
    background-color: #004085;
    transform: translateY(-2px);
}
.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}
.btn-secondary:hover {
    background-color: #ffffff;
    color: #1a365d;
    transform: translateY(-2px);
}

/* ================================================================= */
/* 2. COMPONENT: FIXED SITE HEADER & NAVIGATION                     */
/* ================================================================= */
.site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    background-color: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05) !important;
    z-index: 9999 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 15px 5% !important;
    height: 80px !important;
    box-sizing: border-box !important;
}
.logo-container .main-logo {
    height: 45px !important;
    object-fit: contain !important;
    display: block !important;
}

.site-header ul,
.main-navigation ul {
    list-style: none !important;
    list-style-type: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
}
.site-header ul li,
.main-navigation ul li {
    list-style: none !important;
    list-style-type: none !important;
    margin: 0 0 0 25px !important;
    padding: 0 !important;
}
.main-navigation ul li:first-child {
    margin-left: 0 !important;
}
.main-navigation ul li a {
    font-weight: 600 !important;
    color: #4a5568 !important;
    font-size: 0.95rem !important;
    transition: color 0.3s ease !important;
    padding: 8px 0 !important;
    display: inline-block !important;
    text-decoration: none !important;
}
.main-navigation ul li a:hover,
.main-navigation ul li a.active {
    color: #0056b3 !important;
}
.main-navigation ul li a.btn-login {
    background-color: #edf2f7 !important;
    padding: 8px 18px !important;
    border-radius: 6px !important;
    color: #2d3748 !important;
    transition: all 0.3s ease !important;
}
.main-navigation ul li a.btn-login:hover,
.main-navigation ul li a.btn-login.active {
    background-color: #1a365d !important;
    color: #ffffff !important;
}

.mobile-menu-toggle {
    display: none !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    width: 30px !important;
    height: 21px !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    z-index: 10001 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}
.mobile-menu-toggle span {
    width: 100% !important;
    height: 3px !important;
    background-color: #1a365d !important;
    border-radius: 3px !important;
    transition: all 0.3s ease !important;
    display: block !important;
}

@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: flex !important;
    }
    .main-navigation {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 280px !important;
        height: 100vh !important;
        background-color: #ffffff !important;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1) !important;
        transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
        padding: 100px 40px !important;
        z-index: 10000 !important;
        box-sizing: border-box !important;
        display: block !important;
    }
    .main-navigation.active {
        right: 0 !important;
    }
    .main-navigation ul {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    .main-navigation ul li {
        margin: 0 0 25px 0 !important;
        width: 100% !important;
    }
    .main-navigation ul li a {
        font-size: 1.1rem !important;
        display: block !important;
        width: 100% !important;
    }
    .main-navigation ul li a.btn-login {
        text-align: center !important;
        margin-top: 10px !important;
    }
    .mobile-menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px) !important; }
    .mobile-menu-toggle.open span:nth-child(2) { opacity: 0 !important; }
    .mobile-menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(7px, -8px) !important; }
}

/* ================================================================= */
/* 3. LAYOUT PAGE: INDEX / HOMEPAGE                                 */
/* ================================================================= */
.hero-section {
    position: relative;
    background: linear-gradient(rgba(26, 54, 93, 0.85), rgba(26, 54, 93, 0.85)), url('assets/images/banner.png') center/cover no-repeat;
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
}
@media (min-width: 768px) {
    .hero-section { padding: 140px 0; }
}
.hero-content h1 { font-size: 2.2rem; font-weight: 700; margin-bottom: 20px; line-height: 1.3; max-width: 950px; margin-left: auto; margin-right: auto; padding: 0 10px; }
@media (min-width: 768px) { .hero-content h1 { font-size: 3.5rem; line-height: 1.2; } }
.hero-content p { font-size: 1.05rem; max-width: 800px; margin: 0 auto 40px auto; opacity: 0.9; padding: 0 15px; }
@media (min-width: 768px) { .hero-content p { font-size: 1.25rem; } }
.hero-buttons { display: flex; flex-direction: column; gap: 15px; align-items: center; justify-content: center; }
@media (min-width: 480px) { .hero-buttons { flex-direction: row; } }
.overview-section { background-color: #f8fafc; }
.overview-grid { display: flex; flex-direction: column-reverse; gap: 40px; }
@media (min-width: 992px) { .overview-grid { flex-direction: row; align-items: center; gap: 60px; } }
.overview-text { flex: 1; }
.overview-text h3 { font-size: 1.6rem; color: #1a365d; margin-bottom: 20px; line-height: 1.3; }
@media (min-width: 768px) { .overview-text h3 { font-size: 2rem; } }
.overview-text p { color: #4a5568; font-size: 1rem; margin-bottom: 20px; text-align: justify; }
.overview-image-container { flex: 1; box-shadow: 0 10px 30px rgba(0,0,0,0.06); border-radius: 8px; overflow: hidden; height: 260px; }
@media (min-width: 768px) { .overview-image-container { height: 380px; } }
.overview-image-container img { width: 100%; height: 100%; object-fit: cover; }
.filter-controls { display: flex; flex-direction: column; align-items: center; gap: 20px; margin-bottom: 40px; padding: 0 15px; }
.search-wrapper { position: relative; width: 100%; max-width: 450px; }
.search-input { width: 100%; padding: 14px 20px; border: 2px solid #e2e8f0; border-radius: 30px; font-size: 1rem; outline: none; transition: all 0.3s ease; }
.search-input:focus { border-color: #0056b3; box-shadow: 0 4px 12px rgba(0,86,179,0.1); }
.filter-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.filter-btn { background-color: #f1f5f9; color: #4a5568; border: none; padding: 10px 20px; font-size: 0.9rem; font-weight: 600; border-radius: 20px; cursor: pointer; transition: all 0.3s ease; }
.filter-btn.active, .filter-btn:hover { background-color: #0056b3; color: #ffffff; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 25px; padding: 0 15px; }
.service-card { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 8px; overflow: hidden; transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 12px 30px rgba(0,0,0,0.08); border-color: #0056b3; }
.service-img-placeholder { height: 180px; background-color: #edf2f7; }
.service-img-placeholder img { width: 100%; height: 100%; object-fit: cover; }
.service-info { padding: 24px; flex-grow: 1; display: flex; flex-direction: column; }
.service-info h4 { font-size: 1.15rem; color: #1a365d; margin-bottom: 12px; font-weight: 700; }
.service-info p { font-size: 0.95rem; color: #4a5568; flex-grow: 1; text-align: justify; }
.values-section { background-color: #1a365d; color: #ffffff; }
.values-section .section-title { color: #ffffff; }
.values-section .section-subtitle { color: #cbd5e0; }
.values-grid { display: grid; grid-template-columns: 1fr; gap: 30px; padding: 0 15px; }
@media (min-width: 992px) { .values-grid { grid-template-columns: repeat(3, 1fr); gap: 40px; } }
.value-card { background: rgba(255, 255, 255, 0.04); padding: 35px 25px; border-radius: 8px; border: 1px solid rgba(255, 255, 255, 0.08); transition: transform 0.3s ease; }
.value-card:hover { transform: translateY(-5px); background: rgba(255, 255, 255, 0.07); }
.value-card h4 { font-size: 1.3rem; margin-bottom: 20px; color: #ffffff; border-left: 4px solid #0056b3; padding-left: 12px; font-weight: 700; }
.value-card ul li { font-size: 0.95rem; color: #cbd5e0; margin-bottom: 12px; position: relative; padding-left: 20px; }
.value-card ul li::before { content: "✓"; color: #3182ce; font-weight: bold; position: absolute; left: 0; }

/* ================================================================= */
/* 4. LAYOUT PAGE: PROFIL (YANG SEMPAT TERHAPUS)                    */
/* ================================================================= */
.profile-hero {
    background: linear-gradient(rgba(26, 54, 93, 0.85), rgba(26, 54, 93, 0.85)), url('assets/images/profile-banner-bg.jpg') center/cover no-repeat;
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
}
.profile-hero h1 { font-size: 2.2rem; font-weight: 700; margin-bottom: 10px; }
.profile-hero p { font-size: 1rem; color: #cbd5e0; }
.about-detail-grid { display: flex; flex-direction: column; gap: 40px; }
@media (min-width: 992px) { .about-detail-grid { flex-direction: row; align-items: center; gap: 60px; } }
.about-detail-img { flex: 1; height: 350px; border-radius: 8px; overflow: hidden; box-shadow: 0 10px 25px rgba(0,0,0,0.05); }
.about-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.about-detail-text { flex: 1.2; }
.about-detail-text p { color: #4a5568; font-size: 1.05rem; margin-bottom: 20px; text-align: justify; }
.visi-misi-section { background-color: #f8fafc; }
.visi-box { background-color: #ffffff; padding: 40px 30px; border-radius: 8px; box-shadow: 0 4px 20px rgba(0,0,0,0.02); border-top: 4px solid #0056b3; text-align: center; margin-bottom: 40px; }
.visi-box h3 { font-size: 1.8rem; color: #1a365d; margin-bottom: 15px; font-weight: 700; }
.visi-box p { font-size: 1.2rem; color: #4a5568; font-style: italic; max-width: 900px; margin: 0 auto; line-height: 1.6; }
.misi-title { font-size: 1.8rem; color: #1a365d; text-align: center; margin-bottom: 30px; font-weight: 700; }
.misi-list { display: grid; grid-template-columns: 1fr; gap: 25px; }
@media (min-width: 768px) { .misi-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .misi-list { grid-template-columns: repeat(3, 1fr); } }
.misi-item { background-color: #ffffff; padding: 30px; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.02); transition: transform 0.3s ease; border: 1px solid #e2e8f0; }
.misi-item:hover { transform: translateY(-5px); border-color: #0056b3; }
.misi-num { width: 45px; height: 45px; background-color: #edf2f7; color: #0056b3; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.2rem; margin-bottom: 20px; }
.misi-item h4 { font-size: 1.15rem; color: #1a365d; margin-bottom: 12px; font-weight: 700; }
.misi-item p { font-size: 0.95rem; color: #4a5568; text-align: justify; }
.values-detail-grid { display: flex; flex-direction: column; gap: 40px; }
.value-detail-card { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 8px; padding: 35px; box-shadow: 0 4px 15px rgba(0,0,0,0.02); }
.value-detail-card h3 { font-size: 1.4rem; color: #0056b3; margin-bottom: 20px; font-weight: 700; border-bottom: 2px solid #edf2f7; padding-bottom: 10px; }
.value-sub-points { display: grid; grid-template-columns: 1fr; gap: 25px; margin-top: 20px; }
@media (min-width: 768px) { .value-sub-points { grid-template-columns: repeat(3, 1fr); } }
.sub-point-box h5 { font-size: 1.05rem; color: #1a365d; margin-bottom: 8px; font-weight: 600; }
.sub-point-box p { font-size: 0.95rem; color: #4a5568; text-align: justify; line-height: 1.5; }

/* ================================================================= */
/* 5. LAYOUT PAGE: KARIR (YANG SEMPAT TERHAPUS)                     */
/* ================================================================= */
.career-hero {
    background: linear-gradient(rgba(26, 54, 93, 0.85), rgba(26, 54, 93, 0.85)), url('assets/images/career-banner-bg.jpg') center/cover no-repeat;
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
}
.career-hero h1 { font-size: 2.2rem; font-weight: 700; margin-bottom: 10px; }
.career-hero p { font-size: 1rem; color: #cbd5e0; }
.vacancy-notice-box { background-color: #fffaf0; border: 1px dashed #dd6b20; border-left: 5px solid #dd6b20; padding: 30px; border-radius: 8px; text-align: center; max-width: 800px; margin: 0 auto 50px auto; }
.vacancy-notice-box h3 { color: #dd6b20; font-size: 1.4rem; margin-bottom: 10px; font-weight: 700; }
.vacancy-notice-box p { color: #718096; font-size: 1rem; }
.form-section { background-color: #f8fafc; }
.career-layout-grid { display: flex; flex-direction: column; gap: 40px; }
@media (min-width: 992px) { .career-layout-grid { flex-direction: row; gap: 60px; align-items: flex-start; } }
.career-info-text { flex: 1; }
.career-info-text h3 { font-size: 1.8rem; color: #1a365d; margin-bottom: 20px; font-weight: 700; }
.career-info-text p { color: #4a5568; font-size: 1.05rem; margin-bottom: 20px; text-align: justify; }
.form-card-container { flex: 1.2; background: #ffffff; border: 1px solid #e2e8f0; border-radius: 8px; padding: 30px 25px; box-shadow: 0 10px 25px rgba(0,0,0,0.03); }
@media (min-width: 768px) { .form-card-container { padding: 40px; } }
.form-group-row { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 20px; }
@media (min-width: 768px) { .form-group-row { grid-template-columns: 1fr 1fr; } }
.form-control-group { display: flex; flex-direction: column; margin-bottom: 20px; }
.form-control-group label { font-size: 0.95rem; font-weight: 600; color: #2d3748; margin-bottom: 8px; }
.form-input { width: 100%; padding: 12px 16px; border: 1px solid #cbd5e1; border-radius: 6px; font-size: 0.95rem; outline: none; transition: all 0.3s ease; }
.form-input:focus { border-color: #0056b3; box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.15); }
textarea.form-input { resize: vertical; min-height: 120px; }
.file-upload-wrapper { position: relative; margin-bottom: 25px; }
.file-upload-label { font-size: 0.95rem; font-weight: 600; color: #2d3748; margin-bottom: 8px; }
.custom-file-btn { display: flex; align-items: center; justify-content: center; border: 2px dashed #cbd5e1; padding: 20px; border-radius: 6px; background-color: #f8fafc; cursor: pointer; color: #718096; font-weight: 600; }
.custom-file-btn:hover { border-color: #0056b3; background-color: #edf2f7; color: #0056b3; }
.hidden-file-input { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }
.file-name-preview { margin-top: 8px; font-size: 0.85rem; color: #2b6cb0; font-weight: 600; display: none; }
.submit-btn { width: 100%; background-color: #0056b3; color: #ffffff; border: none; padding: 14px; font-size: 1rem; font-weight: 700; border-radius: 6px; cursor: pointer; box-shadow: 0 4px 12px rgba(0, 86, 179, 0.2); }
.submit-btn:hover { background-color: #004085; transform: translateY(-1px); }

/* ================================================================= */
/* 6. LAYOUT PAGE: HUBUNGI KAMI (YANG SEMPAT TERHAPUS)              */
/* ================================================================= */
.contact-hero {
    background: linear-gradient(rgba(26, 54, 93, 0.85), rgba(26, 54, 93, 0.85)), url('assets/images/contact-banner-bg.jpg') center/cover no-repeat;
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
}
.contact-hero h1 { font-size: 2.2rem; font-weight: 700; margin-bottom: 10px; }
.contact-hero p { font-size: 1rem; color: #cbd5e0; }
.contact-section { background-color: #f8fafc; }
.contact-layout-grid { display: flex; flex-direction: column; gap: 40px; }
@media (min-width: 992px) { .contact-layout-grid { flex-direction: row; gap: 60px; align-items: flex-start; } }
.contact-info-card { flex: 1; background-color: #ffffff; border: 1px solid #e2e8f0; border-radius: 8px; padding: 30px; }
.contact-info-card h3 { font-size: 1.5rem; color: #1a365d; margin-bottom: 25px; font-weight: 700; border-bottom: 2px solid #edf2f7; padding-bottom: 10px; }
.info-detail-item { margin-bottom: 25px; }
.info-detail-item h5 { font-size: 1rem; color: #0056b3; margin-bottom: 6px; font-weight: 600; }
.info-detail-item p { font-size: 0.95rem; color: #4a5568; line-height: 1.6; }
.form-control-group.focused label { color: #0056b3; }
.char-counter-wrapper { text-align: right; font-size: 0.8rem; color: #a0aec0; margin-top: -15px; margin-bottom: 20px; font-weight: 600; }

/* ================================================================= */
/* 7. CTA & FOOTER COMPONENT                                        */
/* ================================================================= */
.cta-section {
    background: linear-gradient(rgba(10, 25, 47, 0.92), rgba(10, 25, 47, 0.92)), url('assets/images/indonesia-network-map.jpg') center/cover no-repeat;
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
}
.cta-content h3 { font-size: 1.8rem; margin-bottom: 20px; font-weight: 700; }
@media (min-width: 768px) { .cta-content h3 { font-size: 2.5rem; } }
.cta-content p { font-size: 1.1rem; max-width: 700px; margin: 0 auto 35px auto; color: #cbd5e0; }
.company-address-box { margin-top: 40px; padding: 25px; background: rgba(255,255,255,0.04); display: block; border-radius: 8px; border: 1px solid rgba(255,255,255,0.08); max-width: 550px; margin-left: auto; margin-right: auto; }
.company-address-box h5 { font-size: 1.1rem; color: #ffffff; margin-bottom: 10px; font-weight: 600; }
.company-address-box p { font-size: 0.95rem; color: #a0aec0; line-height: 1.6; }

.site-footer { background-color: #0b1329; color: #cbd5e1; padding: 70px 0 0 0; font-size: 0.95rem; border-top: 3px solid #0056b3; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; padding: 0 15px 50px 15px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1.5fr; gap: 50px; } }
.footer-column h4 { color: #ffffff; font-size: 1.15rem; margin-bottom: 25px; position: relative; font-weight: 600; }
.footer-column h4::after { content: ''; position: absolute; left: 0; bottom: -8px; width: 40px; height: 2px; background-color: #0056b3; }
.about-col .footer-logo { height: 45px; object-fit: contain; margin-bottom: 20px; }
.about-col p { line-height: 1.7; color: #94a3b8; text-align: justify; }
.links-col ul li { margin-bottom: 12px; }
.links-col ul li a { color: #94a3b8; transition: all 0.3s ease; display: inline-block; }
.links-col ul li a:hover { color: #ffffff; transform: translateX(5px); }
.address-col .office-address { line-height: 1.7; color: #94a3b8; }
.address-col .office-address strong { color: #ffffff; }
.footer-bottom { background-color: #020617; padding: 20px 0; text-align: center; border-top: 1px solid rgba(255, 255, 255, 0.05); font-size: 0.85rem; color: #64748b; }

/* ================================================================= */
/* 8. LAYOUT PAGE: LOGIN KARYAWAN (FIXED CENTERING & BOUNDS)        */
/* ================================================================= */
.login-wrapper {
    background-color: #f8fafc;
    min-height: calc(100vh - 160px);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 60px 15px !important;
    box-sizing: border-box !important;
}
.login-card { background: #ffffff !important; border: 1px solid #e2e8f0 !important; border-radius: 8px !important; padding: 40px 30px !important; width: 100% !important; max-width: 420px !important; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05) !important; box-sizing: border-box !important; }
.login-card h2 { font-size: 1.6rem !important; color: #1a365d !important; font-weight: 700 !important; text-align: center !important; margin-bottom: 8px !important; }
.login-card .subtitle { font-size: 0.9rem !important; color: #718096 !important; text-align: center !important; margin-bottom: 30px !important; }
.login-card .form-control-group { display: flex !important; flex-direction: column !important; margin-bottom: 20px !important; }
.login-card .form-control-group label { font-size: 0.95rem !important; font-weight: 600 !important; color: #4a5568 !important; margin-bottom: 8px !important; text-align: left !important; }
.password-wrapper { position: relative !important; display: flex !important; align-items: center !important; width: 100% !important; }
.password-wrapper .form-input { padding-right: 100px !important; }
.password-toggle-btn { position: absolute !important; right: 15px !important; top: 50% !important; transform: translateY(-50%) !important; background: none !important; border: none !important; color: #a0aec0 !important; font-size: 0.75rem !important; font-weight: 700 !important; cursor: pointer !important; letter-spacing: 0.5px !important; transition: color 0.2s ease !important; padding: 5px !important; z-index: 10 !important; }
.password-toggle-btn:hover { color: #0056b3 !important; }
.login-card .submit-btn { margin-top: 10px !important; }

/* ================================================================= */
/* 9. LAYOUT PAGE: ADMIN DASHBOARD (SPLIT WORKSPACE)                */
/* ================================================================= */
.dashboard-body { background-color: #f1f5f9 !important; min-height: 100vh !important; display: flex !important; margin: 0 !important; padding: 0 !important; }
.dash-sidebar { width: 260px !important; background-color: #0f172a !important; color: #94a3b8 !important; position: fixed !important; top: 0 !important; left: 0 !important; height: 100vh !important; display: flex !important; flex-direction: column !important; z-index: 999 !important; }
.sidebar-brand { padding: 25px 20px !important; font-size: 1.15rem !important; font-weight: 700 !important; color: #ffffff !important; border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important; }
.sidebar-menu { padding: 20px 0 !important; flex-grow: 1 !important; }
.sidebar-menu ul { display: flex !important; flex-direction: column !important; align-items: stretch !important; }
.sidebar-menu ul li { margin: 0 0 5px 0 !important; width: 100% !important; }
.sidebar-menu ul li a { display: flex !important; align-items: center !important; padding: 14px 20px !important; color: #94a3b8 !important; font-weight: 600 !important; font-size: 0.95rem !important; transition: all 0.2s ease !important; text-decoration: none !important; border-left: 4px solid transparent !important; }
.sidebar-menu ul li a:hover, .sidebar-menu ul li a.active { background-color: rgba(255, 255, 255, 0.05) !important; color: #ffffff !important; border-left-color: #0056b3 !important; }
.sidebar-footer { padding: 20px !important; border-top: 1px solid rgba(255, 255, 255, 0.08) !important; }
.btn-logout-dash { color: #ef4444 !important; font-weight: 700 !important; font-size: 0.9rem !important; text-decoration: none !important; }
.btn-logout-dash:hover { color: #f87171 !important; }
.dash-main-content { margin-left: 260px !important; flex-grow: 1 !important; padding: 40px !important; box-sizing: border-box !important; }
.dash-topbar { display: flex !important; justify-content: space-between !important; align-items: center !important; margin-bottom: 35px !important; background: #ffffff !important; padding: 20px 30px !important; border-radius: 8px !important; border: 1px solid #e2e8f0 !important; }
.dash-topbar h2 { font-size: 1.5rem !important; color: #1a365d !important; font-weight: 700 !important; }
.admin-profile-info { font-weight: 600 !important; color: #4a5568 !important; }
.stats-grid { display: grid !important; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important; gap: 25px !important; margin-bottom: 35px !important; }
.stat-card { background: #ffffff !important; border: 1px solid #e2e8f0 !important; border-radius: 8px !important; padding: 25px !important; box-shadow: 0 4px 15px rgba(0,0,0,0.01) !important; }
.stat-card h5 { font-size: 0.9rem !important; color: #718096 !important; margin-bottom: 10px !important; text-transform: uppercase !important; letter-spacing: 0.5px !important; }
.stat-card .stat-number { font-size: 2.2rem !important; font-weight: 700 !important; color: #0056b3 !important; }
.dash-data-panel { background: #ffffff !important; border: 1px solid #e2e8f0 !important; border-radius: 8px !important; padding: 30px !important; box-shadow: 0 4px 15px rgba(0,0,0,0.01) !important; display: none !important; }
.dash-data-panel.active { display: block !important; }
.dash-data-panel h3 { font-size: 1.25rem !important; color: #1a365d !important; margin-bottom: 25px !important; font-weight: 700 !important; border-left: 4px solid #0056b3 !important; padding-left: 12px !important; }
.table-responsive-wrapper { width: 100% !important; overflow-x: auto !important; }
.dash-table { width: 100% !important; border-collapse: collapse !important; text-align: left !important; font-size: 0.95rem !important; }
.dash-table th { background-color: #f8fafc !important; color: #4a5568 !important; padding: 14px 18px !important; font-weight: 700 !important; border-bottom: 2px solid #e2e8f0 !important; }
.dash-table td { padding: 14px 18px !important; color: #4a5568 !important; border-bottom: 1px solid #edf2f7 !important; vertical-align: top !important; }
.dash-table tr:hover td { background-color: #f8fafc !important; }
.badge-download { display: inline-block !important; background-color: #ebf8ff !important; color: #2b6cb0 !important; padding: 4px 10px !important; border-radius: 4px !important; font-size: 0.85rem !important; font-weight: 600 !important; }
.badge-download:hover { background-color: #2b6cb0 !important; color: #ffffff !important; }
@media (max-width: 992px) {
    .dash-sidebar { width: 80px !important; }
    .sidebar-brand span, .sidebar-menu ul li a span, .btn-logout-dash span { display: none !important; }
    .dash-main-content { margin-left: 80px !important; padding: 20px !important; }
.dashboard-body { background-color: #f1f5f9 !important; min-height: 100vh !important; display: flex !important; margin: 0 !important; padding: 0 !important; }
.dash-sidebar { width: 260px !important; background-color: #0f172a !important; color: #94a3b8 !important; position: fixed !important; top: 0 !important; left: 0 !important; height: 100vh !important; display: flex !important; flex-direction: column !important; z-index: 999 !important; }

/* --- MODAL POPUP CV DETAIL --- */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    overflow: auto;
}
.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 30px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: 8px;
    position: relative;
}
.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}
.close-modal:hover { color: #000; }

}
