:root {
    --primary-orange: #FF8A00;
    --accent-red: #E94E5E;
    --bg-soft: #F0F2F5;
    --white: #ffffff;
    --text-dark: #1A1A1A;
    --text-medium: #6B7280;
    --shadow-float: 0 25px 50px rgba(0, 0, 0, 0.15);
    /* Menambahkan shadow-card dari file sebelumnya, jika belum ada */
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.08);
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-soft);
    background-image:
            radial-gradient(circle at 10% 10%, rgba(255, 138, 0, 0.1) 1%, transparent 15%),
            radial-gradient(circle at 90% 80%, rgba(255, 75, 0, 0.15) 1%, transparent 20%),
            linear-gradient(to bottom right, #f8f8f8, #f0f2f5);
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.container {
    width: 90%;
    max-width: 1050px;
    margin: 0 auto;
    padding: 20px 0;
}

/* --- HEADER / NAVIGASI --- */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-orange);
    text-decoration: none;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    z-index: 110;
    padding: 0.5rem;
}

.nav-link-group a {
    margin-left: 1.5rem;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    transition: color 0.2s;
    display: inline-block;
    line-height: 1.5;
}

.nav-link-group a:hover {
    text-decoration: none;
    color: var(--primary-orange);
}

.nav-btn {
    background-color: var(--primary-orange);
    color: var(--white) !important;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-weight: 800 !important;
    box-shadow: 0 4px 10px rgba(255, 138, 0, 0.3);
    transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.nav-btn:hover {
    background-color: var(--accent-red);
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(255, 138, 0, 0.5);
}


/*================================================================*/
/*--------------------------- LANDING (JALUR SELEKSI) ---------------------------*/
/*================================================================*/

/* BAGIAN HERO */
.selection-hero {
    text-align: center;
    padding: 5rem 0 1rem 0;
}

.selection-hero h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
}

.selection-hero h2 span {
    color: var(--primary-orange);
}

.selection-hero p {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
}

/* BAGIAN PROGRAM SELECTION WRAPPER */
.program-selection {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 5rem;
    position: relative;
    padding-bottom: 2rem;
}

.blur-element {
    position: absolute;
    width: 400px;
    height: 400px;
    background-color: var(--primary-orange);
    opacity: 0.15;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    pointer-events: none;
}
.blur-reguler { top: -50px; left: 5%; opacity: 0.1; }
.blur-rpl { bottom: -50px; right: 5%; background-color: var(--accent-red); opacity: 0.12; }

/* PROGRAM CARD BLOCK */
.program-card {
    flex: 1;
    max-width: 48%;
    background-color: var(--white);
    border: 1px solid #E5E5E5;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-float);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    z-index: 10;
}

.program-card:hover {
    transform: scale(1.03);
    border-color: var(--primary-orange);
    box-shadow: 0 30px 60px rgba(255, 138, 0, 0.3);
}

/* CARD ELEMENTS */
.program-card__icon {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.program-card h3 {
    font-size: 1.8rem;
    font-weight: 900;
    margin: 0 0 0.8rem 0;
    color: var(--text-dark);
}

.program-card__detail {
    font-size: 1rem;
    color: var(--text-medium);
    min-height: 5.5rem;
    margin-bottom: 1.5rem;
}

.program-card__features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2.5rem 0;
}

.program-card__features li {
    font-weight: 700;
    padding: 0.6rem 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #F3F3F3;
}

.program-card__features li i {
    margin-right: 0.8rem;
    color: var(--primary-orange);
}

/* CARD MODIFIER RPL */
.program-card--rpl .program-card__icon { color: var(--accent-red); }
.program-card--rpl .program-card__features li i { color: var(--accent-red); }

/* CTA BUTTON */
.program-card__cta {
    padding: 1rem 1rem;
    font-size: 1.1rem;
    border-radius: 0.8rem;
    background-color: var(--primary-orange);
    color: var(--white);
    border: none;
    text-decoration: none;
    font-weight: 800;
    display: inline-block;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 8px 15px rgba(255, 138, 0, 0.4);
    text-align: center;
}
.program-card__cta:hover {
    text-decoration: none !important; /* Menghilangkan garis bawah default link */
    color: var(--white); /* Tetap putih atau ganti warna lain */
    background-color: var(--accent-red); /* Berubah warna background saat hover */
    transform: translateY(-3px); /* Memberi efek mengangkat */
    box-shadow: 0 12px 20px rgba(233, 78, 94, 0.4);
}

/*================================================================*/
/*--------------------------- PAGE JALUR SELEKSI (TABEL) ---------------------------*/
/*================================================================*/

.page-jalur-seleksi {
    /* Perhatian: Mendefinisikan ulang variabel di sini tidak disarankan jika root sudah ada. */
    /* Saya akan biarkan dulu sesuai input, tapi sebaiknya ini dihapus jika sudah ada di :root */
    --primary-orange: #FF8A00;
    --accent-red: #E94E5E;
    --secondary-blue: #007AFF;
    --bg-soft: #F0F2F5;
    --white: #ffffff;
    --text-dark: #1A1A1A;
    --text-medium: #6B7280;

    font-family: Inter, sans-serif;
    background: var(--bg-soft);
    color: var(--text-dark);
}

/* ===== CONTAINER ===== */
.page-jalur-seleksi .js-container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* ===== HERO ===== */
.page-jalur-seleksi__hero {
    text-align: center;
    padding: 3rem 0 2rem;
}

.page-jalur-seleksi__hero h2 {
    font-size: 2.3rem;
    font-weight: 900;
    margin: 0;
}

.page-jalur-seleksi__hero span {
    color: var(--primary-orange);
}

.page-jalur-seleksi__hero p {
    color: var(--text-medium);
    margin-top: .5rem;
}

/* ===== TABLE DESKTOP ===== */
.page-jalur-seleksi__table-wrapper {
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    overflow: hidden;
    margin-bottom: 3rem;
}

.page-jalur-seleksi table {
    width: 100%;
    border-collapse: collapse;
}

.page-jalur-seleksi thead th {
    background: var(--primary-orange);
    color: #fff;
    padding: 1rem;
    font-size: .85rem;
    text-transform: uppercase;
    text-align: left;
}

.page-jalur-seleksi tbody tr {
    border-bottom: 1px solid #eee;
}

.page-jalur-seleksi tbody td {
    padding: 1rem;
    font-size: .9rem;
    vertical-align: middle;
}

.page-jalur-seleksi__biaya {
    font-weight: 700;
    color: var(--accent-red);
}

.page-jalur-seleksi__gratis {
    color: var(--primary-orange);
}

/* ===== BADGE ===== */
.page-jalur-seleksi__badge {
    font-size: .75rem;
    font-weight: 700;
    color: var(--primary-orange);
}

/* ===== BUTTON ===== */
.page-jalur-seleksi__actions {
    display: flex;
    gap: 8px;
}

.page-jalur-seleksi__btn {
    flex: 1;
    padding: .6rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: .85rem;
    text-align: center;
    text-decoration: none;
}

.page-jalur-seleksi__btn--primary {
    background: var(--primary-orange);
    color: #fff;
}
.page-jalur-seleksi__btn--primary:hover {
    text-decoration: none;
    background: var(--accent-red);
    color: #fff;
}

.page-jalur-seleksi__btn--outline {
    border: 1px solid var(--text-medium);
    color: var(--text-medium);
}
.page-jalur-seleksi__btn--outline:hover {
    text-decoration: none;
    border: 1px solid var(--primary-orange);
    color: var(--primary-orange);
}

/* ===== MOBILE CARD ===== */
.page-jalur-seleksi__mobile-card {
    display: none;
    background: var(--white);
    border-radius: 14px;
    padding: 1.2rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
    margin-bottom: 1rem;
}

.page-jalur-seleksi__card-title {
    font-weight: 800;
    margin-bottom: .3rem;
}

.page-jalur-seleksi__card-meta {
    font-size: .85rem;
    color: var(--text-medium);
    margin-bottom: .8rem;
}

.page-jalur-seleksi__card-row {
    display: flex;
    justify-content: space-between;
    font-size: .85rem;
    margin-bottom: .6rem;
}


/*================================================================*/
/*--------------------------- INFORMASI & KONTAK ---------------------------*/
/*================================================================*/

/* HERO SECTION */
.hero-title-section {
    text-align: center;
    padding: 80px 0 0 0; /* Padding sedikit dikurangi */
}

.hero-title-section h2 {
    font-size: 3em;
    font-weight: 900;
    color: var(--text-dark);
    margin: 0 0 10px 0;
}

.hero-title-section h2 span {
    color: var(--primary-orange);
}

.hero-title-section p {
    font-size: 1.1em;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto 40px auto;
}
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 3 kolom yang sama lebar */
    gap: 30px;
    padding: 30px 0 80px 0;
}

.info-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-card);
    border-top: 5px solid var(--primary-orange); /* Garis atas oranye */
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.info-card h3 {
    font-size: 1.5em;
    font-weight: 900;
    margin-top: 0;
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* KIRI LEBIH SIMPLE */
.info-card-simple .simple-list p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0;
    font-size: 0.95em;
}

.info-card-simple i {
    color: var(--primary-orange);
    min-width: 18px;
}

/* Map versi kecil */
.map-mini {
    margin-top: 15px;
    aspect-ratio: 16 / 7;
}

.info-card h3 i {
    color: var(--text-dark);
}

.info-detail p {
    margin: 5px 0;
    color: var(--text-dark);
    font-size: 0.95em;
}

.info-detail strong {
    font-weight: 700;
    color: var(--text-dark);
}

/* Stylig Khusus untuk Lokasi/Map */
.map-container {
    border-radius: 10px;
    overflow: hidden;
    margin-top: 15px;
    aspect-ratio: 16 / 9; /* Rasio standar untuk iframe map */
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Styling Jadwal/List */
.schedule-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.schedule-list li {
    padding: 10px 0;
    border-bottom: 1px solid #E5E5E5;
    display: flex;
    justify-content: space-between;
    font-size: 0.95em;
}
.schedule-list li:nth-child(even) {
    background-color: #F8F8F8; /* Latar belakang abu-abu muda untuk baris tanggal */
    padding: 8px 15px; /* Sesuaikan padding */
    margin: 5px 0; /* Memberi sedikit jarak antar jadwal */
    border-radius: 8px; /* Sudut membulat */
    display: block; /* Memastikan baris ini mengambil lebar penuh */
}
.schedule-list .schedule-date {
    display: block;
    font-size: 1em; /* Ukuran font lebih besar sedikit dari yang lain */
    font-weight: 700; /* Tebal */
    color: var(--text-dark); /* Warna teks lebih gelap */
    text-align: left; /* Tanggal di tengah */
    padding: 5px 0;
    letter-spacing: 0.5px; /* Sedikit spasi antar huruf untuk keterbacaan */
    border-bottom: none !important; /* Hilangkan border bawah bawaan */
}

/* Tambahan: Mengubah warna icon Jadwal menjadi lebih cerah */
.info-card h3 i.fa-calendar-alt {
    color: var(--primary-orange);
}

/* Tambahan: Styling untuk baris nama jalur agar ada border di bawahnya */
.schedule-list li:nth-child(odd) {
    border-bottom: 1px dashed #E5E5E5; /* Border putus-putus */
    padding-bottom: 5px;
    padding-top: 15px;
}
.schedule-list li:last-child {
    border-bottom: none;
}

.schedule-list .status-open {
    color: green;
    font-weight: 700;
}

.schedule-list .status-closed {
    color: var(--accent-red);
    font-weight: 700;
}

/*================================================================*/
/*---------------------------  Detail Jalur Seleksi ----------------------------*/
/*===================================================================*/

.djs-card {
    background-color: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    margin-bottom: 30px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.djs-card:hover {
    transform: translateY(-3px);
}

/* --- HEADER CUSTOM --- */
.djs-card-header {
    border-bottom: 3px solid var(--primary-orange);
    padding-bottom: 12px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.djs-card-title {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--text-dark);
    margin: 0;
}

/* --- TABLE DETAIL --- */
.djs-table-info {
    width: 100%;
    border-collapse: collapse;
}

.djs-table-info th,
.djs-table-info td {
    padding: 16px 0;
    border-bottom: 1px solid #F0F0F0;
    text-align: left;
}

.djs-table-info th {
    width: 30%;
    color: var(--text-medium);
    font-weight: 600;
    font-size: 0.95rem;
}

.djs-table-info td {
    color: var(--text-dark);
    font-weight: 700;
}

/* --- TABLE PRODI --- */
.djs-prodi-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid #EEE;
    margin-top: 20px;
}

.djs-table-prodi {
    width: 100%;
    border-collapse: collapse;
}

.djs-table-prodi thead th {
    background-color: var(--primary-orange);
    color: var(--white);
    padding: 14px 18px;
    text-align: left;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.djs-table-prodi tbody td {
    padding: 14px 18px;
    border-bottom: 1px solid #F0F0F0;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.djs-table-prodi tbody tr:hover {
    background-color: #FFF9F2;
}

/* --- BADGE & BUTTONS --- */
.djs-badge-kuota {
    background-color: rgba(233, 78, 94, 0.1);
    color: var(--accent-red);
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 0.8rem;
}

.djs-action-group {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 30px;
}

.djs-btn {
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.djs-btn-back {
    background-color: #E5E7EB;
    color: var(--text-medium);
}
.djs-btn-back:hover {
    text-decoration: none;
    background-color: #E5E7EB;
    color: var(--primary-orange);
}

.djs-btn-submit {
    background-color: var(--primary-orange);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 138, 0, 0.3);
}

.djs-btn-submit:hover {
    text-decoration: none;
    color: var(--white);
    background-color: var(--accent-red);
}

/*================================================================*/
/*--------------------------- ADMISI SIGNUP CSS ---------------------------*/
/*================================================================*/
.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--text-medium);
    z-index: 10;
    padding: 15px;
    transition: color 0.3s;
}

.password-toggle:hover {
    color: var(--primary-orange);
}

/* Pastikan input tidak menimpa ikon mata */
.input-with-icon .adm-input-field {
    padding-right: 40px !important;
}
.adm-form-container {
    padding: 60px 0;
    min-height: 100vh;
}

/* Hero Header */
.adm-hero-header {
    text-align: center;
    margin-bottom: 45px;
}

.adm-hero-header h2 {
    font-weight: 900;
    font-size: 2.8rem;
    margin: 0;
}

.adm-hero-header h2 span {
    color: var(--primary-orange);
}

.adm-hero-header .sub-text {
    color: var(--text-medium);
    font-size: 1.1rem;
    margin-top: 10px;
}

/* Registration Card */
.adm-card-registration {
    background: var(--white);
    border-radius: 25px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
}

.adm-body-section {
    padding: 45px;
}

.adm-border-divider {
    border-right: 1px solid #F0F2F5;
}

/* Section Subtitle */
.adm-section-subtitle {
    font-weight: 800;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: var(--text-dark);
}

.adm-section-subtitle i {
    color: var(--primary-orange);
    font-size: 1.1rem;
}

/* Input Styling */
.adm-form-group {
    margin-bottom: 1.5rem;
}

.adm-input-label {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: block;
}

.adm-input-field {
    border-radius: 12px !important;
    background-color: #F9FAFB !important;
    border: 2px solid #F3F4F6 !important;
    height: auto !important;
    padding: 14px 30px !important;
    font-size: 0.95rem !important;
    width: 100%;
    transition: all 0.3s ease !important;
    outline: none;
}

.adm-input-field:focus {
    border-color: var(--primary-orange) !important;
    background-color: var(--white) !important;
    box-shadow: 0 0 0 4px rgba(255, 138, 0, 0.1) !important;
}

/* Hint Block */
.adm-hint {
    font-size: 0.78rem;
    color: var(--text-medium);
    margin-top: 6px;
    display: block;
    line-height: 1.4;
}

/* Action Wrapper */
.adm-action-wrapper {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.adm-btn-submit {
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 18px;
    border-radius: 15px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(255, 138, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.adm-btn-submit:hover {
    background: var(--accent-red);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(233, 78, 94, 0.3);
    color: white;
    text-decoration: none;
}

.adm-btn-cancel {
    text-align: center;
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.adm-btn-cancel:hover {
    color: var(--accent-red);
    text-decoration: none;
}
.adm-card-registration .row.no-gutters {
    display: flex;
    flex-wrap: wrap;
}

.adm-card-registration .col-md-6 {
    display: flex;
    flex-direction: column;
}

.adm-card-registration .adm-body-section {
    flex: 1; /* Memaksa box putih mengikuti tinggi kolom */
}

/* Memastikan hint selalu memakan ruang yang sama agar field di bawahnya sejajar */
.adm-hint {
    min-height: 20px;
    margin-bottom: 5px;
}


/*==================================================================*/
/*------------------------ LOGIN -------------------------------------*/
/*====================================================================*/
.login-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}
.login-brand {
    margin-bottom: 30px;
}

.brand-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-orange);
    color: white;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    margin: 0 auto 15px;
    box-shadow: 0 10px 20px rgba(255, 138, 0, 0.3);
}

.login-brand h2 {
    font-weight: 800;
    font-size: 2rem;
    color: var(--text-dark);
}

.login-brand h2 span {
    color: var(--primary-orange);
}

.login-brand p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* Card Style */
.login-card {
    background: var(--white);
    padding: 40px;
    border-radius: 25px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(255,255,255,0.8);
}

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

.adm-input-label {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: block;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-medium);
    transition: color 0.3s;
}
.input-with-icon-2 {
    position: relative;
    display: block; /* Pastikan block */
}

/* Ikon posisi absolut */
.input-with-icon-2 i {
    position: absolute;
    left: 18px;

    /* JANGAN gunakan 50% jika ada teks error di bawahnya */
    /* Gunakan jarak pixel tetap dari atas agar tidak terpengaruh teks error */
    top: 28px;

    transform: translateY(-50%);
    color: var(--primary-orange);
    z-index: 10;
    transition: all 0.3s;
}

/* Pastikan input memiliki padding kiri agar teks tidak tertutup ikon */
.input-with-icon-2 .adm-input-field {
    padding-left: 50px !important;
}

/* Opsional: Jika ada pesan error, buat warnanya tetap sinkron */
.input-with-icon-2 .is-invalid + .invalid-feedback {
    margin-top: 5px;
    margin-left: 5px;
}


.adm-input-field:focus + i {
    color: var(--primary-orange);
}

/* Button & Links */
.adm-btn-login {
    width: 100%;
    background: var(--primary-orange);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 15px;
    font-weight: 800;
    font-size: 1rem;
    transition: all 0.3s;
    cursor: pointer;
    box-shadow: 0 8px 15px rgba(255, 138, 0, 0.2);
}

.adm-btn-login:hover {
    background: var(--accent-red);
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(233, 78, 94, 0.3);
}

.forgot-link, .login-footer a {
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
}

.forgot-link:hover, .login-footer a:hover {
    text-decoration: underline;
    color: var(--accent-red);
}

.back-home {
    display: block;
    margin-top: 15px;
    color: var(--text-medium) !important;
    font-weight: 600 !important;
}

/* Custom Checkbox */
.custom-control-input:checked ~ .custom-control-label::before {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
}

.login-footer {
    margin-top: 30px;
}

.login-footer p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.login-footer a {
    color: var(--primary-orange);
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s;
}

.login-footer a:hover {
    color: var(--accent-red);
    text-decoration: underline;
}

.back-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: var(--text-medium) !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
}
/*================================================================*/
/*--------------------------- MEDIA QUERIES ---------------------------*/
/*================================================================*/

@media (max-width: 1050px) {
    .program-card {
        max-width: 48%;
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {

    .header {
        padding: 1rem 5%;
    }
    .selection-hero {
        padding: 5rem 0 1rem 0;
    }
    .selection-hero h2 {
        font-size: 2.5rem;
    }
    .selection-hero p {
        margin: 0 auto 1rem auto;
    }
    .hamburger {
        display: block;
    }
    .nav-link-group {

        position: absolute;
        top: 70px;
        right: 5%;
        width: 90%;
        max-width: 300px;
        background-color: var(--white);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 10px 0;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        border-radius: 0 0 10px 10px;
        z-index: 90;
    }
    .nav-link-group.active {
        display: flex;
    }
    .nav-link-group a {
        width: 100%;
        margin: 0;
        padding: 15px 25px;
        border-bottom: 1px solid var(--bg-soft);
        box-sizing: border-box;
    }
    .nav-btn {
        margin: 10px 25px 15px 25px;
        width: calc(100% - 50px);
        text-align: center;
        padding: 15px 0;
    }

    /* Landing Page (Jalur Seleksi) Overrides */
    .program-selection {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        padding-top: 1rem;
    }
    .program-card {
        max-width: 90%;
        padding: 1.5rem;
    }
    .program-card__detail {
        min-height: auto;
    }
    .blur-element {
        display: none;
    }
    .page-jalur-seleksi__table-wrapper {
        display: none;
    }

    .page-jalur-seleksi__mobile-card {
        display: block;
    }

    .page-jalur-seleksi__hero h2 {
        font-size: 1.8rem;
    }

    .info-grid {
        grid-template-columns: 1fr; /* Kolom tunggal di mobile */
    }

    /* Sesuaikan hero title agar tidak terlalu besar di mobile */
    .contact-hero {
        padding: 50px 0 30px 0;
    }
    .contact-hero h2 {
        font-size: 2em;
    }
    .contact-hero p {
        font-size: 1em;
        margin: 0 auto 20px auto;
    }
    .adm-border-divider {
        border-right: none;
        border-bottom: 1px solid #F0F2F5;
    }
    .adm-body-section {
        padding: 30px;
    }
    .adm-hero-header h2 {
        font-size: 2rem;
    }
    .adm-form-container {
        padding: 30px 0;
    }
}

@media (max-width: 480px) {
    .login-card {
        padding: 30px 20px;
    }
    .login-brand h2 {
        font-size: 1.8rem;
    }
    .selection-hero {
        padding: 5rem 0 1rem 0;
    }
    .selection-hero h2 {
        font-size: 2rem;
    }
    .selection-hero p {
        font-size: 0.9rem;
    }
    .program-card h3 {
        font-size: 1.5rem;
    }
    .program-card__icon {
        font-size: 2rem;
    }
}