/* =========================================================
   DETAIL JURUSAN
========================================================= */

.jurusan-detail-page {
    margin: 0;

    background: #f5faf7;

    color: #5e7169;

    font-family:
        "Plus Jakarta Sans",
        sans-serif;
}


/* =========================================================
   NAVBAR
========================================================= */

.jurusan-detail-header {
    position: fixed !important;

    top: 0;
    left: 0;

    width: 100%;

    padding: 0 !important;

    background: #ffffff !important;

    box-shadow:
        0 5px 20px
        rgba(15,43,35,.08);

    z-index: 9999;
}


.jurusan-detail-nav {
    min-height: 72px;

    display: flex;

    align-items: center;
}


.jurusan-detail-logo {
    display: flex;

    align-items: center;

    gap: 9px;

    margin-right: auto;

    text-decoration: none;
}


.jurusan-detail-logo img {
    width: 39px;
    height: 39px;

    object-fit: contain;
}


.jurusan-detail-logo span {
    color: #16382d;

    font-size: 13px;

    font-weight: 800;
}


.jurusan-detail-menu {
    display: flex;

    align-items: center;

    gap: 4px;
}


.jurusan-detail-menu a {
    padding: 10px 12px;

    color: #50645b;

    font-size: 11px;

    font-weight: 700;

    text-decoration: none;

    border-radius: 8px;
}


.jurusan-detail-menu a:hover,
.jurusan-detail-menu a.active {
    color: #0d9668;

    background: #edf8f3;
}


.jurusan-detail-spmb {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 82px;
    height: 38px;

    margin-left: 12px;

    border-radius: 999px;

    background: #d9a441;

    color: #ffffff !important;

    font-size: 10px;

    font-weight: 800;

    text-decoration: none;
}


/* =========================================================
   MAIN
========================================================= */

.jurusan-detail-main {
    padding-top: 72px;
}


/* =========================================================
   HERO
========================================================= */

.jurusan-detail-hero {
    padding: 70px 0 65px;

    background:
        linear-gradient(
            135deg,
            #083c2b,
            #0d9668
        );

    color: #ffffff;
}


.jurusan-detail-back {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    margin-bottom: 25px;

    color: rgba(255,255,255,.82) !important;

    font-size: 11px;

    font-weight: 700;

    text-decoration: none;
}


.jurusan-detail-back:hover {
    color: #ffffff !important;
}


.jurusan-detail-eyebrow {
    display: block;

    margin-bottom: 9px;

    color: #e4b450;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .16em;
}


.jurusan-detail-hero h1 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(
        38px,
        6vw,
        64px
    );

    font-weight: 800;

    letter-spacing: -.05em;

    line-height: 1;
}


.jurusan-detail-hero p {
    max-width: 650px;

    margin: 15px 0 0;

    color: rgba(255,255,255,.78);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   OVERVIEW
========================================================= */

.jurusan-detail-overview {
    padding: 70px 0;

    background: #ffffff;
}


.jurusan-detail-image-link {
    position: relative;

    display: block;

    overflow: hidden;

    border-radius: 20px;

    background: #edf6f1;
}


.jurusan-detail-main-image {
    width: 100%;

    height: auto;

    max-height: 500px;

    display: block;

    object-fit: contain;

    transition:
        transform .4s ease;
}


.jurusan-detail-image-link:hover
.jurusan-detail-main-image {
    transform: scale(1.02);
}


.jurusan-detail-image-overlay {
    position: absolute;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%,-50%);

    display: flex;

    align-items: center;

    gap: 7px;

    padding: 10px 15px;

    border-radius: 999px;

    background: rgba(8,44,34,.85);

    color: #ffffff;

    font-size: 11px;

    font-weight: 700;

    opacity: 0;

    transition: .3s ease;
}


.jurusan-detail-image-link:hover
.jurusan-detail-image-overlay {
    opacity: 1;
}


.jurusan-detail-info-box {
    padding: 20px;
}


.jurusan-detail-label {
    display: inline-block;

    margin-bottom: 12px;

    color: #b8862b;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .14em;
}


.jurusan-detail-info-box h2 {
    margin: 0;

    color: #17392f;

    font-size: 38px;

    font-weight: 800;

    line-height: 1.1;
}


.jurusan-detail-info-box p {
    margin: 18px 0 0;

    color: #687b73;

    font-size: 13px;

    line-height: 1.9;
}


/* =========================================================
   SECTION
========================================================= */

.jurusan-detail-section {
    padding: 80px 0;

    background: #f5faf7;
}


.jurusan-detail-section-soft {
    background: #edf7f2;
}


.jurusan-detail-section-heading {
    max-width: 700px;

    margin: 0 auto 38px;

    text-align: center;
}


.jurusan-detail-section-heading > span {
    display: inline-block;

    margin-bottom: 8px;

    color: #b8862b;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .15em;

    text-transform: uppercase;
}


.jurusan-detail-section-heading h2 {
    margin: 0;

    color: #17392f;

    font-size: 32px;

    font-weight: 800;
}


.jurusan-detail-section-heading p {
    margin: 8px 0 0;

    color: #73847d;

    font-size: 12px;
}


/* =========================================================
   GALERI
========================================================= */

.jurusan-detail-gallery-item {
    position: relative;

    display: block;

    height: 210px;

    overflow: hidden;

    border-radius: 15px;

    background: #ffffff;
}


.jurusan-detail-gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .4s ease;
}


.jurusan-detail-gallery-item:hover img {
    transform: scale(1.05);
}


.jurusan-detail-gallery-item span {
    position: absolute;

    right: 12px;
    bottom: 12px;

    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,.92);

    color: #0d9668;

    font-size: 14px;
}


/* =========================================================
   DUDI
========================================================= */

.jurusan-dudi-card {
    height: 100%;

    padding: 25px;

    text-align: center;

    background: #ffffff;

    border: 1px solid #dfebe5;

    border-radius: 16px;

    box-shadow:
        0 7px 22px
        rgba(15,43,35,.05);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.jurusan-dudi-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 14px 32px
        rgba(15,43,35,.09);
}


.jurusan-dudi-logo {
    width: 70px;
    height: 70px;

    margin: 0 auto 15px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 17px;

    background: #eaf7f1;

    color: #0d9668;

    font-size: 27px;
}


.jurusan-dudi-logo img {
    width: 100%;
    height: 100%;

    padding: 8px;

    object-fit: contain;

    border-radius: 17px;

    background: #ffffff;
}


.jurusan-dudi-card h3 {
    margin: 0;

    color: #294a3f;

    font-size: 14px;

    font-weight: 800;

    line-height: 1.4;
}


/* =========================================================
   TEFA
========================================================= */

.jurusan-tefa-card {
    height: 100%;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #dfebe5;

    border-radius: 16px;

    box-shadow:
        0 7px 22px
        rgba(15,43,35,.05);
}


.jurusan-tefa-card > img,
.jurusan-tefa-no-image {
    width: 100%;
    height: 210px;

    display: block;

    object-fit: cover;
}


.jurusan-tefa-no-image {
    display: flex;

    align-items: center;
    justify-content: center;

    background: #eaf6f0;

    color: #0d9668;

    font-size: 36px;
}


.jurusan-tefa-content {
    padding: 16px;
}


.jurusan-tefa-content h3 {
    margin: 0;

    color: #294a3f;

    font-size: 13px;

    font-weight: 800;
}


/* =========================================================
   EMPTY
========================================================= */

.jurusan-detail-empty {
    padding: 60px 20px;

    text-align: center;

    background: #ffffff;

    border: 1px dashed #ceddd6;

    border-radius: 18px;
}


.jurusan-detail-empty i {
    color: #0d9668;

    font-size: 45px;
}


.jurusan-detail-empty h3 {
    margin: 12px 0 6px;

    color: #17392f;

    font-size: 20px;

    font-weight: 800;
}


.jurusan-detail-empty p {
    margin: 0;

    color: #7b8b84;

    font-size: 11px;
}


/* =========================================================
   SOCIAL
========================================================= */

.jurusan-detail-social {
    padding: 70px 0;

    background: #ffffff;
}


.jurusan-detail-social-box {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding: 35px 40px;

    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            #0b5f43,
            #0d9668
        );

    color: #ffffff;
}


.jurusan-detail-social-box > div:first-child > span {
    color: #e3b24c;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .15em;
}


.jurusan-detail-social-box h2 {
    margin: 7px 0 5px;

    color: #ffffff;

    font-size: 25px;

    font-weight: 800;
}


.jurusan-detail-social-box p {
    margin: 0;

    color: rgba(255,255,255,.75);

    font-size: 11px;
}


.jurusan-detail-social-links {
    display: flex;

    align-items: center;

    gap: 9px;
}


.jurusan-detail-social-links a {
    width: 43px;
    height: 43px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.25);

    border-radius: 12px;

    background: rgba(255,255,255,.09);

    color: #ffffff;

    font-size: 17px;

    text-decoration: none;

    transition: .25s ease;
}


.jurusan-detail-social-links a:hover {
    background: #ffffff;

    color: #0d9668;

    transform: translateY(-3px);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991px) {

    .jurusan-detail-menu {
        display: none;
    }


    .jurusan-detail-main {
        padding-top: 65px;
    }


    .jurusan-detail-social-box {
        flex-direction: column;

        align-items: flex-start;
    }

}


@media (max-width: 767px) {

    .jurusan-detail-nav {
        min-height: 62px;
    }


    .jurusan-detail-logo img {
        width: 34px;
        height: 34px;
    }


    .jurusan-detail-logo span {
        font-size: 10px;
    }


    .jurusan-detail-spmb {
        width: 65px;
        height: 32px;

        font-size: 8px;
    }


    .jurusan-detail-hero {
        padding: 50px 0;
    }


    .jurusan-detail-hero h1 {
        font-size: 38px;
    }


    .jurusan-detail-overview {
        padding: 45px 0;
    }


    .jurusan-detail-info-box {
        padding: 5px 0;
    }


    .jurusan-detail-info-box h2 {
        font-size: 31px;
    }


    .jurusan-detail-section {
        padding: 60px 0;
    }


    .jurusan-detail-section-heading h2 {
        font-size: 27px;
    }


    .jurusan-detail-gallery-item {
        height: 200px;
    }


    .jurusan-detail-social-box {
        padding: 28px 22px;
    }


    .jurusan-detail-social-box h2 {
        font-size: 21px;
    }

}

/* =========================================================
   MEDIA SOSIAL DI BAWAH DESKRIPSI
========================================================= */

.jurusan-detail-social-inline {
    margin-top: 25px;
    padding-top: 18px;
    border-top: 1px solid #e9ecef;
}

.jurusan-detail-social-inline > span {
    display: block;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 700;
    color: #6c757d;
}

.jurusan-detail-social-inline .jurusan-detail-social-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.jurusan-detail-social-inline .jurusan-detail-social-links a {
    width: 38px;
    height: 38px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f1f5f4;
    color: #159b70;

    text-decoration: none;

    font-size: 18px;

    transition: all 0.25s ease;
}

.jurusan-detail-social-inline .jurusan-detail-social-links a:hover {
    background: #159b70;
    color: #ffffff;
    transform: translateY(-3px);
}

/* =========================================================
   SLIDER GALERI JURUSAN
========================================================= */

.jurusan-gallery-swiper,
.jurusan-tefa-swiper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.jurusan-gallery-swiper .swiper-wrapper,
.jurusan-tefa-swiper .swiper-wrapper {
    align-items: stretch;
}

.jurusan-gallery-swiper .swiper-slide,
.jurusan-tefa-swiper .swiper-slide {
    height: auto;
}

.jurusan-gallery-pagination,
.jurusan-tefa-pagination {
    position: relative !important;
    margin-top: 22px;
}

.jurusan-gallery-pagination .swiper-pagination-bullet,
.jurusan-tefa-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    opacity: 1;
    background: #b8d8c5;
}

.jurusan-gallery-pagination .swiper-pagination-bullet-active,
.jurusan-tefa-pagination .swiper-pagination-bullet-active {
    width: 22px;
    border-radius: 20px;
    background: #0d9668;
}

.jurusan-gallery-prev,
.jurusan-gallery-next,
.jurusan-tefa-prev,
.jurusan-tefa-next {
    width: 38px !important;
    height: 38px !important;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.12);
}

.jurusan-gallery-prev::after,
.jurusan-gallery-next::after,
.jurusan-tefa-prev::after,
.jurusan-tefa-next::after {
    font-size: 15px !important;
    font-weight: 700;
    color: #0d9668;
}

.jurusan-tefa-card {
    height: 100%;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .jurusan-gallery-swiper,
    .jurusan-tefa-swiper {
        overflow: visible;
    }

    .jurusan-gallery-swiper .swiper-slide,
    .jurusan-tefa-swiper .swiper-slide {
        width: 82%;
    }

    .jurusan-gallery-prev,
    .jurusan-gallery-next,
    .jurusan-tefa-prev,
    .jurusan-tefa-next {
        display: none;
    }

    .jurusan-gallery-pagination,
    .jurusan-tefa-pagination {
        margin-top: 16px;
    }

}