/* ============================================================
   SCROLL REVEAL
============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}
.reveal-delay-2 {
    transition-delay: 0.2s;
}
.reveal-delay-3 {
    transition-delay: 0.3s;
}
.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ============================================================
   SHARED TOKENS
============================================================ */
:root {
    --color-primary: #0a6666;
    --color-primary-dark: #053b3b;
    --color-primary-darker: #043d3d;
    --color-accent: #b88d21;
    --color-accent-light: #e0b13c;
}

/* ============================================================
   SECTION HEADERS
============================================================ */
.section-eyebrow {
    display: inline-block;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: 0.7rem;
    color: var(--color-accent);
    margin-bottom: 0.35rem;
}
.section-title {
    font-weight: 800;
    color: var(--color-primary);
    font-size: clamp(1.4rem, 1rem + 1.8vw, 2.1rem);
    line-height: 1.25;
    margin-bottom: 0;
}
.section-divider {
    width: 44px;
    height: 3px;
    background: var(--color-accent);
    border-radius: 2px;
}
.section-lead {
    color: #6c757d;
    font-size: 0.93rem;
    line-height: 1.7;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn-brand {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
    font-weight: 600;
    transition: filter 0.2s;
}
.btn-brand:hover {
    filter: brightness(1.1);
    color: #fff;
}

.btn-outline-brand {
    color: var(--color-primary);
    border-color: var(--color-primary);
    font-weight: 600;
    background: transparent;
    transition: background-color 0.2s, color 0.2s;
}
.btn-outline-brand:hover {
    background-color: var(--color-primary);
    color: #fff;
}

.btn-gold {
    background: linear-gradient(
        135deg,
        var(--color-accent-light),
        var(--color-accent)
    );
    border: none;
    color: #fff;
    font-weight: 700;
    transition: filter 0.2s;
}
.btn-gold:hover {
    filter: brightness(1.08);
    color: #fff;
}
/* ==========================================================================
   0. GAYA HERO BANNER (CAROUSEL HEADER)
   ========================================================================== */
.carousel-header {
    height: 100vh; /* Memenuhi satu layar penuh desktop */
    min-height: 550px;
    position: relative;
    overflow: hidden;
    background-color: #000000;
}

/* Mengatur Gambar di Dalam Carousel */
.carousel-header .carousel-item {
    height: 100vh;
    min-height: 550px;
}

.carousel-header .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Gambar otomatis memotong proporsional tanpa gepeng */
    object-position: center;
}

/* Lapisan Gelap (Overlay) di Atas Gambar Supaya Teks Lebih Kontras */
.carousel-header .carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.6) 0%,
        /* Agak gelap di atas untuk area navbar blur */ rgba(11, 83, 69, 0.3)
            50%,
        /* Sentuhan hijau transparan di tengah */ rgba(0, 0, 0, 0.7) 100%
            /* Gelap di bawah */
    );
    z-index: 1;
}

/* Penyesuaian Posisi Teks Caption */
.carousel-header .carousel-caption {
    position: absolute;
    top: 50%;
    bottom: auto;
    left: 50%;
    transform: translate(
        -25%,
        -50%
    ); /* Menengahkan teks secara vertikal & horizontal */
    z-index: 2;
    text-align: center;
    width: 80%;
    max-width: 800px;
}

/* Animasi & Styling Komponen Teks Banner */
.carousel-header .carousel-caption h5 {
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #cca43b !important; /* Subtitle diberi sentuhan warna emas */
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.carousel-header .carousel-caption h1 {
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.8);
}

.carousel-header .carousel-caption p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.6);
}

/* Styling Tombol Kustom Emas (btn-gold) */
.btn-gold {
    background-color: #cca43b !important;
    border: 2px solid #cca43b !important;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    padding: 10px 28px !important;
    transition: all 0.3s ease !important;
}

.btn-gold:hover {
    background-color: transparent !important;
    color: #cca43b !important;
    border-color: #cca43b !important;
    transform: translateY(-3px); /* Efek tombol terangkat sedikit */
    box-shadow: 0 6px 15px rgba(204, 164, 59, 0.4) !important;
}

/* Styling Indikator Garis/Titik Carousel (Bawah) */
.carousel-header .carousel-indicators button {
    width: 35px;
    height: 5px;
    border-radius: 3px;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    transition: all 0.3s ease;
}

.carousel-header .carousel-indicators button.active {
    background-color: #cca43b; /* Warna indikator aktif menjadi emas */
    width: 50px; /* Lebih panjang saat aktif */
}

/* Styling Tombol Navigasi Kiri-Kanan */
.carousel-header .carousel-control-prev,
.carousel-header .carousel-control-next {
    width: 6%;
    z-index: 3;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.carousel-header .carousel-control-prev:hover,
.carousel-header .carousel-control-next:hover {
    opacity: 1;
}

.carousel-header .carousel-control-prev-icon,
.carousel-header .carousel-control-next-icon {
    background-color: rgba(
        11,
        83,
        69,
        0.7
    ); /* Background bulat ikon warna hijau */
    padding: 25px;
    border-radius: 50%;
    border: 1px solid #cca43b;
}

/* ==========================================================================
   5. RESPONSIF UNTUK HP / MOBILE (BANNER)
   ========================================================================== */
@media (max-width: 991.98px) {
    .carousel-header,
    .carousel-header .carousel-item {
        height: 70vh; /* Mengurangi tinggi di mobile agar pas digenggam */
        min-height: 400px;
    }

    .carousel-header .carousel-caption {
        width: 90%;
        transform: translate(-50%, -45%); /* Penyesuaian titik tengah di HP */
    }

    .carousel-header .carousel-caption h5 {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .carousel-header .carousel-caption h1 {
        font-size: 1.8rem; /* Mengecilkan ukuran judul di hp agar tidak pecah/terpotong */
        margin-bottom: 12px;
    }

    .carousel-header .carousel-caption p {
        font-size: 0.9rem;
        margin-bottom: 20px;
        display: -webkit-box;
        -webkit-line-clamp: 3; /* Membatasi deskripsi maksimal 3 baris di HP agar rapi */
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .btn-gold {
        padding: 8px 20px !important;
        font-size: 0.85rem;
    }

    .carousel-header .carousel-control-prev,
    .carousel-header .carousel-control-next {
        display: none; /* Menyembunyikan panah di HP agar tidak mengganggu usapan jari (swipe) */
    }
}

/* ============================================================
   1. SAMBUTAN KETUA PRODI
============================================================ */
.sambutan-section {
    background: #fff;
    padding: 5.5rem 0 5rem;
}

.sambutan-img-wrap {
    position: relative;
}
.sambutan-img-wrap::before {
    content: "";
    position: absolute;
    top: -16px;
    right: -16px;
    width: 75%;
    height: 75%;
    border: 3px solid var(--color-accent);
    border-radius: 1.25rem;
    z-index: 0;
}
.sambutan-img-wrap::after {
    content: "";
    position: absolute;
    bottom: -16px;
    left: -16px;
    width: 50%;
    height: 50%;
    background: rgba(10, 102, 102, 0.07);
    border-radius: 1.25rem;
    z-index: 0;
}
.sambutan-img-wrap img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    object-position: top center;
    border-radius: 1.25rem;
    box-shadow: 0 1.25rem 3rem rgba(0, 0, 0, 0.13);
}
.sambutan-name-card {
    position: absolute;
    bottom: -1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    background: #fff;
    border-left: 4px solid var(--color-accent);
    border-radius: 0.6rem;
    padding: 0.7rem 1.35rem;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.13);
    white-space: nowrap;
    text-align: left;
}
.sambutan-quote-block {
    border-left: 4px solid var(--color-accent);
    padding: 0.85rem 1.25rem;
    background: rgba(184, 141, 33, 0.05);
    border-radius: 0 0.5rem 0.5rem 0;
    margin: 1.5rem 0 1.75rem;
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #3d4a57;
}
@media (max-width: 767.98px) {
    .sambutan-section {
        padding: 3rem 0 4rem;
    }
    .sambutan-img-wrap::before,
    .sambutan-img-wrap::after {
        display: none;
    }
    .sambutan-img-wrap img {
        max-height: 310px;
    }
    .sambutan-name-card {
        position: static;
        transform: none;
        margin-top: 1.5rem;
        display: inline-block;
    }
}

/* ============================================================
   2. BERITA TERBARU
============================================================ */
.berita-section {
    background: #f7f8fa;
    padding: 5rem 0;
}

.news-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.07);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.news-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 1.2rem 2.5rem rgba(0, 0, 0, 0.11);
}
.news-thumb {
    position: relative;
    overflow: hidden;
    background: #e9ecef;
    flex-shrink: 0;
}
.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
    display: block;
}
.news-card:hover .news-thumb img {
    transform: scale(1.07);
}

.news-thumb-featured {
    height: 270px;
}
.news-thumb-small {
    height: 175px;
}

.news-cat {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    font-size: 0.67rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.28rem 0.75rem;
    border-radius: 50rem;
    z-index: 2;
    color: #fff;
}
.news-cat-gold {
    background: var(--color-accent);
}
.news-cat-primary {
    background: var(--color-primary);
}
.news-cat-red {
    background: #dc3545;
}
.news-cat-blue {
    background: #0d6efd;
}

.news-body {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.news-date {
    font-size: 0.71rem;
    color: #8a8f98;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 0.5rem;
}
.news-title {
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.45;
    color: var(--color-primary);
    margin-bottom: 0.55rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-title-featured {
    font-size: 1.15rem;
    -webkit-line-clamp: 3;
}
.news-title-small {
    -webkit-line-clamp: 3;
}
.news-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
.news-title a:hover {
    color: var(--color-accent);
}

.news-excerpt {
    font-size: 0.85rem;
    color: #6c757d;
    line-height: 1.65;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-readmore {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    transition: gap 0.2s, color 0.2s;
}
.news-readmore:hover {
    gap: 0.7rem;
    color: var(--color-accent);
}

/* ============================================================
   3. AGENDA
============================================================ */
.agenda-section {
    background: #fff;
    padding: 5rem 0;
}

.agenda-card {
    background: #fff;
    border-radius: 1rem;
    border: 1px solid #e9ecef;
    box-shadow: 0 0.2rem 0.75rem rgba(0, 0, 0, 0.06);
    padding: 1.2rem;
    height: 100%;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.agenda-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
    border-color: rgba(10, 102, 102, 0.25);
}
.agenda-date-box {
    flex-shrink: 0;
    width: 56px;
    text-align: center;
    background: var(--color-primary);
    border-radius: 0.65rem;
    padding: 0.5rem 0.25rem;
    color: #fff;
    line-height: 1.15;
}
.agenda-date-box .day {
    display: block;
    font-size: 1.65rem;
    font-weight: 900;
    line-height: 1;
}
.agenda-date-box .month {
    display: block;
    font-size: 0.62rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.88;
    margin-top: 0.2rem;
}
.agenda-content {
    flex: 1;
    min-width: 0;
}
.agenda-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.4;
    margin-bottom: 0.4rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.agenda-meta {
    font-size: 0.77rem;
    color: #868e96;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.8rem;
    margin-bottom: 0.6rem;
}
.agenda-tag {
    font-size: 0.66rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.22rem 0.65rem;
    border-radius: 50rem;
}
.tag-seminar {
    background: rgba(10, 102, 102, 0.1);
    color: var(--color-primary);
}
.tag-workshop {
    background: rgba(184, 141, 33, 0.12);
    color: #8a6510;
}
.tag-wisuda {
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
}
.tag-lainnya {
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
}

/* ============================================================
   4. STATISTIK
============================================================ */
.stats-section {
    background: linear-gradient(
        135deg,
        var(--color-primary) 0%,
        var(--color-primary-darker) 100%
    );
    padding: 5.5rem 0;
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.06);
    top: -220px;
    right: -80px;
}
.stats-section::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.05);
    bottom: -130px;
    left: -60px;
}
.stat-item {
    text-align: center;
    padding: 1.75rem 1rem;
    position: relative;
    z-index: 1;
}
.stat-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.65rem;
    color: var(--color-accent-light);
    transition: background 0.3s, transform 0.3s;
}
.stat-item:hover .stat-icon-wrap {
    background: rgba(255, 255, 255, 0.18);
    transform: scale(1.1);
}
.stat-number {
    display: block;
    font-size: clamp(2rem, 1.5rem + 2vw, 3.25rem);
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.4rem;
}
.stat-suffix {
    color: var(--color-accent-light);
}
.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.stat-sep {
    width: 1px;
    background: rgba(255, 255, 255, 0.12);
    margin: 1.5rem 0;
}
@media (max-width: 991.98px) {
    .stat-sep {
        display: none;
    }
}

/* ============================================================
   5. FAKULTAS
============================================================ */
.fakultas-section {
    background: #fff;
    padding: 5.5rem 0;
}
.fakultas-card {
    background: #fff;
    border-radius: 1.15rem;
    overflow: hidden;
    box-shadow: 0 0.3rem 1.2rem rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    border: 1px solid #eef1f5;
}
.fakultas-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 1.5rem 3rem rgba(10, 102, 102, 0.12);
}
.fakultas-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.fakultas-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}
.fakultas-card:hover .fakultas-card-img img {
    transform: scale(1.06);
}
.fakultas-card-img .fakultas-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(4, 61, 61, 0.65) 100%);
    z-index: 1;
}
.fakultas-card-img .fakultas-prodi-count {
    position: absolute;
    bottom: 0.85rem;
    left: 0.85rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 0.32rem 0.75rem;
    border-radius: 50rem;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-primary);
}
.fakultas-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.fakultas-card-body h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    line-height: 1.35;
}
.fakultas-card-body p {
    font-size: 0.85rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.fakultas-card-body .fakultas-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    transition: gap 0.25s, color 0.25s;
}
.fakultas-card-body .fakultas-link:hover {
    gap: 0.7rem;
    color: var(--color-accent);
}
@media (max-width: 767.98px) {
    .fakultas-section {
        padding: 3.5rem 0;
    }
    .fakultas-card-img {
        height: 180px;
    }
}

/* ============================================================
   6. PROGRAM STUDI
============================================================ */
.prodi-section {
    background: #f7f8fa;
    padding: 5rem 0;
}
.prodi-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.75rem 1.25rem;
    text-align: center;
    border: 1px solid #eef1f5;
    box-shadow: 0 0.15rem 0.6rem rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}
.prodi-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    transform: scaleX(0);
    transition: transform 0.35s ease;
}
.prodi-card:hover::before {
    transform: scaleX(1);
}
.prodi-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 1rem 2rem rgba(10, 102, 102, 0.1);
    border-color: rgba(10, 102, 102, 0.18);
}
.prodi-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(10, 102, 102, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.45rem;
    color: var(--color-primary);
    transition: background 0.3s, transform 0.3s;
}
.prodi-card:hover .prodi-icon {
    background: var(--color-primary);
    color: #fff;
    transform: scale(1.1);
}
.prodi-card h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 0.35rem;
    line-height: 1.4;
}
.prodi-card .prodi-jenjang {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}
.prodi-card .prodi-fakultas {
    font-size: 0.78rem;
    color: #868e96;
    margin-bottom: 0.75rem;
}
.prodi-akreditasi {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.25rem 0.7rem;
    border-radius: 50rem;
    background: rgba(10, 102, 102, 0.08);
    color: var(--color-primary);
}
@media (max-width: 767.98px) {
    .prodi-section {
        padding: 3.5rem 0;
    }
}

/* ============================================================
   7. PENGUMUMAN
============================================================ */
.pengumuman-section {
    background: #fff;
    padding: 5rem 0;
}
.pengumuman-card {
    background: #fff;
    border-radius: 1rem;
    border: 1px solid #eef1f5;
    box-shadow: 0 0.15rem 0.55rem rgba(0, 0, 0, 0.05);
    padding: 1.25rem 1.35rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    text-decoration: none;
    color: inherit;
}
.pengumuman-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.8rem 1.8rem rgba(0, 0, 0, 0.09);
    border-color: rgba(10, 102, 102, 0.2);
    color: inherit;
    text-decoration: none;
}
.pengumuman-icon-box {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 0.65rem;
    background: rgba(184, 141, 33, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: var(--color-accent);
    transition: background 0.3s;
}
.pengumuman-card:hover .pengumuman-icon-box {
    background: var(--color-accent);
    color: #fff;
}
.pengumuman-content {
    flex: 1;
    min-width: 0;
}
.pengumuman-content .pengumuman-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.45;
    margin-bottom: 0.35rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.pengumuman-content .pengumuman-meta {
    font-size: 0.73rem;
    color: #868e96;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.75rem;
    margin-bottom: 0.4rem;
}
.pengumuman-badge {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.2rem 0.6rem;
    border-radius: 50rem;
    background: rgba(10, 102, 102, 0.08);
    color: var(--color-primary);
}
.pengumuman-badge-penting {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}
@media (max-width: 767.98px) {
    .pengumuman-section {
        padding: 3.5rem 0;
    }
}

/* ============================================================
   8. PRESTASI MAHASISWA
============================================================ */
.prestasi-section {
    background: #f7f8fa;
    padding: 5rem 0;
}
.prestasi-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.07);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.prestasi-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 1.2rem 2.5rem rgba(0, 0, 0, 0.11);
}
.prestasi-thumb {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #e9ecef;
}
.prestasi-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}
.prestasi-card:hover .prestasi-thumb img {
    transform: scale(1.07);
}
.prestasi-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.3rem 0.75rem;
    border-radius: 50rem;
    color: #fff;
}
.prestasi-badge-gold {
    background: linear-gradient(135deg, var(--color-accent-light), var(--color-accent));
}
.prestasi-badge-silver {
    background: linear-gradient(135deg, #8e9aaf, #6c757d);
}
.prestasi-badge-bronze {
    background: linear-gradient(135deg, #c07830, #9a5f28);
}
.prestasi-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.prestasi-body .prestasi-event {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-accent);
    margin-bottom: 0.35rem;
}
.prestasi-body h3 {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.45;
    margin-bottom: 0.55rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.prestasi-body .prestasi-name {
    font-size: 0.82rem;
    color: #6c757d;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.prestasi-body .prestasi-name i {
    color: var(--color-primary);
    font-size: 0.88rem;
}
@media (max-width: 767.98px) {
    .prestasi-section {
        padding: 3.5rem 0;
    }
    .prestasi-thumb {
        height: 170px;
    }
}

/* ============================================================
   9. GALERI
============================================================ */
.gallery-section {
    background: #fff;
    padding: 5rem 0;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.gallery-item {
    position: relative;
    border-radius: 0.85rem;
    overflow: hidden;
    cursor: pointer;
}
.gallery-item.gallery-tall {
    grid-row: span 2;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease;
    min-height: 200px;
}
.gallery-item:hover img {
    transform: scale(1.08);
}
.gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(4, 61, 61, 0.75) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
    z-index: 1;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-overlay .gallery-label {
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
}
.gallery-overlay .gallery-sub {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.72rem;
    font-weight: 500;
}
@media (max-width: 767.98px) {
    .gallery-section {
        padding: 3.5rem 0;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.65rem;
    }
    .gallery-item img {
        min-height: 150px;
    }
}

/* ============================================================
   10. CTA PMB
============================================================ */
.cta-pmb-section {
    position: relative;
    padding: 5.5rem 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-darker) 100%);
    overflow: hidden;
}
.cta-pmb-section::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.05);
    top: -280px;
    right: -120px;
}
.cta-pmb-section::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.04);
    bottom: -180px;
    left: -100px;
}
.cta-pmb-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}
.cta-pmb-content .cta-pmb-eyebrow {
    display: inline-block;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: 0.7rem;
    color: var(--color-accent-light);
    margin-bottom: 0.75rem;
}
.cta-pmb-content h2 {
    font-size: clamp(1.6rem, 1.2rem + 2vw, 2.4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 1rem;
}
.cta-pmb-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 2rem;
}
.cta-pmb-content .cta-pmb-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.btn-cta-gold {
    background: linear-gradient(135deg, var(--color-accent-light), var(--color-accent));
    border: none;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.75rem 2rem;
    border-radius: 50rem;
    transition: filter 0.25s, transform 0.25s, box-shadow 0.25s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-cta-gold:hover {
    filter: brightness(1.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(184, 141, 33, 0.35);
    color: #fff;
}
.btn-cta-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.7rem 2rem;
    border-radius: 50rem;
    transition: background 0.25s, border-color 0.25s, transform 0.25s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    color: #fff;
}
@media (max-width: 767.98px) {
    .cta-pmb-section {
        padding: 3.5rem 0;
    }
}
