:root {
    --bg-color: #1a1a1a;
    --primary-color: #FF8C00;
    --secondary-color: #FFD700;
    --text-main: #ffffff;
    --text-muted: #cccccc;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
}

h1, h2, h3, h4, .btn-submit {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1.5px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-bg-1 {
    background-image: url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&q=80&w=2070');
    animation: heroSlide1 12s infinite;
}

.hero-bg-2 {
    /* Gambar ke-2: Tema tenda dan pegunungan senja */
    background-image: url('image/hero.png');
    animation: heroSlide2 12s infinite;
}

@keyframes heroSlide1 {
    0% { opacity: 1; filter: blur(0); transform: scale(1); }
    40% { opacity: 1; filter: blur(0); transform: scale(1.05); } /* Perlahan zoom in */
    50% { opacity: 0; filter: blur(10px); transform: scale(1.1); } /* Nge-blur lalu menghilang */
    90% { opacity: 0; filter: blur(10px); transform: scale(1.1); }
    100% { opacity: 1; filter: blur(0); transform: scale(1); }
}

@keyframes heroSlide2 {
    0% { opacity: 0; filter: blur(10px); transform: scale(1.1); }
    40% { opacity: 0; filter: blur(10px); transform: scale(1.1); }
    50% { opacity: 1; filter: blur(0); transform: scale(1); }
    90% { opacity: 1; filter: blur(0); transform: scale(1.05); }
    100% { opacity: 0; filter: blur(10px); transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(26, 26, 26, 0.6), rgba(26, 26, 26, 1));
    z-index: 1;
}

.company-badge {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 0;
    border: none;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: 10;
    white-space: nowrap;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800; /* Dibuat sedikit lebih gagah/tebal */
    margin-bottom: 20px;
    color: var(--text-main);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.transparent-text {
    opacity: 0.6; /* Membuat teks agak transparan tapi tetap bisa dibaca */
}

.wave-char {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: waveAnim 0.6s forwards ease-out;
}

@keyframes waveAnim {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    50% {
        opacity: 1;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: var(--text-muted);
}

/* Stats Section */
.stats-section {
    padding: 80px 5% 120px; /* Memberikan jarak atas 80px dan jarak bawah yang lebih lega (120px) */
    background-color: transparent; /* Menghilangkan kotak agar langsung menempel pada background utama */
}

.stats-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-weight: 700;
}

.stat-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Form Section */
.form-section {
    padding: 80px 5%;
    background-color: var(--bg-color);
}

.container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

/* Glassmorphism Card */
.glass-card {
    background: var(--glass-bg);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
}

.glass-card h2 {
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-size: 24px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 12px;
}

/* T&C and Payment Info */
.tnc-text {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.tnc-text strong {
    color: var(--primary-color);
}

.payment-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-main);
}

.bank-item {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 12px;
    font-size: 15px;
    flex-wrap: wrap;
    gap: 12px;
}

.bank-logo {
    width: 70px;
    height: 25px;
    object-fit: contain;
    background-color: #ffffff;
    padding: 3px 6px;
    border-radius: 4px;
}

.bank-acc {
    font-family: monospace;
    font-size: 18px;
    flex-grow: 1;
    color: var(--text-main);
}

.bank-desc {
    color: var(--text-muted);
}

.btn-copy {
    background: var(--glass-border);
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-copy:hover {
    background: var(--primary-color);
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.radio-group, .checkbox-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.radio-item, .checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-main);
    font-size: 14px;
    cursor: pointer;
}

select {
    width: 100%;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    padding: 14px 16px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    outline: none;
    cursor: pointer;
    /* Reset tampilan bawaan browser HP (terutama iPhone/Safari) agar kotak tidak menyempit */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* Ikon panah putih custom karena panah bawaannya akan ikut terhapus */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    padding-right: 40px;
}

select option {
    background-color: #1a1a1a;
    color: var(--text-main);
}

label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
}

/* Reset ukuran khusus checkbox & radio agar rapi */
input[type="radio"], input[type="checkbox"] {
    width: 18px;
    height: 18px;
    padding: 0;
    margin: 0;
    accent-color: var(--primary-color); /* Mewarnai kotak centang jadi oranye */
    flex-shrink: 0;
}

input, textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    padding: 14px 16px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s, background 0.3s;
}

input:focus, textarea:focus {
    border-color: var(--primary-color);
    background: rgba(0, 0, 0, 0.4);
}

/* Mencegah background berubah warna saat autofill (terutama pada kolom email/nama) */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus {
    transition: background-color 5000s ease-in-out 0s;
    -webkit-text-fill-color: var(--text-main);
}

/* Menghilangkan tombol panah atas/bawah pada input angka */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none; /* Ditambahkan agar tidak terjadi error missing standard property */
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield; /* Untuk browser Firefox */
    appearance: textfield; /* Ditambahkan standar W3C-nya */
}

textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    background-color: var(--primary-color);
    color: #fff;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #e67e00;
}

.btn-submit span {
    display: inline-block;
}

.btn-submit:hover span {
    animation: btnWaveAnim 0.8s ease-in-out;
}

@keyframes btnWaveAnim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

/* =========================================
   PRIVATE TRIP SECTION STYLES
========================================= */
.section-title {
    text-align: center;
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom: 40px;
}

/* Garis Bawah (Brush Putih) Khusus Heading Private Trip */
#private-trip .section-title::after {
    content: '';
    display: block;
    width: 480px; /* Panjang coretan kuas */
    max-width: 85%; /* Menyesuaikan otomatis di layar HP */
    height: 20px; /* Ketebalan coretan */
    margin: 15px auto 100px; /* Jarak bawah diperlebar lagi agar semakin lega */
    /* SVG Data URI untuk tekstur multi-layer coretan kuas */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 20' preserveAspectRatio='none'%3E%3Cpath d='M2 12 Q50 6 100 10 T195 8' fill='none' stroke='white' stroke-width='4' stroke-linecap='round'/%3E%3Cpath d='M5 15 Q60 8 120 12 T190 13' fill='none' stroke='rgba(255,255,255,0.6)' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='M1 9 Q40 4 90 7 T198 5' fill='none' stroke='rgba(255,255,255,0.8)' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
}

.pricing-section {
    padding: 80px 5% 40px;
    background-color: var(--bg-color);
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
}

.pricing-card h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 15px;
}

.feature-list {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.feature-list li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list li.included::before { content: '✓'; color: #4CAF50; font-weight: bold; font-size: 1.1rem; }
.feature-list li.excluded::before { content: '✗'; color: #F44336; font-weight: bold; font-size: 1.1rem; }
.feature-list li.excluded { opacity: 0.4; text-decoration: line-through; }

.private-form-card {
    border: 1px solid var(--primary-color);
}

/* =========================================
   PREMIUM MENU GALLERY (3D CAROUSEL)
========================================= */
.premium-menu-section {
    margin-top: 60px; /* Margin luar dikurangi untuk menyeimbangkan padding baru */
    padding-top: 130px; /* Ruang dalam atas diperlebar lagi agar lingkaran super besar tidak terpotong */
    padding-bottom: 80px;
    overflow: hidden;
    position: relative;
    background-color: var(--bg-color);
}

.menu-section-title {
    position: relative;
    text-align: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    letter-spacing: 2.5px;
    color: var(--text-main);
    margin-bottom: 260px; /* Jarak yang sangat ekstra lega ke gambar carousel di bawahnya */
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
    z-index: 2; /* Mencegah elemen kuas tertutup background section */
}

/* Efek Lingkaran Kuas Emas */
.menu-section-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 720px; /* Diperbesar ekstra agar tidak mepet dengan teks */
    max-width: 95vw;
    height: 220px; /* Tinggi diperbesar ekstra agar memberikan ruang atas-bawah yang lega */
    /* SVG Lingkaran Oval berlapis ala Kuas Emas */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 60' preserveAspectRatio='none'%3E%3Cpath d='M20,30 C20,10 100,5 180,20 C195,25 190,45 100,55 C30,60 10,40 20,20 C25,10 50,5 80,8' fill='none' stroke='%23FFD700' stroke-width='2.5' stroke-linecap='round'/%3E%3Cpath d='M22,30 C22,12 100,7 178,22 C192,27 188,43 100,53 C32,58 12,42 22,22 C27,12 52,7 82,10' fill='none' stroke='rgba(255,215,0,0.6)' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M18,30 C18,8 100,3 182,18 C198,23 192,47 100,57 C28,62 8,38 18,18 C23,8 48,3 78,6' fill='none' stroke='rgba(255,215,0,0.3)' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    z-index: -1;
    pointer-events: none;
}

.menu-carousel-container {
    position: relative;
    width: 100%;
    height: 480px; /* Ekstra ruang agar saat gambar membesar tidak terpotong */
    display: flex;
    align-items: center;
}

.carousel-overlay {
    position: absolute; top: 0; bottom: 0; width: 20vw; z-index: 20; pointer-events: none;
}
.carousel-overlay.left { left: 0; background: linear-gradient(to right, rgba(26,26,26,1) 0%, rgba(26,26,26,0) 100%); }
.carousel-overlay.right { right: 0; background: linear-gradient(to left, rgba(26,26,26,1) 0%, rgba(26,26,26,0) 100%); }

.menu-track {
    display: flex; gap: 30px; align-items: center; height: 100%;
    overflow-x: hidden; /* Disembunyikan karena pergerakan dikontrol full dari JS */
    width: 100%;
    pointer-events: none; /* Mencegah drag manual agar animasi loop tidak terganggu */
}

.menu-item {
    flex: 0 0 280px; height: 380px; border-radius: 20px; overflow: hidden;
    /* Pergerakan animasi utama yang super halus */
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1); 
    transform: scale(0.8);
    filter: blur(8px);
    opacity: 0.4;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    position: relative;
}

.menu-item.active {
    transform: scale(1.25); filter: blur(0); opacity: 1; z-index: 10;
    box-shadow: 0 20px 40px rgba(0,0,0,0.7);
    border: 2px solid var(--primary-color);
}

.menu-item img { width: 100%; height: 100%; object-fit: cover; }

/* =========================================
   MANUAL SLIDER DOKUMENTASI
========================================= */
.manual-slider-section {
    padding: 130px 0 80px; /* Jarak atas diperlebar agar jauh dari konten sebelumnya */
    background-color: var(--bg-color);
}

/* Merapatkan jarak jika ada slider dokumentasi yang berurutan/ditumpuk */
.manual-slider-section + .manual-slider-section {
    padding-top: 220px; /* Jarak antar slider diperlebar maksimal agar sangat lega */
}

.slider-title {
    text-align: left;
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin: 0 5% 50px; /* Memindahkan jarak kiri-kanan menjadi margin agar width pas */
    width: fit-content; /* Memastikan lebar kotak mengikuti panjang teks */
}

/* Garis Coretan Kuas Putih di Bawah Heading */
.slider-title::after {
    content: '';
    display: block;
    width: 100%; /* Lebar garis persis 100% dari panjang teks */
    height: 20px;
    margin-top: 10px; /* Jarak antara teks dan coretan kuas */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 20' preserveAspectRatio='none'%3E%3Cpath d='M2 12 Q50 6 100 10 T195 8' fill='none' stroke='white' stroke-width='4' stroke-linecap='round'/%3E%3Cpath d='M5 15 Q60 8 120 12 T190 13' fill='none' stroke='rgba(255,255,255,0.6)' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='M1 9 Q40 4 90 7 T198 5' fill='none' stroke='rgba(255,255,255,0.8)' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: left center;
}

.slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.slider-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth; /* Efek halus saat berpindah */
    scrollbar-width: none; /* Menyembunyikan scrollbar di Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    width: 100%;
    scroll-snap-type: x mandatory;
}
.slider-container::-webkit-scrollbar { display: none; }

.slider-item {
    flex: 0 0 calc(25% - 15px); /* Menampilkan 4 foto sekaligus di PC */
    scroll-snap-align: start;
}
.slider-item img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 15px;
    display: block;
}

/* Tombol Navigasi Kiri Kanan */
.slider-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(26, 26, 26, 0.6); border: 1px solid var(--glass-border);
    color: #fff; width: 48px; height: 48px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; z-index: 10; opacity: 0; visibility: hidden;
    transition: all 0.3s ease; backdrop-filter: blur(4px);
}
.slider-wrapper:hover .slider-btn { opacity: 1; visibility: visible; }
.slider-btn:hover { background: var(--primary-color); border-color: var(--primary-color); }
.slider-btn svg { width: 24px; height: 24px; }
.prev-btn { left: 20px; } /* Memasukkan tombol panah ke dalam area gambar */
.next-btn { right: 20px; } /* Memasukkan tombol panah ke dalam area gambar */

/* Footer Logo Section */
.footer-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 40px; /* Dikurangi agar tidak terlalu jauh dari footer */
    background-color: var(--bg-color);
}

.footer-logo {
    width: 280px; /* Ukuran logo yang lumayan besar */
    max-width: 80%; /* Agar tetap aman jika dibuka di layar HP yang kecil */
    height: auto;
}

/* Footer Section */
.footer {
    padding: 20px 5% 50px;
    background-color: var(--bg-color);
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer-col h4 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 15px;
}

.social-links a {
    color: var(--text-muted);
    transition: all 0.3s ease;
    display: inline-flex;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-4px) scale(1.1);
}

.footer-bottom {
    text-align: center;
}

.footer-text {
    font-size: 13px;
    color: var(--text-muted);
}

/* Floating WhatsApp Button */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.floating-wa.show-wa {
    opacity: 1; /* Diubah menjadi 1 agar langsung terlihat jelas 100% */
    visibility: visible;
    transform: translateY(0);
}

.floating-wa svg {
    width: 32px;
    height: 32px;
    fill: #ffffff;
}

.floating-wa:hover {
    background-color: #e67e00;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
    opacity: 1; /* Akan terlihat sangat jelas 100% ketika di hover / di sentuh */
}

/* Responsive Design */
@media (max-width: 768px) {
    .company-badge {
        top: 25px;
        font-size: 12px;
        padding: 8px 20px;
    }

    .hero-content h1 { font-size: clamp(1.2rem, 6vw, 2rem); line-height: 1.4; margin-bottom: 15px; }
    .hero-content p { font-size: 1rem; }
    
    .form-section { padding: 50px 5%; }
    .container { gap: 25px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    
    .stats-container { flex-direction: row; flex-wrap: nowrap; gap: 8px; }
    .stat-item { flex: 1; }
    .stat-item h3 { font-size: clamp(1rem, 5vw, 2rem); margin-bottom: 2px; }
    .stat-item p { font-size: clamp(0.5rem, 2.2vw, 0.8rem); letter-spacing: 0; }
    
    .glass-card { padding: 20px; }
    .glass-card h2 { font-size: 20px; margin-bottom: 15px; }
    .bank-item { flex-direction: column; align-items: flex-start; }
    .bank-acc { font-size: 16px; word-break: break-all; }
    .btn-copy { width: 100%; margin-top: 8px; }
    
    label { font-size: 13px; }
    input, textarea, select { font-size: 16px; padding: 12px 14px; } /* Diubah ke 16px agar iPhone/Safari tidak auto-zoom */
    input, select { min-height: 48px; height: 48px; } /* Dipaksa sama tingginya secara absolut di HP */
    .btn-submit { padding: 14px; font-size: 15px; margin-top: 10px; }
    
    /* Merapikan Form Radio & Checkbox (Fasilitas Tambahan) */
    .radio-group, .checkbox-group {
        display: grid;
        grid-template-columns: 1fr 1fr; /* Membagi pasti jadi 2 kolom sejajar */
        gap: 15px 10px; /* Jarak vertikal & horizontal yang lega */
    }
    .radio-item, .checkbox-item {
        font-size: 13px; /* Ukuran font disesuaikan agar muat di HP */
        align-items: flex-start; /* Kotak tetap di atas jika teks memanjang (2 baris) */
    }
    .radio-item input, .checkbox-item input { margin-top: 2px; }

    /* Private Trip Mobile - Horizontal Scroll */
    #private-trip .section-title {
        font-size: 2.2rem; /* Ukuran heading disesuaikan agar rapi tanpa terlihat terlalu kecil */
        line-height: 1.3;
    }
    #private-trip .section-title::after {
        max-width: 95%; /* Garis kuas tetap terlihat memanjang di mobile */
        margin-bottom: 60px; /* Menyesuaikan jarak bawah agar lebih pas dan proporsional di HP */
    }
    .pricing-container {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 20px;
        gap: 20px;
        scrollbar-width: none; /* Menyembunyikan scrollbar di Firefox */
    }
    .pricing-container::-webkit-scrollbar {
        display: none; /* Menyembunyikan scrollbar di Chrome/Safari/Edge */
    }
    .pricing-card {
        flex: 0 0 85%; /* Menampilkan 1 kotak dengan sisa ruang untuk mengintip kotak berikutnya */
        scroll-snap-align: center;
        padding: 25px 20px; /* Ruang dalam kotak dirapatkan sedikit untuk layar HP */
    }
    .pricing-card h3 {
        font-size: 1.8rem; /* Ukuran judul paket (Silver/Gold) disesuaikan */
        margin-bottom: 15px;
    }
    .feature-list li {
        font-size: 0.88rem; /* Ukuran teks daftar fasilitas (ceklis) dirapikan */
        margin-bottom: 10px; /* Jarak antar fasilitas sedikit dirapatkan */
    }

    /* Premium Menu Mobile */
    .premium-menu-section {
        margin-top: 40px;
        padding-top: 90px; /* Ruang atas disesuaikan agar pas di HP */
    }
    .menu-section-title {
        font-size: clamp(1.4rem, 6vw, 1.9rem); /* Teks lebih fleksibel mengecil otomatis di layar HP */
        margin-bottom: 100px;
        line-height: 1.3; /* Merapatkan jarak atas-bawah teks jika terpaksa jadi 2 baris */
        padding: 0 15px; /* Memberi jarak aman agar teks tidak menabrak tepi layar */
    }
    .menu-section-title::before {
        height: 160px; /* Lingkaran sedikit ditinggikan agar aman membingkai teks 2 baris */
        width: 95vw; /* Lebar maksimal mengikuti layar HP */
    }

    .menu-carousel-container {
        height: 380px; /* Tinggi wadah carousel disesuaikan agar tidak memakan seluruh layar HP */
    }
    .menu-track {
        gap: 15px; /* Jarak antar gambar dirapatkan sedikit di layar kecil */
    }
    .menu-item {
        flex: 0 0 180px; /* Lebar gambar dikecilkan drastis (nanti akan membesar otomatis saat di tengah) */
        height: 250px; /* Tinggi gambar dasar dikecilkan */
    }

    /* Manual Slider Mobile */
    .manual-slider-section {
        padding: 60px 0 30px; /* Jarak atas-bawah dikurangi agar proporsional di layar kecil */
    }
    .manual-slider-section + .manual-slider-section {
        padding-top: 70px; /* Jarak antar slider dirapatkan sedikit di HP agar tidak terlalu kosong */
    }
    .slider-title {
        font-size: 1.6rem; /* Ukuran heading dikecilkan agar tidak terlihat raksasa */
        margin: 0 5% 20px;
        padding: 0;
    }
    .slider-container {
        gap: 12px; /* Spasi antar foto sedikit dirapatkan */
        padding: 0 5%; /* Menambahkan jarak kiri agar gambar pertama tidak mentok layar */
        scroll-padding-left: 5%; /* Menjaga magnet scroll (snap) agar berhenti dengan rapi */
    }
    .slider-item {
        flex: 0 0 42%; /* Ukuran lebar gambar dikecilkan signifikan agar pas dipandang di HP */
    }
    .slider-btn {
        display: none; /* Sembunyikan panah di HP karena sudah full bisa swipe manual pakai jempol */
    }

    /* Responsive Logo & Footer */
    .footer-logo-container { padding-top: 40px; padding-bottom: 20px; }
    .footer-logo { width: 200px; }
    
    .footer { padding: 20px 5% 30px; text-align: center; }
    .footer-content { grid-template-columns: 1fr; gap: 25px; margin-bottom: 30px; }
    .footer-col h4 { font-size: 16px; margin-bottom: 12px; }
    .footer-col p, .footer-col a { font-size: 13px; margin-bottom: 8px; }
    .social-links { gap: 20px; }
    
    .floating-wa {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .floating-wa svg {
        width: 26px;
        height: 26px;
    }
}