/* NAVBAR TRANSPARENT + SCROLL */
.nav-default {
    background: transparent;
    transition: all .35s ease;
}

.nav-default a {
    color: white !important;
}

.nav-scrolled {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.nav-scrolled a {
    color: #222 !important;
}
.mobile-nav {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}

/* MOBILE MENU LINKS */
#mobileNav a {
    color: #222 !important;
    /* warna hitam */
}

.mobile-nav.open {
    max-height: 320px;
}

/* HAMBURGER ICON */
.hamburger {
    width: 26px;
    height: 20px;
    position: relative;
    cursor: pointer;
}

.hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: white;
    transition: 0.4s;
    border-radius: 2px;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 8px;
}

.hamburger span:nth-child(3) {
    top: 16px;
}

/* Saat aktif jadi X */
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Warna hamburger saat scroll */
.nav-scrolled .hamburger span {
    background: #222;
}


/* SWIPER BUTTONS */
/* SWIPER BUTTONS – Elegant Glass Style */
.swiper-button-next,
.swiper-button-prev {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.35);

    color: #ffffff !important;
    opacity: 0.95;

    display: flex;
    justify-content: center;
    align-items: center;

    transition: all 0.35s ease;
    font-size: 22px !important;
}

/* Hover style */
.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgb(14, 201, 226); /* theme turquoise */
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.12);
    opacity: 1;
}

/* Remove default arrow shapes */
.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 22px !important;
    font-weight: 900 !important;
}

/* NEXT: Use minimal chevron icon */
.swiper-button-next:after {
    content: "\f105"; /* FontAwesome arrow right */
    font-family: "Font Awesome 6 Free";
}

/* PREV */
.swiper-button-prev:after {
    content: "\f104"; /* FontAwesome arrow left */
    font-family: "Font Awesome 6 Free";
}
.swiper-pagination-bullet-active {
    background: #0ec9e2 !important; /* theme turquoise */
}
/* ===== MOBILE MODE (max-width 768px) ===== */
@media (max-width: 768px) {

    .swiper-button-next,
    .swiper-button-prev {
        width: auto;
        height: auto;
        background: none !important;
        border: none !important;
        backdrop-filter: none !important;
        box-shadow: none !important;

        font-size: 28px !important;
        color: #ffffff !important;
        opacity: 0.9;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 32px !important; /* arrow lebih besar agar terlihat */
        font-weight: 900 !important;
    }

    .swiper-button-next:hover,
    .swiper-button-prev:hover {
        transform: scale(1); /* tidak membesar saat hover */
        opacity: 1;
        background: none !important;
    }
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* GOOGLE TRANSLATE */
.goog-te-gadget img {
    display: none !important;
}

.goog-te-combo {
    padding: 6px 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: #f9f9f9;
}

.goog-te-gadget-simple span {
    color: black !important;
}
#google_translate_element {
    z-index: 9999 !important;
    position: relative;
}
.goog-te-gadget {
    font-size: 14px !important;
}

/* Tambahkan icon translate */
#google_translate_element:before {
    font-family: "Font Awesome 6 Free";
    content: "\f1ab";
    font-weight: 900;
    margin-right: 8px;
    font-size: 12px;
    color: #0ec9e2;
}

/* NEON PLAY BUTTON */
.neon-play {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: rgba(18, 187, 196, 0.25);
    backdrop-filter: blur(6px);
    border: 2px solid rgba(18, 187, 196, 0.5);

    display: flex;
    justify-content: center;
    align-items: center;

    box-shadow:
        0 0 12px rgba(18, 187, 196, 0.8),
        0 0 30px rgba(18, 187, 196, 0.5),
        inset 0 0 8px rgba(18, 187, 196, 0.4);

    transition: 0.35s ease;
}

.neon-play:hover {
    transform: scale(1.15);
    box-shadow:
        0 0 15px rgba(18, 187, 196, 1),
        0 0 40px rgba(18, 187, 196, 0.8),
        inset 0 0 10px rgba(18, 187, 196, 0.6);
}

/* Play icon */
.neon-play i {
    color: white;
    font-size: 32px;
    margin-left: 3px;
}


/* MODAL FADE-IN ANIMATION */
@keyframes modalFade {
    0% {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-animate {
    animation: modalFade 0.45s ease forwards;
}


.gallery-filter.bg-tb { background-color: #12bbc4ff !important; color: #fff !important; border-color: transparent !important; }
/* ensure hidden class hides properly */
/* .hidden { display: none !important; } */