.header-section {
    position: relative;
    z-index: 1;
    /* header di bawah konten */
}

header {
    background: url('/assets/img/header2.png') no-repeat center center;
    /* background: url('{{ asset("assets/img/header3.png") }}') no-repeat center center; */
    background-size: cover;
    color: white;
    text-align: center;
    padding: 60px 20px 100px;
    /* bagian bawah diperbesar supaya nav turun */
    position: relative;
    min-height: 350px;
}

header .msa-logo {
    position: absolute;
    top: 20px;
    left: 55px;
}

/* Logo di kanan atas */
.career-logo {
    position: absolute;
    top: 20px;
    right: 35px;
    width: 260px;
    /* sesuaikan ukuran */
    height: auto;
    z-index: 2;
}

header nav {
    margin-top: 40px;
    /* beri jarak dari logo/header */
}

.nav-link {
    color: white !important;
    font-weight: 500;
    padding: 10px 15px;
}

header img {
    max-height: 180px;
    margin-bottom: 10px;
}

.nav-link {
    color: white !important;
    font-weight: 500;
}

.content-wrapper {
    position: relative;
    z-index: 2;
    /* supaya konten di atas header */
    width: 70%;
    margin: -55px auto 30px auto;
    /* naik overlap ke header */
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
}

.no-loker {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

/* Kotak biru transparan */
.no-loker-box {
    top: 55px;
    background-color: rgba(13, 110, 253, 0.1); /* biru dengan opacity */
    border-radius: 10px;
    display: inline-block;
    padding: 1.5rem 1rem 1rem 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
    max-width: 700px;
}

/* Lingkaran ikon jam */
.clock-circle {
    position: absolute;
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    background-color: #fde8e8; /* merah muda lembut */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc3545; /* merah Bootstrap */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.accordion-button {
    font-weight: 600;
}

footer {
    /* background: #1309a8; */
    background: #02245b;
    padding: 40px;
    text-align: center;
    font-size: 14px;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* .accordion-collapse.custom-bg {
    background-color: #CDD8E0FF;
} */

.text-wrap {
    white-space: normal !important;
    word-break: break-word;
    text-align: left;
    /* opsional */
    line-height: 1.3rem;
    /* biar lebih rapat */
    padding-left: 12px;
    padding-right: 12px;
}

/* Navbar awalnya hidden */
.scroll-navbar {
    position: fixed;
    top: -70px;
    /* disembunyikan di atas layar */
    left: 0;
    width: 100%;
    height: 70px;
    background-color: #02245b;
    opacity: 0.90;
    transition: top 0.4s ease-in-out;
    z-index: 1050;
}

.scroll-navbar a {
    color: #fff !important;
    text-decoration: none;
    font-weight: 500;
    line-height: 1;
    /* supaya rapi */
}

.scroll-navbar.show {
    top: 0;
    /* muncul saat scroll */
}

html {
    scroll-behavior: smooth;
}

.email-to {
    color: #3F5E8BFF;
    font-weight: bold;
    text-decoration: none;
    margin-top: 50px;
    margin-bottom: 20px;
}
/* Container utama */
.tahapan-container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    text-align: left;
}

/* Judul */
.judul {
    text-align: center;
    margin-bottom: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #3F5E8BFF;
}

.judul-loker {
    text-align: center;
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: bold;
    color: #3F5E8BFF;
}

.job-title {
    text-align: left;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
}
/* Timeline */
.tahapan {
    position: relative;
    /* padding-left: 40px; */
    margin-top: 20px;
}

/* Hapus garis utama */
.tahapan::before {
    display: none;
}

/* Step */
.step {
    position: relative;
    margin-bottom: 40px;
    /* jarak antar step */
    padding-left: 50px;
    /* biar konten tidak nabrak angka */
}

/* Lingkaran angka */
.step-number {
    position: absolute;
    left: 0;
    top: 0;
    background: #3F5E8BFF;
    color: white;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 32px;
    font-weight: bold;
    z-index: 1;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Garis vertikal antar angka */
.step::after {
    content: "";
    position: absolute;
    top: 32px;
    /* mulai dari bawah lingkaran */
    left: 15px;
    /* posisi tengah lingkaran */
    width: 2px;
    height: calc(100% + 16px);
    /* otomatis mengikuti tinggi step + setengah lingkaran */
    background: #3F5E8BFF;
}

/* Hilangkan garis di step terakhir */
.step:last-child::after {
    display: none;
}

/* Konten */
.step-content h4 {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    color: #3F5E8BFF;
}

.step-content p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #555;
}

.bg-custom{
    background-color: rgb(103, 122, 151);
}

/* .back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
} */
.accordion-button::after {
    filter: brightness(0) invert(1);
    /* ubah warna jadi putih */
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
    /* tetap putih saat terbuka */
}

/* Untuk layar kecil (HP) */
@media (max-width: 576px) {
    header {
        padding: 40px 15px 70px;
        /* lebih kecil */
        min-height: 220px;
        /* tidak terlalu tinggi */
        background-position: top center;
        /* fokus atas gambar */
    }

    .career-logo {
        width: 80px;
        top: 10px;
        right: 10px;
    }

    header .msa-logo {
        max-height: 20px;
        top: 20px;
        left: 25px;
    }

    .scroll-navbar .msa-logo {
        max-height: 20px;
        top: 20px;
        left: 25px;
    }

    .content-wrapper {
        width: 85%;
    }
}

/* Untuk layar sedang (tablet sampai 788px) */
@media (min-width: 577px) and (max-width: 788px) {
    header {
        padding: 50px 20px 80px;
        min-height: 280px;
    }

    .career-logo {
        width: 120px;
        top: 15px;
        right: 15px;
    }

    header .msa-logo {
        position: absolute;
        top: 20px;
        left: 25px;
    }
}
