/* ==========================================================================
   1. IMPORTS & VARIABLES
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600&family=Montserrat:wght@300;400;600&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

:root {
    /* Color Palette */
    --blue-1: #031A3D; /* Paling Gelap / Navy */
    --blue-2: #0A3A69;
    --blue-3: #085F9E; /* Primary Action Color */
    --blue-4: #6D9DBB;
    --blue-5: #BBD0E0; /* Paling Terang */
    --bg-light: #F4F7FA;
    --text-dark: #333333;
    --text-light: #FFFFFF;
}

/* ==========================================================================
   2. BASE STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* ==========================================================================
   3. BUTTONS
   ========================================================================== */
.btn-blue {
    background-color: var(--blue-3);
    color: var(--text-light);
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-block;
}

.btn-blue:hover {
    background-color: var(--blue-2);
    transform: translateY(-2px);
}

/* ==========================================================================
   4. FLOATING NAVBAR (DESKTOP MAIN)
   ========================================================================== */
.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: max-content; /* Navbar memeluk kontennya agar melengkung rapi */
    min-width: 300px;
    max-width: 95%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px; /* Jarak antara Logo, Menu Icons, dan Tombol Register */
    padding: 12px 25px;
    box-shadow: 0 8px 32px rgba(3, 26, 61, 0.1);
    z-index: 1000;
    transition: transform 0.4s ease, padding 0.3s ease, width 0.4s ease;
}

.floating-nav.scrolled-up {
    transform: translateX(-50%) translateY(0);
    padding: 8px 25px;
}

.floating-nav.scrolled-down {
    transform: translateX(-50%) translateY(-150%);
}

.logo a {
    display: flex;
    align-items: center;
}

/* ==========================================================================
   5. NAVBAR MENU & HOVER ANIMATION (BULLETPROOF)
   ========================================================================== */
.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; }
.mobile-only-cta { display: none; }

.nav-links {
    list-style: none;
    display: flex;
    gap: 8px; /* Jarak antar icon menu */
    align-items: center;
}

.nav-links li a {
    display: flex;
    align-items: center;
    color: var(--blue-1);
    border-radius: 50px; /* Bentuk pil sempurna */
    padding: 10px; /* Padding awal saat bentuk lingkaran icon saja */
    background-color: transparent;
    transition: all 0.3s ease;
}

.nav-links li a i {
    flex-shrink: 0;
    font-size: 18px; /* Ukuran ikon */
    width: 20px;     /* Lebar tetap agar sejajar */
    text-align: center;
}

.nav-text {
    max-width: 0; /* Sembunyikan teks sepenuhnya di awal */
    opacity: 0;
    margin-left: 0;
    overflow: hidden;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease; /* Transisi kecepatan diubah agar lebih responsif */
}

/* === EFEK KETIKA DI HOVER MOUSE === */
.nav-links li a:hover,
.nav-links li a.active { /* Tambahkan .active di sini */
    background-color: var(--blue-5); 
    padding: 10px 18px; 
}

.nav-links li a:hover .nav-text,
.nav-links li a.active .nav-text { /* Tambahkan .active di sini juga */
    max-width: 120px; 
    opacity: 1; 
    margin-left: 10px; 
}

/* ==========================================================================
   6. HERO SECTION
   ========================================================================== */
.hero-section {
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 75vh;
    min-height: 500px;
    background: linear-gradient(rgba(3, 26, 61, 0.5), rgba(3, 26, 61, 0.8)), url('https://media.istockphoto.com/id/1388581505/photo/detailed-shot-of-womens-legs-in-white-figure-skating-skates-on-cold-ice-arena-in-the-dark.jpg?s=612x612&w=0&k=20&c=uagHhX9Z2Uk78wDyPr_meZ5zOUsSwzxAsCw8VNaRcQE=') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
}

.hero-content p {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: var(--blue-5);
}

/* ==========================================================================
   7. EVENT INFO BAR
   ========================================================================== */
.event-info-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: var(--blue-1);
    color: var(--text-light);
    padding: 25px 5%;
    flex-wrap: wrap;
    gap: 20px;
}

.info-item { text-align: center; }

.info-label {
    display: block;
    font-size: 0.8rem;
    color: var(--blue-4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.info-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
}

/* ==========================================================================
   8. COUNTDOWN SECTION
   ========================================================================== */
.countdown-section {
    text-align: center;
    padding: 80px 20px 40px;
}

.countdown-section h2 {
    color: var(--blue-1);
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.time-box {
    background-color: #fff;
    padding: 20px;
    min-width: 120px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(8, 95, 158, 0.08);
    border-bottom: 4px solid var(--blue-4);
}

.time-box span {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--blue-2);
    font-weight: bold;
    display: block;
    line-height: 1;
}

.time-box p {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--blue-4);
    margin-top: 10px;
    font-weight: 600;
}

/* ==========================================================================
   9. GREETINGS SECTION (NOTES DESIGN)
   ========================================================================== */
.greetings-section {
    padding: 40px 10% 80px;
}

.note-paper {
    background-color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 60px;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(3, 26, 61, 0.08);
    position: relative;
    border-top: 10px solid var(--blue-3);
}

.note-paper::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    border-width: 0 40px 40px 0;
    border-style: solid;
    border-color: var(--bg-light) var(--bg-light) #e0e8f0 #e0e8f0;
    box-shadow: -2px 2px 5px rgba(0,0,0,0.05);
}

.note-paper h2 {
    color: var(--blue-1);
    font-size: 2.2rem;
    margin-bottom: 25px;
    text-align: center;
}

.note-paper p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

.signature {
    font-family: 'Caveat', cursive;
    font-size: 2rem;
    color: var(--blue-2);
    text-align: right;
    margin-top: 30px;
    transform: rotate(-3deg);
}

/* ==========================================================================
   ARENA PAGE STYLES (MODERN REVISION)
   ========================================================================== */
.arena-hero {
    width: 100%; height: 60vh; min-height: 400px;
    background: linear-gradient(rgba(3, 26, 61, 0.6), rgba(3, 26, 61, 0.9)), url('https://oasiscentre.easyticket.id/_next/image?url=https%3A%2F%2Fapiv2.easyticket.id%2Fstorage%2Fdestination%2Fb764de9f-2714-44cd-9a76-7f3e25e2583e.jpg&w=3840&q=75') center/cover no-repeat;
    display: flex; align-items: center; justify-content: center;
    text-align: center; color: var(--text-light); padding-top: 50px;
}

/* === ARENA FACILITIES (Ringkas & Berwarna) === */
.arena-info-section { padding: 80px 5%; background-color: var(--bg-light); text-align: center; }
.arena-desc h2 { color: var(--blue-1); font-size: 2.5rem; margin-bottom: 20px; }
.arena-desc p { max-width: 800px; margin: 0 auto 50px; font-size: 1.1rem; color: #555; line-height: 1.8; }

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}
.spec-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 20px; /* Lebih membulat */
    box-shadow: 0 10px 25px rgba(8, 95, 158, 0.08); /* Bayangan kebiruan */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(8, 95, 158, 0.05);
    position: relative;
    overflow: hidden;
}
/* Garis gradien halus di atas kartu */
.spec-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--blue-3), var(--blue-4));
}
.spec-card:hover { transform: translateY(-8px); box-shadow: 0 15px 35px rgba(8, 95, 158, 0.15); }

/* Lingkaran Gradient untuk Ikon */
.icon-gradient {
    width: 65px; height: 65px;
    background: linear-gradient(135deg, var(--blue-2), var(--blue-4));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 8px 15px rgba(109, 157, 187, 0.4);
}
.icon-gradient i { font-size: 1.6rem; color: #ffffff; }

.spec-card h3 { color: var(--blue-1); margin-bottom: 8px; font-size: 1.1rem; }
.spec-card p { font-size: 0.9rem; color: #666; line-height: 1.5; }

/* === ARENA GALLERY (Bento Box Style) === */
.arena-gallery { padding: 60px 5%; background-color: #ffffff; text-align: center; }
.arena-gallery h2 { color: var(--blue-1); font-size: 2.5rem; margin-bottom: 40px; }

.gallery-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}
.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.item-large { grid-column: span 2; grid-row: span 2; }

.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
}
/* Gradient overlay unik saat dihover */
.gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(3, 26, 61, 0.9) 0%, rgba(3, 26, 61, 0) 50%);
    opacity: 0; transition: opacity 0.4s ease;
    display: flex; align-items: flex-end; padding: 25px;
}
.gallery-overlay span { color: white; font-family: 'Playfair Display', serif; font-size: 1.5rem; transform: translateY(20px); transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-overlay span { transform: translateY(0); }

/* === LOCATION MAP (Terang & Real Map) === */
.arena-location-modern {
    padding: 80px 5%;
    /* Latar belakang cerah membedakan dengan footer */
    background: linear-gradient(to bottom, #ffffff, var(--bg-light));
    border-top: 1px solid rgba(0,0,0,0.05);
}
.location-container {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px;
    background: #ffffff; border-radius: 25px;
    box-shadow: 0 20px 50px rgba(8, 95, 158, 0.08);
    overflow: hidden;
}
.location-details { padding: 50px 40px; display: flex; flex-direction: column; justify-content: center; }

/* Pin Map Animasi Custom */
.custom-pin {
    width: 50px; height: 50px;
    background: rgba(109, 157, 187, 0.15); /* Biru pudar */
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.custom-pin i { font-size: 1.8rem; color: var(--blue-3); }

.location-details h2 { color: var(--blue-1); font-size: 2.2rem; margin-bottom: 10px; }
.location-details h3 { color: var(--blue-3); font-size: 1.1rem; margin-bottom: 15px; font-family: 'Montserrat', sans-serif; }
.location-details p { color: #555; line-height: 1.6; margin-bottom: 30px; }

.map-wrapper { width: 100%; height: 100%; min-height: 400px; background-color: #e5e7eb; }

/* ==========================================================================
   HOTEL PAGE STYLES
   ========================================================================== */
.hotel-hero {
    width: 100%; height: 50vh; min-height: 350px;
    background: linear-gradient(rgba(3, 26, 61, 0.7), rgba(3, 26, 61, 0.9)), url('https://images.unsplash.com/photo-1566073771259-6a8506099945?q=80&w=1920&auto=format&fit=crop') center/cover fixed;
    display: flex; align-items: center; justify-content: center;
    text-align: center; color: var(--text-light); padding-top: 50px;
}

.hotel-intro { padding: 60px 10% 40px; text-align: center; background: #ffffff; }
.hotel-intro h2 { color: var(--blue-1); font-size: 2.2rem; margin-bottom: 15px; }
.hotel-intro p { max-width: 700px; margin: 0 auto; color: #555; font-size: 1.05rem; line-height: 1.8; }

.hotel-card-section { padding: 80px 5%; background: #ffffff; border-bottom: 1px solid rgba(0,0,0,0.05); }
.hotel-card-section.bg-alt { background: var(--bg-light); }

.hotel-card-wrapper {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center;
}
.hotel-card-wrapper.reverse-layout { direction: ltr; } /* Kiri Kanan default */

/* Galeri Foto Hotel */
.hotel-gallery-grid { display: flex; flex-direction: column; gap: 15px; }
.hotel-gallery-grid img { border-radius: 15px; object-fit: cover; box-shadow: 0 10px 30px rgba(0,0,0,0.1); width: 100%; transition: transform 0.4s ease; }
.hotel-gallery-grid img:hover { transform: scale(1.02); }
.main-img { height: 300px; }
.small-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.small-imgs img { height: 180px; }

/* Info Hotel */
.hotel-info-box { padding: 20px 0; }
.hotel-badge { display: inline-block; background: linear-gradient(135deg, var(--blue-3), var(--blue-4)); color: white; padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; margin-bottom: 15px; letter-spacing: 1px; }
.hotel-info-box h2 { color: var(--blue-1); font-size: 2rem; margin-bottom: 15px; line-height: 1.3; }
.hotel-desc { color: #555; line-height: 1.7; margin-bottom: 25px; font-size: 1rem; }

.hotel-details-list { list-style: none; margin-bottom: 30px; }
.hotel-details-list li { display: flex; align-items: flex-start; margin-bottom: 12px; color: var(--blue-1); font-size: 0.95rem; }
.hotel-details-list li i { color: var(--blue-3); font-size: 1.2rem; width: 30px; margin-top: 3px; }

/* Tombol Aksi */
.hotel-action-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
.btn-outline {
    background: transparent; color: var(--blue-3); padding: 10px 24px; border-radius: 30px; font-weight: 600; font-size: 0.85rem; display: inline-block; border: 2px solid var(--blue-3);
}
.btn-outline:hover { background: var(--blue-3); color: white; transform: translateY(-2px); }

/* Responsive Hotel Card */
@media (max-width: 992px) {
    .hotel-card-wrapper { grid-template-columns: 1fr; gap: 40px; }
    /* Memaksa info selalu di bawah gambar saat di HP (Mencegah terbalik di reverse-layout) */
    .hotel-card-wrapper.reverse-layout { display: flex; flex-direction: column-reverse; }
}

/* ==========================================================================
   SHUTTLE PAGE STYLES
   ========================================================================== */
.shuttle-hero {
    width: 100%; height: 50vh; min-height: 350px;
    background: linear-gradient(rgba(3, 26, 61, 0.7), rgba(3, 26, 61, 0.8)), url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
    display: flex; align-items: center; justify-content: center;
    text-align: center; color: var(--text-light); padding-top: 50px;
}

/* Services */
.shuttle-services {
    display: flex; gap: 40px; padding: 80px 10%; background: #ffffff;
    justify-content: center; flex-wrap: wrap;
}
.service-box {
    flex: 1; min-width: 300px; max-width: 500px;
    text-align: center; padding: 40px; background: var(--bg-light);
    border-radius: 20px; transition: transform 0.3s ease;
}
.service-box:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.05); }
.service-icon {
    width: 80px; height: 80px; margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--blue-2), var(--blue-4));
    color: white; font-size: 2rem; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.service-box h2 { color: var(--blue-1); margin-bottom: 15px; font-size: 1.8rem; }
.service-box p { color: #555; line-height: 1.6; }

/* Fleet & Pricing */
.shuttle-fleet { padding: 60px 5% 80px; background: var(--bg-light); text-align: center; }
.section-title { color: var(--blue-1); font-size: 2.5rem; margin-bottom: 10px; }
.section-subtitle { color: #666; margin-bottom: 50px; font-size: 1.1rem; }

.fleet-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px; max-width: 1200px; margin: 0 auto;
}
.fleet-card {
    background: #ffffff; border-radius: 20px; overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05); transition: all 0.3s ease;
    text-align: left; position: relative;
}
.fleet-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(8, 95, 158, 0.1); }
.fleet-card img { width: 100%; height: 220px; object-fit: cover; }

.fleet-info { padding: 25px; }
.fleet-info h3 { color: var(--blue-1); font-size: 1.5rem; margin-bottom: 5px; }
.car-type { color: var(--blue-4); font-weight: 600; margin-bottom: 20px; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }

.fleet-specs { list-style: none; display: flex; gap: 20px; margin-bottom: 25px; padding-bottom: 20px; border-bottom: 1px solid #eee; }
.fleet-specs li { color: #555; font-size: 0.9rem; display: flex; align-items: center; gap: 8px; }
.fleet-specs li i { color: var(--blue-3); }

.fleet-price { display: flex; flex-direction: column; gap: 10px; }
.fleet-price span { color: #444; font-size: 0.95rem; }
.fleet-price strong { color: var(--blue-2); font-size: 1.1rem; }

/* Premium Card Highlight */
.premium-card { border: 2px solid var(--blue-4); transform: scale(1.02); }
.premium-badge {
    position: absolute; top: 20px; right: 20px;
    background: linear-gradient(135deg, #d4af37, #f3e5ab); /* Warna Emas */
    color: #000; padding: 5px 15px; border-radius: 20px;
    font-size: 0.8rem; font-weight: bold; box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Booking CTA (WhatsApp) */
.shuttle-booking { padding: 80px 5%; background: var(--blue-1); color: white; display: flex; justify-content: center; }
.booking-container { text-align: center; max-width: 700px; }
.booking-container h2 { font-size: 2.2rem; margin-bottom: 20px; color: var(--blue-5); }
.booking-container p { margin-bottom: 35px; line-height: 1.6; opacity: 0.9; font-size: 1.1rem; }

.btn-whatsapp {
    background-color: #25D366; /* Warna Hijau WhatsApp Asli */
    color: white; padding: 15px 35px; border-radius: 40px;
    font-size: 1.1rem; font-weight: bold; text-decoration: none;
    display: inline-flex; align-items: center; gap: 10px;
    transition: all 0.3s ease; box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover { background-color: #128C7E; transform: translateY(-3px); color: white; }
.btn-whatsapp i { font-size: 1.4rem; }

@media (max-width: 768px) {
    .premium-card { transform: none; }
}

/* ==========================================================================
   PLACE TO VISIT PAGE STYLES (TRAVEL GUIDE VIBE)
   ========================================================================== */
.visit-hero {
    width: 100%; height: 50vh; min-height: 350px;
    background: linear-gradient(rgba(3, 26, 61, 0.5), rgba(3, 26, 61, 0.9)), url('https://images.unsplash.com/photo-1555899434-94d1368aa7af?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
    display: flex; align-items: center; justify-content: center;
    text-align: center; color: var(--text-light); padding-top: 50px;
}

.visit-section { padding: 60px 5% 100px; background-color: var(--bg-light); }

.visit-intro-text { text-align: center; max-width: 800px; margin: 0 auto 50px; }
.visit-intro-text h2 { color: var(--blue-1); font-size: 2.5rem; margin-bottom: 15px; }
.visit-intro-text p { color: #555; font-size: 1.1rem; line-height: 1.6; }

.destination-container { display: flex; flex-direction: column; gap: 40px; max-width: 1100px; margin: 0 auto; }

/* Wide Card Layout */
.dest-card-wide {
    display: flex; background: #ffffff; border-radius: 20px;
    overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dest-card-wide:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(8, 95, 158, 0.12); }

/* Bagian Gambar (Kiri) */
.dest-image { width: 40%; position: relative; overflow: hidden; }
.dest-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.dest-card-wide:hover .dest-image img { transform: scale(1.05); }

/* Badge Kategori */
.dest-badge {
    position: absolute; top: 20px; left: 20px;
    padding: 6px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: bold;
    color: #fff; z-index: 2; box-shadow: 0 4px 10px rgba(0,0,0,0.2); letter-spacing: 1px; text-transform: uppercase;
}
.dest-badge.nearest { background: linear-gradient(135deg, #28a745, #20c997); } /* Hijau */
.dest-badge.iconic { background: linear-gradient(135deg, #d4af37, #f3e5ab); color: #000; } /* Emas */
.dest-badge.entertainment { background: linear-gradient(135deg, #fd7e14, #ffc107); } /* Oranye */

/* Bagian Info (Kanan) */
.dest-content { width: 60%; padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.dest-content h2 { color: var(--blue-1); font-size: 1.8rem; margin-bottom: 15px; }
.dest-history { color: #555; line-height: 1.6; margin-bottom: 25px; font-size: 0.95rem; text-align: justify; }

/* Grid Info Detail */
.dest-meta-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 25px;
    background: var(--bg-light); padding: 20px; border-radius: 12px;
}
.meta-item { font-size: 0.9rem; color: #444; display: flex; align-items: center; gap: 10px; }
.meta-item i { color: var(--blue-3); font-size: 1.1rem; width: 20px; text-align: center; }
.meta-item strong { color: var(--blue-1); }

/* Fasilitas (Tags) */
.dest-facilities { margin-bottom: 30px; font-size: 0.9rem; color: #333; }
.dest-facilities span {
    display: inline-block; background: rgba(109, 157, 187, 0.15); color: var(--blue-2);
    padding: 5px 12px; border-radius: 15px; font-size: 0.8rem; font-weight: 600;
    margin-right: 8px; margin-top: 8px; border: 1px solid rgba(109, 157, 187, 0.3);
}

/* Tombol Aksi */
.dest-actions { display: flex; gap: 15px; flex-wrap: wrap; }
.btn-social {
    padding: 10px 20px; border-radius: 30px; font-size: 0.85rem; font-weight: 600;
    color: white; display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s;
}
.btn-social.ig { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.btn-social.web { background: var(--blue-2); }
.btn-social:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.2); color: white; }

.btn-outline-small {
    padding: 10px 20px; border-radius: 30px; font-size: 0.85rem; font-weight: 600;
    color: var(--blue-3); border: 2px solid var(--blue-3); display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s;
}
.btn-outline-small:hover { background: var(--blue-3); color: white; transform: translateY(-3px); }

/* Responsive Mobile */
@media (max-width: 992px) {
    .dest-card-wide { flex-direction: column; }
    .dest-image { width: 100%; height: 250px; }
    .dest-content { width: 100%; padding: 25px; }
    .dest-meta-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   SPONSOR & PARTNERSHIP PAGE STYLES (REVISI)
   ========================================================================== */
.sponsor-hero {
    width: 100%; height: 45vh; min-height: 300px;
    background: linear-gradient(135deg, rgba(3, 26, 61, 0.8) 0%, rgba(10, 58, 105, 0.9) 100%), url('https://images.unsplash.com/photo-1542204165-65bf26472b9b?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
    display: flex; align-items: center; justify-content: center;
    text-align: center; color: var(--text-light); padding-top: 50px;
}
.sponsor-hero h1 { font-size: 3rem; text-shadow: 2px 2px 10px rgba(0,0,0,0.3); margin-bottom: 15px;}
.sponsor-hero p { font-size: 1.1rem; color: var(--blue-5); max-width: 600px; margin: 0 auto; }

/* === CURRENT PARTNERS (FOKUS UTAMA) === */
.current-partners { padding: 60px 5% 40px; background: #ffffff; text-align: center; }

.partner-tier { margin-bottom: 60px; }
.tier-title { 
    font-size: 1.5rem; margin-bottom: 30px; position: relative; 
    display: inline-block; padding-bottom: 10px; font-family: 'Montserrat', sans-serif; text-transform: uppercase; letter-spacing: 2px;
}
.tier-title::after { content: ''; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); width: 50px; height: 3px; border-radius: 2px; }

/* Warna khusus tiap Tier */
.diamond-title { color: #2c3e50; }
.diamond-title::after { background: linear-gradient(90deg, #3498db, #2ecc71); }
.gold-title { color: #d35400; }
.gold-title::after { background: linear-gradient(90deg, #f1c40f, #e67e22); }
.silver-title { color: #7f8c8d; }
.silver-title::after { background: #bdc3c7; }

/* Grid Logo */
.partner-logo-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; max-width: 1000px; margin: 0 auto; }
.logo-box {
    background: #fff; border-radius: 12px; display: flex; flex-direction: column; align-items: center; justify-content: center;
    color: #777; transition: all 0.3s ease; border: 1px solid #eee; cursor: pointer;
    width: 200px; height: 120px; box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.logo-box:hover { box-shadow: 0 10px 25px rgba(0,0,0,0.08); transform: translateY(-5px); border-color: var(--blue-4); color: var(--blue-1); }
.logo-box i { font-size: 3rem; margin-bottom: 10px; transition: transform 0.3s ease; }
.logo-box:hover i { color: var(--blue-3); transform: scale(1.1); }
.logo-box span { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* Ukuran bervariasi sesuai Tier */
.logo-large { width: 350px; height: 180px; border: 2px solid #e2e8f0; }
.logo-large i { font-size: 5rem; }
.logo-small { width: 140px; height: 90px; }
.logo-small i { font-size: 2rem; }

/* === OPEN COLLABORATION (1 SECTION DI BAWAH) === */
.open-collaboration { padding: 40px 5% 80px; background: #ffffff; display: flex; justify-content: center; }

/* Kotak Gradient Menarik */
.collab-box {
    max-width: 1000px; width: 100%; border-radius: 30px; text-align: center; color: white;
    padding: 60px 40px; box-shadow: 0 20px 40px rgba(142, 84, 233, 0.2);
    position: relative; overflow: hidden;
}
.grad-vibrant {
    /* Gradient Warna-Warni Menarik (Ungu, Pink, Orange) */
    background: linear-gradient(135deg, #4776E6 0%, #8E54E9 50%, #FF416C 100%);
}

.collab-content { position: relative; z-index: 2; }
.collab-content h2 { font-size: 2.5rem; margin-bottom: 15px; font-family: 'Playfair Display', serif; }
.collab-content p { font-size: 1.1rem; line-height: 1.6; margin-bottom: 15px; max-width: 700px; margin-left: auto; margin-right: auto; opacity: 0.95; }
.highlight-text { font-weight: 600; font-size: 1.2rem !important; margin-bottom: 30px !important; color: #ffeaa7 !important; }

.btn-wa-large {
    background: #25D366; color: white; padding: 18px 40px; border-radius: 50px;
    font-size: 1.1rem; font-weight: bold; display: inline-flex; align-items: center; gap: 10px;
    transition: all 0.3s ease; box-shadow: 0 10px 20px rgba(0,0,0,0.2); text-decoration: none;
    border: 2px solid transparent;
}
.btn-wa-large:hover { background: #ffffff; color: #25D366; transform: translateY(-3px) scale(1.05); }
.btn-wa-large i { font-size: 1.4rem; }

@media (max-width: 768px) {
    .logo-large { width: 100%; max-width: 300px; }
    .collab-box { padding: 40px 20px; }
    .collab-content h2 { font-size: 2rem; }
}

/* ==========================================================================
   DOWNLOAD PAGE STYLES
   ========================================================================== */
.download-hero {
    width: 100%; height: 45vh; min-height: 300px;
    background: linear-gradient(135deg, rgba(3, 26, 61, 0.8) 0%, rgba(8, 95, 158, 0.9) 100%), url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
    display: flex; align-items: center; justify-content: center;
    text-align: center; color: var(--text-light); padding-top: 50px;
}

.download-section { padding: 60px 10% 100px; background-color: var(--bg-light); }

.doc-category { margin-bottom: 60px; }
.category-title { 
    color: var(--blue-1); font-size: 1.8rem; margin-bottom: 30px; 
    display: flex; align-items: center; gap: 15px;
    padding-bottom: 10px; border-bottom: 2px solid rgba(8, 95, 158, 0.1);
}
.category-title i { color: var(--blue-3); }

/* Document Card Layout */
.doc-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 25px;
}

.doc-card {
    padding: 15px !important;
    background: #ffffff; padding: 25px; border-radius: 20px;
    display: flex; align-items: center; gap: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    transition: all 0.3s ease; border: 1px solid transparent;
}
.doc-card:hover { 
    transform: translateY(-5px); border-color: var(--blue-4); 
    box-shadow: 0 15px 35px rgba(8, 95, 158, 0.1);
}

/* File Icons with Colors */
.file-icon {
    width: 65px; height: 65px; border-radius: 15px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; flex-shrink: 0;
}
.file-icon.pdf { background: rgba(231, 76, 60, 0.1); color: #e74c3c; }
.file-icon.doc { background: rgba(52, 152, 219, 0.1); color: #3498db; }
.file-icon.excel { background: rgba(39, 174, 96, 0.1); color: #27ae60; }

.doc-info { flex-grow: 1; }
.doc-info h3 { color: var(--blue-1); font-size: 1.1rem; margin-bottom: 5px; }
.doc-info p { color: #777; font-size: 0.85rem; line-height: 1.4; margin-bottom: 8px; }
.file-size { font-size: 0.75rem; font-weight: 700; color: var(--blue-4); text-transform: uppercase; letter-spacing: 1px; }

/* Download Button (Gradient) */
.btn-download {
    width: 50px; height: 50px; border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-3), var(--blue-4));
    color: white; display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; transition: all 0.3s ease;
}
.btn-download:hover { transform: scale(1.1); box-shadow: 0 5px 15px rgba(8, 95, 158, 0.3); color: white; }

/* Responsive Mobile */
@media (max-width: 768px) {
    .doc-grid { grid-template-columns: 1fr; }
    .doc-card { padding: 20px; }
    .file-icon { width: 50px; height: 50px; font-size: 1.5rem; }
    .category-title { font-size: 1.4rem; }
}

/* ==========================================================================
   REGISTRATION PAGE STYLES
   ========================================================================== */
.regis-hero {
    width: 100%; height: 45vh; min-height: 300px;
    background: linear-gradient(135deg, rgba(3, 26, 61, 0.7) 0%, rgba(10, 58, 105, 0.8) 100%), url('https://img.freepik.com/foto-premium/piala-emas-dikelilingi-oleh-konfeti_135170-7392.jpg') center/cover no-repeat;
    display: flex; align-items: center; justify-content: center;
    text-align: center; color: var(--text-light); padding-top: 50px;
}

.regis-section { padding: 60px 10% 100px; background-color: var(--bg-light); }

/* Preparation Box */
.prep-container {
    background: #ffffff; padding: 40px; border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05); display: grid;
    grid-template-columns: 1.5fr 1fr; gap: 40px; margin-bottom: 80px;
}
.prep-info h2 { color: var(--blue-1); font-size: 2rem; margin-bottom: 20px; }
.prep-list { list-style: none; margin-top: 20px; }
.prep-list li { margin-bottom: 12px; display: flex; align-items: center; gap: 15px; color: #444; font-weight: 600; }
.prep-list li i { color: #2ecc71; font-size: 1.2rem; }

.prep-note {
    background: rgba(109, 157, 187, 0.1); padding: 30px; border-radius: 20px;
    border-left: 5px solid var(--blue-3); display: flex; flex-direction: column; justify-content: center;
}
.prep-note i { font-size: 2rem; color: var(--blue-3); margin-bottom: 15px; }

/* Tutorial Steps */
.section-title-center { text-align: center; color: var(--blue-1); font-size: 2.5rem; margin-bottom: 50px; }
.step-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 25px; margin-bottom: 80px;
}
.step-card {
    background: #ffffff; padding: 40px 30px; border-radius: 20px; position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03); transition: transform 0.3s ease;
}
.step-card:hover { transform: translateY(-10px); }
.step-num {
    position: absolute; top: -15px; left: 30px;
    background: var(--blue-3); color: white; width: 45px; height: 45px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1.1rem; box-shadow: 0 5px 15px rgba(8, 95, 158, 0.3);
}
.step-card h3 { color: var(--blue-1); margin: 10px 0 15px; }
.step-card p { font-size: 0.9rem; color: #666; line-height: 1.6; }

/* Final CTA Box */
.final-cta-box {
    background: linear-gradient(135deg, var(--blue-1) 0%, var(--blue-2) 100%);
    padding: 60px 40px; border-radius: 30px; text-align: center; color: white;
}
.final-cta-box h2 { font-size: 2.2rem; margin-bottom: 15px; }
.final-cta-box p { opacity: 0.9; margin-bottom: 35px; }

.btn-ezregis {
    background: #ffffff; color: var(--blue-1); padding: 18px 40px; border-radius: 50px;
    font-size: 1.2rem; font-weight: 800; text-decoration: none; display: inline-flex;
    align-items: center; gap: 12px; transition: all 0.3s;
}
.btn-ezregis:hover { transform: scale(1.05); box-shadow: 0 10px 30px rgba(255,255,255,0.2); background: var(--blue-5); }

.secure-text { display: block; margin-top: 20px; font-size: 0.8rem; opacity: 0.6; text-transform: uppercase; letter-spacing: 1px; }

/* Responsive */
@media (max-width: 992px) {
    .prep-container { grid-template-columns: 1fr; }
}

/* ==========================================================================
   10. FOOTER (GRADIENT & ELEGANT)
   ========================================================================== */
.elegant-footer {
    /* Background Gradient dari Navy Gelap ke Navy Terang */
    background: linear-gradient(135deg, var(--blue-1) 0%, var(--blue-2) 100%);
    color: var(--blue-5);
    /* Padding bawah diperbesar jadi 40px agar copyright tidak terpotong */
    padding: 80px 5% 40px; 
    position: relative;
    border-top: 4px solid var(--blue-3); /* Garis aksen biru di atas footer */
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo-placeholder { margin-bottom: 15px; }
.footer-brand h3 { color: var(--text-light); font-size: 1.8rem; margin-bottom: 15px; letter-spacing: 1px; }

.footer-links h4, .footer-contact h4 {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-links h4::after, .footer-contact h4::after {
    content: '';
    position: absolute; left: 0; bottom: -8px;
    width: 30px; height: 3px; /* Garis bawah judul agak ditebalkan */
    background-color: var(--blue-4);
    border-radius: 5px;
}

.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a { color: var(--blue-5); font-size: 0.95rem; }
.footer-links ul li a:hover { color: var(--text-light); padding-left: 8px; }
.footer-contact p { font-size: 0.95rem; margin-bottom: 10px; }

/* Social Icons (Tampil Lebih Cantik) */
.social-icons { display: flex; gap: 15px; margin-top: 25px; }
.social-icons a {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 45px; height: 45px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 50%; color: var(--blue-5);
    font-size: 1.2rem; /* Ukuran Ikon */
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
    background-color: var(--blue-4);
    color: white;
    transform: translateY(-5px) scale(1.1); /* Efek melompat dan membesar sedikit */
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    border-color: transparent;
}

/* Bagian Copyright */
.footer-bottom {
    text-align: center;
    padding-top: 25px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--blue-4);
    letter-spacing: 1px;
    display: block; /* Pastikan selalu mendapat ruang */
}

/* ==========================================================================
   11. BACK TO TOP BUTTON
   ========================================================================== */
.back-to-top {
    position: fixed;
    bottom: 30px; right: 30px;
    background-color: var(--blue-3);
    color: white;
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1; pointer-events: auto; transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--blue-2);
}

/* ==========================================================================
   12. MEDIA QUERIES (RESPONSIVE TABLET & MOBILE)
   ========================================================================== */
@media (max-width: 992px) {
    .hero-content h1 { font-size: 3rem; }
    .countdown-section h2 { font-size: 2rem; }
    .time-box { min-width: 90px; padding: 15px; }
    .time-box span { font-size: 2.2rem; }
    .note-paper { padding: 40px; margin: 0 20px; }
    .footer-container { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 768px) {
    .hero-section { aspect-ratio: auto; min-height: 80vh; padding-top: 80px; }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-content p { font-size: 1rem; }
    .event-info-bar { flex-direction: column; text-align: center; gap: 30px; }
    
    /* 1. Sembunyikan Elemen Desktop */
    .logo, .desktop-cta { display: none !important; } 
    
    /* 2. MATIKAN JEBAKAN CSS DI SINI */
    .floating-nav { 
        width: 50px !important; 
        height: 50px !important; 
        min-width: 50px !important; 
        left: 20px !important; 
        top: 20px !important;
        transform: none !important; 
        padding: 0 !important; 
        /* Matikan blur agar popup bisa keluar */
        backdrop-filter: none !important; 
        -webkit-backdrop-filter: none !important;
        background: transparent !important;
        box-shadow: none !important;
    }
    
    /* 3. Tombol Hamburger (Bentuk Lingkaran Kiri Atas) */
    .mobile-menu-btn { 
        display: flex !important; 
        align-items: center; 
        justify-content: center; 
        width: 50px; 
        height: 50px; 
        background: rgba(255, 255, 255, 0.95);
        border: none;
        border-radius: 50%;
        box-shadow: 0 4px 15px rgba(0,0,0,0.15);
        cursor: pointer;
    } 
    .mobile-menu-btn i { font-size: 20px; color: var(--blue-1); }
    
    /* 4. POPUP MENU (Melayang Bebas di Tengah) */
    .nav-links {
        position: fixed !important; 
        top: 85px !important; 
        left: 5% !important; 
        width: 90% !important; 
        background: rgba(255, 255, 255, 0.98) !important; 
        backdrop-filter: blur(15px);
        border-radius: 15px !important; 
        flex-direction: column !important; 
        padding: 20px !important; 
        gap: 5px !important;
        box-shadow: 0 15px 40px rgba(3, 26, 61, 0.2) !important; 
        opacity: 0; 
        visibility: hidden; 
        transform: translateY(-20px) !important;
        transition: all 0.3s ease !important; 
        z-index: 9999; /* Pastikan selalu paling atas */
    }
    
    .nav-links.show { 
        opacity: 1 !important; 
        visibility: visible !important; 
        transform: translateY(0) !important; 
    }
    
    /* 5. Rapikan isi Menu Popup */
    .nav-links li { width: 100% !important; text-align: left; }
    .nav-links li a { 
        width: 100% !important; 
        padding: 12px 15px !important; 
        border-radius: 10px !important; 
        justify-content: flex-start !important; 
        background: transparent !important;
    }
    /* Jadikan Facility Cards 2x2 (Ringkas) */
    .specs-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .spec-card { padding: 20px 15px; }
    .icon-gradient { width: 45px; height: 45px; margin-bottom: 10px; }
    .icon-gradient i { font-size: 1.2rem; }
    .spec-card h3 { font-size: 0.95rem; }
    .spec-card p { font-size: 0.8rem; }

    /* Bento Box Gallery jadi vertikal di HP */
    .gallery-bento { grid-template-columns: 1fr; grid-auto-rows: 200px; }
    .item-large { grid-column: span 1; grid-row: span 1; }

    /* Location Section numpuk atas bawah */
    .location-container { grid-template-columns: 1fr; }
    .location-details { padding: 40px 20px; text-align: center; align-items: center; }
    .nav-links li a i { width: 30px; text-align: left; font-size: 18px; }
    .nav-text { max-width: none !important; opacity: 1 !important; margin-left: 0 !important; font-size: 0.95rem !important; }
    
    .mobile-only-cta { display: block !important; margin-top: 10px; padding-top: 15px; border-top: 1px solid rgba(0,0,0,0.1); }
    .mobile-only-cta a.btn-blue { color: white !important; background-color: var(--blue-3) !important; justify-content: center !important; }
    
    .footer-container { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .footer-links h4::after, .footer-contact h4::after { left: 50%; transform: translateX(-50%); }
    .social-icons { justify-content: center; }
}