:root {
    --font-display: 'Fredoka', cursive, sans-serif;
    --font-body: 'Nunito', sans-serif;
    --color-primary-blue: #0088cc;
    --color-primary-orange: #ff9800;
    --color-lime: #a3e635;
}

body { 
    font-family: var(--font-body); 
    background-color: #fafafa; 
    color: #333; 
    overflow-x: hidden; 
}

/* ====================================================
   SISTEM ANIMASI SCROLL REVEAL (VANILLA CSS & JS)
   ==================================================== */
.reveal-el {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), 
                transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: opacity, transform;
}

.reveal-el.reveal-left { transform: translateX(-40px); }
.reveal-el.reveal-right { transform: translateX(40px); }
.reveal-el.reveal-scale { transform: scale(0.93); }

.reveal-el.active {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.25s; }
.delay-3 { transition-delay: 0.4s; }
.delay-4 { transition-delay: 0.55s; }

/* ====================================================
   HEADER & NAVBAR
   ==================================================== */
.navbar { 
    background-color: #ffffff !important; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.03); 
    padding: 12px 0; 
    z-index: 1050 !important;
    position: relative;
}

.brand-logo { 
    font-family: var(--font-display); 
    font-weight: 700; 
    font-size: 1.6rem; 
    line-height: 1.1; 
    text-decoration: none; 
    display: inline-block;
}

/* ANIMASI MENU HEADER PLAYFUL PASTEL */
.nav-menu-link { 
    font-family: var(--font-display); 
    font-size: 1.1rem; 
    font-weight: 600; 
    color: #4a4a68 !important; 
    margin: 0 6px; 
    padding: 8px 18px !important; 
    position: relative; 
    transition: color 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1); 
    text-transform: lowercase; 
    z-index: 1;
    display: inline-block;
}

.nav-menu-link:hover {
    color: #1a1a2e !important;
    transform: translateY(-3px) scale(1.05);
}

.nav-menu-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 105%;
    height: 85%;
    border-radius: 50% 40% 60% 30% / 40% 50% 60% 50%;
    z-index: -1;
    transform: translate(-50%, -50%) scale(0) rotate(-6deg);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
    background-color: rgba(255, 182, 193, 0.65);
}

@keyframes blobPlayfulMorph {
    0% {
        border-radius: 50% 40% 60% 30% / 40% 50% 60% 50%;
        transform: translate(-50%, -50%) scale(1) rotate(-3deg);
    }
    50% {
        border-radius: 35% 65% 45% 55% / 55% 35% 65% 45%;
        transform: translate(-50%, -50%) scale(1.06) rotate(3deg);
    }
    100% {
        border-radius: 50% 40% 60% 30% / 40% 50% 60% 50%;
        transform: translate(-50%, -50%) scale(1) rotate(-3deg);
    }
}

.nav-menu-link:hover::before,
.nav-menu-link.active::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    animation: blobPlayfulMorph 3s infinite ease-in-out alternate;
}

.navbar-nav .nav-item:nth-child(1) .nav-menu-link::before { background-color: rgba(255, 182, 193, 0.65); }
.navbar-nav .nav-item:nth-child(2) .nav-menu-link::before { background-color: rgba(168, 230, 207, 0.65); }
.navbar-nav .nav-item:nth-child(3) .nav-menu-link::before { background-color: rgba(255, 211, 182, 0.70); }
.navbar-nav .nav-item:nth-child(4) .nav-menu-link::before { background-color: rgba(186, 225, 255, 0.65); }
.navbar-nav .nav-item:nth-child(5) .nav-menu-link::before { background-color: rgba(230, 204, 255, 0.65); }
.navbar-nav .nav-item:nth-child(6) .nav-menu-link::before { background-color: rgba(255, 243, 176, 0.75); }

/* ====================================================
   CUSTOM HERO CAROUSEL
   ==================================================== */
.custom-carousel-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    margin-bottom: 3rem;
    height: calc(100vh - 110px); 
    min-height: 500px;
    z-index: 1;
}

.custom-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    z-index: 1;
}

.custom-slide.active { opacity: 1; visibility: visible; z-index: 2; }

.hero-banner { 
    color: white; 
    padding: 110px 50px 20px 50px; 
    height: 100%; 
}

.hero-title { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 4rem); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.hero-subtitle { font-size: clamp(1.1rem, 2vw, 1.4rem); opacity: 0.95; margin-bottom: 25px; }

.btn-aman-tiket { 
    font-family: var(--font-display); 
    background-color: rgba(255, 255, 255, 0.2); 
    color: #ffffff; 
    border: 2px solid rgba(255, 255, 255, 0.8); 
    border-radius: 50px; 
    padding: 12px 32px; 
    font-size: 1.1rem; 
    font-weight: 600; 
    transition: all 0.3s ease; 
    display: inline-block; 
    text-decoration: none;
}
.btn-aman-tiket:hover { background-color: #ffffff; color: #333; transform: translateY(-3px); }

.slide-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    background-color: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    color: white;
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.slide-nav-prev { left: 30px; }
.slide-nav-next { right: 30px; }
.slide-nav-btn:hover { background-color: rgba(0, 0, 0, 0.9); border-color: #ffffff; color: #ffca28; transform: translateY(-50%) scale(1.1); }

.slide-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.slide-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.slide-dot.active {
    width: 45px;
    border-radius: 10px;
    background-color: #ffca28;
    opacity: 1;
}

.desc-box { background-color: #e8f5e9; border: 1px solid #c8e6c9; border-radius: 12px; padding: 18px 24px; text-align: center; font-size: 1.1rem; font-weight: 700; color: #1b5e20; margin: 20px 0 35px 0; }


/* ====================================================
   TAGLINE BANNER BAR (BACKGROUND THEMED KARNAVAL)
   ==================================================== */
.tagline-banner-box {
    position: relative;
    /* Multilayer Background: SVG Confetti Pattern + Sunshine Radial Gradient + Soft Pastel Linear Gradient */
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 215, 0, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 188, 212, 0.2) 0%, transparent 45%),
        radial-gradient(circle at 50% 10%, rgba(255, 105, 180, 0.18) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ff9800' fill-opacity='0.09'%3E%3Ccircle cx='15' cy='15' r='5'/%3E%3Cpath d='M50 15l3 7 7 3-7 3-3 7-3-7-7-3 7-3z'/%3E%3Ccircle cx='65' cy='60' r='4'/%3E%3Cpath d='M20 55l2 5 5 2-5 2-2 5-2-5-5-2 5-2z'/%3E%3Ccircle cx='40' cy='40' r='3'/%3E%3C/g%3E%3C/svg%3E"),
        linear-gradient(135deg, #fffcf5 0%, #fff3e0 50%, #f0fdf4 100%);
    border: 3px solid #ff9800;
    border-radius: 26px;
    padding: 32px 45px;
    text-align: center;
    margin: 25px 0 45px 0;
    box-shadow: 0 12px 35px rgba(255, 152, 0, 0.16);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: taglineBorderGlow 6s infinite ease-in-out;
}

/* Animasi Border & Shadow Melayang */
@keyframes taglineBorderGlow {
    0%, 100% { 
        border-color: #ff9800; 
        box-shadow: 0 12px 35px rgba(255, 152, 0, 0.18); 
    }
    50% { 
        border-color: #2e7d32; 
        box-shadow: 0 12px 35px rgba(46, 125, 50, 0.22); 
    }
}

.tagline-banner-box:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 20px 45px rgba(255, 152, 0, 0.25);
}

/* Gelembung Hiasan Latar Belakang (Theme BG Blobs) */
.tagline-bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(25px);
    opacity: 0.45;
    pointer-events: none;
    z-index: 0;
    animation: bgBlobFloat 8s infinite ease-in-out alternate;
}

.tagline-bg-blob-1 {
    width: 140px;
    height: 140px;
    background-color: #ff80ab;
    top: -30px;
    left: -30px;
}

.tagline-bg-blob-2 {
    width: 160px;
    height: 160px;
    background-color: #ffd54f;
    bottom: -40px;
    right: -30px;
    animation-delay: -4s;
}

@keyframes bgBlobFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(25px, 20px) scale(1.15); }
}

.tagline-content {
    position: relative;
    z-index: 2;
}

/* Badge Kategori Atas */
.tagline-badge {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #d84315;
    background: #ffffff;
    border: 1px solid rgba(255, 152, 0, 0.3);
    padding: 6px 20px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 14px;
    text-transform: uppercase;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

/* Teks Utama Tagline */
.tagline-text {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.4vw, 1.6rem);
    font-weight: 600;
    color: #2c2c38;
    line-height: 1.65;
    margin: 0;
}

.tagline-text .brand-highlight {
    color: #0088cc;
    font-weight: 700;
    display: inline-block;
}

/* Word Badges Warna-Warni Playful */
.tagline-word-badge {
    display: inline-block;
    padding: 3px 14px;
    border-radius: 12px;
    font-weight: 700;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
    margin: 0 2px;
}

.tagline-word-badge:hover {
    transform: scale(1.15) rotate(-3deg);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.tagline-word-badge.badge-pink { background-color: #ffe4e8; color: #c2185b; }
.tagline-word-badge.badge-green { background-color: #e8f5e9; color: #1b5e20; }
.tagline-word-badge.badge-yellow { background-color: #fffde7; color: #f57f17; }
.tagline-word-badge.badge-blue { background-color: #e3f2fd; color: #0d47a1; }

/* Hiasan Ikon Bintang & Kilau Melayang */
.tagline-decor {
    position: absolute;
    font-size: 2.2rem;
    z-index: 2;
    pointer-events: none;
}

.tagline-decor-left {
    top: 15px;
    left: 20px;
    color: #ffca28;
    animation: taglineFloat 3.5s infinite ease-in-out;
}

.tagline-decor-right {
    bottom: 15px;
    right: 25px;
    color: #ff4081;
    animation: taglineFloat 4s infinite ease-in-out reverse;
}

@keyframes taglineFloat {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    50% { transform: translateY(-10px) rotate(14deg) scale(1.15); }
}

@media (max-width: 991.98px) {
    .tagline-banner-box { padding: 24px 20px; }
    .tagline-decor { display: none; }
    .tagline-word-badge { margin: 3px 1px; }
}

/* ====================================================
   CARDS SECTION (ANIMASI ATRAKTIF)
   ==================================================== */
.card-zone {
    border-radius: 20px;
    border-width: 2px;
    border-style: solid;
    background-color: #ffffff;
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.card-zone::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 60%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.55) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(25deg);
    transition: all 0.75s ease;
    opacity: 0;
    pointer-events: none;
    z-index: 5;
}

.card-zone:hover::after {
    left: 130%;
    opacity: 1;
}

.card-zone:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.12);
}

.card-zone-title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; margin-bottom: 2px; }
.card-zone-subtitle { font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; letter-spacing: 1px; margin-bottom: 18px; text-transform: uppercase; opacity: 0.85; }
.card-zone-body { font-size: 0.92rem; color: #444; line-height: 1.5; margin-bottom: 20px; position: relative; z-index: 2; }

.card-access-tag {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.card-zone:hover .card-access-tag { transform: translateX(4px); }
.card-top-icon { transition: transform 0.45s cubic-bezier(0.68, -0.6, 0.32, 1.6); }
.card-zone:hover .card-top-icon { transform: scale(1.3) rotate(12deg); }

.card-illustration-icon {
    position: absolute;
    right: 20px;
    bottom: 60px;
    font-size: 4.8rem;
    opacity: 0.12;
    pointer-events: none;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s ease;
    z-index: 1;
}

.card-zone:hover .card-illustration-icon {
    opacity: 0.28;
    transform: scale(1.25) rotate(-10deg) translateY(-8px);
}

.btn-card-action {
    font-family: var(--font-display);
    border-radius: 50px;
    padding: 10px 22px;
    font-weight: 600;
    font-size: 0.88rem;
    color: #ffffff !important;
    border: none;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 3;
}

.btn-card-action:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}

.btn-custom-green { background-color: #2e7d32; } 
.btn-custom-red { background-color: #b71c1c; } 
.btn-custom-blue { background-color: #1565c0; }

/* ====================================================
   SECTION LOKASI & FAQ
   ==================================================== */
.info-card {
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-lokasi {
    background-color: #eef7ff;
    border: 2.5px solid #0088cc;
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.08);
}
.card-lokasi:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 136, 204, 0.15);
}
.card-lokasi .card-title {
    color: #0088cc;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: 0.5px;
}

.card-faq {
    background-color: #fff9f0;
    border: 2.5px solid #ff9800;
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.08);
}
.card-faq:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(255, 152, 0, 0.15);
}
.card-faq .card-title {
    color: #ff9800;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: 0.5px;
}

.map-wrapper {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.08);
}

.info-chip {
    background-color: #ffffff;
    border-radius: 50px;
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #444;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
    margin-right: 6px;
    margin-bottom: 8px;
    transition: all 0.25s ease;
}
.info-chip:hover {
    background-color: #0088cc;
    color: #ffffff;
    transform: scale(1.05);
}
.info-chip:hover i { color: #ffffff !important; }

.faq-item-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 12px 18px;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 152, 0, 0.2);
    transition: all 0.25s ease;
}
.faq-item-box:hover {
    transform: translateX(6px);
    border-color: #ff9800;
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.12);
}

/* ====================================================
   DARK FOOTER UTAMA
   ==================================================== */
.site-footer-dark {
    background-color: #222226;
    color: #b0b0b8;
    font-size: 0.9rem;
    padding-top: 50px;
    padding-bottom: 30px;
    margin-top: 50px;
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-heading.lime { color: var(--color-lime); }
.footer-heading.white { color: #ffffff; }

.footer-links-inline {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
}

.footer-links-inline a {
    color: #d0d0d8;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.92rem;
}

.footer-links-inline a:hover { color: var(--color-lime); }

.partner-logo-box {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 16px 10px;
    min-height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #aaa;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.partner-logo-box:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: var(--color-lime);
    color: var(--color-lime);
    transform: translateY(-3px);
}

.social-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-right: 8px;
}

.social-link-btn:hover {
    background-color: var(--color-lime);
    color: #111;
    transform: translateY(-3px) rotate(8deg);
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    margin-top: 35px;
    font-size: 0.82rem;
    color: #808088;
}

.footer-bottom-bar a { color: #909098; text-decoration: none; }
.footer-bottom-bar a:hover { color: #ffffff; }

/* ====================================================
   RESPONSIVE MOBILE (HP & TABLET)
   ==================================================== */
@media (max-width: 991.98px) { 
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff !important;
        padding: 15px 20px;
        border-radius: 16px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        margin-top: 10px;
        z-index: 9999 !important;
    }

    .custom-carousel-container { 
        height: 520px; 
        min-height: 480px; 
    }

    .hero-banner { 
        text-align: center; 
        padding: 85px 45px 30px 45px !important; 
    }

    .hero-title { font-size: 1.35rem; margin-top: 0px; margin-bottom: 8px !important; }
    .hero-subtitle { font-size: 0.9rem; margin-bottom: 16px; }
    .btn-aman-tiket { padding: 8px 20px; font-size: 0.85rem; }

    .slide-nav-btn { width: 38px; height: 38px; font-size: 1rem; background-color: rgba(0, 0, 0, 0.5); }
    .slide-nav-prev { left: 8px; }
    .slide-nav-next { right: 8px; }

    .slide-indicators { bottom: 15px; }
    .slide-dot { width: 10px; height: 10px; }
    .slide-dot.active { width: 28px; }

    .info-card { padding: 20px; }
}