/* ==========================================
   1. RESET & BASE STYLES
========================================== */
:root {
    --navy-main: #C5A028;
    --navy-dark: #0d1b2a;
    --gold-main: #C5A028;
    --gold-hover: #A6851E;
    --gold-light: #e8c651;
    --bg-gold-light: #fdf8e7;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body { background-color: #f8f9fa; color: #333; overflow-x: hidden; scroll-behavior: smooth; }

.text-gold { color: var(--gold-main); }
.text-center { text-align: center; }

/* Banner Pengumuman */
.announcement-banner {
    background: linear-gradient(to right, var(--gold-main), var(--gold-hover));
    color: #fff; text-align: center; padding: 10px 50px; font-size: 13px; font-weight: 600;
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1001; box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease; /* Tambahan efek geser mulus */
}

/* ==========================================
   2. NAVBAR
========================================== */
#navbar {
    position: fixed; top: 50px; width: 100%; padding: 10px 30px;
    z-index: 1002; /* DITINGKATKAN menjadi 1002 agar ada di atas banner */
    transition: all 0.3s ease; background: transparent;
}
#navbar.scrolled {
    background: rgba(0, 0, 0, 0.95); backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); padding: 10px 30px;
    top: 0 !important;
}
.nav-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 0 20px; }
.logo { display: flex; align-items: center; }

.nav-links { display: flex; list-style: none; gap: 15px; background: rgba(255, 255, 255, 0.1); padding: 8px 20px; border-radius: 30px; backdrop-filter: blur(5px); }
.nav-links li a { color: #fff; text-decoration: none; font-size: 14px; padding: 8px 16px; border-radius: 20px; transition: 0.3s; }
.nav-links li a:hover, .nav-links li a.active { background: var(--gold-main); color: #fff; font-weight: 600; }

.nav-actions { display: flex; gap: 15px; }
.btn-login {
    text-decoration: none; padding: 10px 24px; border-radius: 20px; font-size: 14px; font-weight: 600; transition: 0.3s;
    background: transparent; color: var(--gold-main); border: 2px solid var(--gold-main);
}
.btn-login:hover { background: var(--gold-main); color: #fff; transform: translateY(-2px); }
.menu-toggle { display: none; color: #fff; font-size: 24px; cursor: pointer; }

/* ==========================================
   3. HERO SECTION & BOOKING WIDGET
========================================== */
.hero {
    position: relative; height: 100vh; min-height: 800px;
    background: url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?q=80&w=2000&auto=format&fit=crop') no-repeat center center/cover;
    display: flex; flex-direction: column; align-items: center; justify-content: flex-start; padding-top: 160px;
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.9) 0%, rgba(13, 27, 42, 0.95) 100%); z-index: 1;
}
.hero-content { position: relative; z-index: 2; text-align: center; color: #fff; max-width: 800px; margin-bottom: 50px; }
.hero-content h1 { font-size: 42px; font-weight: 700; margin-bottom: 15px; line-height: 1.2; color: #fff; }
.hero-content p { font-size: 16px; font-weight: 400; opacity: 0.9; color: var(--bg-gold-light); }

.booking-widget {
    position: relative; z-index: 2; background: #fff; border-radius: 24px; padding: 25px 35px; width: 90%; max-width: 1000px; box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}
.widget-header { margin-bottom: 25px; text-align: center; border-bottom: 1px solid #eee; padding-bottom: 15px; }
.tabs { display: inline-flex; background: #f1f3f5; border-radius: 30px; padding: 6px; }
.tab-btn { border: none; background: transparent; padding: 12px 30px; border-radius: 25px; font-size: 14px; font-weight: 600; color: #666; cursor: pointer; transition: 0.3s; }
.tab-btn.active { background: var(--navy-main); color: #fff; box-shadow: 0 4px 15px rgba(26, 35, 126, 0.3); }

.widget-body { display: flex; align-items: center; justify-content: space-between; gap: 15px; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.form-group { flex: 1; display: flex; flex-direction: column; }
.form-group label { font-size: 13px; color: #555; margin-bottom: 8px; font-weight: 600; }
.input-wrapper { display: flex; align-items: center; gap: 12px; padding: 12px 15px; border-radius: 14px; border: 1.5px solid #e0e0e0; background: #fdfdfd; transition: 0.3s; }
.input-wrapper:focus-within { border-color: var(--gold-main); background: #fff; box-shadow: 0 0 0 3px rgba(197, 160, 40, 0.1); }
.input-wrapper input { border: none; outline: none; background: transparent; font-size: 14px; color: #333; width: 100%; font-family: inherit; }
.divider { width: 1px; height: 50px; background: #eee; margin: 0 10px; }

.form-action { margin-left: 15px; }
.btn-search {
    background: linear-gradient(135deg, var(--gold-main), var(--gold-hover)); color: #fff; border: none;
    padding: 16px 30px; border-radius: 14px; font-size: 15px; font-weight: 600; cursor: pointer; display: flex; align-items: center; gap: 10px; transition: 0.3s; white-space: nowrap;
    box-shadow: 0 8px 20px rgba(197, 160, 40, 0.3);
}
.btn-search:hover { transform: translateY(-3px); box-shadow: 0 12px 25px rgba(197, 160, 40, 0.4); }

/* ==========================================
   4. BAGIAN UMUM (Container & Header)
========================================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 32px; color: var(--navy-main); margin-bottom: 15px; font-weight: 800; }
.section-header p { color: #666; max-width: 600px; margin: 0 auto; font-size: 15px; line-height: 1.6; }

/* ==========================================
   5. KARTU ARMADA & TOUR (SUDAH DIPERBAIKI RASIONYA)
========================================== */
.fleet-section, .tour-section { padding: 80px 0; background: #fff; }
.tour-section { background: var(--bg-gold-light); border-top: 1px solid #f1f3f5; }
.fleet-grid, .tour-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }

.fleet-card, .tour-card {
    background: #fff; border-radius: 24px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.04); transition: 0.3s;
    border: 1px solid #f1f3f5; display: flex; flex-direction: column; position: relative;
}
.fleet-card:hover, .tour-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(197, 160, 40, 0.15); border-color: var(--gold-main); }

/* --- PERBAIKAN RASIO GAMBAR --- */
.card-image { 
    height: auto; 
    aspect-ratio: 16 / 9; /* Rasio memanjang untuk Mobil */
    overflow: hidden; 
    position: relative; 
    background: #f8f9fa; 
}
.tour-image-wrapper { 
    height: auto; 
    aspect-ratio: 4 / 3; /* Rasio agak kotak untuk Paket Tour */
    overflow: hidden; 
    position: relative; 
    background: #f8f9fa; 
}

.card-image img, .tour-image-wrapper img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    object-position: center; 
    transition: 0.6s ease; 
}
/* ------------------------------ */

/* --- EFEK SWIPE/CAROUSEL FOTO --- */
.carousel-container { position: relative; width: 100%; height: 100%; }
.carousel-track {
    display: flex; width: 100%; height: 100%; overflow-x: auto;
    scroll-snap-type: x mandatory; scrollbar-width: none;
    -ms-overflow-style: none; scroll-behavior: smooth;
}
.carousel-track::-webkit-scrollbar { display: none; }

.carousel-img {
    flex: 0 0 100%; width: 100%; height: 100%;
    object-fit: cover; scroll-snap-align: start;
    -webkit-user-drag: none; /* Mencegah gambar terseret (ghost drag) di PC */
    user-select: none;
}

.carousel-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(26, 35, 126, 0.7); color: white; border: none;
    width: 32px; height: 32px; border-radius: 50%; cursor: pointer;
    z-index: 10; display: flex; align-items: center; justify-content: center;
    transition: 0.3s; opacity: 0;
}
.card-image:hover .carousel-btn, .tour-image-wrapper:hover .carousel-btn { opacity: 1; }
.carousel-btn:hover { background: var(--gold-main); }
.prev-btn { left: 10px; }
.next-btn { right: 10px; }

/* Mencegah gambar rusak/zoom berlebihan saat di-hover */
.fleet-card:hover .card-image img.carousel-img, 
.tour-card:hover .tour-image-wrapper img.carousel-img { 
    transform: none !important; 
}
/* ----------------------------------------------- */

.card-badge, .tour-badge { position: absolute; top: 15px; left: 15px; background: var(--gold-main); color: #fff; padding: 6px 15px; border-radius: 20px; font-size: 12px; font-weight: 700; z-index: 2; box-shadow: 0 4px 10px rgba(197, 160, 40, 0.3); }
.tour-duration { position: absolute; bottom: 15px; right: 15px; background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(4px); color: #fff; padding: 6px 12px; border-radius: 10px; font-size: 12px; font-weight: 600; z-index: 2; }

.card-info, .tour-info { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; }
.card-info h3, .tour-info h3 { font-size: 20px; font-weight: 700; color: var(--navy-main); margin-bottom: 12px; }
.tour-desc { font-size: 13px; color: #666; line-height: 1.6; margin-bottom: 20px; flex-grow: 1; }

.specs, .tour-includes { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; list-style: none; }
.specs span, .tour-includes li { font-size: 13px; color: #666; display: flex; align-items: center; gap: 6px; font-weight: 500; }
.specs i { color: var(--gold-main); }
.tour-includes li i { color: #4CAF50; }

.price-box, .tour-bottom { margin-top: auto; padding-top: 20px; border-top: 1px dashed #eee; display: flex; justify-content: space-between; align-items: center; }
.price-box { flex-direction: column; align-items: flex-start; gap: 15px; }
.price-box .label, .tour-price span { display: block; font-size: 11px; color: #999; font-weight: 600; text-transform: uppercase; }
.price-box .price, .tour-price h4 { font-size: 22px; font-weight: 800; color: var(--navy-main); margin: 0; }
.price-box .price span, .tour-price small { font-size: 13px; font-weight: 500; color: #888; }

.btn-rent, .btn-tour-wa {
    width: relative; padding: 14px; border: none; border-radius: 12px; background: var(--bg-gold-light); color: var(--gold-hover);
    font-weight: 700; cursor: pointer; transition: 0.3s; display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 14px; border: 1px solid var(--gold-light);
}
.btn-rent:hover, .btn-tour-wa:hover { background: var(--navy-main); color: #fff; box-shadow: 0 8px 15px rgba(26, 35, 126, 0.2); border-color: var(--navy-main); }
/* ==========================================
   6. MITRA / PARTNER
========================================== */
.brand-section { padding: 60px 0; background-color: #ffffff; border-bottom: 1px solid #f1f3f5; }
.brand-title { font-size: 13px; font-weight: 700; color: #888; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 25px; text-align: center; }
.brand-scroll-wrapper { width: 100%; overflow: hidden; position: relative; }
.brand-track { display: flex; align-items: center; justify-content: center; gap: 40px; padding: 10px; overflow-x: auto; scrollbar-width: none; flex-wrap: wrap; }
.brand-track::-webkit-scrollbar { display: none; }
.brand-item { height: 70px; padding: 0 15px; display: flex; align-items: center; justify-content: center; background: #fafafa; border-radius: 12px; transition: 0.3s; cursor: pointer; border: 1px solid #eee; }
.brand-item img { max-height: 40px; max-width: 120px; object-fit: contain; filter: grayscale(100%); transition: 0.3s; opacity: 0.7; }
.brand-item:hover { background: #fff; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transform: translateY(-3px); border-color: var(--gold-light); }
.brand-item:hover img { filter: grayscale(0%); opacity: 1; transform: scale(1.05); }

/* ==========================================
   7. KALENDER JADWAL & HOW TO BOOK
========================================== */
.calendar-section { padding: 80px 0; background: #f8f9fa; }
.calendar-wrapper { max-width: 900px; margin: 0 auto; background: #fff; border-radius: 24px; padding: 40px; box-shadow: 0 15px 40px rgba(0,0,0,0.05); border: 1px solid #f0f0f0; }
.calendar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; }
.calendar-header h3 { font-size: 22px; color: var(--navy-main); font-weight: 700; }
.btn-nav { background: #f1f3f5; border: none; width: 45px; height: 45px; border-radius: 14px; color: #333; cursor: pointer; transition: 0.3s; display: flex; align-items: center; justify-content: center; }
.btn-nav:hover { background: var(--gold-main); color: #fff; }
.calendar-legend { display: flex; justify-content: center; gap: 25px; margin-bottom: 30px; padding-bottom: 25px; border-bottom: 1px dashed #eee; }
.legend-item { font-size: 13px; color: #666; display: flex; align-items: center; gap: 8px; font-weight: 500; }
.dot { width: 14px; height: 14px; border-radius: 50%; }
.dot-green { background: #4CAF50; box-shadow: 0 0 10px rgba(76, 175, 80, 0.4); }
.dot-yellow { background: #FFC107; box-shadow: 0 0 10px rgba(255, 193, 7, 0.4); }
.dot-red { background: #F44336; box-shadow: 0 0 10px rgba(244, 67, 54, 0.4); }

.calendar-grid-header { display: grid; grid-template-columns: repeat(7, 1fr); text-align: center; font-weight: 700; color: #bbb; margin-bottom: 15px; font-size: 12px; text-transform: uppercase; }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 12px; }
.calendar-day { aspect-ratio: 1; border-radius: 14px; display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: 16px; font-weight: 600; color: #444; background: #fafafa; border: 1px solid #f1f3f5; transition: 0.3s; cursor: default; }
.calendar-day:hover { transform: translateY(-3px); box-shadow: 0 8px 15px rgba(0,0,0,0.05); border-color: var(--gold-light); }
.calendar-day.empty { background: transparent; border: none; color: #ccc; }
.calendar-day.today { background: #fff; border: 2px solid var(--gold-main); color: var(--gold-hover); }

.status-green { border-bottom: 4px solid #4CAF50; }
.status-yellow { border-bottom: 4px solid #FFC107; background: #fffde7; }
.status-red { border-bottom: 4px solid #F44336; background: #ffebee; color: #c62828; }

/* How to Book */
.flow-section { padding: 80px 0; background: #ffffff; }
.step-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px; }
.step-card { background: #fdfdfd; padding: 35px 25px; border-radius: 24px; text-align: center; border: 1px solid #f1f3f5; position: relative; transition: all 0.3s ease; overflow: hidden; z-index: 1; }
.step-card:hover { box-shadow: 0 15px 35px rgba(197, 160, 40, 0.1); transform: translateY(-8px); border-color: var(--gold-light); }
.step-icon { width: 70px; height: 70px; margin: 0 auto 20px auto; background: var(--bg-gold-light); color: var(--gold-main); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; transition: 0.3s; }
.step-card:hover .step-icon { background: linear-gradient(135deg, var(--gold-main), var(--gold-hover)); color: #ffffff; transform: scale(1.1) rotate(5deg); box-shadow: 0 10px 20px rgba(197, 160, 40, 0.3); }
.step-number { position: absolute; top: -10px; right: 5px; font-size: 100px; font-weight: 800; color: rgba(197, 160, 40, 0.05); z-index: -1; line-height: 1; transition: 0.3s; pointer-events: none; font-family: Arial, Helvetica, sans-serif; }
.step-card:hover .step-number { color: rgba(197, 160, 40, 0.1); transform: scale(1.05); }
.step-card h3 { font-size: 18px; color: var(--navy-main); margin-bottom: 12px; font-weight: 700; }
.step-card p { font-size: 13px; color: #666; line-height: 1.6; margin: 0; }

/* ==========================================
   8. CHATBOT Siduu AI
========================================== */
.floating-chatbot { position: fixed; bottom: 30px; right: 30px; z-index: 9999; cursor: pointer; display: flex; align-items: center; flex-direction: row-reverse; }
.chatbot-icon { width: 65px; height: 65px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-main), var(--gold-hover)); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 30px; box-shadow: 0 10px 25px rgba(197, 160, 40, 0.4); transition: 0.3s; }
.chatbot-icon:hover { transform: scale(1.08) rotate(5deg); }
.chatbot-tooltip { background: #fff; color: var(--navy-main); padding: 8px 16px; border-radius: 20px; font-size: 13px; font-weight: 700; margin-right: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); opacity: 0; transform: translateX(15px); transition: 0.3s; }
.floating-chatbot:hover .chatbot-tooltip { opacity: 1; transform: translateX(0); }

.chatbot-window { position: fixed; bottom: 100px; right: 30px; width: 350px; height: 500px; background: #fff; border-radius: 24px; box-shadow: 0 15px 40px rgba(0,0,0,0.15); display: flex; flex-direction: column; z-index: 10000; overflow: hidden; transform: translateY(20px); opacity: 0; visibility: hidden; transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); border: 1px solid #f1f3f5; }
.chatbot-window.active { transform: translateY(0); opacity: 1; visibility: visible; }
.chatbot-header { background: linear-gradient(135deg, var(--navy-main), var(--navy-dark)); padding: 15px 20px; display: flex; justify-content: space-between; align-items: center; color: #fff; }
.chat-avatar { width: 40px; height: 40px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--gold-main); }
.chatbot-body { flex-grow: 1; padding: 20px; background: #f8f9fa; overflow-y: auto; display: flex; flex-direction: column; gap: 15px; scrollbar-width: thin; }
.chat-msg { max-width: 85%; padding: 12px 16px; border-radius: 18px; font-size: 13px; line-height: 1.5; }
.bot-msg { align-self: flex-start; background: #fff; color: #333; border-bottom-left-radius: 4px; box-shadow: 0 2px 10px rgba(0,0,0,0.03); border: 1px solid #f1f3f5; }
.user-msg { align-self: flex-end; background: linear-gradient(135deg, var(--gold-main), var(--gold-hover)); color: #fff; border-bottom-right-radius: 4px; box-shadow: 0 4px 15px rgba(197, 160, 40, 0.2); }
.chatbot-footer { padding: 15px; background: #fff; border-top: 1px solid #f1f3f5; display: flex; align-items: center; gap: 10px; }
#chat-input { flex-grow: 1; border: none; background: #f1f3f5; padding: 12px 15px; border-radius: 20px; font-size: 13px; outline: none; font-family: inherit; }
#btn-send-chat { background: var(--navy-main); color: #fff; border: none; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 15px; transition: 0.2s; box-shadow: 0 4px 10px rgba(26, 35, 126, 0.3); }
#btn-send-chat:hover { background: var(--navy-dark); transform: scale(1.05); }

/* ==========================================
   PERCANTIK UI MODAL BOOKING (FORM PEMESANAN)
========================================== */

/* 1. Latar Belakang Gelap (Overlay) */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(5px);
    display: flex; align-items: center; justify-content: center;
    z-index: 9999; opacity: 0; pointer-events: none; transition: 0.3s ease;
}
.modal-overlay.active { 
    opacity: 1; pointer-events: auto; 
}

/* 2. Kotak Form Utama */
.modal-container {
    background: #ffffff; 
    width: 90%; 
    max-width: 550px; /* Lebar ideal untuk form desktop */
    border-radius: 20px; 
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    transform: translateY(-30px); 
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.modal-overlay.active .modal-container { 
    transform: translateY(0); 
}

/* 3. Header Modal (Gradien Navy-Emas) */
.modal-header {
    background: linear-gradient(135deg, var(--navy-main), #11184a);
    padding: 20px 25px;
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    border-bottom: 3px solid var(--gold-main);
}
.modal-header h3 { 
    margin: 0; 
    color: #ffffff; 
    font-size: 18px; 
    font-weight: 700; 
}
.close-modal {
    background: rgba(255, 255, 255, 0.1); 
    border: none; 
    color: #ffffff; 
    width: 32px; 
    height: 32px;
    border-radius: 50%;
    font-size: 16px; 
    cursor: pointer; 
    transition: 0.2s;
    display: flex; 
    align-items: center; 
    justify-content: center;
}
.close-modal:hover { 
    background: #ff4757; 
    transform: rotate(90deg); 
}

/* 4. Body dan Input Form */
.modal-body { 
    padding: 25px; 
    max-height: 80vh; /* Mencegah form bablas ke bawah layar */
    overflow-y: auto;
}
.form-group-modal { 
    display: flex; 
    flex-direction: column; 
    gap: 8px; 
    margin-bottom: 15px; 
}

/* FIX: Mencegah label patah 2 baris di desktop */
.form-group-modal label { 
    font-size: 13px; 
    font-weight: 600; 
    color: #555; 
    white-space: nowrap; 
    display: block;
}

.form-group-modal input, 
.form-group-modal select {
    width: 100%; 
    padding: 12px 15px; 
    border: 1px solid #ddd;
    border-radius: 10px; 
    font-size: 14px; 
    font-family: 'Poppins', sans-serif;
    color: #333; 
    background: #fff;
    transition: 0.3s; 
    box-sizing: border-box;
}
.form-group-modal input:focus, 
.form-group-modal select:focus {
    border-color: var(--gold-main); 
    outline: none;
    box-shadow: 0 0 0 4px rgba(197, 160, 40, 0.15);
}

/* Tampilan Input ReadOnly (Nama Layanan) */
#b-service-display {
    color: var(--gold-hover) !important;
    border-color: #eee !important;
}

/* 5. Tombol Submit Super Elegan */
.btn-submit-booking {
    width: 100%; 
    padding: 15px; 
    background: linear-gradient(135deg, var(--gold-main), var(--gold-hover));
    color: white; 
    border: none; 
    border-radius: 12px; 
    font-size: 15px;
    font-weight: 700; 
    cursor: pointer; 
    transition: 0.3s;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 10px;
    margin-top: 10px;
}
.btn-submit-booking:hover {
    box-shadow: 0 8px 20px rgba(197, 160, 40, 0.3); 
    transform: translateY(-2px);
}
.btn-submit-booking:disabled {
    background: #ccc; 
    cursor: not-allowed; 
    box-shadow: none; 
    transform: none;
}

/* ==========================================
   6. FIX RESPONSIF HP (SANGAT RAPI)
========================================== */
@media (max-width: 600px) {
    .modal-body {
        padding: 20px 15px; /* Kurangi padding samping agar layar HP terasa lebih lebar */
    }

    /* Hancurkan grid desktop, paksa jadi 1 kolom panjang ke bawah */
    .modal-body > div[style*="display: grid"] { 
        grid-template-columns: 1fr !important; 
        gap: 0 !important;
    }

    /* Beri jarak bawah seragam antar kolom input */
    .form-group-modal {
        margin-bottom: 15px !important;
    }

    /* Kembalikan label agar bisa melipat wajar jika nama label terlalu panjang di HP kecil */
    .form-group-modal label {
        white-space: normal;
    }
}

/* Styling untuk Link Developer di Footer */
.dev-link {
    color: var(--gold-main); /* Menggunakan warna emas tema web */
    text-decoration: none; /* Menghilangkan garis bawah bawaan */
    font-weight: bold;
    transition: all 0.3s ease;
}

.dev-link:hover {
    color: #ffffff; /* Berubah jadi putih saat disorot mouse */
    text-decoration: underline; /* Garis bawah muncul hanya saat disorot */
}

/* ==========================================
   SECTION ULASAN (GOOGLE MAPS)
========================================== */
.reviews-section {
    padding: 80px 0;
    background-color: #f9fbfd; /* Warna background abu-abu kebiruan sangat lembut */
}

.review-widget-container {
    max-width: 97%;
    margin: 0 auto;
    padding: 20px 15px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-top: 4px solid var(--gold-main); /* Aksen emas di atas wadah */
}

/* Responsif untuk HP */
@media (max-width: 768px) {
    .reviews-section {
        padding: 50px 0;
    }
    .review-widget-container {
        padding: 15px 10px;
        width: 90%;
    }
}

/* ==========================================
   10. FOOTER & LAINNYA
========================================== */
.site-footer { background-color: var(--navy-dark); color: #e0e0e0; padding: 80px 0 20px; border-top: 5px solid var(--gold-main); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 40px; margin-bottom: 50px; }
.footer-logo { display: inline-block; margin-bottom: 20px; }
.company-info p { line-height: 1.8; color: #b0bec5; font-size: 14px; margin-bottom: 20px; }
.social-links { display: flex; gap: 15px; }
.social-links a { width: 40px; height: 40px; background: rgba(255,255,255,0.1); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: 0.3s; text-decoration: none; }
.social-links a:hover { background: var(--gold-main); transform: translateY(-3px); }
.footer-col h4 { color: #fff; font-size: 18px; margin-bottom: 25px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 40px; height: 3px; background: var(--gold-main); border-radius: 2px; }
.quick-links ul { list-style: none; }
.quick-links ul li { margin-bottom: 12px; }
.quick-links ul li a { color: #b0bec5; text-decoration: none; transition: 0.3s; font-size: 14px; }
.quick-links ul li a:hover { color: var(--gold-main); padding-left: 5px; }
.contact-info ul { list-style: none; }
.contact-info ul li { display: flex; gap: 15px; color: #b0bec5; font-size: 14px; line-height: 1.6; margin-bottom: 15px; }
.contact-info ul li i { font-size: 18px; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 25px; text-align: center; font-size: 13px; color: #888; }

/* Responsive Base */
@media (max-width: 992px) {
    .nav-links, .nav-actions { display: none; }
    .menu-toggle { display: block; }
    .widget-body { flex-direction: column; }
    .form-group { width: 100%; }
    .divider { display: none; }
    .btn-search { width: 100%; justify-content: center; }
    .hero { padding-top: 120px; height: auto; min-height: unset; padding-bottom: 50px; }
    .hero-content h1 { font-size: 32px; }
}
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .calendar-wrapper { padding: 20px; }
    .calendar-day { font-size: 14px; }
    .calendar-legend { flex-direction: column; align-items: center; gap: 10px; }
    .chatbot-window { right: 15px; bottom: 100px; width: calc(100% - 30px); }
}


/* ==========================================
   11. GALERI PERJALANAN
========================================== */
.gallery-section { 
    padding: 80px 0; 
    background: var(--bg-gold-light); 
    border-top: 1px solid #f1f3f5; 
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}
.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1; /* Membuat foto selalu berbentuk kotak presisi */
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-item:hover {
    border-color: var(--gold-main);
    box-shadow: 0 15px 30px rgba(197, 160, 40, 0.2);
}
.gallery-item:hover img {
    transform: scale(1.1); /* Efek zoom saat disentuh */
}
.gallery-overlay {
    position: absolute;
    bottom: -100%; /* Sembunyi di bawah */
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 35, 126, 0.95) 0%, transparent 60%);
    color: #fff;
    transition: bottom 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}
.gallery-item:hover .gallery-overlay {
    bottom: 0; /* Muncul ke atas saat hover */
}
.gallery-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}


/* ==========================================
   12. CALL TO ACTION (CTA)
========================================== */
.cta-section {
    padding: 20px 0 80px; 
    background: #f8f9fa; /* Warna latar belakang nyambung dengan sekitarnya */
}
.cta-box {
    background: linear-gradient(135deg, var(--navy-main), var(--navy-dark));
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    color: #fff;
    box-shadow: 0 20px 40px rgba(26, 35, 126, 0.2);
    position: relative;
    overflow: hidden;
}

/* Ornamen Bulatan Estetik di Sudut Kotak */
.cta-box::before {
    content: ''; position: absolute; top: -50px; left: -50px;
    width: 150px; height: 150px; background: rgba(197, 160, 40, 0.15);
    border-radius: 50%; z-index: 1;
}
.cta-box::after {
    content: ''; position: absolute; bottom: -80px; right: -30px;
    width: 250px; height: 250px; background: rgba(197, 160, 40, 0.1);
    border-radius: 50%; z-index: 1;
}

.cta-box h2 {
    font-size: 32px; font-weight: 800; margin-bottom: 15px;
    position: relative; z-index: 2;
}
.cta-box p {
    font-size: 15px; color: #bbdefb; max-width: 650px;
    margin: 0 auto 30px; line-height: 1.6;
    position: relative; z-index: 2;
}

/* Tombol CTA Gold */
.btn-cta {
    display: inline-flex; align-items: center; gap: 10px;
    background: linear-gradient(135deg, var(--gold-main), var(--gold-hover));
    color: #fff; padding: 18px 40px; border-radius: 30px;
    font-size: 16px; font-weight: 700; text-decoration: none;
    box-shadow: 0 10px 20px rgba(197, 160, 40, 0.3);
    transition: all 0.3s ease; position: relative; z-index: 2;
}
.btn-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(197, 160, 40, 0.4);
    color: #fff;
}

/* Responsif untuk HP */
@media (max-width: 768px) {
    .cta-box { padding: 40px 25px; }
    .cta-box h2 { font-size: 24px; }
    .btn-cta { font-size: 14px; padding: 15px 30px; }
}

