:root {
    --primary: #0d6efd;
    --secondary: #6c757d;
    --soft: #e7f1ff;
    --success: #198754;
    --danger: #dc3545;
    --warning: #ffc107;
    --light-bg: #f8f9fa;
}

/* ================= GLOBAL ================= */
body {
    font-family: 'Inter', sans-serif;
    background-color: #fff;
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

.text-muted {
    color: #6c757d !important;
}

/* ================= BREADCRUMB ================= */
.bg-breadcrumb {
    background: linear-gradient(135deg, var(--primary), #0b5ed7);
    padding: 60px 0;
}

.bg-breadcrumb h3,
.bg-breadcrumb p {
    color: #fff;
}

/* ================= CARD PENGUMUMAN ================= */
.card-prodi {
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(13, 110, 253, .15);
    transition: all .35s ease;
    overflow: hidden;
}

.card-prodi:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 55px rgba(13, 110, 253, .25);
}

.card-prodi .card-header {
    background: linear-gradient(135deg, var(--primary), #0b5ed7);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    padding: 15px;
}

.card-prodi .card-body {
    padding: 20px;
    font-size: 0.95rem;
}

.card-prodi img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 10px;
}

.card-prodi video {
    width: 100%;
    margin-top: 10px;
    border-radius: 12px;
}

/* ================= STATUS LABEL ================= */
.status {
    font-weight: 700;
    font-size: 0.85rem;
}

.status.aktif {
    color: var(--success);
}

.status.nonaktif {
    color: var(--danger);
}

/* ================= AI BOX ================= */
.ai-box {
    background: linear-gradient(135deg, var(--soft), #fff);
    border-left: 6px solid var(--primary);
    padding: 35px 30px;
    border-radius: 26px;
    margin-top: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .05);
}

.ai-box h2 {
    color: var(--warning);
    font-size: 1.8rem;
}

.ai-box ul li {
    margin-bottom: 12px;
}

/* ================= EDU CARD ================= */
.edu-card {
    background: #fff;
    border-radius: 22px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .1);
    transition: all .3s ease;
}

.edu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, .12);
}

.edu-card i {
    font-size: 3rem;
    color: #ff9800;
    margin-bottom: 15px;
}

/* ================= GALERI ================= */
.gallery-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .12);
    transition: transform .3s ease, box-shadow .3s ease;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .18);
}

.gallery-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.gallery-caption {
    padding: 12px;
    text-align: center;
}

.gallery-caption h6 {
    font-weight: 600;
}

.gallery-caption span {
    font-size: 0.85rem;
    color: var(--secondary);
}

/* ================= RESPONSIVE GRID ================= */
@media (max-width: 992px) {
    .card-prodi {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .ai-box {
        padding: 25px;
    }

    .edu-card {
        padding: 20px;
    }

    .gallery-card img {
        height: 180px;
    }
}