/* ═══════════════════════════════════════════════════════════════
   BKK SMKN 4 Bandar Lampung — Custom Stylesheet
   Complement Bootstrap 5.3 with school brand identity
   ═══════════════════════════════════════════════════════════════ */

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
    --bkk-primary: #2563EB;
    --bkk-primary-dark: #1E40AF;
    --bkk-primary-darker: #1E3A8A;
    --bkk-primary-light: #3B82F6;
    --bkk-primary-lighter: #DBEAFE;
    --bkk-primary-subtle: #EFF6FF;
    --bkk-secondary: #0F172A;
    --bkk-surface: #F8FAFC;
    --bkk-surface-alt: #F1F5F9;
    --bkk-muted: #64748B;
    --bkk-text: #1E293B;
    --bkk-text-light: #475569;
    --bkk-success: #16A34A;
    --bkk-success-light: #DCFCE7;
    --bkk-warning: #F59E0B;
    --bkk-warning-light: #FEF3C7;
    --bkk-danger: #DC2626;
    --bkk-danger-light: #FEE2E2;
    --bkk-white: #FFFFFF;
    --bkk-border: #E2E8F0;
    --bkk-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
    --bkk-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    --bkk-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --bkk-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
    --bkk-radius: 0.75rem;
    --bkk-radius-lg: 1rem;
    --bkk-radius-xl: 1.25rem;
    --bkk-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Global ────────────────────────────────────────────────── */
html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--bkk-text);
    background-color: var(--bkk-white);
    overflow-x: clip;
    letter-spacing: -0.015em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.min-w-0 {
    min-width: 0 !important;
}

/* ── Navbar ────────────────────────────────────────────────── */
.bkk-navbar {
    background: var(--bkk-white);
    border-bottom: 1px solid var(--bkk-border);
    box-shadow: var(--bkk-shadow);
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 1050;
    transition: var(--bkk-transition);
}

.bkk-navbar .navbar-brand {
    font-weight: 700;
    color: var(--bkk-primary);
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
}

.bkk-navbar .navbar-brand .brand-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--bkk-primary), var(--bkk-primary-dark));
    border-radius: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1;
    flex-shrink: 0;
}

.bkk-navbar .navbar-brand .brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.bkk-navbar .navbar-brand .brand-text .brand-name {
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--bkk-primary-dark);
}

.bkk-navbar .navbar-brand .brand-text .brand-sub {
    font-weight: 500;
    font-size: 0.7rem;
    color: var(--bkk-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bkk-navbar .nav-link {
    color: #475569;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 0.85rem !important;
    border-radius: 0.5rem;
    transition: var(--bkk-transition);
    position: relative;
}

.bkk-navbar .nav-link:hover {
    color: #2563EB;
}

.bkk-navbar .nav-link.active {
    color: #2563EB;
    font-weight: 600;
}

.bkk-navbar .navbar-nav {
    list-style: none !important;
    padding-left: 0 !important;
    margin-bottom: 0 !important;
}

.bkk-navbar .navbar-nav .nav-item {
    list-style: none !important;
}

.bkk-navbar .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -0.85rem;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 2.5px;
    background: #2563EB;
    border-radius: 2px;
}

@media (max-width: 991.98px) {
    .bkk-navbar .navbar-collapse {
        background: #FFFFFF;
        padding: 1.25rem;
        border-radius: var(--bkk-radius);
        box-shadow: var(--bkk-shadow-lg);
        margin-top: 0.75rem;
        border: 1px solid #E2E8F0;
    }

    .bkk-navbar .nav-link.active::after {
        display: none;
    }
}

.btn-search-nav {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748B;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 1rem;
}

.btn-search-nav:hover {
    background: #F1F5F9;
    color: #2563EB;
}

.btn-masuk {
    color: #1E293B !important;
    border: 1px solid #CBD5E1 !important;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.45rem 1.25rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    background: transparent;
    text-decoration: none;
}

.btn-masuk:hover {
    background: #F8FAFC !important;
    border-color: #94A3B8 !important;
    color: #0F172A !important;
}

.btn-daftar {
    background: #2563EB !important;
    color: #FFFFFF !important;
    border: none !important;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.5rem 1.35rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
    text-decoration: none;
}

.btn-daftar:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
    background: #1D4ED8 !important;
    color: #FFFFFF !important;
}

/* ── Hero Section (Reference Design) ────────────────────────── */
.bkk-hero {
    background-color: #0A192F;
    background-image:
        linear-gradient(90deg, rgba(10, 25, 47, 0.95) 0%, rgba(12, 28, 52, 0.90) 45%, rgba(12, 28, 52, 0.40) 75%, rgba(10, 25, 47, 0.20) 100%),
        url('../images/hero-sekolah.jpg');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    position: relative;
    padding: 4.25rem 0 5rem;
    min-height: 480px;
    display: flex;
    align-items: center;
}

.bkk-hero .container {
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.hero-heading {
    color: #FFFFFF;
    font-weight: 800;
    font-size: clamp(1.85rem, 3.5vw, 2.75rem);
    line-height: 1.2;
    margin-bottom: 0.85rem;
    letter-spacing: -0.025em;
    max-width: 600px;
}

.hero-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 520px;
}

/* Hero Search Capsule */
.hero-search-capsule {
    max-width: 520px;
    margin-bottom: 1.25rem;
}

.search-capsule-inner {
    background: #FFFFFF;
    border-radius: 999px;
    padding: 0.35rem 0.35rem 0.35rem 1.25rem;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.search-capsule-inner .search-icon {
    color: #94A3B8;
    font-size: 1.1rem;
    margin-right: 0.65rem;
    flex-shrink: 0;
}

.search-capsule-inner .search-input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 0.875rem;
    color: #0F172A;
    width: 100%;
}

.search-capsule-inner .search-input::placeholder {
    color: #94A3B8;
}

.search-capsule-inner .btn-capsule-search {
    background: #2563EB;
    color: #FFFFFF;
    border: none;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.55rem 1.35rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.search-capsule-inner .btn-capsule-search:hover {
    background: #1D4ED8;
}

/* Shortcut Chips */
.hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.hero-chip {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.4rem 0.95rem;
    border-radius: 999px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: all 0.2s ease;
}

.hero-chip:hover {
    background: rgba(255, 255, 255, 0.22);
    color: #FFFFFF;
    transform: translateY(-1px);
}

/* Tagline Badge on Right */
.hero-tagline-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 1.25rem;
    padding: 1.15rem 1.65rem;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.hero-tagline-badge .tagline-text {
    font-weight: 800;
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: #FFFFFF;
}

.hero-tagline-badge .tagline-icon {
    font-size: 1.5rem;
    color: #FDE047;
}

/* ── Floating Stats Strip (Reference Design) ─────────────────── */
.bkk-stats-wrapper {
    position: relative;
    z-index: 10;
    margin-top: -2.5rem;
    margin-bottom: 2.5rem;
}

.stats-card-container {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 1rem;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.08);
    padding: 1.15rem 1.75rem;
}

.stats-card-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex: 1;
    justify-content: center;
}

.stat-item:not(:last-child) {
    border-right: 1px solid #F1F5F9;
}

.stat-icon-circle {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.icon-blue {
    background: #EFF6FF;
    color: #2563EB;
}

.icon-green {
    background: #F0FDF4;
    color: #16A34A;
}

.icon-cyan {
    background: #ECFEFF;
    color: #0891B2;
}

.icon-purple {
    background: #FAF5FF;
    color: #9333EA;
}

.icon-amber {
    background: #FFFBEB;
    color: #D97706;
}

.stat-info {
    line-height: 1.15;
}

.stat-number {
    font-weight: 800;
    font-size: 1.35rem;
    color: #0F172A;
    line-height: 1.1;
    margin-bottom: 0.15rem;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.78rem;
    color: #64748B;
    font-weight: 500;
}

/* ── Clean Section Headers (Reference Design) ───────────────── */
.section-header-clean {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.section-icon-box {
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
    aspect-ratio: 1 / 1;
    border-radius: 0.5rem;
    background: #EFF6FF;
    border: 1px solid #DBEAFE;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563EB;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.section-heading-clean {
    font-weight: 700;
    font-size: 1.35rem;
    color: #0F172A;
    line-height: 1.2;
}

.section-sub-clean {
    font-size: 0.85rem;
    color: #64748B;
    margin-top: 0.25rem;
}

.section-link-clean {
    color: #2563EB;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.section-link-clean:hover {
    color: #1D4ED8;
    gap: 0.55rem;
}

/* ── Section Styling ───────────────────────────────────────── */
.bkk-section {
    padding: 3rem 0;
}

.bkk-section-alt {
    background-color: #F8FAFC;
}


.section-eyebrow {
    color: #1D4ED8;
    font-weight: 600;
    font-size: 0.725rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.25rem;
}

.section-title {
    font-weight: 700;
    font-size: 1.55rem;
    color: #0F172A;
    margin-bottom: 0.35rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    color: #64748B;
    font-size: 0.875rem;
    line-height: 1.55;
    max-width: 520px;
}

.section-link {
    color: #1D4ED8;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.2s ease;
}

.section-link:hover {
    color: #1E40AF;
    gap: 0.5rem;
}

/* ── Statistik Metric Ribbon ───────────────────────────────── */
.bkk-statistik {
    background: #0F172A;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid #E2E8F0;
    padding: 1.5rem 0;
}

.statistik-card {
    text-align: center;
    padding: 0.65rem 0.5rem;
}

.statistik-icon {
    width: 36px;
    height: 36px;
    border-radius: 0.5rem;
    background: rgba(59, 130, 246, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.4rem;
    font-size: 1rem;
    color: #60A5FA;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.statistik-nilai {
    font-size: 1.45rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.1;
    margin-bottom: 0.15rem;
    letter-spacing: -0.02em;
}

.statistik-label {
    color: #94A3B8;
    font-size: 0.75rem;
    font-weight: 500;
}

/* ── Card Lowongan ─────────────────────────────────────────── */
.kartu-lowongan {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 0.75rem;
    padding: 1.15rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.kartu-lowongan:hover {
    border-color: #BFDBFE;
    box-shadow: 0 10px 24px -4px rgba(37, 99, 235, 0.08);
    transform: translateY(-3px);
}

.lowongan-header {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.lowongan-logo {
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
    aspect-ratio: 1 / 1;
    border-radius: 0.5rem;
    background: #EFF6FF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    color: #1D4ED8;
    flex-shrink: 0;
    border: 1px solid #DBEAFE;
}

.lowongan-logo img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 0.5rem;
    flex-shrink: 0;
}

.lowongan-perusahaan {
    font-weight: 600;
    font-size: 0.78rem;
    color: #64748B;
    line-height: 1.2;
}

.lowongan-judul {
    font-weight: 700;
    font-size: 0.95rem;
    color: #0F172A;
    margin-bottom: 0.65rem;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.5rem;
}

.lowongan-detail {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 0.85rem;
    flex-grow: 1;
}

.lowongan-detail-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: #64748B;
}

.lowongan-detail-item i {
    color: #3B82F6;
    font-size: 0.8rem;
    width: 14px;
    text-align: center;
    flex-shrink: 0;
}

.btn-lihat-detail {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    background: #2563EB;
    color: #FFFFFF;
    border: none;
    font-weight: 600;
    font-size: 0.825rem;
    padding: 0.55rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.2s ease;
    width: 100%;
    text-align: center;
}

.btn-lihat-detail:hover {
    background: #1D4ED8;
    color: #FFFFFF;
}

/* ── Badge Status ──────────────────────────────────────────── */
.badge-aktif {
    background: #DCFCE7;
    color: #15803D;
    font-weight: 600;
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    white-space: nowrap;
}

.badge-segera {
    background: #FEF3C7;
    color: #B45309;
    font-weight: 600;
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    white-space: nowrap;
}

.badge-ditutup {
    background: #FEE2E2;
    color: #B91C1C;
    font-weight: 600;
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    white-space: nowrap;
}

/* ── Card Berita ───────────────────────────────────────────── */
.kartu-berita {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.2s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.kartu-berita:hover {
    box-shadow: 0 10px 24px -4px rgba(0, 0, 0, 0.06);
    transform: translateY(-3px);
    border-color: #BFDBFE;
}

.berita-thumbnail {
    height: 150px;
    background: #EFF6FF;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.berita-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.berita-thumbnail .placeholder-thumb {
    font-size: 2rem;
    color: #93C5FD;
    opacity: 0.5;
}

.berita-kategori {
    position: absolute;
    top: 0.65rem;
    left: 0.65rem;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(4px);
    color: #FFFFFF;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
}

.berita-body {
    padding: 1.15rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.berita-judul {
    font-weight: 700;
    font-size: 0.95rem;
    color: #0F172A;
    margin-bottom: 0.45rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.6rem;
}

.berita-ringkasan {
    font-size: 0.8rem;
    color: #64748B;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.berita-tanggal {
    font-size: 0.75rem;
    color: #94A3B8;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.berita-link {
    color: #1D4ED8;
    font-weight: 600;
    font-size: 0.8rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.2s ease;
}

.berita-link:hover {
    color: #1E40AF;
    gap: 0.5rem;
}

/* ── Card Pengumuman ───────────────────────────────────────── */
.kartu-pengumuman {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0.5rem;
    border-radius: 0.6rem;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    text-decoration: none;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.kartu-pengumuman:hover {
    background: #EFF6FF;
    border-color: #DBEAFE;
}

.pengumuman-tanggal {
    flex-shrink: 0;
    width: 44px;
    text-align: center;
    background: #EFF6FF;
    border-radius: 0.5rem;
    padding: 0.35rem 0.2rem;
    border: 1px solid #DBEAFE;
}

.pengumuman-tanggal .hari {
    font-size: 1.05rem;
    font-weight: 800;
    color: #1D4ED8;
    line-height: 1;
}

.pengumuman-tanggal .bulan {
    font-size: 0.625rem;
    font-weight: 700;
    color: #1D4ED8;
    text-transform: uppercase;
}

.pengumuman-konten {
    min-width: 0;
    flex: 1 1 0%;
    overflow: hidden;
}

.pengumuman-konten .pengumuman-judul {
    font-weight: 600;
    font-size: 0.85rem;
    color: #0F172A;
    line-height: 1.35;
    margin-bottom: 0.15rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    display: block;
}

.pengumuman-konten .pengumuman-ringkasan {
    font-size: 0.75rem;
    color: #64748B;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    width: 100%;
}

/* ── Card Alumni ───────────────────────────────────────────── */
.kartu-alumni {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 0.75rem;
    padding: 1.15rem 1rem;
    text-align: center;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.kartu-alumni:hover {
    transform: translateY(-3px);
    border-color: #BFDBFE;
    box-shadow: 0 10px 24px -4px rgba(0, 0, 0, 0.06);
}

.alumni-foto {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    margin: 0 auto 0.75rem;
    overflow: hidden;
    border: 2px solid #DBEAFE;
    background: #F8FAFC;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.alumni-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.alumni-foto .placeholder-avatar {
    font-size: 1.6rem;
    color: #94A3B8;
}

.alumni-nama {
    font-weight: 700;
    font-size: 0.95rem;
    color: #0F172A;
    margin-bottom: 0.15rem;
}

.alumni-info {
    font-size: 0.75rem;
    color: #64748B;
    margin-bottom: 0.45rem;
}

.alumni-pekerjaan {
    font-size: 0.8rem;
    line-height: 1.3;
}

.alumni-posisi {
    font-weight: 600;
    font-size: 0.8rem;
    color: #1D4ED8;
}

.alumni-perusahaan {
    font-size: 0.78rem;
    color: #64748B;
}

.alumni-testimoni {
    font-size: 0.8rem;
    color: #475569;
    font-style: italic;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: auto;
    padding-top: 0.6rem;
    border-top: 1px dashed #E2E8F0;
    width: 100%;
}

/* ── Card Kegiatan ─────────────────────────────────────────── */
.kartu-kegiatan {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.kartu-kegiatan:hover {
    box-shadow: 0 10px 24px -4px rgba(0, 0, 0, 0.06);
    transform: translateY(-3px);
    border-color: #BFDBFE;
}

.kegiatan-foto {
    height: 150px;
    background: #F1F5F9;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kegiatan-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kegiatan-foto .placeholder-thumb {
    font-size: 2rem;
    color: #93C5FD;
    opacity: 0.5;
}

.kegiatan-kategori {
    position: absolute;
    top: 0.65rem;
    left: 0.65rem;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(4px);
    color: #FFFFFF;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
}

.kegiatan-body {
    padding: 1.15rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.kegiatan-judul {
    font-weight: 700;
    font-size: 0.95rem;
    color: #0F172A;
    margin-bottom: 0.5rem;
    line-height: 1.35;
    min-height: 2.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.kegiatan-meta {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 0.75rem;
}

.kegiatan-meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: #64748B;
}

.kegiatan-meta-item i {
    color: #3B82F6;
    font-size: 0.8rem;
    width: 14px;
    text-align: center;
}

.kegiatan-ringkasan {
    font-size: 0.8rem;
    color: #64748B;
    line-height: 1.5;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0.85rem;
}

.kegiatan-link {
    color: #1D4ED8;
    font-weight: 600;
    font-size: 0.8rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.2s ease;
}

.kegiatan-link:hover {
    color: #1E40AF;
    gap: 0.5rem;
}

/* ── Cara Mendaftar Banner (Reference Design) ───────────────── */
.cara-daftar-banner {
    background: #F0F7FF;
    border: 1px solid #DBEAFE;
    border-radius: 1.25rem;
    padding: 2.25rem 2rem;
    position: relative;
    overflow: hidden;
}

.cara-daftar-illu-box {
    text-align: center;
    position: relative;
}

.cara-daftar-illu {
    max-height: 220px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 1rem;
    filter: drop-shadow(0 10px 20px rgba(37, 99, 235, 0.12));
}

.illu-badge {
    display: inline-block;
    background: #FFFFFF;
    color: #2563EB;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.12);
    margin-bottom: 0.85rem;
    border: 1px solid #DBEAFE;
}

.stepper-steps-wrapper {
    position: relative;
    margin: 1.75rem 0 1.5rem;
}

.stepper-line {
    position: absolute;
    top: 19px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: #BFDBFE;
    z-index: 1;
}

.stepper-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.stepper-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    padding: 0 0.25rem;
}

.step-bubble {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #2563EB;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.65rem;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
    border: 2px solid #FFFFFF;
}

.step-title {
    font-weight: 700;
    font-size: 0.85rem;
    color: #0F172A;
    margin-bottom: 0.2rem;
}

.step-desc {
    font-size: 0.75rem;
    color: #64748B;
    line-height: 1.35;
    max-width: 140px;
}

/* ── CTA Section ───────────────────────────────────────────── */
.bkk-cta {
    background: #0B132B;
    background-image: radial-gradient(at 50% 50%, rgba(30, 58, 138, 0.35) 0px, transparent 70%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3.5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-heading {
    color: #F8FAFC;
    font-weight: 700;
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.cta-desc {
    color: #94A3B8;
    font-size: 0.925rem;
    margin-bottom: 1.5rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.btn-cta {
    background: #1D4ED8;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.65rem 1.75rem;
    border-radius: 0.5rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(29, 78, 216, 0.3);
    position: relative;
    z-index: 1;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(29, 78, 216, 0.4);
    color: #FFFFFF;
    background: #1E40AF;
}

/* ── Footer ────────────────────────────────────────────────── */
.bkk-footer {
    background: #0F172A;
    color: rgba(255, 255, 255, 0.7);
    padding-top: 3.5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1rem;
    text-decoration: none;
}

.footer-brand .brand-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--bkk-primary), var(--bkk-primary-dark));
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.95rem;
    font-weight: 800;
}

.footer-brand .brand-name {
    font-weight: 700;
    color: white;
    font-size: 1rem;
}

.footer-desc {
    font-size: 0.875rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.25rem;
    max-width: 300px;
}

.footer-heading {
    font-weight: 700;
    color: white;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.65rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2.5px;
    background: var(--bkk-primary);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--bkk-transition);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-links a:hover {
    color: white;
    padding-left: 0.25rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.85rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-contact-item i {
    color: var(--bkk-primary-light);
    font-size: 0.95rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.footer-social {
    display: flex;
    gap: 0.65rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    text-decoration: none;
    transition: var(--bkk-transition);
}

.footer-social a:hover {
    background: var(--bkk-primary);
    color: white;
    border-color: var(--bkk-primary);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.25rem 0;
    margin-top: 2.5rem;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ── Empty State ───────────────────────────────────────────── */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--bkk-muted);
}

.empty-state i {
    font-size: 3rem;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.empty-state p {
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
}

/* ── Pengumuman Sidebar ────────────────────────────────────── */
.pengumuman-sidebar {
    background: var(--bkk-white);
    border: 1px solid var(--bkk-border);
    border-radius: var(--bkk-radius);
    padding: 1.5rem;
    height: 100%;
}

.pengumuman-sidebar .sidebar-title {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--bkk-text);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pengumuman-sidebar .sidebar-title i {
    color: var(--bkk-primary);
}

.pengumuman-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

/* ── Animations ────────────────────────────────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered children */
.fade-up-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fade-up-children.visible > *:nth-child(1) { transition-delay: 0s; }
.fade-up-children.visible > *:nth-child(2) { transition-delay: 0.1s; }
.fade-up-children.visible > *:nth-child(3) { transition-delay: 0.2s; }
.fade-up-children.visible > *:nth-child(4) { transition-delay: 0.3s; }
.fade-up-children.visible > *:nth-child(5) { transition-delay: 0.4s; }
.fade-up-children.visible > *:nth-child(6) { transition-delay: 0.5s; }
.fade-up-children.visible > *:nth-child(7) { transition-delay: 0.6s; }
.fade-up-children.visible > *:nth-child(8) { transition-delay: 0.7s; }

.fade-up-children.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive & Mobile Optimization ──────────────────────── */
@media (max-width: 991.98px) {
    .hero-heading {
        font-size: 2.15rem;
    }

    .bkk-stats-wrapper {
        margin-top: -1.75rem;
    }

    .stat-item {
        padding: 0 0.5rem;
    }
}

@media (max-width: 767.98px) {
    .bkk-hero {
        background-image:
            linear-gradient(180deg, rgba(10, 25, 47, 0.94) 0%, rgba(10, 25, 47, 0.90) 100%),
            url('../images/hero-sekolah.jpg');
        background-position: center top;
        padding: 2.25rem 0 3.25rem;
        min-height: auto;
    }

    .hero-heading {
        font-size: 1.65rem;
        line-height: 1.25;
        margin-bottom: 0.65rem;
    }

    .hero-desc {
        font-size: 0.875rem;
        margin-bottom: 1.25rem;
    }

    /* Stats on Mobile: Horizontal Swipeable Ribbon */
    .bkk-stats-wrapper {
        margin-top: -1.75rem;
        margin-bottom: 1.5rem;
    }

    .stats-card-container {
        padding: 0.75rem 0.5rem;
        border-radius: 0.75rem;
    }

    .stats-card-inner {
        overflow-x: auto;
        flex-wrap: nowrap;
        gap: 0.65rem;
        padding: 0.15rem 0.35rem;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
    }

    .stats-card-inner::-webkit-scrollbar {
        display: none;
    }

    .stat-item {
        flex: 0 0 auto;
        min-width: 130px;
        padding: 0 0.5rem;
        justify-content: flex-start;
    }

    .stat-item:not(:last-child) {
        border-right: 1px solid #F1F5F9;
    }

    .stat-number {
        font-size: 1.15rem;
    }

    .stat-label {
        font-size: 0.725rem;
    }

    .stat-icon-circle {
        width: 38px;
        height: 38px;
        min-width: 38px;
        min-height: 38px;
        aspect-ratio: 1 / 1;
        font-size: 1rem;
        flex-shrink: 0;
    }

    /* Card layout on mobile: Clean, vertical full-width cards (no awkward cut-offs) */
    .mobile-snap-row {
        display: flex !important;
        flex-direction: column !important;
        overflow-x: visible !important;
        gap: 1rem !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .mobile-snap-row > [class*="col-"] {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    /* Cara Mendaftar on Mobile */
    .cara-daftar-banner {
        padding: 1.5rem 1rem;
    }

    .stepper-line {
        display: none;
    }

    .stepper-steps {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .stepper-step {
        flex-direction: row;
        text-align: left;
        gap: 0.85rem;
        align-items: center;
        width: 100%;
        padding: 0;
    }

    .step-bubble {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .step-desc {
        max-width: 100%;
    }

    .bkk-section {
        padding: 2.25rem 0;
    }

    .section-heading-clean {
        font-size: 1.15rem;
    }

    .section-link-clean {
        font-size: 0.8rem;
    }

    .cta-heading {
        font-size: 1.4rem;
    }
}

@media (max-width: 575.98px) {
    .hero-chips {
        gap: 0.45rem;
    }

    .hero-chip {
        font-size: 0.75rem;
        padding: 0.35rem 0.75rem;
    }
}

/* ── Mobile Bottom Navigation Bar ──────────────────────────── */
.bkk-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid #E2E8F0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-around;
    z-index: 1040;
    padding: 0 0.5rem;
    padding-bottom: env(safe-area-inset-bottom, 0);
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #64748B;
    font-size: 0.68rem;
    font-weight: 500;
    padding: 0.35rem 0.6rem;
    border-radius: 0.5rem;
    transition: all 0.15s ease;
    min-width: 54px;
    position: relative;
    user-select: none;
}

.bottom-nav-item i {
    font-size: 1.2rem;
    line-height: 1;
    margin-bottom: 2px;
    transition: transform 0.15s ease, color 0.15s ease;
}

.bottom-nav-item:hover {
    color: #1D4ED8;
}

.bottom-nav-item.active {
    color: #1D4ED8;
    font-weight: 700;
}

.bottom-nav-item.active i {
    transform: translateY(-2px);
    color: #1D4ED8;
}

.bottom-nav-dot {
    position: absolute;
    top: -1px;
    right: -3px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #EF4444;
    border: 1.5px solid #FFFFFF;
}

@media (max-width: 991.98px) {
    body {
        padding-bottom: 64px;
    }
}

/* ── Kategori Sumber Lowongan & Thumbnail Cover ─────────────── */
.badge-kategori-internal {
    background: #EFF6FF;
    color: #1D4ED8;
    border: 1px solid #BFDBFE;
    font-size: 0.68rem;
    font-weight: 600;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.badge-kategori-mitra {
    background: #ECFDF5;
    color: #047857;
    border: 1px solid #A7F3D0;
    font-size: 0.68rem;
    font-weight: 600;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.badge-kategori-eksternal {
    background: #F5F3FF;
    color: #6D28D9;
    border: 1px solid #DDD6FE;
    font-size: 0.68rem;
    font-weight: 600;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.kartu-lowongan-cover {
    width: 100%;
    height: 128px;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 0.75rem;
    background: #F8FAFC;
    border: 1px solid #F1F5F9;
    display: block;
}

/* ── Quill Rich Text Editor (Plus Jakarta Sans Default) ─────── */
.ql-container.ql-snow,
.ql-toolbar.ql-snow {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    border-color: #E2E8F0 !important;
}

.ql-toolbar.ql-snow {
    border-top-left-radius: 0.6rem;
    border-top-right-radius: 0.6rem;
    background: #F8FAFC;
    padding: 8px 12px;
}

.ql-container.ql-snow {
    border-bottom-left-radius: 0.6rem;
    border-bottom-right-radius: 0.6rem;
    font-size: 0.9rem;
    min-height: 220px;
    background: #FFFFFF;
}

.ql-editor {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    min-height: 200px;
    line-height: 1.7;
    color: #1E293B;
    font-size: 0.925rem;
}

.ql-editor.ql-blank::before {
    font-style: normal;
    color: #94A3B8;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
}

/* ── Rich Content Display (Halaman Detail Lowongan) ─────────── */
.loker-rich-content {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #334155;
    font-size: 0.975rem;
    line-height: 1.8;
}

.loker-rich-content p {
    margin-bottom: 0.85rem;
}

.loker-rich-content h1,
.loker-rich-content h2,
.loker-rich-content h3,
.loker-rich-content h4,
.loker-rich-content h5 {
    font-weight: 700;
    color: #0F172A;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}

.loker-rich-content ul,
.loker-rich-content ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.loker-rich-content li {
    margin-bottom: 0.35rem;
}

.loker-rich-content blockquote {
    border-left: 3px solid #2563EB;
    padding-left: 1rem;
    margin: 1rem 0;
    color: #64748B;
    font-style: italic;
}

/* ═══════════════════════════════════════════════════════════════
   Mobile Responsive Overrides & Compact Page Headers
   ═══════════════════════════════════════════════════════════════ */

/* Mobile Bottom Navigation Body Offset */
@media (max-width: 991.98px) {
    body {
        padding-bottom: 74px !important;
    }
}

@media (max-width: 767.98px) {
    /* Compact Inner Page Header Banners */
    section.py-5.text-white,
    .page-banner,
    .inner-page-header {
        padding-top: 1.35rem !important;
        padding-bottom: 1.35rem !important;
    }

    section.py-5.text-white .container.py-4,
    section.py-5.text-white .container.py-3,
    section.py-5.text-white .container.py-2 {
        padding-top: 0.15rem !important;
        padding-bottom: 0.15rem !important;
    }

    /* Headings inside banners */
    section.py-5.text-white h1,
    section.py-5.text-white .display-6,
    .page-banner h1,
    .inner-page-header h1 {
        font-size: 1.35rem !important;
        line-height: 1.25 !important;
        margin-bottom: 0.35rem !important;
        letter-spacing: -0.02em;
    }

    /* Subtitles / descriptions inside banners */
    section.py-5.text-white p.lead,
    section.py-5.text-white p.text-white-50 {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
        margin-bottom: 0.5rem !important;
    }

    /* Badge Pills inside banners */
    section.py-5.text-white .badge,
    section.py-5.text-white .rounded-pill {
        font-size: 0.72rem !important;
        padding: 0.25rem 0.65rem !important;
        margin-bottom: 0.4rem !important;
    }

    /* Filter sections on mobile */
    section.py-4.bg-white.border-bottom {
        padding-top: 0.85rem !important;
        padding-bottom: 0.85rem !important;
    }

    /* Form Card Paddings on Mobile */
    .card.p-4.p-md-5,
    .card.p-4 {
        padding: 1.15rem !important;
    }

    /* Input group sizes */
    .input-group-lg > .form-control,
    .input-group-lg > .btn {
        padding: 0.5rem 0.75rem !important;
        font-size: 1rem !important;
    }

    /* BMW Option Cards on Tracer Study */
    .bmw-option-card {
        padding: 0.65rem !important;
    }
    .bmw-option-card .rounded-circle {
        width: 38px !important;
        height: 38px !important;
        margin-bottom: 0.35rem !important;
    }
    .bmw-option-card .rounded-circle i {
        font-size: 1.15rem !important;
    }
    .bmw-option-card h6 {
        font-size: 0.825rem !important;
        margin-bottom: 0.15rem !important;
    }
    .bmw-option-card small {
        font-size: 0.7rem !important;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* Table responsive overflow safeguard */
    .table-responsive {
        -webkit-overflow-scrolling: touch;
        margin-bottom: 1rem;
    }

    /* Autocomplete dropdown for campus and prodi */
    .autocomplete-list-group {
        max-height: 220px !important;
        width: 100% !important;
    }

    /* Auth card responsive adjustments */
    .card.shadow-lg.rounded-4.p-4.p-md-5 {
        padding: 1.25rem !important;
    }
}

@media (max-width: 575.98px) {
    /* Extra small screens (e.g. 360px - 390px) */
    section.py-5.text-white,
    .page-banner {
        padding-top: 1.15rem !important;
        padding-bottom: 1.15rem !important;
    }

    section.py-5.text-white h1,
    section.py-5.text-white .display-6 {
        font-size: 1.25rem !important;
    }

    /* Ensure buttons fit full width if needed */
    .btn-mobile-block {
        width: 100% !important;
    }
}

/* ── Global Anti-Gepeng & Icon Aspect Ratio Protection ─────── */
.stat-icon-circle,
.section-icon-box,
.lowongan-logo,
.brand-icon,
.brand-badge,
.rounded-circle,
.bottom-nav-item i,
.mitra-nav-item i,
.badge-step,
.card-stat-icon,
.center-post-icon {
    flex-shrink: 0 !important;
}

.stat-icon-circle,
.section-icon-box,
.lowongan-logo,
.brand-icon,
.brand-badge,
.center-post-icon {
    aspect-ratio: 1 / 1 !important;
}

.lowongan-detail-item i,
.section-icon-box i,
.stat-icon-circle i,
.bottom-nav-item i,
.btn i,
.nav-link i,
.badge i,
.table i {
    flex-shrink: 0;
}

/* ── Global Responsive Pagination ──────────────────────────── */
.pagination {
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
    margin-bottom: 0;
}

.page-item .page-link {
    border-radius: 0.5rem !important;
    min-width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    padding: 0.35rem 0.65rem;
    border-color: #E2E8F0;
    color: #334155;
}

.page-item.active .page-link {
    background-color: var(--bkk-primary);
    border-color: var(--bkk-primary);
    color: #FFFFFF;
    font-weight: 600;
}
