html, body {
    height: 100%;
}

body {
    font-family: Manrope, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
}

/* HERO full screen */
.hero-slide {
    height: 100dvh !important;
    min-height: 640px;
    position: relative;
    overflow: hidden;
}
 
/* Ken Burns */
.kb-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.kb-img {
    position: absolute;
    inset: 0;
    width: 110%;
    height: 110%;
    object-fit: cover;
    transform-origin: center;
    animation: kenburns var(--kb-duration, 9s) ease-in-out both;
}

@keyframes kenburns {
    0% { transform: scale(1) translate(0, 0);}
    50% { transform: scale(1.08) translate(-2%, -1%);}
    100% { transform: scale(1.12) translate(-4%, -2%);}
}

/* overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.36), rgba(0,0,0,.22) 35%, rgba(0,0,0,.35));
}

/* Logo STATES controlled via class, NOT ID */
.logo {
    height: 80px;
    padding-top: 20px;
    transform: scale(1.45);
    transform-origin: left center;
    transition: all .35s ease;
}

.logos {
    height: 60px;
    padding-top: 0;
    transform: scale(1);
}

/* NAV states */
.nav-default {
    background: transparent;
    color: white;
    transition: all .35s ease;
    border: none;
}

.nav-scrolled {
    /* background: rgba(255,255,255,.78); */
    background: rgb(255, 255, 255);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(16, 24, 40, 0.06);
    color: #0b1220;
}

/* center nav */
.nav-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
 /* Smooth slide animation */
.mobile-menu-panel {
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.35s ease;
}

.mobile-menu-panel.show {
    transform: translateY(0);
    opacity: 1;
}
/* arrows */
.hero-arrow {
    width: 56px;
    height: 56px;
    border-radius: 9999px;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 30px rgba(10,20,30,.18);
    backdrop-filter: blur(6px);
    transition: .22s;
}

.hero-arrow:hover {
    transform: translateY(-4px) scale(1.03);
}

/* caption */
.hero-caption {
    position: relative;
    top: -20px;
}

.hero-caption h1,
.hero-caption p {
    text-shadow: 0 14px 32px rgba(0,0,0,.55);
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .nav-center {
        position: static;
        transform: none;
    }

    .hero-caption h1 {
        font-size: 1.6rem;
    }

    .logo {
        height: 60px;
        padding-top: 8px;
        transform: scale(1.2);
    }

    .logos {
        height: 50px;
        padding-top: 0;
        transform: scale(1);
    }
}
    /* ===========================================
   PREMIUM SERVICE CARD (FINAL VERSION)
   =========================================== */

        .service-card {
            min-height: 380px;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.75), rgba(245, 247, 255, 0.55));
            border-radius: 28px;
            border: 1px solid rgba(255, 255, 255, 0.45);
            box-shadow: 0 18px 45px -15px rgba(0, 0, 0, 0.22);
            padding: 2.8rem;
            transition: all .45s cubic-bezier(.25, .1, .25, 1);
            backdrop-filter: blur(18px);
            position: relative;
            overflow: hidden;
        }

        /* Subtle gradient border glow */
        .service-card::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: 28px;
            padding: 2px;
            background: linear-gradient(130deg, rgba(117, 197, 240, 0.25), rgba(0, 168, 232, 0.15), rgba(255, 255, 255, 0.4));
            opacity: 0;
            transition: opacity .45s ease;
            z-index: -1;
        }

        /* Hover Effect: Glow + Lift */
        .service-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 30px 65px -12px rgba(0, 0, 0, 0.28);
        }

        .service-card:hover::before {
            opacity: 1;
        }

        /* Logo */
        .service-card img {
            height: 110px;
            width: auto;
            object-fit: contain;
            transition: transform .4s ease;
        }

        .service-card:hover img {
            transform: scale(1.06);
        }

        /* Fade-Up Animation */
        .service-card {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUpCard .8s ease forwards;
        }

        @keyframes fadeUpCard {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .service-card {
                min-height: 300px;
                padding: 2rem;
            }

            .service-card img {
                height: 85px;
            }
        }

  /* ============================
   CARD WRAPPER
============================ */
#tb-instagram .tb-card {
    width: 100%;
    max-width: 420px;
    background: #ffffffde;
    padding: 18px;
    border-radius: 28px;
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.09);
    transition: .3s ease;
}
#tb-instagram .tb-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.13);
}

/* ============================
   PHOTO
============================ */
#tb-instagram .tb-ig-photo {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

/* ============================
   OVERLAY (ONLY ON IMAGE HOVER)
============================ */
#tb-instagram .tb-ig-overlay {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
    display:flex;
    justify-content:center;
    align-items:center;
    transition:.25s ease;
    z-index: 10;
}

#tb-instagram .tb-photo-wrapper:hover + .tb-ig-overlay,
#tb-instagram .tb-photo-wrapper:hover .tb-ig-overlay {
    opacity: 1;
    pointer-events: auto;
}

#tb-instagram .tb-ig-overlay i {
    font-size: 62px;
    color: white;
}

/* ============================
   NAVIGATION BUTTONS
============================ */
/* Hilangkan SVG swiper */
#tb-instagram .tb-inner-nav svg {
    display: none !important;
}
#tb-instagram .tb-inner-nav {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.192);
    color: #00A8E8;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size: 20px;
    cursor:pointer;
    z-index: 50;   /* <== above overlay */
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
    transition:.25s;
}

#tb-instagram .tb-inner-nav:hover {
    background:#00A8E8;
    color:white;
    transform: translateY(-50%) scale(1.12);
}

#tb-instagram .swiper-button-prev.tb-inner-nav { left: 10px; }
#tb-instagram .swiper-button-next.tb-inner-nav { right: 10px; }

/* HILANGKAN ICON SWIPER DEFAULT */


/* ============================
   DOTS (PAGINATION)
============================ */
#tb-instagram .tb-inner-dots {
    position: absolute;
    bottom: 12px;
    left: 0;
    right: 0;
}

#tb-instagram .tb-inner-dots .swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
    width: 8px;
    height: 8px;
    margin: 0 4px;
}

#tb-instagram .tb-inner-dots .swiper-pagination-bullet-active {
    background:#00A8E8;
    width: 10px;
    height: 10px;
}
/* ==============================
   WHATSAPP FLOATING BUTTON
================================*/
.wa-floating-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    z-index: 999;
    transition: 0.25s ease;
}

.wa-floating-btn:hover {
    background: #1ebe5d;
    transform: scale(1.12);
    box-shadow: 0 12px 28px rgba(0,0,0,0.32);
}
/* Animated Underline Premium */
.tb-link {
    position: relative;
    display: inline-block;
    transition: 0.3s ease;
}

.tb-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 2px;
    background: white;
    transition: width .35s ease;
    border-radius: 10px;
}

.tb-link:hover::after {
    width: 100%;
}