/* ==== FIX OVERFLOW SCROLL DI ANIMASI / CAROUSEL ==== */
.carousel,
.owl-carousel,
.swiper,
.visa-carousel,
.slider-container {
    overflow: hidden !important;
    width: 100% !important;
}

/* Jika animasinya pakai transform, cegah overflow juga */
.carousel-inner,
.owl-stage-outer,
.swiper-wrapper {
    overflow: visible !important;
}

/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity 0.5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: 0.5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    background: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn.btn-primary:hover {
    background: var(--bs-primary) !important;
    color: var(--bs-secondary);
    border: 1px solid var(--bs-secondary);
}

.btn.btn-secondary {
    background: transparent;
    color: var(--bs-secondary);
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    border: none;
    transition: 0.5s;
}

.btn.btn-secondary:hover {
    color: var(--bs-primary) !important;
}

/*** Section Title Start ***/
.section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    bottom: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: -6px;
    margin-left: -100px;
    border: 1px solid var(--bs-secondary) !important;
}

.section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: -8px;
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    bottom: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: -8px;
    margin-right: -100px;
    border: 1px solid var(--bs-secondary) !important;
}

.sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: -6px;
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}

/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}

@media (max-width: 768px) {
    .topbar {
        display: none;
    }
}
/*** Topbar End ***/

/*** Navbar ***/
.nav-bar {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0px 1px 0px 0px #888888;
}

.navbar-light .navbar-nav .nav-link {
    font-family: "Poppins", sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: var(--bs-primary) !important;
    font-size: 17px;
    font-weight: 400;
    outline: none;
    transition: 0.5s;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--bs-primary) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-secondary) !important;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: 0.5s;
}

.sticky-top .navbar-light .navbar-brand img {
    max-height: 45px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: 0.5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-secondary);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    transition: 0.5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top {
        position: sticky;
        top: 0;
        z-index: 1030;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary) !important;
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #dddddd;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top .navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 991.98px) {
    .sticky-top .navbar-light {
        background: var(--bs-light) !important;
    }

    /*** Top and Bottom borders go out ***/
    .navbar-light .navbar-nav .nav-link:after,
    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        top: 30px;
        bottom: 30px;
        left: 0px;
        width: 100%;
        height: 2px;
        background: var(--bs-primary);
        opacity: 0;
        transition: all 0.5s;
    }

    .navbar-light .navbar-nav .nav-link:before {
        bottom: auto;
    }

    .navbar-light .navbar-nav .nav-link:after {
        top: auto;
    }

    .navbar-light .navbar-nav .nav-link:hover:before,
    .navbar-light .navbar-nav .nav-link.active:before {
        top: 20px;
        opacity: 1;
    }

    .navbar-light .navbar-nav .nav-link:hover::after,
    .navbar-light .navbar-nav .nav-link.active::after {
        bottom: 20px;
        opacity: 1;
    }
}

#searchModal .modal-content {
    background: rgba(240, 245, 251, 0.5);
}

/*** Navbar End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background: linear-gradient(rgba(0, 58, 102, 0.9), rgba(0, 58, 102, 0.8)),
        url(../img/breadcrumb.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: initial;
    background-size: cover;
    padding: 100px 0 60px 0;
}
/*** Single Page Hero Header End ***/

/*** Tambahkan CSS khusus agar HTML Summernote tampil rapi ***/

.sambutan-content p {
    margin-bottom: 1em;
    line-height: 1.6;
}

.sambutan-content b,
.sambutan-content strong {
    font-weight: bold;
}

.sambutan-content i,
.sambutan-content em {
    font-style: italic;
}

.sambutan-content ul,
.sambutan-content ol {
    padding-left: 2em;
    margin-bottom: 1em;
}

/* Gambar tetap proporsional dan center di layar kecil */
.sambutan-img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 991.98px) {
    /* Tablet ke bawah */
    .sambutan-img {
        max-width: 70%;
    }
}

@media (max-width: 575.98px) {
    /* HP */
    .sambutan-img {
        max-width: 80%;
    }
}

/*** Carousel Hero Header Start ***/
.carousel-header .carousel-control-prev .carousel-control-prev-icon,
.carousel-header .carousel-control-next .carousel-control-next-icon {
    width: 4rem;
    height: 4rem;
    margin-left: -60px;
    border-radius: 50%;
    background-size: 60% 60%;
    transition: 0.5s;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
    margin-left: 0;
    margin-right: -60px;
}

.carousel-header .carousel .carousel-indicators {
    padding-bottom: 0;
    transition: 0.5s;
}

.carousel-header .carousel .carousel-indicators li {
    width: 8px;
    height: 8px;
    border: 8px solid var(--bs-primary);
    border-radius: 50%;
    margin-right: 30px;
    transition: 0.5s;
}

.carousel-header .carousel .carousel-indicators li.active {
    border: 8px solid var(--bs-secondary);
}

.carousel-header .carousel-inner .carousel-item {
    position: relative;
    height: 100vh; /* hanya berlaku untuk layar besar */
}

.carousel-header .carousel-inner .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
    background-size: cover;
}

/* ============================= */
/*  Responsif untuk Tablet (max 992px) */
/* ============================= */
@media (max-width: 992px) {
    .carousel-header .carousel-inner .carousel-item {
        height: 600px;
    }

    .carousel-header .carousel-inner .carousel-item img {
        object-position: center;
    }

    .carousel-header .carousel-caption {
        padding: 2rem 1rem;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon,
    .carousel-header .carousel-control-next .carousel-control-next-icon {
        width: 3rem;
        height: 3rem;
        margin-top: 400px;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon {
        margin-left: -30px;
    }

    .carousel-header .carousel-control-next .carousel-control-next-icon {
        margin-right: -30px;
    }
}

/* ============================= */
/*  Responsif untuk HP kecil (max 768px) */
/* ============================= */
@media (max-width: 768px) {
    .carousel-header {
        height: auto !important;
        margin-bottom: 0;
    }

    .carousel-header .carousel-inner .carousel-item {
        height: 500px;
    }

    .carousel-header .carousel-inner .carousel-item img {
        height: 100%;
        object-fit: cover;
    }

    .carousel-header .carousel-caption h4 {
        font-size: 1.2rem;
    }

    .carousel-header .carousel-caption p {
        font-size: 0.9rem;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon,
    .carousel-header .carousel-control-next .carousel-control-next-icon {
        width: 2.8rem;
        height: 2.8rem;
        margin-top: 380px;
    }

    .carousel-header .carousel .carousel-indicators {
        bottom: 20px;
        padding: 0;
    }

    .carousel-header .carousel .carousel-indicators li {
        width: 6px;
        height: 6px;
        border: 6px solid var(--bs-primary);
        margin-right: 15px;
    }

    .carousel-header .carousel .carousel-indicators li.active {
        border: 6px solid var(--bs-secondary);
    }
}

/* ============================= */
/*  Very Small Devices (max 480px) */
/* ============================= */
@media (max-width: 480px) {
    .carousel-header .carousel-inner .carousel-item {
        height: 450px;
    }

    .carousel-header .carousel-caption h4 {
        font-size: 1rem;
    }

    .carousel-header .carousel-caption p {
        font-size: 0.8rem;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon,
    .carousel-header .carousel-control-next .carousel-control-next-icon {
        width: 2.5rem;
        height: 2.5rem;
        margin-top: 330px;
    }
}
/*** Carousel Hero Header End ***/

/*** Counter Facts Modern Style ***/
.counter-facts {
    background: linear-gradient(
            rgba(255, 255, 255, 0.9),
            rgba(255, 255, 255, 0.8)
        ),
        url(../img/bg.jpg) center/cover no-repeat;
    background-attachment: fixed;
}

.counter-facts .counter {
    background: var(--bs-white);
    border-radius: 20px;
    text-align: center;
    padding: 40px 20px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    height: 100%;
}

.counter-facts .counter:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.counter-facts .counter-icon {
    background: var(--bs-primary);
    color: #fff;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 36px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.counter-facts .counter:hover .counter-icon {
    background: var(--bs-secondary);
    transform: rotate(10deg);
}

.counter-facts .counter-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--bs-secondary);
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.counter-facts .counter-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--bs-primary);
    line-height: 1;
}

/* Kustomisasi simbol (+, K, %) agar proporsional */
.counter-facts .counter-content h4 {
    color: var(--bs-primary) !important;
    font-weight: 700 !important;
    font-size: 26px !important;
    margin-left: 3px;
}

/* Responsif */
@media (max-width: 992px) {
    .counter-facts .counter {
        padding: 30px 15px;
    }

    .counter-facts .counter-icon {
        width: 70px;
        height: 70px;
        font-size: 30px;
        margin-bottom: 15px;
    }

    .counter-facts .counter-content h3 {
        font-size: 16px;
    }

    .counter-facts .counter-value {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .counter-facts .counter {
        padding: 25px 10px;
    }

    .counter-facts .counter-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }

    .counter-facts .counter-content h3 {
        font-size: 14px;
    }

    .counter-facts .counter-value {
        font-size: 26px;
    }
}

/*** Counter End ***/

/*** service Start ***/
.service .service-item {
    position: relative;
    overflow: hidden;
}

.service .service-item .service-inner .service-title {
    position: relative;
    margin-top: -30px;
    text-align: center;
    transition: 0.5s;
}

.service .service-item .service-inner .service-title .service-content {
    position: absolute;
    bottom: -100%;
    left: 0;
    margin-left: 30px;
    margin-right: 30px;
    text-align: center;
    border-radius: 10px;
    background: var(--bs-primary);
    opacity: 0;
    transition: 0.5s;
}

.service .service-item:hover .service-inner .service-title .service-content {
    bottom: 0;
    opacity: 1;
}

.service .service-item .service-inner .service-title .service-content a h4 {
    border-bottom: 1px solid rgba(256, 256, 256, 0.1);
}

.service .service-item .service-inner .service-title .service-title-name {
    transition: 0.5s;
}

.service .service-item:hover .service-inner .service-title .service-title-name {
    opacity: 0;
}

.service .service-item .service-inner .service-img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.service .service-item .service-inner .service-img::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.5);
    transition: 0.5s;
    opacity: 0;
}

.service .service-item:hover .service-inner .service-img::after {
    height: 100%;
    opacity: 1;
}

.service .service-item .service-inner .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-inner .service-img img {
    transform: scale(1.3);
}
/*** Service End ***/

/*** Features Start ***/
.features .feature-item {
    position: relative;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.features .feature-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(0, 58, 102, 0.1);
    z-index: -1;
    transition: 0.5s;
}

.features .feature-item:hover::after {
    height: 100%;
}

.features .feature-item .feature-icon {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-light);
    transition: 0.5s;
}

.features .feature-item:hover .feature-icon {
    border-radius: 50%;
    background: var(--bs-white) !important;
}

.features .feature-item .feature-icon i {
    transition: 0.5s;
}

.features .feature-item:hover .feature-icon i {
    color: var(--bs-secondary) !important;
    transform: rotate(360deg);
    transition: all 0.5s ease;
}
/*** Features End ***/

/*** Country Start ***/

.country .country-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

/* Gambar wrapper agar tidak keluar dari border */
.country .galeri-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: inherit;
    overflow: hidden;
}

.country .galeri-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
    border-radius: inherit;
}

.country .country-item:hover .galeri-wrapper img {
    transform: scale(1.05);
}

/* Overlay Background */
.country .country-item::after {
    content: "";
    position: absolute;
    inset: 0;
    height: 0%;
    background: rgba(0, 58, 102, 0.7);
    transition: 0.5s;
    z-index: 1;
    border-radius: inherit;
}

.country .country-item:hover::after {
    height: 100%;
}

.country .country-item .country-name {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
    z-index: 3;
    text-align: center;
}

.country .country-item:hover .country-name {
    opacity: 1;
}

/* Jika ada link */
.country .country-item .country-name a.fs-4 {
    transition: 0.5s;
}

.country .country-item .country-name a.fs-4:hover {
    color: var(--bs-secondary) !important;
}

/*** Country End ***/

/*** Pagination ***/
/* Custom Pagination */
.custom-pagination {
    display: flex;
    gap: 8px;
    padding-left: 0;
    list-style: none;
}

.custom-pagination li {
    display: inline-block;
}

.custom-pagination a,
.custom-pagination span {
    display: inline-block;
    padding: 4px 10px;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    border-radius: 4px;
}

.custom-pagination a:hover {
    background: #eee;
}

.custom-pagination .active span {
    background: #000;
    color: #fff;
}

.custom-pagination .disabled span {
    opacity: 0.4;
}



/*** testimonial Start ***/
.testimonial .owl-carousel.testimonial-carousel {
    position: relative;
}

.testimonial
    .owl-carousel.testimonial-carousel
    .testimonial-item
    .testimonial-content {
    position: relative;
    border-radius: 10px;
    background: var(--bs-light);
}

.testimonial
    .owl-carousel.testimonial-carousel
    .testimonial-item
    .testimonial-content::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 45px;
    bottom: -20px;
    left: 30px;
    transform: rotate(45deg);
    background: var(--bs-light);
    z-index: -1;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav {
    position: absolute;
    top: -60px;
    right: 0;
    display: flex;
    font-size: 40px;
    color: var(--bs-primary);
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev {
    margin-right: 40px;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next {
    transition: 0.5s;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-secondary);
}
/*** testimonial end ***/
/* ======= Style Berita (Training Card Layout) ======= */

.training .training-item {
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s ease-in-out;
    box-shadow: 0 3px 18px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.training .training-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.15);
}

/* ==== Gambar ==== */
.training .post-img {
    position: relative;
    overflow: hidden;
    height: 260px; /* gambar lebih tinggi */
}

.training .post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.training .training-item:hover .post-img img {
    transform: scale(1.1);
}

/* ==== Tanggal pojok bawah gambar ==== */
.training .post-date {
    position: absolute;
    right: 0;
    bottom: 0;
    background: #007bff; /* biru */
    color: #fff;
    font-size: 14px;
    padding: 6px 14px;
    font-weight: 600;
    border-top-left-radius: 6px;
}

/* ==== Konten ==== */
.training .post-content {
    padding: 28px 24px 32px;
}

.training .post-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.4;
}

.training .post-title a {
    color: inherit;
    text-decoration: none;
}

.training .post-title a:hover {
    color: #007bff;
}

/* ==== Meta Info ==== */
.training .meta {
    margin-bottom: 14px;
    font-size: 15px;
    color: #6b7280;
}

.training .meta i {
    color: #007bff;
    margin-right: 6px;
}

/* ==== Isi Ringkas ==== */
.training .post-content p {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
    min-height: 75px; /* biar tinggi konten stabil */
}

/* ==== Readmore ==== */
.training .readmore {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: 15px;
    color: #007bff;
    text-decoration: none;
    transition: 0.3s;
}

.training .readmore:hover {
    color: #0056b3;
}

.training .readmore i {
    font-size: 16px;
    margin-left: 6px;
}

/* ==== Sidebar ==== */
.sidebar .sidebar-box {
    border: 1px solid #f0f0f0;
}

.sidebar .sidebar-title {
    font-weight: 700;
    font-size: 18px;
}

.sidebar ul li a:hover {
    color: #007bff !important;
}

/* ==== Responsive ==== */
@media (max-width: 991px) {
    .training .post-img {
        height: 220px;
    }
    .training .post-content {
        padding: 20px;
    }
    .training .post-title {
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .training .post-img {
        height: 200px;
    }
}

/*** Page Title Section ***/
.page-title {
    background-color: #f4f8ff;
    padding: 20px 0;
    border-bottom: 3px solid #003366;
}

.page-title h1 {
    color: #003366;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

/* Breadcrumb wrapper */
.page-title .breadcrumbs {
    font-size: 0.95rem;
    color: #6c757d;
}

/* List breadcrumb */
.page-title .breadcrumbs ol {
    list-style: none;
    display: flex;
    gap: 10px;
    padding: 0;
    margin: 0;
}

/* Link breadcrumb */
.page-title .breadcrumbs a {
    color: #0d6efd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-title .breadcrumbs a:hover {
    color: #003366;
}

/* Item aktif (halaman sekarang) */
.page-title .breadcrumbs li.current {
    color: #003366;
    font-weight: 600;
}

/* Responsif */
@media (max-width: 768px) {
    .page-title .container {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 10px;
    }

    .page-title h1 {
        font-size: 1.6rem;
    }
}

/*** Contact Start ***/
.contact .office .office-item {
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
    background: var(--bs-light);
    transition: 0.5s;
}

.contact .office .office-item:hover {
    box-shadow: 20px 20px 20px rgba(0, 58, 102, 0.3);
}

.contact .office .office-item .office-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.contact .office .office-item .office-img img {
    transition: 0.5s;
}

.contact .office .office-item:hover .office-img img {
    transform: scale(1.3);
}

.contact .office .office-item .office-content a.text-secondary,
.contact .office .office-item .office-content a.text-muted {
    transition: 0.5s;
}

.contact .office .office-item .office-content a.text-muted:hover {
    color: var(--bs-secondary) !important;
}

.contact .office .office-item .office-content a.text-secondary:hover {
    color: var(--bs-primary) !important;
}
/*** Contact End ***/

/*** Footer Start (Versi Fix Scroll & Responsif) ***/
.footer {
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 40px 0;
    overflow-x: hidden !important;
    width: 100% !important;
    position: relative;
    box-sizing: border-box;
}

.footer-logo-img {
    width: 120px;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.7));
    transition: transform 0.3s ease, filter 0.3s ease;
    max-width: 100%;
    height: auto;
}

.footer-logo-img:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 0 18px rgba(255, 255, 255, 1));
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 5px;
    text-align: center;
}

.footer h6 {
    font-size: 20px;
    margin-bottom: 5px;
    text-align: center;
    color: var(--bs-white);
}

.footer p {
    text-align: justify;
    color: var(--bs-white);
    font-size: 16px;
    max-width: 260px;
    margin: 0 auto;
    word-wrap: break-word;
}

.footer iframe {
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    width: 100% !important;
    max-width: 100% !important;
    display: block;
    overflow: hidden;
}

/* Link Sosial */
.footer .footer-item a {
    color: var(--bs-white);
    line-height: 30px;
    transition: 0.3s;
    text-decoration: none;
}

.footer .footer-item a:hover {
    color: var(--bs-secondary);
    letter-spacing: 1px;
}

/* Sosial Icons */
.footer .social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.footer .social-icons a {
    width: 45px;
    height: 45px;
    border: 2px solid var(--bs-white);
    border-radius: 10px;
    color: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    transition: all 0.3s ease;
}

.footer .social-icons a:hover {
    background-color: var(--bs-secondary);
    color: var(--bs-white);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

.footer .row {
    align-items: center;
    margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
    .footer {
        padding: 30px 15px;
    }

    .footer iframe {
        height: 200px !important;
    }

    .footer .col-12 {
        margin-bottom: 25px;
    }

    .footer p {
        text-align: center;
        max-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .footer .row {
        text-align: center;
    }

    .footer-logo-img {
        margin-bottom: 15px;
    }

    .footer .social-icons {
        justify-content: center;
    }

    .footer iframe {
        height: 220px !important;
    }

    .footer p {
        text-align: center;
        font-size: 14px;
    }
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-secondary) !important;
}
/*** copyright end ***/
