/* =========================
   VARIABLES
========================= */
:root {
    --orange: #ff8c00;
    --orange-dark: #ff5f00;
    --yellow: #ffd400;
    --yellow-dark: #ffc300;
    --green: #10b943;
    --red: #d4220b;
    --broken-white: #fafafa;
    --white: #ffffff;
    --text: #1e293b;
    --text-light: #64748b;
    --border: #e5e7eb;
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bg-orange {
    background: var(--orange);
}
.bg-yellow {
    background: var(--yellow);
}
.bg-yellow-dark {
    background: var(--yellow-dark);
}
.bg-green {
    background: var(--green);
}

.text-orange {
    color: var(--orange);
}
.text-yellow {
    color: var(--yellow);
}
.text-green {
    color: var(--green);
}
.text-red {
    color: var(--red);
}
.text-white {
    color: var(--white);
}

/* =========================
   BASE & RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    background-color: #fafbfc;
    background-image:
        radial-gradient(
            circle at 15% 20%,
            rgba(255, 140, 0, 0.09) 0%,
            transparent 40%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(16, 185, 129, 0.08) 0%,
            transparent 40%
        ),
        radial-gradient(
            circle at 50% 50%,
            rgba(255, 212, 0, 0.08) 0%,
            transparent 45%
        );
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--text);
}

.container {
    padding: 0 30px;
}

/* =========================
   ANIMATED NAVBAR TOGGLER
========================= */
.navbar-toggler {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 0;
    width: 32px;
    height: 32px;
    position: relative;
    background: transparent !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================
   DEFAULT STATE: HAMBURGER (Garis Bertumpuk)
========================= */
.custom-toggler-icon {
    display: block;
    width: 24px;
    height: 2.5px;
    background-color: #ffffff;
    position: relative;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.custom-toggler-icon::before,
.custom-toggler-icon::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 2.5px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    left: 0;
}

/* Posisi awal garis atas dan bawah */
.custom-toggler-icon::before {
    top: -8px;
    transform: rotate(0deg);
}

.custom-toggler-icon::after {
    top: 8px;
    transform: rotate(0deg);
}

/* =========================
   ACTIVE STATE: ICON 'X' (Saat Menu Terbuka)
   Bootstrap otomatis mengubah aria-expanded menjadi "true"
========================= */
.navbar-toggler[aria-expanded="true"] .custom-toggler-icon {
    background-color: transparent; /* Sembunyikan garis tengah */
}

.navbar-toggler[aria-expanded="true"] .custom-toggler-icon::before {
    top: 0;
    transform: rotate(45deg); /* Putar menjadi \ */
}

.navbar-toggler[aria-expanded="true"] .custom-toggler-icon::after {
    top: 0;
    transform: rotate(-45deg); /* Putar menjadi / */
}
/* 1. Primary Gradient Button Base */
.btn-gradient {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    color: white;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(255, 138, 0, 0.25);
}

.btn-gradient::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.25),
        transparent
    );
    transition: 0.6s;
}

.btn-gradient:hover {
    box-shadow: 0 10px 30px rgba(255, 138, 0, 0.35);
    color: white;
    transform: translateY(-2px);
}

.btn-gradient:hover::before {
    left: 100%;
}

.btn-gradient:active {
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(255, 138, 0, 0.2);
}

/* 2. Secondary Outline Button Base */
.btn-secondary-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 11px 16px;
    border-radius: 12px;
    border: 1.5px solid var(--border);
    background: white;
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-secondary-outline:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: #fffdf9;
}

/* =========================
   LOADING OVERLAY
========================= */
.loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    transition:
        opacity 0.7s ease,
        visibility 0.7s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.spinner-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner-ring {
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--orange);
    border-right-color: var(--yellow);
    animation: spin 1s linear infinite;
}

.spinner-ring-2 {
    width: 65px;
    height: 65px;
    border-top-color: var(--green);
    border-right-color: transparent;
    animation-direction: reverse;
    animation-duration: 1.2s;
}

.spinner-core {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    animation: pulse 1.2s ease infinite;
}

.loading-text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--text-light);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.4);
    }
}

/* =========================
   NAVBAR
========================= */
.navbar {
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    padding: 12px 0;
    transition: var(--transition);
    border-bottom: none !important;
}

.navbar.scrolled {
    box-shadow: 0 7px 15px rgba(0, 0, 0, 0.08);
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.navbar-logo {
    display: block;
    height: 33px;
    width: auto;
    transition: var(--transition);
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 500;
    padding: 8px 18px !important;
    border-radius: 999px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.nav-link::after {
    display: none;
}

/* =========================
   HERO / CAROUSEL
========================= */
.hero-carousel {
    margin-top: 90px;
    padding: 0;
}

.hero-carousel .container {
    padding: 0 30px;
}

.carousel-inner {
    overflow: hidden;
    border-radius: 10px;
    box-shadow:
        8px 8px 16px rgba(0, 0, 0, 0.15),
        4px 4px 8px rgba(0, 0, 0, 0.1);
    transition:
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.carousel-item {
    height: 631px;
    min-height: 631px;
    position: relative;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    top: 45%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50%) scale(0.9);
    transition:
        opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0s linear 0.45s;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(6px);
}

.carousel-control-prev {
    left: -25px;
}
.carousel-control-next {
    right: -25px;
}

.carousel:hover .carousel-control-prev,
.carousel:hover .carousel-control-next,
.carousel:active .carousel-control-prev,
.carousel:active .carousel-control-next {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) scale(1);
    transition-delay: 0s;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--yellow-dark);
    transform: translateY(-50%) scale(1.08);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0.3);
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    filter: brightness(0) invert(1) !important;
}

.carousel-indicators {
    bottom: 30px;
    margin-bottom: 0;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.4s ease,
        visibility 0s linear 0.4s;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.6);
    opacity: 1;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background: var(--yellow-dark);
    transform: scale(1.3);
}

.carousel:hover .carousel-indicators,
.carousel:active .carousel-indicators {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
}

/* Carousel Responsive */
@media (max-width: 1400px) {
    .hero-carousel {
        margin-top: 80px;
    }
    .carousel-item {
        height: 541px;
        min-height: 541px;
    }
}

@media (max-width: 1200px) {
    .carousel-item {
        height: 543px;
        min-height: 543px;
    }
    .carousel-control-prev {
        left: 10px;
    }
    .carousel-control-next {
        right: 10px;
    }
    .carousel-control-prev,
    .carousel-control-next {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 991px) {
    .hero-carousel {
        margin-top: 70px;
    }
    .carousel-inner {
        border-radius: 20px;
    }
    .carousel-item {
        height: 500px;
        min-height: 500px;
    }
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 768px) {
    .hero-carousel .container {
        padding: 0 20px;
    }
    .carousel-inner {
        border-radius: 16px;
    }
    .carousel-item {
        height: 300px;
        min-height: 300px;
    }
    .carousel-indicators {
        bottom: 20px;
    }
    .carousel-indicators [data-bs-target] {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 576px) {
    .hero-carousel {
        margin-top: 85px;
    }
    .carousel-inner {
        border-radius: 7px;
    }
    .carousel-item {
        height: 192px;
        min-height: 192px;
    }
    .carousel-control-prev,
    .carousel-control-next {
        width: 36px;
        height: 36px;
    }
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 16px;
        height: 16px;
    }
    .carousel-indicators [data-bs-target] {
        width: 8px;
        height: 8px;
        margin: 0 4px;
    }
}

@media (max-width: 375px) {
    .carousel-item {
        height: 150px;
        min-height: 150px;
    }
}

/* =========================
   LOGIN LAYOUT
========================= */
.left-side {
    position: relative;
    overflow: hidden;
    padding: clamp(30px, 4vw, 60px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(135deg, var(--orange) 0%, var(--yellow) 100%);
}

.left-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at top right,
        rgba(255, 255, 255, 0.15),
        transparent 35%
    );
}

.brand-wrapper {
    position: relative;
    z-index: 2;
}

.brand-logo {
    width: 180px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.hero-highlight {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #ffffff 0%, #fff3c4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
    letter-spacing: 1px;
}

.hero-badge {
    display: inline-flex;
    padding: 12px 20px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 14px;
}

.hero-content h1 {
    color: white;
    font-size: clamp(44px, 5vw, 74px);
    font-weight: 800;
    line-height: 1.1;
    margin: 28px 0;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.9;
    font-size: clamp(14px, 1.1vw, 18px);
}

.hero-card {
    position: relative;
    z-index: 2;
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    text-align: center;
    transition: var(--transition);
}

.hero-card:hover {
    transform: translateY(-5px);
}

.hero-card h3 {
    color: white;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card h3 i {
    opacity: 0.95;
    transition: var(--transition);
}

.hero-card:hover h3 i {
    transform: scale(1.1);
}
.hero-card span {
    color: rgba(255, 255, 255, 0.8);
}

.circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(30px);
}

.circle-1 {
    width: 320px;
    height: 320px;
    background: rgba(255, 255, 255, 0.12);
    top: -100px;
    right: -80px;
}

.circle-2 {
    width: 240px;
    height: 240px;
    background: rgba(255, 255, 255, 0.08);
    bottom: -80px;
    left: -80px;
}

.right-side {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(20px, 3vw, 40px);
}

.login-wrapper {
    width: 100%;
    max-width: 470px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-box {
    width: 100%;
    max-width: 1200px;
    background: white;
    border-radius: 36px;
    padding: clamp(18px, 3vw, 50px);
    box-shadow: var(--shadow-lg);
    animation: loginFadeUp 0.7s ease;
}

@keyframes loginFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-logo {
    width: 180px;
    margin-bottom: 8px;
}

.app-version {
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.8px;
    opacity: 0.75;
}

.app-version::before,
.app-version::after {
    content: "•";
    margin: 0 6px;
    color: var(--orange);
}

.login-header {
    text-align: center;
    margin-bottom: 36px;
}
.login-header h3 {
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 800;
    margin-bottom: 10px;
}
.login-header p {
    color: var(--text-light);
    line-height: 1.8;
}
.login-title {
    margin-top: 20px;
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
}
.login-subtitle {
    margin: 30px auto;
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 380px;
}

/* =========================
   FORMS & INPUTS (GLOBAL)
========================= */
.form-group {
    margin-bottom: 22px;
}
.input-wrapper {
    position: relative;
}

.form-control {
    height: 64px;
    border-radius: 20px;
    border: 2px solid var(--border);
    padding: 8px 55px;
    transition: var(--transition);
    font-size: 15px;
}

.form-control:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 5px rgba(255, 138, 0, 0.12);
}

.input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 18px;
    transition: var(--transition);
}

.form-control:focus ~ .input-icon {
    color: var(--orange);
}

.floating-label {
    position: absolute;
    left: 54px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    background: white;
    padding: 0 6px;
    font-size: 14px;
    transition: var(--transition);
    pointer-events: none;
}

.form-control:focus ~ .floating-label,
.form-control:not(:placeholder-shown) ~ .floating-label {
    top: 0;
    transform: translateY(-50%) scale(0.9);
    color: var(--orange);
    font-weight: 600;
}

.password-toggle {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: none;
    color: #94a3b8;
    font-size: 20px;
    transition: var(--transition);
}

.password-toggle:hover {
    color: var(--orange);
    transform: translateY(-50%) scale(1.08);
}

.form-check-label {
    font-size: 14px;
    color: var(--text-light);
}
.form-check-input:checked {
    background-color: var(--orange);
    border-color: var(--orange);
}
.forgot-link {
    text-decoration: none;
    color: var(--orange-dark);
    font-size: 14px;
    font-weight: 600;
}

/* =========================
   BUTTONS
========================= */
.login-btn {
    width: 100%;
    height: 60px;
    border-radius: 20px;
    font-size: 16px;
    gap: 10px;
    box-shadow: 0 15px 35px rgba(255, 138, 0, 0.25);
}

/* =========================
   JOB CARDS
========================= */
#lowongan {
    scroll-margin-top: 45px;
}

.job-card {
    background: white;
    border-radius: 24px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.job-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 138, 0, 0.12);
    border-color: transparent;
}

.job-card-header {
    padding: 24px 24px 16px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.job-logo-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(
        135deg,
        rgba(255, 138, 0, 0.1),
        rgba(255, 193, 7, 0.1)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 22px;
    flex-shrink: 0;
    transition: var(--transition);
}

.job-card:hover .job-logo-wrap {
    transform: rotate(-8deg) scale(1.05);
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    color: white;
}

.job-meta-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.job-tag {
    font-size: 11px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.job-tag.type {
    background: rgba(16, 185, 129, 0.1);
    color: var(--green);
}
.job-tag.time {
    background: linear-gradient(
        135deg,
        rgba(255, 140, 0, 0.08),
        rgba(255, 193, 7, 0.08)
    );
    border: 1px solid rgba(255, 140, 0, 0.15);
    padding: 6px 12px 6px 6px;
    gap: 10px;
    align-items: center;
}

.job-tag.time .tag-icon {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(255, 140, 0, 0.25);
}

.job-tag.time .tag-body {
    display: flex;
    flex-direction: column;
    gap: 1px;
    line-height: 1.1;
}

.job-tag.time .tag-label {
    font-size: 9px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.job-tag.time .tag-value {
    font-size: 11px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.2px;
}

.job-card-body {
    padding: 0 24px 16px;
    flex: 1;
}
.job-card small,
.job-card p {
    font-size: 13px;
}
.job-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--text);
    margin: 10px 5px 8px;
    line-height: 1;
}

.job-location {
    font-size: 13px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0px 5px 16px;
    min-width: 0;
}

.job-location i {
    color: var(--red);
}

.job-location .location-text {
    flex: 1;
    width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.job-requirements {
    background: var(--broken-white);
    border-radius: 10px;
    list-style: none;
    padding: 15px;
    margin: 5px 0 5px;
}

.job-requirements li {
    font-size: 13px;
    color: var(--text-light);
    padding: 5px 0 5px 22px;
    position: relative;
    line-height: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
}

.job-requirements li::before {
    content: "\F26A";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--green);
    font-size: 13px;
}

.job-card-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 10px;
    background: var(--broken-white);
}

.btn-detail-job {
    flex: 1;
}

.btn-apply-job {
    flex: 1;
    padding: 12px 16px;
    font-size: 14px;
    border-radius: 16px;
}

/* .btn-apply-job {
    flex: 1;
    padding: 12px 16px;
    border-radius: 16px;
    border: none;
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    color: white;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(255, 138, 0, 0.25);
}

.btn-apply-job::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.25),
        transparent
    );
    transition: 0.6s;
}

.btn-apply-job:hover::before {
    left: 100%;
}
.btn-apply-job:hover {
    box-shadow: 0 10px 30px rgba(255, 138, 0, 0.35);
    color: white;
} */

.job-card-wrap {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}
.job-card-wrap.visible {
    opacity: 1;
    transform: translateY(0);
}

.badge-success-subtle {
    background: rgba(16, 185, 129, 0.1);
    color: var(--green);
}
.badge-info-subtle {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}
.badge-warning-subtle {
    background: rgba(255, 193, 7, 0.1);
    color: #d97706;
}

/* =========================
EMPTY STATE (Elegant)
========================= */
.empty-state {
    padding: 30px 30px;
    text-align: center;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    animation: emptyFadeIn 0.5s ease;
}

.empty-state::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--yellow));
    border-radius: 0 0 4px 4px;
}

.empty-state-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        rgba(255, 140, 0, 0.08),
        rgba(255, 212, 0, 0.12)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 40px;
}

.empty-state h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}

.empty-state p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto 15px;
}

.empty-state-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 0 0 18px;
    color: var(--text-light);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.empty-state-divider::before,
.empty-state-divider::after {
    content: "";
    height: 1px;
    width: 50px;
    background: var(--border);
}

.empty-state-tips {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(16, 185, 67, 0.06);
    border: 1px solid rgba(16, 185, 67, 0.12);
    color: var(--green);
    font-size: 13px;
    font-weight: 600;
}

.empty-state-tips i {
    font-size: 13px;
}

@keyframes emptyFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 576px) {
    .empty-state {
        padding: 30px 20px;
    }
    .empty-state-icon {
        width: 82px;
        height: 82px;
        font-size: 36px;
    }
    .empty-state h4 {
        font-size: 17px;
    }
    .empty-state p {
        font-size: 13px;
    }
}

/* =========================================================
FRAUD ALERT MODAL - PREMIUM DESIGN
========================================================= */
#fraudAlertModal .modal-dialog {
    max-width: 480px;
    margin: 16px auto;
}

#fraudAlertModal .fraud-modal {
    border: none;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
    animation: fraudSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fraudSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ===== HEADER ===== */
.fraud-header {
    position: relative;
    height: 160px;
    background: linear-gradient(
        135deg,
        var(--orange) 0%,
        var(--orange-dark) 50%,
        var(--yellow-dark) 100%
    );
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Pattern dekoratif */
.fraud-header-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(
            circle at 20% 30%,
            rgba(255, 255, 255, 0.15) 0%,
            transparent 40%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(255, 212, 0, 0.2) 0%,
            transparent 40%
        );
}

.fraud-header-pattern::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    filter: blur(40px);
}

.fraud-header-pattern::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 250px;
    height: 250px;
    background: rgba(255, 212, 0, 0.15);
    border-radius: 50%;
    filter: blur(40px);
}

.fraud-header-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

/* Shield Icon dengan Ring Glow */
.fraud-shield-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fraud-shield-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    animation: shieldPulse 2.5s ease-in-out infinite;
}

.fraud-shield-ring::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.15);
    animation: shieldPulse 2.5s ease-in-out infinite 0.3s;
}

@keyframes shieldPulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.08);
        opacity: 0.6;
    }
}

.fraud-shield-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 28px;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.2),
        inset 0 -3px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
}

/* Badge PERINGATAN RESMI */
.fraud-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 99px;
    color: white;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.fraud-badge i {
    font-size: 12px;
}

/* ===== BODY ===== */
.fraud-body {
    padding: 20px 24px 22px;
    text-align: center;
    background: linear-gradient(180deg, #fffdf9 0%, #ffffff 100%);
}

.fraud-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
    margin: 0 0 8px;
    letter-spacing: -0.3px;
}

.fraud-subtitle {
    font-size: 12.5px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0 0 25px;
}

.fraud-subtitle strong {
    color: var(--orange-dark);
    font-weight: 700;
}

/* Info Box */
.fraud-info-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: linear-gradient(
        135deg,
        rgba(212, 34, 11, 0.06) 0%,
        rgba(255, 140, 0, 0.04) 100%
    );
    border: 1.5px solid rgba(212, 34, 11, 0.15);
    border-radius: 10px;
    text-align: left;
    margin-bottom: 14px;
}

.fraud-info-content {
    flex: 1;
    text-align: center;
    font-size: 12px;
    color: var(--text);
    line-height: 1.4;
}

.fraud-info-content strong {
    color: var(--red);
    font-weight: 700;
}

/* Checklist */
.fraud-checklist {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 30px;
    text-align: left;
}

.fraud-checklist-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: #fafbfc;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 12px;
    color: var(--text);
    line-height: 1.5;
    transition: var(--transition);
}

.fraud-checklist-item:hover {
    border-color: rgba(16, 185, 67, 0.3);
    background: rgba(16, 185, 67, 0.03);
    transform: translateX(4px);
}

.fraud-checklist-item i {
    color: var(--green);
    font-size: 15px;
    flex-shrink: 0;
}

.fraud-checklist-item strong {
    color: var(--orange-dark);
    font-weight: 700;
}

/* Button */
.fraud-btn {
    width: 100%;
    height: 50px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.2px;
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.3);
}

.fraud-btn i {
    font-size: 16px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 576px) {
    #fraudAlertModal .modal-dialog {
        margin: 12px;
    }

    #fraudAlertModal .fraud-modal {
        border-radius: 20px;
    }

    .fraud-header {
        height: 140px;
    }

    .fraud-shield-wrapper {
        width: 70px;
        height: 70px;
    }

    .fraud-shield-icon {
        width: 52px;
        height: 52px;
        font-size: 24px;
    }

    .fraud-badge {
        font-size: 9px;
        padding: 4px 12px;
        letter-spacing: 1.2px;
    }

    .fraud-body {
        padding: 16px 18px 18px;
    }

    .fraud-title {
        font-size: 18px;
    }

    .fraud-subtitle {
        font-size: 12px;
    }

    .fraud-info-box {
        padding: 10px 12px;
        gap: 10px;
    }

    .fraud-info-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .fraud-info-content {
        font-size: 11px;
    }

    .fraud-checklist-item {
        padding: 8px 10px;
        font-size: 11px;
        gap: 8px;
    }

    .fraud-checklist-item i {
        font-size: 14px;
    }

    .fraud-btn {
        height: 46px;
        font-size: 13px;
    }
}

/* =========================
JOB DETAIL MODAL (Premium)
========================= */
#jobDetailModal .modal-lg {
    max-width: 580px;
}

#jobDetailModal .job-modal {
    border-radius: 28px;
    border: none;
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.03),
        0 32px 80px -12px rgba(0, 0, 0, 0.18),
        0 12px 24px -8px rgba(0, 0, 0, 0.08);
    animation: modalSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Accent Line */
#jobDetailModal .modal-accent-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--orange),
        var(--yellow),
        var(--green)
    );
    z-index: 2;
}

/* Header */
#jobDetailModal .modal-header {
    background: linear-gradient(
        135deg,
        var(--orange) 0%,
        var(--yellow-dark) 100%
    );
    padding: 0px 28px 24px;
    position: relative;
}

#jobDetailModal .modal-header::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 20px;
    background: white;
    border-radius: 20px 20px 0 0;
}

.modal-header-content {
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Header Layout */
.modal-header-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.modal-header-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 0;
}

.modal-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1;
}

#jobDetailModal .modal-title {
    font-size: 20px;
    font-weight: 800;
    color: white;
    margin-bottom: 0;
    line-height: 1.3;
    letter-spacing: -0.3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.modal-job-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Mobile adjustment */
@media (max-width: 576px) {
    .modal-header-left {
        gap: 12px;
    }

    #jobDetailModal .modal-title {
        font-size: 18px;
    }

    .modal-job-subtitle {
        font-size: 12px;
    }
}

.modal-job-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-close-modal {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    color: white;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-close-modal:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.modal-job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.modal-job-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    border-radius: 99px;
    font-size: 11px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
}

/* Body */
#jobDetailModal .modal-body {
    padding: 8px 24px 12px;
}

/* Info Blocks */
.info-block {
    display: flex;
    gap: 16px;
    padding: 18px;
    background: #fafbfc;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    margin-bottom: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-block:last-child {
    margin-bottom: 0;
}

.info-block:hover {
    border-color: rgba(255, 140, 0, 0.12);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    transform: translateX(4px);
}

.block-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.info-block:hover .block-icon {
    transform: scale(1.08);
}

.icon-red {
    background: linear-gradient(
        135deg,
        rgba(212, 34, 11, 0.08),
        rgba(212, 34, 11, 0.04)
    );
    color: var(--red);
    box-shadow: 0 2px 8px rgba(212, 34, 11, 0.08);
}

.icon-orange {
    background: linear-gradient(
        135deg,
        rgba(255, 140, 0, 0.1),
        rgba(255, 195, 0, 0.06)
    );
    color: var(--orange);
    box-shadow: 0 2px 8px rgba(255, 140, 0, 0.08);
}

.icon-green {
    background: linear-gradient(
        135deg,
        rgba(16, 185, 67, 0.1),
        rgba(16, 185, 67, 0.04)
    );
    color: var(--green);
    box-shadow: 0 2px 8px rgba(16, 185, 67, 0.08);
}

.block-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.block-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 10px;
}

/* Chips */
.chip-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 14px;
    border-radius: 10px;
    font-size: 0.78rem;
    font-weight: 600;
    background: white;
    border: 1px solid var(--border);
    color: var(--text);
    line-height: 1.2;
    transition: all 0.25s ease;
    cursor: default;
}

.chip i {
    font-size: 0.7rem;
}

.chip:hover {
    background: white;
    border-color: var(--orange);
    color: var(--orange);
    box-shadow: 0 4px 14px rgba(255, 140, 0, 0.12);
    transform: translateY(-2px);
}

.chip.chip-skill {
    border-color: rgba(255, 140, 0, 0.15);
    background: rgba(255, 140, 0, 0.03);
}

.chip.chip-skill:hover {
    background: var(--orange);
    color: white;
    border-color: var(--orange);
}

/* Checklist */
.info-block-list {
    flex-direction: column;
    gap: 0;
}

.info-block-list .block-icon-row {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 14px;
}

.clean-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.clean-checklist li {
    font-size: 0.85rem;
    color: var(--text);
    display: flex;
    align-items: flex-start;
    gap: 5px;
    line-height: 1;
    padding: 2px 12px;
    border-radius: 10px;
    transition: background 0.2s ease;
}

.clean-checklist li:hover {
    background: rgba(16, 185, 67, 0.04);
}

.clean-checklist li .check-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(16, 185, 67, 0.1);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Footer */
#jobDetailModal .modal-footer {
    padding: 0 24px 24px;
}

.modal-footer-inner {
    width: 100%;
}

.modal-footer-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-light);
    margin: 0 0 14px;
    padding: 10px;
    background: rgba(185, 126, 16, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(16, 185, 67, 0.1);
}

.modal-footer-note i {
    color: var(--orange-dark);
    font-size: 14px;
}

.modal-footer-note strong {
    color: var(--green);
}

#jobDetailModal .btn-apply-job {
    width: 100%;
    padding: 15px 16px;
    font-size: 15px;
    border-radius: 16px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

/* Mobile Adjustments */
@media (max-width: 576px) {
    .vacancy p {
        font-size: 13px;
    }

    #jobDetailModal .modal-dialog {
        margin: 12px;
    }

    #jobDetailModal .job-modal {
        border-radius: 22px;
    }

    #jobDetailModal .modal-header {
        padding: 22px 20px 20px;
    }

    #jobDetailModal .modal-title {
        font-size: 18px;
    }

    #jobDetailModal .modal-body {
        padding: 6px 16px 10px;
    }

    #jobDetailModal .modal-footer {
        padding: 0 16px 20px;
    }

    .info-block {
        padding: 14px;
        gap: 12px;
    }

    .block-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .chip {
        padding: 6px 11px;
        font-size: 0.72rem;
    }

    .clean-checklist li {
        font-size: 0.8rem;
        padding: 6px 8px;
    }

    .modal-job-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .modal-footer-note {
        font-size: 10px;
    }

    .modal-footer-note i {
        font-size: 12px;
    }
}

/* =========================
MODAL SCROLL FIX
========================= */
#jobDetailModal .job-modal {
    display: flex;
    flex-direction: column;
    max-height: calc(95vh - 2rem);
    overflow: hidden;
}

#jobDetailModal .modal-header {
    flex-shrink: 0;
    z-index: 2;
}

#jobDetailModal .modal-body {
    flex-grow: 1;
    overflow-y: auto;
    min-height: 0;

    /* Custom Scrollbar (Firefox) */
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 140, 0, 0.3) transparent;
}

/* Custom Scrollbar (Chrome/Edge/Safari) */
#jobDetailModal .modal-body::-webkit-scrollbar {
    width: 6px;
}

#jobDetailModal .modal-body::-webkit-scrollbar-track {
    background: transparent;
}

#jobDetailModal .modal-body::-webkit-scrollbar-thumb {
    background-color: rgba(255, 140, 0, 0.3);
    border-radius: 10px;
    transition: background 0.2s ease;
}

#jobDetailModal .modal-body::-webkit-scrollbar-thumb:hover {
    background-color: var(--orange);
}

#jobDetailModal .modal-footer {
    flex-shrink: 0;
    z-index: 2;
}

/* =========================
   FOOTER
========================= */
footer {
    font-size: 14px;
    /* background: #fffdf9; */
}

.copyright-text {
    margin-top: 20px;
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    opacity: 0.75;
    transition: var(--transition);
}

.copyright-text:hover {
    opacity: 1;
}

/* =========================================================
   APPLY PAGE SPECIFIC STYLES
========================================================= */
.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.apply-main {
    flex: 1;
    padding-top: 90px !important;
    padding-bottom: 30px;
}

.apply-main .form-step {
    display: none;
}

.apply-main .form-step.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

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

.required-mark {
    color: var(--red);
}

.apply-main .form-control,
.apply-main .form-select {
    height: 46px;
    border-radius: 12px;
    padding: 0 16px;
    font-size: 14px;
    border: 1.5px solid var(--border);
    transition: var(--transition);
}

.apply-main textarea.form-control {
    height: auto;
    padding: 12px 16px;
}

.apply-main .form-control:focus,
.apply-main .form-select:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(255, 140, 0, 0.1);
}

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

.apply-main .error-msg {
    font-size: 12px;
    color: var(--red);
    margin-top: 4px;
    display: none;
}
.apply-main .error-msg.show {
    display: block;
}

/* Date Input Fix */
.apply-main input[type="date"]:not(.is-invalid) {
    background-image: none !important;
}

.apply-main input[type="date"].is-invalid {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 45px center !important;
    background-size: 16px 16px !important;
    padding-right: 18px !important;
}

.apply-main input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0.6;
    cursor: pointer;
    padding-right: 4px;
}
.apply-main .is-invalid {
    border-color: var(--red) !important;
}
.apply-main .form-check-input:checked {
    background-color: var(--orange);
    border-color: var(--orange);
}

/* Select2 & Flatpickr */
.select2-container--bootstrap-5 .select2-selection {
    height: 46px !important;
    border-radius: 12px !important;
    border: 1.5px solid var(--border) !important;
    font-size: 14px !important;
    transition: var(--transition) !important;
}

.select2-container--bootstrap-5
    .select2-selection--single
    .select2-selection__rendered {
    line-height: 30px !important;
    padding-left: 5px !important;
    color: var(--text) !important;
}

.select2-container--bootstrap-5
    .select2-selection--single
    .select2-selection__arrow {
    height: 44px !important;
    right: 12px !important;
}

.select2-container--bootstrap-5.select2-container--focus .select2-selection,
.select2-container--bootstrap-5.select2-container--open .select2-selection {
    border-color: var(--orange) !important;
    box-shadow: 0 0 0 4px rgba(255, 140, 0, 0.1) !important;
}

.select2-dropdown {
    border-radius: 12px !important;
    border: 1.5px solid var(--border) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.select2-results__option--highlighted {
    background-color: rgba(255, 140, 0, 0.1) !important;
    color: var(--orange) !important;
}
.select2-results__option--selected {
    background-color: var(--orange) !important;
    color: white !important;
}

select.is-invalid + .select2-container--bootstrap-5 .select2-selection,
select.is-invalid
    + .select2-container--bootstrap-5.select2-container--focus
    .select2-selection,
select.is-invalid
    + .select2-container--bootstrap-5.select2-container--open
    .select2-selection {
    border-color: var(--red) !important;
    box-shadow: 0 0 0 4px rgba(212, 34, 11, 0.1) !important;
}

.flatpickr-calendar {
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid var(--border) !important;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: var(--orange) !important;
    border-color: var(--orange) !important;
}
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover {
    background: var(--orange-dark) !important;
    border-color: var(--orange-dark) !important;
}
.flatpickr-day.today {
    border-color: var(--orange) !important;
    color: var(--orange) !important;
}

/* Form Header */
.form-header {
    background: var(--broken-white);
    border-radius: 16px;
    padding: 15px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 140, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 20px;
}

.form-header-icon {
    width: 65px;
    height: 65px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.25);
}

.form-header-text {
    flex: 1;
    min-width: 0; /* PENTING: agar flex item bisa shrink */
    overflow: hidden; /* PENTING: agar child yang kepanjangan terpotong */
}

.form-header-text h4 {
    margin: 0;
    font-weight: 700;
    color: var(--text);
    font-size: 22px;
    letter-spacing: 0.5px;
    margin-left: 2px;
}

.job-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 14px;
    border-radius: 99px;
    background: linear-gradient(
        135deg,
        rgba(255, 140, 0, 0.08),
        rgba(255, 212, 0, 0.08)
    );
    border: 1px solid rgba(255, 140, 0, 0.15);
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
    margin-top: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    max-width: 100%; /* PENTING: batasi lebar badge */
    min-width: 0; /* PENTING: agar bisa shrink */
    overflow: hidden; /* PENTING: agar text terpotong */
}

.job-badge i {
    color: var(--orange);
    flex-shrink: 0; /* Icon tidak ikut terpotong */
}

.job-badge span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0; /* PENTING: agar text bisa shrink */
}

.job-placements {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    padding: 6px 14px;
    border-radius: 99px;
    background: linear-gradient(
        135deg,
        rgba(255, 140, 0, 0.08),
        rgba(255, 212, 0, 0.08)
    );
    border: 1px solid rgba(255, 140, 0, 0.15);
    color: var(--text);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
}

.job-placements i {
    color: var(--orange);
    font-size: 13px;
    flex-shrink: 0;
}

.job-placements .placements-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

/* Navigation Buttons */
.apply-main .btn-nav {
    padding: 10px 24px;
    font-size: 14px;
    border-radius: 12px;
}

.apply-main .btn-prev {
    background: white;
    border: 1.5px solid var(--border);
    color: var(--text);
}
.apply-main .btn-prev:hover {
    border-color: var(--text-light);
    background: #f8fafc;
}

.apply-main .btn-next {
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.25);
}
.apply-main .btn-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Multi Experience */
.apply-main .btn-add-exp {
    background: white;
    border: 1.5px dashed var(--orange);
    color: var(--orange);
    border-radius: 12px;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 14px;
    width: 100%;
    transition: var(--transition);
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.apply-main .btn-add-exp:hover {
    background: rgba(255, 140, 0, 0.05);
    border-style: solid;
    color: var(--orange);
    transform: translateY(-1px);
}
.apply-main .btn-add-exp i {
    font-size: 18px;
}

.experience-item {
    background: #fafbfc;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 0;
    margin-bottom: 16px;
    position: relative;
    animation: fadeIn 0.3s ease;
    overflow: hidden;
}

.experience-header {
    background: var(--broken-white);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
}

.experience-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}

.experience-title .exp-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(255, 140, 0, 0.25);
}

.btn-remove-exp {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid rgba(212, 34, 11, 0.2);
    background: white;
    color: var(--red);
    font-size: 12px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.btn-remove-exp:hover {
    background: var(--red);
    color: white;
    border-color: var(--red);
}
.btn-remove-exp i {
    font-size: 14px;
}
.experience-body {
    background: var(--white);
    padding: 20px;
}

.experience-empty-state {
    text-align: center;
    padding: 30px 20px;
    background: var(--broken-white);
    border: 1px dashed var(--border);
    border-radius: 12px;
    margin-bottom: 16px;
}

.experience-empty-state i {
    font-size: 36px;
    color: var(--text-light);
    opacity: 0.4;
    margin-bottom: 10px;
}
.experience-empty-state p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Upload Dokumen */
.premium-upload-zone {
    position: relative;
    border: 2px dashed var(--border);
    border-radius: 14px;
    padding: 16px;
    background: #fafbfc;
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 14px;
    overflow: hidden;
}
.premium-upload-zone:hover {
    border-color: var(--orange);
    background: rgba(255, 140, 0, 0.02);
}
.premium-upload-zone.has-file {
    border-style: solid;
    border-color: var(--green);
    background: rgba(16, 185, 129, 0.03);
}
.premium-upload-zone.is-invalid {
    border-color: var(--red) !important;
    background: rgba(212, 34, 11, 0.02);
}

.upload-preview {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background: white;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}
.upload-preview .upload-icon {
    font-size: 22px;
    color: var(--text-light);
}
.upload-preview .preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.upload-info {
    flex: 1;
    min-width: 0;
}
.upload-title {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2px;
    line-height: 1.3;
}
.upload-subtitle {
    display: block;
    font-size: 11px;
    color: var(--text-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.upload-status {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.status-text {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-light);
    max-width: 180px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.has-file .status-text {
    color: var(--green);
    font-weight: 600;
}

/* Tombol Hapus: Ukuran proporsional, tidak mendominasi */
.btn-remove-file {
    /* Reset total — buang semua style bawaan browser/Bootstrap */
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    box-shadow: none;
    outline: none;

    /* Dimensi */
    width: 26px;
    height: 26px;
    border-radius: 50%;

    /* Centering sempurna */
    display: inline-flex;
    align-items: center;
    justify-content: center;

    /* Posisi */
    flex-shrink: 0;
    z-index: 10;
    cursor: pointer;

    /* Transisi halus */
    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.btn-remove-file i {
    font-size: 18px;
    line-height: 1;
    display: block;
    color: #94a3b8; /* Abu-abu slate netral — tidak agresif */
    transition: color 0.2s ease;
}

/* Hover: background merah sangat soft, icon jadi merah */
.btn-remove-file:hover {
    background-color: #fee2e2; /* Merah sangat pucat */
}

.btn-remove-file:hover i {
    color: #dc3545; /* Merah Bootstrap */
}

/* Active: sedikit lebih gelap saat ditekan */
.btn-remove-file:active {
    background-color: #fecaca;
}

/* Sembunyikan native file input, tapi tetap fungsional */
.premium-upload-zone input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 1;
}

/* Review & Persetujuan */
.apply-main .review-box {
    border: 1px solid var(--border) !important;
    background: #fafbfc !important;
}
.experience-date {
    font-size: 12px;
}
.apply-main .consent-box {
    background: #fff8f0;
    border: 1px solid #ffe0b2;
    border-radius: 14px;
    padding: 16px 20px;
    margin-top: 16px;
}
.apply-main .review-section {
    margin-bottom: 20px;
}
.apply-main .review-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px dashed var(--border);
}
.apply-main .review-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.apply-main .review-item {
    background: white;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid var(--border);
}
.apply-main .review-full {
    grid-column: 1 / -1;
}
.apply-main .review-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}
.apply-main .review-val {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}
.apply-main .review-doc {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--green);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    margin-right: 8px;
    margin-bottom: 8px;
}
/* =========================
   REVIEW DOCUMENTS PREVIEW
========================= */
.review-docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 12px;
    margin-top: 8px;
}

.review-doc-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
}

.review-doc-item:hover {
    border-color: var(--orange);
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.08);
    transform: translateY(-2px);
}

.review-doc-thumb {
    width: 100%;
    height: 120px;
    border-radius: 8px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.review-doc-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-doc-thumb i {
    font-size: 36px;
}

.review-doc-info {
    width: 100%;
}

.review-doc-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.review-doc-name {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Apply Page: Desktop Layout */
@media (min-width: 992px) {
    .apply-main .container {
        max-width: 1140px;
    }
    .apply-main .col-lg-7.col-xl-6 {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .form-card {
        display: grid;
        grid-template-columns: 260px 1fr;
        grid-template-rows: auto 1fr;
        gap: 0 40px;
        padding: 25px !important;
        border-radius: 24px;
        background: white;
        box-shadow: var(--shadow-lg);
        border: 1px solid var(--border);
    }

    .form-header {
        grid-column: 1 / -1;
        margin-bottom: 30px;
        padding-bottom: 24px;
        border-bottom: 2px solid var(--border);
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .progress-wrapper {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
        position: sticky;
        top: 100px;
        height: fit-content;
        background: var(--broken-white);
        border-radius: 16px;
        padding: 24px;
        border: 1px solid var(--border);
    }

    .progress-wrapper .step-line {
        display: none;
    }
    .progress-wrapper .d-flex {
        flex-direction: column;
        gap: 24px;
    }

    .progress-wrapper .step-node {
        display: flex;
        align-items: center;
        gap: 15px;
        width: 100%;
        position: relative;
        padding: 0;
    }

    .progress-wrapper .step {
        width: 40px;
        height: 40px;
        font-size: 14px;
        margin: 0;
        flex-shrink: 0;
        border-radius: 50%;
        background: #ffffff;
        color: var(--orange);
        border: 2px solid rgba(255, 140, 0, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        transition: var(--transition);
        position: relative;
        z-index: 3;
    }

    .progress-wrapper .step-label {
        margin: 0;
        font-size: 14px;
        font-weight: 600;
        color: var(--text-light);
        transition: var(--transition);
    }
    .progress-wrapper .step-node.active .step {
        background: linear-gradient(135deg, var(--orange), var(--yellow));
        color: white;
        border: none;
        box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
    }
    .progress-wrapper .step-node.active .step-label {
        color: var(--orange);
        font-weight: 700;
    }
    .progress-wrapper .step-node.completed .step {
        background: var(--green);
        color: white;
        border: none;
    }
    .progress-wrapper .step-node.completed .step-label {
        color: var(--green);
    }

    .progress-wrapper .step-node:not(:last-child)::after {
        content: " ";
        position: absolute;
        left: 19px;
        top: 100%;
        height: 24px;
        width: 2px;
        background: rgba(255, 140, 0, 0.2);
        z-index: 1;
        transition: var(--transition);
    }

    .progress-wrapper .step-node.completed:not(:last-child)::after {
        background: var(--green);
    }
    .progress-wrapper .step-node.completed:has(+ .step-node.active)::after {
        background: linear-gradient(to bottom, var(--green), var(--orange));
    }

    #applyForm {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }
}

/* Apply Page: Mobile Layout */
@media (max-width: 991px) {
    .apply-main {
        padding-top: 85px !important;
    }
    .apply-main .container {
        padding: 0 0px;
    }

    .form-card {
        padding: 0 !important;
        border-radius: 16px;
        background: white;
        box-shadow: var(--shadow-lg);
        border: 1px solid var(--border);
    }
    .form-header {
        padding: 20px;
        border-radius: 16px 16px 0px 0px;
        border-bottom: 1px solid var(--border);
        margin-bottom: 0;
    }
    .form-header h4 {
        font-size: 20px;
    }

    .progress-wrapper {
        position: sticky !important;
        position: -webkit-sticky !important;
        top: 72px !important;
        z-index: 999 !important;
        background: white;
        padding: 20px 10px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        border-bottom: 1px solid var(--border);
        border-radius: 0;
    }

    .progress-wrapper .step-line {
        display: none;
    }
    .progress-wrapper .d-flex {
        justify-content: space-between;
        position: relative;
    }

    .progress-wrapper .step-node {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        z-index: 2;
        position: relative;
        flex: 1;
    }

    .progress-wrapper .step {
        width: 32px;
        height: 32px;
        font-size: 14px;
        border-radius: 50%;
        background: #ffffff;
        color: var(--orange);
        border: 2px solid rgba(255, 140, 0, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        transition: var(--transition);
        margin: 0;
        position: relative;
        z-index: 3;
    }

    .progress-wrapper .step-label {
        font-size: 11px;
        font-weight: 600;
        color: var(--text-light);
        margin: 0;
    }
    .progress-wrapper .step-node.active .step {
        background: linear-gradient(135deg, var(--orange), var(--yellow));
        color: white;
        border: none;
        box-shadow: 0 4px 10px rgba(255, 140, 0, 0.3);
        z-index: 3;
    }
    .progress-wrapper .step-node.active .step-label {
        color: var(--orange);
    }
    .progress-wrapper .step-node.completed .step {
        background: var(--green);
        color: white;
        border: none;
        z-index: 3;
    }
    .progress-wrapper .step-node.completed .step-label {
        color: var(--green);
    }

    .progress-wrapper .step-node:not(:last-child)::after {
        content: " ";
        position: absolute;
        top: 16px;
        left: 50%;
        right: -50%;
        height: 2px;
        background: rgba(255, 140, 0, 0.2);
        z-index: 1;
        transition: var(--transition);
    }

    .progress-wrapper .step-node.completed:not(:last-child)::after {
        background: var(--green);
    }
    .progress-wrapper .step-node.completed:has(+ .step-node.active)::after {
        background: linear-gradient(to right, var(--green), var(--orange));
    }

    #applyForm {
        padding: 35px 20px 20px 20px;
    }
    #applyForm h5 {
        font-size: 16px;
        margin-bottom: 16px !important;
        padding-bottom: 12px;
        border-bottom: 1px solid var(--border);
    }

    .apply-main .form-control,
    .apply-main .form-select {
        height: 44px;
        border-radius: 10px;
        padding: 0 14px;
        font-size: 14px;
    }
    .apply-main .review-grid {
        grid-template-columns: 1fr;
    }

    .experience-header {
        padding: 10px 16px;
    }
    .experience-body {
        padding: 16px;
    }
    .experience-title {
        font-size: 13px;
    }
    .experience-title .exp-icon {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }
    .btn-remove-exp {
        padding: 5px 10px;
        font-size: 11px;
    }

    /* Premium Upload Mobile - Layout Natural (Satu Baris) */
    .premium-upload-zone {
        padding: 12px;
        gap: 10px;
        border-radius: 12px;
    }
    .upload-preview {
        width: 40px;
        height: 40px;
        border-radius: 8px;
    }
    .upload-preview .upload-icon {
        font-size: 18px;
    }
    .upload-info {
        flex: 1;
        min-width: 0;
    }
    .upload-title {
        font-size: 12px;
        margin-bottom: 1px;
    }
    .upload-subtitle {
        font-size: 10px;
    }
    .upload-status {
        gap: 6px;
    }
    .status-text {
        font-size: 10px;
        max-width: 120px;
    }
    .btn-remove-file {
        width: 24px;
        height: 24px;
    }
    .btn-remove-file i {
        font-size: 16px;
    }
}

/* Apply Page: Date Placeholder Trick */
.apply-main input[type="date"] {
    color: transparent;
}
.apply-main input[type="date"]:focus,
.apply-main input[type="date"].is-invalid {
    color: var(--text);
}

.apply-main input[type="date"]::before {
    content: attr(placeholder);
    color: #9ca3af;
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.apply-main input[type="date"]:focus::before,
.apply-main input[type="date"][value]::before,
.apply-main input[type="date"].is-invalid::before {
    display: none;
}

/* =========================
   GLOBAL RESPONSIVE OVERRIDES
========================= */
@media (max-width: 991px) {
    .right-side {
        min-height: 100vh;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 16px;
    }

    .right-side {
        padding: 18px;
    }
    .login-box {
        border-radius: 28px;
        padding: 28px 22px;
        box-shadow: none;
    }
    .form-control {
        height: 58px;
    }
    .review-grid {
        grid-template-columns: 1fr;
    }

    .job-card-header,
    .job-card-body,
    .job-card-footer {
        padding-left: 18px;
        padding-right: 18px;
    }
}

@media (max-width: 1600px) and (max-height: 900px) {
    .left-side {
        padding: 28px;
    }
    .hero-badge {
        padding: 10px 18px;
        font-size: 12px;
    }
    .hero-content h1 {
        font-size: clamp(34px, 3.4vw, 58px);
        margin: 18px 0;
        line-height: 1.05;
    }
    .hero-content p {
        font-size: clamp(12px, 0.9vw, 15px);
        line-height: 1.75;
        max-width: 500px;
    }
    .hero-card {
        padding: 18px;
        border-radius: 20px;
    }
    .hero-card span {
        font-size: 12px;
    }

    .right-side {
        padding: 24px;
    }
    .login-box {
        max-width: 420px;
        padding: 32px;
        border-radius: 28px;
    }
    .login-header {
        margin-bottom: 28px;
    }
    .login-header h3 {
        font-size: clamp(26px, 2vw, 34px);
        margin-bottom: 6px;
    }
    .login-header p {
        font-size: 13px;
        line-height: 1.7;
    }

    .form-group {
        margin-bottom: 18px;
    }
    .form-control {
        height: 56px;
        font-size: 13px;
        border-radius: 16px;
    }
    .floating-label {
        font-size: 12px;
    }
    .input-icon {
        font-size: 16px;
    }
    .password-toggle {
        font-size: 18px;
    }
    .form-check-label,
    .forgot-link {
        font-size: 12px;
    }
    .login-btn {
        height: 54px;
        font-size: 14px;
        border-radius: 16px;
    }
}

/* =========================
LOADING DOTS (Login Button)
========================= */
.loading-dots {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: 4px;
}

.loading-dots span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    display: inline-block;
    animation: loadingDotBounce 1.2s infinite ease-in-out both;
}

.loading-dots span:nth-child(1) {
    animation-delay: -0.32s;
}

.loading-dots span:nth-child(2) {
    animation-delay: -0.16s;
}

.loading-dots span:nth-child(3) {
    animation-delay: 0s;
}

@keyframes loadingDotBounce {
    0%,
    80%,
    100% {
        transform: scale(0.6);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Disabled state untuk tombol login */
.login-btn:disabled {
    opacity: 0.85;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: 0 8px 20px rgba(255, 138, 0, 0.2);
}
/* Deadline Box - Responsive & Compact */
.deadline-box {
    display: flex;
    align-items: center;
    gap: 12px; /* Jarak antar elemen lebih rapat */
    background: #fffdf5; /* Warna latar sangat muda agar tidak terlalu mencolok */
    border: 1px solid #ffeeba;
    border-left: 4px solid #ffc107; /* Aksen garis kiri khas alert */
    border-radius: 8px;
    padding: 10px 14px; /* Padding diperkecil */
    margin-bottom: 20px;
}

.deadline-icon {
    width: 40px; /* Ukuran icon diperkecil */
    height: 40px;
    background: #fff3cd;
    color: #856404;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.deadline-content {
    display: flex;
    flex-direction: column;
    line-height: 1.5;
    margin-left: 5px;
}

.deadline-label {
    font-size: 0.7rem; /* Label lebih kecil */
    color: #9e7c0c;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.deadline-value {
    font-size: 0.9rem; /* Tanggal tidak terlalu besar */
    color: #333;
    font-weight: 600;
}

/* Responsif untuk layar HP */
@media (max-width: 576px) {
    .deadline-box {
        padding: 8px 12px;
        gap: 10px;
    }

    .deadline-icon {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }

    .deadline-label {
        font-size: 0.65rem;
    }

    .deadline-value {
        font-size: 0.85rem;
    }
}
