/* ========== GLOBAL SCALING (85% feel) ========== */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    font-size: 0.85rem;           /* lebih kecil dari default */
    line-height: 1.5;
}
h1, .h1 { font-size: 2rem; }
h2, .h2 { font-size: 1.6rem; }
h3, .h3 { font-size: 1.3rem; }
h4, .h4 { font-size: 1.1rem; }
h5, .h5 { font-size: 1rem; }
h6, .h6 { font-size: 0.9rem; }
.display-3 { font-size: 2.8rem; }
.display-4 { font-size: 2.2rem; }

.navbar { font-size: 0.85rem; }
.navbar-brand { font-size: 1.1rem; }
.nav-link { font-size: 0.85rem; }
.btn { font-size: 0.85rem; }
.card-title { font-size: 1rem; }
.card-text { font-size: 0.85rem; }
.lead { font-size: 1rem; }
.breadcrumb { font-size: 0.85rem; }
footer { font-size: 0.85rem; }
.hero-section h1 { font-size: 2.6rem; }
.hero-section .lead { font-size: 1rem; }

/* Navbar & Hero */
.hero-section {
    background: url('/assets/images/hero-bg.jpg') center/cover no-repeat;
    background-blend-mode: overlay;
    background-color: rgba(0,0,0,0.5);
}
.navbar { backdrop-filter: blur(10px); background-color: rgba(33, 37, 41, 0.9) !important; }
.tour-card {
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 15px;
    overflow: hidden;
}
.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
}
.tour-card .card-img-top { transition: transform 0.5s; }
.tour-card:hover .card-img-top { transform: scale(1.05); }
.btn-primary {
    background: linear-gradient(45deg, #0d6efd, #6610f2);
    border: none;
}
.btn-primary:hover {
    background: linear-gradient(45deg, #6610f2, #0d6efd);
    box-shadow: 0 5px 15px rgba(13,110,253,0.4);
}
.breadcrumb { background: transparent; }
footer { background: linear-gradient(45deg, #1a1a1a, #2d2d2d); }
footer a:hover { color: #0d6efd !important; transition: 0.3s; }
.card { border-radius: 12px; }

/* ========== HERO SLIDER ========== */
.hero-slider {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
}
.hero-slider .slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}
.hero-slider .slide.active {
    opacity: 1;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}
.hero-section {
    position: relative;
    overflow: hidden;
}
.hero-section .container {
    position: relative;
    z-index: 2;
}
.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}
.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s;
}
.slider-dots .dot.active {
    background: #fff;
}

/* ========== TEKS BERJALAN (MARQUEE) MULTIBAHASA ========== */
.language-marquee {
    background: linear-gradient(90deg, #0d6efd, #6610f2);
    color: #fff;
    font-size: 0.85rem;
    padding: 6px 0;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    z-index: 1020;
    margin-top: 76px; /* tepat di bawah navbar fixed */
}
.language-marquee marquee {
    font-weight: 500;
    letter-spacing: 0.5px;
}
/* ========== FLOATING WHATSAPP BUTTON ========== */
.floating-wa {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}
.floating-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: #fff;
}
.floating-wa i {
    line-height: 1;
}