/* =====================================================
   HERO CONTAINER
===================================================== */
.hero-container {
    position: relative;
    width: 100%;

    /* FULL SCREEN MOBILE */
    height: 100vh;
    /* fallback */
    height: 100dvh;
    /* modern */
    min-height: 100vh;
    min-height: 100dvh;

    overflow: hidden;
}

#layer-bg {
    position: absolute;
    inset: 0;
    z-index: 0;

    /* PENTING */
    width: 100%;
    height: 100%;
}

#layer-bg img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    /* WAJIB */
    object-position: center;
    /* bisa diganti center top */

    display: block;
}



/* =====================================================
   LANDMARKS CONTAINER
===================================================== */
.landmarks-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: flex-end;
    pointer-events: none;
    /* hanya landmark yg aktif */
    z-index: 20;
}

/* =====================================================
   LANDMARK BASE (HITBOX = VISUAL)
===================================================== */
.landmark {
    position: relative;
    flex: 0 0 auto;
    line-height: 0;
    pointer-events: auto;
    cursor: pointer;
    transition: transform .35s ease;
    will-change: transform;
}

/* =====================================================
   IMAGE (TANPA TRANSLATE)
===================================================== */
.landmark img {
    display: block;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform .35s ease, filter .35s ease;
}

.landmark:nth-child(1) img {
    max-height: 80vh;
}
.landmark:nth-child(2) img {
    max-height: 40vh;
}
.landmark:nth-child(3) img {
    max-height: 50vh;
}
.landmark:nth-child(4) img {
    max-height: 70vh;
}
.landmark:nth-child(5) img {
    max-height: 40vh;
}
.landmark:nth-child(6) img {
    max-height: 50vh;
}
.landmark-tooltip {
    position: fixed;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: .25s ease;
    z-index: 99999;
}

.landmark:hover .landmark-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(-16px);
}

/* Tooltip content */
.tooltip-content {
    background: rgba(255, 255, 255, .96);
    color: #111827;
    padding: 8px 10px;
    border-radius: 10px;
    font-size: .8rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .25);
    text-align: center;
}
@media (max-width: 768px) {
    .landmarks-container {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 55vh;
        pointer-events: none;
    }
}
@media (max-width: 768px) {
    .landmark {
        position: absolute;
        pointer-events: auto;
        transition: transform .35s ease;
    }

    .landmark img {
        display: block;
        width: auto;
        height: auto;
        object-fit: contain;
        transition: transform .35s ease, filter .35s ease;
    }
}
@media (max-width: 768px) {

    .landmark:nth-child(1) {
        left: 4%;
        bottom: 0;
        z-index: 6;
    }

    .landmark:nth-child(1) img {
        max-height: 38vh;
    }

    .landmark:nth-child(2) {
        left: 18%;
        bottom: 5vh;
        z-index: 5;
    }

    .landmark:nth-child(2) img {
        max-height: 28vh;
    }

    .landmark:nth-child(3) {
        left: 34%;
        bottom: 1vh;
        z-index: 4;
    }

    .landmark:nth-child(3) img {
        max-height: 32vh;
    }

    .landmark:nth-child(4) {
        left: 48%;
        bottom: 6vh;
        z-index: 3;
    }

    .landmark:nth-child(4) img {
        max-height: 26vh;
    }

    .landmark:nth-child(5) {
        left: 62%;
        bottom: 0;
        z-index: 2;
    }

    .landmark:nth-child(5) img {
        max-height: 30vh;
    }

    .landmark:nth-child(6) {
        left: 74%;
        bottom: 4vh;
        z-index: 1;
    }

    .landmark:nth-child(6) img {
        max-height: 22vh;
    }
}

@media (max-width: 1366px) {
    .landmark:nth-child(1) img {
        max-height: 80vh;
    }

    .landmark:nth-child(2) img {
        margin-left: -5vh;
        max-height: 40vh;
    }

    .landmark:nth-child(3) img {
        margin-left: -5vh;
        max-height: 50vh;
    }

    .landmark:nth-child(4) img {
        margin-left: -5vh;
        max-height: 70vh;
    }

    .landmark:nth-child(5) img {
        margin-left: -5vh;
        max-height: 40vh;
    }

    .landmark:nth-child(6) img {
        margin-left: -5vh;
        max-height: 50vh;
    }

}

@media (max-width: 1024px) {
    .landmark:nth-child(1) img {
            max-height: 70vh;
        }
    
        .landmark:nth-child(2) img {
            margin-left: -20vh;
            max-height: 50vh;
        }
    
        .landmark:nth-child(3) img {
            margin-left: -25vh;
            max-height: 80vh;
        }
    
        .landmark:nth-child(4) img {
            margin-left: -25vh;
            max-height: 80vh;
        }
    
        .landmark:nth-child(5) img {
            margin-left: -25vh;
            max-height: 60vh;
        }
    
        .landmark:nth-child(6) img {
            margin-left: -20vh;
            max-height: 50vh;
        }
        .landmark:nth-child(2) .landmark-tooltip {
        margin-left: -20vh;
        }
        .landmark:nth-child(3) .landmark-tooltip {
        margin-left: -25vh;
        }
        .landmark:nth-child(4) .landmark-tooltip {
        margin-left: -25vh;
        }
        .landmark:nth-child(5) .landmark-tooltip {
        margin-left: -25vh;
        }.landmark:nth-child(6) .landmark-tooltip {
        margin-left: -20vh;
        }

}
@media (max-width: 768px) {
                .landmark:nth-child(1) img {
                    margin-left: -4vh;
                    max-height: 75vh;
                }
        
                .landmark:nth-child(2) img {
                    margin-left: -5vh;
                    margin-bottom: -7vh;
                    max-height: 40vh;
                }
        
                .landmark:nth-child(3) img {
                    margin-left: 20vh;
                    max-height: 40vh;
                }
        
                .landmark:nth-child(4) img {
                    margin-left: 10vh;
                    max-height: 80vh;
                }
        
                .landmark:nth-child(5) img {
                    margin-left: 25vh;
                    max-height: 100vh;
                }
        
                .landmark:nth-child(6) img {
                    margin-left: 40vh;
                    margin-bottom: -7vh;
                    max-height: 100vh;
                }               
                                .landmark:nth-child(1) .landmark-tooltip {
                                margin-left: -4vh;
                                }
                                .landmark:nth-child(2) .landmark-tooltip {
                                    margin-left: -5vh;
                                }
                
                                .landmark:nth-child(3) .landmark-tooltip {
                                    margin-left: 20vh;
                                }
                
                                .landmark:nth-child(4) .landmark-tooltip {
                                    margin-left: 10vh;
                                }
                
                                .landmark:nth-child(5) .landmark-tooltip {
                                    margin-left: 25vh;
                                }
                
                                .landmark:nth-child(6) .landmark-tooltip {
                                    margin-left: 40vh;
                                }
        
}

@media (max-width: 480px) {
    .landmark:nth-child(1) img {
        margin-left: -2vh;
        max-height: 40vh;
    }

    .landmark:nth-child(2) img {
        margin-left: -5vh;
        margin-bottom: -7vh;
        max-height: 25vh;
    }

    .landmark:nth-child(3) img {
        margin-left: 0vh;
        max-height: 30vh;
    }

    .landmark:nth-child(4) img {
        margin-left: 0vh;
        max-height: 80vh;
    }

    .landmark:nth-child(5) img {
        margin-left: 0vh;
        max-height: 10vh;
    }

    .landmark:nth-child(6) img {
        margin-left: 0vh;
        margin-bottom: -7vh;
        max-height: 100vh;
    }

        .landmark:nth-child(1) .landmark-tooltip {
            margin-left: 0vh;
        }
    
        .landmark:nth-child(2) .landmark-tooltip {
            margin-left: 0vh;
        }
    
        .landmark:nth-child(3) .landmark-tooltip {
            margin-left: 0vh;
        }
    
        .landmark:nth-child(4) .landmark-tooltip {
            margin-left: 0vh;
        }
    
        .landmark:nth-child(5) .landmark-tooltip {
            margin-left: 0vh;
        }
    
        .landmark:nth-child(6) .landmark-tooltip {
            margin-left: 0vh;
        }

}

/* =====================================================
   DOODLE STACKING (PINDAH CONTAINER)
===================================================== */
.landmark:nth-child(1) {
    transform: translateX(0);
    z-index: 6;
}

.landmark:nth-child(2) {
    transform: translateX(-6vh);
    z-index: 5;
}

.landmark:nth-child(3) {
    transform: translateX(-16vh);
    z-index: 4;
}

.landmark:nth-child(4) {
    transform: translateX(-36vh);
    z-index: 3;
}

.landmark:nth-child(5) {
    transform: translateX(-60vh);
    z-index: 2;
}

.landmark:nth-child(6) {
    transform: translateX(-80vh);
    z-index: 1;
}

.landmark:hover {
    z-index: 999;
}

.landmark:hover img {
    animation: doodleWiggle 0.8s ease-in-out infinite;
    filter: brightness(1.05) drop-shadow(0 0 10px rgba(255, 255, 255, .8));
}

/* Hover VISUAL */
.landmark.is-hover img {
    animation: doodleWiggle 0.8s ease-in-out infinite;
    filter: brightness(1.05) drop-shadow(0 0 10px rgba(255, 255, 255, .8));
}

.landmark.is-hover .tooltip {
    opacity: 1;
}

@keyframes doodleWiggle {
    0% {
        transform: scale(1.06) rotate(0deg);
    }

    25% {
        transform: scale(1.06) rotate(1deg);
    }

    50% {
        transform: scale(1.06) rotate(0deg);
    }

    75% {
        transform: scale(1.06) rotate(-1deg);
    }

    100% {
        transform: scale(1.06) rotate(0deg);
    }
}

/* =====================================================
   TOOLTIP
===================================================== */

.landmark-emoji {
    font-size: 48px;
    line-height: 1;
    display: inline-block;
    vertical-align: bottom;
}
img.emoji {
    display: inline-block !important;
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    min-height: 24px !important;
    vertical-align: middle !important;
    margin: 0 4px 0 0 !important;
    line-height: 1 !important;
    object-fit: contain !important;
}

img.emoji[src*="1f1"] {
    width: 26px !important;
    height: 26px !important;
    min-width: 26px !important;
    min-height: 26px !important;
}
/* =====================================================
   AIRPLANE LAYER
===================================================== */

#layer-pesawat {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40%;
    max-width: 250px;
    z-index: 100;
    pointer-events: none;
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 768px) {
    .landmark img {
        max-height: 45vh;
    }

    .landmark:nth-child(2) {
        transform: translateX(-4vh);
    }

    .landmark:nth-child(3) {
        transform: translateX(-10vh);
    }

    .landmark:nth-child(4) {
        transform: translateX(-22vh);
    }

    .landmark:nth-child(5) {
        transform: translateX(-38vh);
    }

    .landmark:nth-child(6) {
        transform: translateX(-52vh);
    }
}

@media (max-width: 480px) {
    .landmark img {
        max-height: 30vh;
    }

    .landmarks-container {
        justify-content: center;
    }

    .landmark {
        transform: translateX(0) !important;
    }
}

/* =====================================================
   TOUCH DEVICE (NO HOVER)
===================================================== */
@media (hover: none) and (pointer: coarse) {

    .landmark:hover img,
    .landmark:hover .landmark-tooltip {
        transform: none;
        opacity: 0;
    }
}

.price-box {
    display: flex;
    flex-direction: column;
    font-family: 'Inter', sans-serif;
}

.price-label {
    display: inline-block;
    width: auto;

    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    /* supaya tinggi label pas */

    background: #FFF7D1;
    color: #8A7A42;

    padding: 3px 8px;
    /* diperkecil supaya tidak melebar */
    border-radius: 6px;
    /* bukan pill penuh agar tidak keliatan “kembung” */
    margin-bottom: 6px;
}
.price-value {
    font-size: 26px !important;
    font-weight: 700 !important;
    color: #FF7A00 !important;
}



.swal2-popup,
.swal2-container,
.swal2-actions {
    /* background: #fff !important; */
    backdrop-filter: none !important;
}

.swal2-modal {
    background-color: #fff !important;
}

.swal2-title,
.swal2-html-container {
    color: #333 !important;
}

.swal2-cancel {
    background-color: #6c757d !important;
    color: #fff !important;
    border: none !important;
}

.btn-primary {
    background-color: #fd7e14 !important;
    border-color: #fd7e14 !important;
    transition: 0.25s ease;
}

.btn-primary:hover {
    background-color: #f76707 !important;
    border-color: #f76707 !important;
}

.alert-secondary {
    background-color: #F3F4F6 !important;
    border-color: #E5E7EB !important;
    color: #333 !important;
}

.floating-wa {
    position: fixed;
    bottom: 100px;
    /* POSISI DI ATAS TOMBOL SCROLL */
    right: 20px;
    width: 56px;
    height: 56px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    text-decoration: none;
}

.floating-wa:hover {
    background-color: #1ebe5d;
}

.wa-bubble {
    position: fixed;
    bottom: 80px;
    /* DI ATAS PANAH */
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
}

/* Bubble text */
.wa-text {
    background: #ffffff;
    color: #333;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
}

/* Bubble arrow */
.wa-text::after {
    content: "";
    position: absolute;
    right: 56px;
    bottom: 18px;
    border: 6px solid transparent;
    border-left-color: #ffffff;
}

/* WhatsApp Button */
.wa-btn {
    width: 56px;
    height: 56px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.wa-btn:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
    color: #fff;
    background-color: #1ebe5d;
}

.wa-text {
    transition: all 0.25s ease;
}

.wa-bubble:hover .wa-text {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}


