/* Reset Basic */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

/* Top Bar Contact */
.top-bar {
    background-color: #1a252f;
    color: #ecf0f1;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    padding: 8px 5%;
    font-size: 0.85rem;
}

.top-bar span i {
    color: #00A8FF;
    margin-right: 5px;
}

/* ==========================================
   NAVBAR BASE STYLING (FIXED FOR DESKTOP & MOBILE)
========================================== */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Menjaga Logo di kiri, Menu/Button di kanan */
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: #00A8FF;
}

.btn-nav-cta {
    background-color: #00A8FF;
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s;
}

/* Wajib STRICT: Sembunyikan Hamburger Total di Desktop/Laptop */
.hamburger-menu {
    display: none !important; 
    background: none;
    border: none;
    font-size: 1.6rem;
    color: #2c3e50;
    cursor: pointer;
    padding: 5px;
}

/* ==========================================
   RESPONSIF SMARTPHONE (LAYAR < 768px)
========================================== */
@media (max-width: 768px) {
    .hamburger-menu {
        display: block !important; /* Baru dimunculkan hanya saat layar HP */
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 5%;
        gap: 18px;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.08);
        
        /* Efek Slide Menu */
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.3s ease-in-out;
    }

    .nav-menu.active {
        max-height: 450px;
        opacity: 1;
    }

    .btn-nav-cta {
        width: 100%;
        justify-content: center;
        margin-top: 5px;
    }
}

/* ==========================================
   HERO SECTION SLIDER (RESPONSIF & DINAMIS)
========================================== */
.hero-slider {
    position: relative;
    width: 100%;
    /* Menggunakan Aspect Ratio standar banner desktop (16:9 atau 21:9) */
    aspect-ratio: 16 / 7;
    min-height: 300px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #1a252f;
}

.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide picture,
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Dots Indikator */
.slider-dots {
    position: absolute;
    bottom: 15px;
    z-index: 2;
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
}

.dot.active, .dot:hover {
    background-color: #00A8FF;
    transform: scale(1.25);
}

/* ==========================================
   FIX BANNER MOBILE (AGAR TAMPIL UTUH TGL/TEKS)
========================================== */
@media (max-width: 768px) {
    .hero-slider {
        /* Mengikuti rasio asli banner lanskap agar tidak terpotong */
        height: auto !important;
        aspect-ratio: 16 / 9; /* atau sesuaikan rasio banner lu */
        min-height: unset;
        background-color: #ffffff;
    }

    .slide picture img {
        width: 100%;
        height: 100%;
        /* Gunakan CONTAIN agar seluruh isi banner (teks & gambar) muat 100% */
        /*object-fit: contain !important; */
        object-position: center;
    }

    /* Penyesuaian Dots Indikator */
    .slider-dots {
        bottom: 8px;
    }
    
    .dot {
        width: 7px;
        height: 7px;
    }
}

/* ==========================================
   SECTION TENTANG KAMI
========================================== */
.about-section {
    padding: 70px 5%;
    background-color: #ffffff;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-content .sub-title {
    color: #00A8FF;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 8px;
}

.about-content h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    line-height: 1.3;
    margin-bottom: 20px;
}

.about-content p {
    color: #555;
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.7;
}

/* ==========================================
   SECTION KENAPA HARUS KAMI (BIRU TERANG)
========================================== */
.why-us-section {
    padding: 70px 5%;
    background-color: #00A8FF; /* Biru terang menyala & fresh */
}

/* Judul khusus background terang/gelap */
.section-title.light-title h2 {
    color: #ffffff;
}

.section-title.light-title p {
    color: #e0f2fe;
}

.why-us-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.why-us-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-us-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.why-icon {
    width: 65px;
    height: 65px;
    background: #e6f6ff; /* Background lingkaran ikon biru lembut */
    color: #00A8FF; /* Warna ikon biru terang */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px auto;
}

.why-us-card h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 12px;
}

.why-us-card p {
    color: #555555;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ==========================================
   TAMBAHAN CLASS WAVE UNTUK WARNA BIRU
========================================== */
.wave-divider.fill-blue svg path {
    fill: #00A8FF; /* Menyamakan warna wave atas dengan background section */
}

/* Responsive Handling */
@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
    }
    .about-image img {
        height: 250px;
    }
    .about-content h2 {
        font-size: 1.7rem;
    }
}

/* Sections Global */
.packages-section, .armada-section, .testi-section {
    padding: 60px 5%;
}

.armada-section {
    background-color: #eef2f5;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.section-title p {
    color: #7f8c8d;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    border: 2px solid #00A8FF;
    background: transparent;
    color: #00A8FF;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.filter-btn.active, .filter-btn:hover {
    background: #00A8FF;
    color: white;
}

/* Grid Container & Cards */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.card, .car-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover, .car-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.badge, .car-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #e74c3c;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    z-index: 2;
}

.badge.adventure, .car-tag.luxury {
    background: #f39c12;
}

.car-tag.group {
    background: #2980b9;
}

.car-tag.vip {
    background: #8e44ad;
}

.card img, .car-img-wrapper img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-body, .car-body {
    padding: 20px;
}

.durasi {
    font-size: 0.85rem;
    color: #95a5a6;
    display: block;
    margin-bottom: 5px;
}

.card-body h3, .car-body h3 {
    font-size: 1.25rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.destinasi {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 20px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f2f6;
    padding-top: 15px;
}

.price-tag small {
    display: block;
    font-size: 0.75rem;
    color: #95a5a6;
}

.price-tag strong {
    color: #00A8FF;
    font-size: 1.1rem;
}

.btn-detail, .btn-rent-car {
    background: #00A8FF;
    color: white;
    border: none;
    padding: 8px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 400;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s;
}

.btn-rent-car {
    width: 100%;
    margin-top: 15px;
    padding: 10px;
    background: #00A8FF;
    text-align: center;
}

.btn-detail:hover { background: #007ab7; }
.btn-rent-car:hover { background: #007ab7; }

/* Car Specs & Price Box */
.car-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    font-size: 0.85rem;
    color: #7f8c8d;
    margin: 15px 0;
}

.car-price-box {
    display: flex;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
}

.price-item {
    flex: 1;
}

.price-item.border-left {
    border-left: 1px solid #e2e8f0;
}

.price-item small {
    display: block;
    font-size: 0.75rem;
    color: #7f8c8d;
}

.price-item strong {
    color: #2c3e50;
    font-size: 0.95rem;
}

/* ==========================================
   GALLERY SLIDER SECTION
========================================== */
.gallery-section {
    padding: 60px 5%;
    background-color: #ffffff;
}

.gallery-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.gallery-track-container {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.gallery-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease-in-out;
}

.gallery-card {
    min-width: calc(33.333% - 14px); /* Menampilkan 3 foto sekaligus di desktop */
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.gallery-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
}

/* Tombol Navigasi Panah */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: #00A8FF;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: background 0.3s, transform 0.3s;
}

.gallery-nav:hover {
    background: #219150;
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav.prev { left: -20px; }
.gallery-nav.next { right: -20px; }

/* Responsive Handling */
@media (max-width: 992px) {
    .gallery-card {
        min-width: calc(50% - 10px); /* 2 foto di tablet */
    }
}

@media (max-width: 576px) {
    .gallery-card {
        min-width: 100%; /* 1 foto di HP */
    }
    .gallery-nav.prev { left: 5px; }
    .gallery-nav.next { right: 5px; }
}

/* ==========================================
   TESTIMONIAL SLIDER SECTION
========================================== */
.testi-section {
    padding: 70px 5%;
    background-color: #f8f9fa;
}

.testi-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.testi-track-container {
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
}

.testi-track {
    display: flex;
    gap: 25px;
    transition: transform 0.4s ease-in-out;
}

.testi-card {
    min-width: calc(50% - 13px); /* Menampilkan 2 testimoni sekaligus di desktop */
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars {
    color: #f1c40f; /* Warna kuning emas */
    font-size: 1rem;
    margin-bottom: 15px;
}

.stars i {
    margin-right: 2px;
}

.testi-text {
    font-style: italic;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #f1f2f6;
    padding-top: 15px;
}

.user-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #27ae60;
}

.user-info strong {
    display: block;
    color: #2c3e50;
    font-size: 1rem;
}

.user-info small {
    color: #95a5a6;
    font-size: 0.85rem;
}

/* Navigasi Panah Testimoni */
.testi-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: #00A8FF;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: background 0.3s, transform 0.3s;
}

.testi-nav:hover {
    background: #219150;
    transform: translateY(-50%) scale(1.1);
}

.testi-nav.prev { left: -20px; }
.testi-nav.next { right: -20px; }

/* Responsive Handling */
@media (max-width: 768px) {
    .testi-card {
        min-width: 100%; /* 1 card per slide di layar HP */
    }
    .testi-nav.prev { left: -10px; }
    .testi-nav.next { right: -10px; }
}

/* Modal Booking */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #95a5a6;
}

.form-group {
    margin-top: 15px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
}

.btn-submit-wa {
    width: 100%;
    background: #25D366;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: bold;
    margin-top: 20px;
    cursor: pointer;
}

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

/* ==========================================
   FOOTER SECTION (WARNA NAVY & LAYOUT SAMPAI MATCH)
========================================== */
.wave-divider.fill-footer svg path {
    fill: #27406f; /* Warna latar atas footer biar nyambung presisi */
}

.site-footer {
    background-color: #27406f; /* Warna latar biru navy sesuai gambar */
    color: #ffffff;
    padding: 20px 5% 0 5%;
    font-family: inherit;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

/* Kolom 1: Brand Info */
.footer-logo {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.footer-logo span {
    font-style: italic;
    font-weight: 400;
}

.brand-col p {
    color: #c3d1e5;
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 340px;
}

.social-wrapper h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #ffffff;
    color: #27406f;
    border-color: #ffffff;
}

/* Kolom 2 & 3: Headings */
.footer-col h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

/* Links Kolom Paket */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

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

.footer-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Kolom Kontak */
.contact-item {
    margin-bottom: 15px;
}

.contact-item strong {
    display: block;
    font-size: 0.9rem;
    color: #ffffff;
    margin-bottom: 3px;
}

.contact-item p {
    color: #c3d1e5;
    font-size: 0.88rem;
    line-height: 1.5;
    margin: 0;
}

/* Footer Bottom / Copyright */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: #a3b8d7;
    font-size: 0.82rem;
    margin: 0;
}

.footer-bottom i {
    color: #e74c3c;
    margin: 0 2px;
}

/* Responsif untuk Layar HP & Tablet */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .brand-col p {
        max-width: 100%;
    }
}

/* DETAIL PACKAGE PAGE STYLES */
.detail-header {
    background: #ffffff;
    padding: 30px 5%;
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumb {
    font-size: 0.85rem;
    color: #7f8c8d;
    margin-bottom: 10px;
}

.breadcrumb a {
    color: #27ae60;
    text-decoration: none;
}

.package-title {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.package-meta {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: #7f8c8d;
    flex-wrap: wrap;
}

.package-meta span i {
    color: #27ae60;
    margin-right: 5px;
}

.detail-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    padding: 40px 5%;
    max-width: 1300px;
    margin: 0 auto;
}

.detail-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.main-img img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 12px;
}

.sub-imgs {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sub-imgs img {
    width: 100%;
    height: 172px;
    object-fit: cover;
    border-radius: 12px;
}

.detail-block {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.detail-block h2 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 15px;
    border-bottom: 2px solid #27ae60;
    display: inline-block;
    padding-bottom: 5px;
}

.itinerary-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.itinerary-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.day-badge {
    background: #27ae60;
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 0.85rem;
    white-space: nowrap;
}

.day-content h3 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 5px;
}

.day-content p {
    font-size: 0.95rem;
    color: #666;
}

.facilities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.facility-box {
    padding: 20px;
    border-radius: 10px;
}

.facility-box.include { background: #eef9f1; }
.facility-box.exclude { background: #fdf0ed; }

.facility-box h3 {
    font-size: 1.05rem;
    margin-bottom: 15px;
}

.facility-box.include h3 { color: #27ae60; }
.facility-box.exclude h3 { color: #e74c3c; }

.facility-box ul {
    list-style: none;
}

.facility-box ul li {
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #444;
}

.booking-card-sticky {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 90px;
}

.price-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.price-header small {
    color: #7f8c8d;
    font-size: 0.85rem;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: bold;
    color: #27ae60;
}

.price-amount span {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-weight: normal;
}

.sidebar-help {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px dashed #ddd;
    font-size: 0.85rem;
    color: #555;
}

.sidebar-help i {
    font-size: 1.5rem;
    color: #27ae60;
}

/* Responsive Handling */
@media (max-width: 992px) {
    .detail-container {
        grid-template-columns: 1fr;
    }
    .detail-gallery {
        grid-template-columns: 1fr;
    }
    .sub-imgs {
        flex-direction: row;
    }
    .sub-imgs img {
        height: 150px;
    }
    .facilities-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    header { flex-direction: column; gap: 15px; }
    nav { display: flex; gap: 10px; }
    nav a { margin: 0; font-size: 0.9rem; }
    .hero h1 { font-size: 2rem; }
    .search-box { flex-direction: column; }
}

/* ==========================================
   WAVE DIVIDER STYLING
========================================== */
.wave-divider {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 5;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 50px; /* Tinggi gelombang, bisa disesuaikan */
}

/* Warna isian wave menyambung dengan background section berikutnya */
.wave-divider.fill-white svg path {
    fill: #00A8FF;
}

.wave-divider.fill-gray svg path {
    fill: #f8f9fa;
}

.wave-divider.fill-armada svg path {
    fill: #eef2f5; /* Sesuai warna background armada-section lu */
}

/* Responsive adjustment di Layar HP */
@media (max-width: 768px) {
    .wave-divider svg {
        height: 30px; /* Di HP gelombang dibikin agak tipis biar hemat ruang */
    }
}