/* ===============================
    GLOBAL
================================ */
body {
    font-family: 'Poppins', 'Plus Jakarta Sans', sans-serif;
    background: linear-gradient(135deg, #f5f9ff, #eef4ff);
    min-height: 100vh;
    overflow-x: hidden;
    padding-top: 130px;
    /* Perbaikan jarak footer: Menggunakan Flexbox */
    display: flex;
    flex-direction: column;
}

/* Pembungkus konten utama agar mendorong footer ke bawah */
main,
.job-section-wrapper {
    flex: 1;
}

/* ===============================
    NAVBAR GLASS PREMIUM
================================ */
.nav-glass {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 55px;
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.06);
    width: 90%;
    max-width: 1150px;
    height: 78px;
    padding: 0 36px;
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    background: linear-gradient(90deg, #0066ff, #00c2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.45rem;
    font-weight: 800;
}

.navbar-nav .nav-link {
    font-weight: 600;
    font-size: 16px;
    color: #003366 !important;
    padding: 10px 18px;
    border-radius: 12px;
    transition: .25s;
}

.navbar-nav .nav-link:hover {
    background: rgba(0, 0, 0, 0.06);
}

.navbar-nav .nav-link.active {
    background: rgba(0, 102, 255, 0.12);
    color: #0066ff !important;
    box-shadow: 0 0 10px rgba(0, 102, 255, 0.25);
}

/* BUTTON MASUK */
.btn-masuk {
    background: linear-gradient(135deg, #0066ff, #00aaff);
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.92rem;
    border: none;
    box-shadow: 0 4px 14px rgba(0, 102, 255, 0.25);
    transition: all .25s;
}

.btn-masuk:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 102, 255, 0.35);
}

/* ===============================
    HEADLINE / INTRO
================================ */
.job-section h1 {
    color: #003366;
    font-weight: 800;
}

.job-section p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===============================
    SEARCH & FILTER
================================ */
.job-filter {
    background: rgba(255, 255, 255, 0.85);
    padding: 22px;
    border-radius: 22px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.job-filter .form-control,
.job-filter .form-select {
    border-radius: 14px;
    padding: 12px 16px;
    font-size: 0.9rem;
}

.job-filter .btn {
    background: linear-gradient(135deg, #0066ff, #00aaff);
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    padding: 12px;
}

/* ===============================
    JOB CARD PREMIUM
================================ */
.job-card {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 26px;
    padding: 26px;
    height: 100%;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .08);
    transition: .35s ease;
    display: flex;
    flex-direction: column;
}

.job-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 65px rgba(0, 0, 0, .14);
}

/* HEADER */
.job-top {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 20px;
}

.company-logo {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(135deg, #0066ff, #00c2ff);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 10px 25px rgba(0, 102, 255, .35);
}

.job-title h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 6px 0 2px;
    color: #003366;
}

.job-title p {
    font-size: .9rem;
    color: #666;
    margin: 0;
}

/* BADGE */
.job-type {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
}

.fulltime {
    background: rgba(0, 102, 255, .15);
    color: #0066ff;
}

.internship {
    background: rgba(0, 200, 150, .15);
    color: #00a884;
}

.freelance {
    background: rgba(255, 165, 0, .18);
    color: #ff9800;
}

/* META */
.job-meta {
    margin: 18px 0 22px;
    font-size: .9rem;
    color: #444;
}

.job-meta div {
    margin-bottom: 8px;
}

.job-meta i {
    color: #0066ff;
    margin-right: 6px;
}

/* CTA BUTTON */
.btn-apply {
    margin-top: auto;
    background: linear-gradient(135deg, #0066ff, #00aaff);
    color: #fff;
    text-decoration: none;
    padding: 12px;
    border-radius: 50px;
    text-align: center;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: .3s;
}

.btn-apply:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 102, 255, .45);
}

/* DISCLAIMER */
.disclaimer {
    margin-top: 10px;
    font-size: .75rem;
    color: #999;
    text-align: center;
}

/* ===============================
    PAGINATION
================================ */
.pagination .page-link {
    border-radius: 50px;
    margin: 0 4px;
    font-weight: 600;
    color: #0066ff;
}

.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #0066ff, #00aaff);
    border: none;
    color: #fff;
}
/* ===============================
   LOWONGAN PAGE PREMIUM STYLES
================================ */
:root {
    --indigo-primary: #4f46e5;
    --indigo-soft: #f5f3ff;
    --slate-800: #1e293b;
    --slate-600: #475569;
    --slate-400: #94a3b8;
}

body {
    background-color: #f8fafc;
}

/* Job Section Title */
.job-section h1 {
    color: var(--slate-800);
    letter-spacing: -1px;
}

/* Filter Box Modern */
.job-filter {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
}

.job-filter .form-control,
.job-filter .form-select {
    border-radius: 12px;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    font-size: 0.95rem;
}

.job-filter .form-control:focus {
    border-color: var(--indigo-primary);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

/* Job Card Design */
.job-card {
    background: white;
    border: 1px solid #f1f5f9;
    border-radius: 24px;
    padding: 25px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.job-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    border-color: var(--indigo-primary);
}

/* Company Icon Box */
.company-logo-box {
    width: 55px;
    height: 55px;
    background: var(--indigo-soft);
    color: var(--indigo-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* Badge Tipe Lowongan */
.job-badge {
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}

.badge-fulltime {
    background: #dcfce7;
    color: #15803d;
}

.badge-freelance {
    background: #e0f2fe;
    color: #0369a1;
}

.badge-internship {
    background: #fef3c7;
    color: #92400e;
}

/* Job Titles */
.job-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--slate-800);
    margin-bottom: 5px;
    line-height: 1.4;
}

.job-card .company-name {
    color: var(--slate-600);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 20px;
}

/* Meta Info (Location & Salary) */
.job-meta-list {
    margin-top: auto;
    /* Push to bottom */
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--slate-400);
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.meta-item i {
    color: var(--indigo-primary);
    font-size: 1rem;
}

/* Button Detail */
.btn-detail-job {
    margin-top: 15px;
    background: var(--slate-800);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn-detail-job:hover {
    background: var(--indigo-primary);
    color: white;
}
/* ================================
   FOOTER — PREMIUM CLEAN VERSION
================================ */

.footer-main {
    background: radial-gradient(circle at top left, #ffffff, #f0f0f0);
    color: #222;
    padding: 4rem 0 2.8rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    font-family: 'Plus Jakarta Sans', sans-serif;

    /* JARAK DARI SECTION ATAS */
    margin-top: 4rem; /* bisa naikin jadi 5rem kalau mau lebih lega */
}

/* GRID 3 KOLOM */
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 2.3rem;
}


/* BRAND */
.footer-brand .brand-name {
    font-weight: 700;
    font-size: 1.4rem;
    color: #0077ff;
    margin-bottom: 0.8rem;
}

.footer-brand .brand-desc {
    color: rgba(0, 0, 0, 0.65);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* SOCIAL ICONS */
.footer-social a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    margin-right: 10px;
    font-size: 1.1rem;
    color: #444;
    transition: .3s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
}

.footer-social a:hover {
    background: #0077ff;
    color: #fff;
    border-color: #0077ff;
    transform: translateY(-3px);
}

/* TITLES */
.footer-main h6 {
    font-size: 1rem;
    font-weight: 700;
    color: #444;
    margin-bottom: 1rem;
    letter-spacing: 0.4px;
}

/* LIST */
.footer-main ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-main ul li {
    margin-bottom: 0.5rem;
}

.footer-main ul li a {
    color: rgba(0, 0, 0, 0.65);
    text-decoration: none;
    font-size: 0.93rem;
    transition: .3s;
}

.footer-main ul li a:hover {
    color: #0077ff;
}

/* FOOTER BOTTOM */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.7rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.92rem;
    color: rgba(0, 0, 0, 0.6);
}

.footer-bottom p {
    margin: 0;
}

.footer-links a {
    color: rgba(0, 0, 0, 0.55);
    margin-left: 1rem;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #0077ff;
}

/* ===============================
    RESPONSIVE (576px)
================================ */
@media (max-width: 576px) {
    body {
        padding-top: 110px;
    }

    .nav-glass {
        width: 95%;
        height: 65px;
        padding: 0 20px;
        top: 15px;
    }

    .navbar-brand {
        font-size: 1.1rem;
    }

    .btn-masuk {
        padding: 6px 14px;
        font-size: 0.8rem;
    }

    .job-section h1 {
        font-size: 1.5rem;
    }

    .job-filter {
        padding: 15px;
    }

    .job-filter .row>div {
        margin-bottom: 10px;
    }

    .job-filter .btn {
        padding: 10px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-social {
        margin-top: 10px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links a {
        margin: 5px 10px;
    }
}
/* === RESPONSIVE STRATEGY (MAX-WIDTH: 576px) === */
@media (max-width: 576px) {
    
    /* Ubah bentuk Container Nav di HP */
        .nav-glass {
            top: 15px;
            width: 92%;
            height: auto;
            /* Tinggi otomatis mengikuti isi */
            min-height: 60px;
            padding: 12px 20px 20px;
            /* Padding bawah lebih besar utk tombol */
            border-radius: 25px;
            background: rgba(255, 255, 255, 0.98);
            /* Hampir solid putih */
            flex-direction: column;
            /* Stack vertikal */
            align-items: stretch;
            /* Lebar penuh */
        }
    
        /* Logo di Mobile */
        .navbar-brand {
            font-size: 1.3rem;
            margin-bottom: 0;
            display: block;
            width: 100%;
            /* Beri jarak agar tidak nabrak tombol hamburger */
            padding-right: 40px;
        }
    
        /* === PERBAIKAN TOMBOL HAMBURGER === */
        .navbar-toggler {
            border: none;
            background: transparent;
            padding: 4px;
            outline: none;
            box-shadow: none !important;
            position: absolute;
            /* Kunci posisi di pojok kanan atas */
            right: 20px;
            top: 12px;
            z-index: 1060;
        }
    
        /* Paksa Icon Menjadi Hitam Pekat (Solusi Masalah 'Nyaru') */
        .navbar-toggler-icon {
            width: 1.5em;
            height: 1.5em;
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
            filter: brightness(0) saturate(100%);
        }
    
        /* Menu Container (Dropdown) */
        .navbar-collapse {
            width: 100%;
            margin-top: 15px;
        }
    
        /* Styling Menu Items */
        .navbar-nav {
            flex-direction: row;
            /* Grid style */
            flex-wrap: wrap;
            justify-content: center;
            gap: 8px;
            width: 100%;
            padding-top: 10px;
            padding-bottom: 15px;
            /* Jarak sebelum tombol masuk */
            border-top: 1px solid rgba(0, 0, 0, 0.05);
        }
    
        .navbar-nav .nav-link {
            width: auto;
            font-size: 13px;
            padding: 8px 14px;
            background: rgba(0, 20, 46, 0.04);
            color: #00142E !important;
            border-radius: 20px;
            text-align: center;
        }
    
        /* === TOMBOL MASUK TETAP ADA (Mobile Style) === */
        .btn-masuk {
            display: flex !important;
            /* Paksa muncul */
            width: 100%;
            /* Lebar penuh */
            padding: 12px 0;
            /* Lebih tebal */
            font-size: 1rem;
            margin-top: 5px;
            /* Jarak dari menu link */
            order: 10;
            /* Pastikan di urutan paling bawah */
        }
    
        /* Sembunyikan elemen helper bootstrap jika ada */
        .nav-glass .ms-lg-3 {
            display: none !important;
        }
    
        /* Tampilkan tombol khusus mobile (jika pakai struktur class ms-lg-3 untuk tombol) */
        .ms-lg-3 {
            display: block !important;
            width: 100%;
            margin-top: 5px;
        }
    
        .ms-lg-3 .btn {
            width: 100%;
            justify-content: center;
            display: flex !important;
        }

    /* JOB SECTION*/
    .job-section h1 {
        font-size: 1.5rem;
    }

    .job-filter {
        padding: 15px;
    }

    .job-filter .row>div {
        margin-bottom: 10px;
    }

    .job-filter .btn {
        padding: 10px;
    }

    /*Modal*/
        .modal-body {
            padding: 20px !important;
        }
    
        .info-grid {
            grid-template-columns: 1fr;
            /* Stack jadi 1 kolom di HP */
            gap: 15px;
            padding: 15px;
        }
    
        .modal-company-logo {
            width: 60px;
            height: 60px;
            font-size: 1.5rem;
        }
    
        .modal-title {
            font-size: 1.1rem;
        }
    
        .info-value {
            font-size: 0.85rem;
        }
    
        .modal-disclaimer {
            font-size: 0.72rem;
        }

    /* 3. FOOTER ADJUSTMENTS */
    .footer-main {
        padding: 3rem 1.5rem 2rem;
    }

    /* Ubah Grid 3 Kolom menjadi 1 Kolom */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center; /* Rata tengah lebih estetik di HP */
    }

    .footer-brand .brand-desc {
        max-width: 100%;
        margin-bottom: 1.2rem;
    }

    .footer-social {
        justify-content: center;
        display: flex;
        gap: 10px;
    }

    .footer-social a {
        margin-right: 0;
        font-size: 1.4rem;
    }

    .footer-bottom {
        flex-direction: column; /* Stack copyright dan links */
        text-align: center;
        gap: 0.5rem;
    }

    .footer-links {
        display: flex;
        justify-content: center;
        gap: 15px;
    }

    .footer-links a {
        margin-left: 0;
        font-size: 0.85rem;
    }
}