* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; background: #F4F7F9; color: #1A1A1A; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }


/* Navbar Original (Tetap) */
.main-header { background: white; padding: 15px 0; box-shadow: 0 4px 12px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; }
.header-container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.logo img { height: 45px; }
.main-nav ul { display: flex; list-style: none; gap: 25px; }
.main-nav a { text-decoration: none; color: #333; font-weight: 600; font-size: 14px; transition: 0.3s; }
.main-nav a:hover, .main-nav a.active { color: #FF7F00; }
.btn-orange { background: #FF7F00; color: white; padding: 10px 24px; border-radius: 50px; text-decoration: none; font-weight: 700; box-shadow: 0 4px 10px rgba(255,127,0,0.3); }

/* --- 1. KONTROL VISIBILITAS GLOBAL (ANTI-RANJAU) --- */
.mobile-only { display: none !important; }
.desktop-only { display: block !important; }

/* Hamburger Style Dasar (Desktop) */
.hamburger-menu {
    display: none; 
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    width: 45px;
    height: 45px;
    transition: 0.3s;
}

.hamburger-menu span {
    display: block;
    width: 26px;
    height: 3px;
    background-color: #333;
    border-radius: 5px;
}

/* --- 2. PENGATURAN LAYAR HP (MOBILE FIXED) --- */
@media (max-width: 768px) {
    /* 1. HEADER: JADI LEBIH SLIM (KURUS) */
    .header-container {
    display: flex !important;
    justify-content: flex-start !important; /* Ganti dari center ke flex-start */
    align-items: center !important;
    height: 55px !important;
    position: relative !important;
    background: white !important;
    z-index: 1000;
    padding: 0 15px !important;
    }

    .logo {
        margin: 0 !important; /* Ganti dari 0 auto ke 0 biar nggak ke tengah */
        z-index: 10;
    }

    .logo img {
        height: 35px !important;
    }

    /* 2. HAMBURGER: TETEP POJOK KANAN */
    .hamburger-menu {
        display: flex !important; 
        position: absolute !important;
        right: 15px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 1001 !important;
        background: transparent !important;
        border: none !important;
        flex-direction: column;
        gap: 5px;
    }

    .hamburger-menu span {
        display: block;
        width: 24px; /* Lebar sedikit dikurangin biar proposional */
        height: 3px;
        background-color: #333 !important;
        border-radius: 5px;
        transition: 0.3s;
    }

    /* 3. NAV: DROPDOWN GLASSMORPHISM */
    .main-nav { display: block !important; }

    .main-nav ul {
        display: none; 
        position: absolute;
        top: 100%; 
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98); /* Sedikit lebih solid biar teks jelas */
        backdrop-filter: blur(10px); 
        -webkit-backdrop-filter: blur(10px); 
        flex-direction: column;
        padding: 10px 0;
        gap: 0;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        border-top: 1px solid rgba(0,0,0,0.05);
        z-index: 999 !important;
    }

    .main-nav ul.show {
        display: flex !important;
    }

    /* 4. STYLE LIST MENU & ANIMASI ORANGE */
    .main-nav ul li {
        width: 100%;
        text-align: center;
        list-style: none !important;
    }

    .main-nav ul li a {
        display: block;
        padding: 12px 0; /* Padding dikecilin biar menu gak terlalu panjang kebawah */
        font-size: 16px;
        font-weight: 700;
        color: #333 !important;
        text-transform: uppercase;
        text-decoration: none;
        transition: all 0.2s ease-in-out; /* Animasi perpindahan warna */
    }

    /* ANIMASI: Berubah jadi Orange pas disentuh/klik */
    .main-nav ul li a:hover,
    .main-nav ul li a:active,
    .main-nav ul li a.active {
        color: #FF7F00 !important; /* Warna Orange */
        background-color: rgba(255, 127, 0, 0.05); /* Background orange super tipis biar cakep */
    }

    /* 5. BUANG TOMBOL DAFTAR & DESKTOP ONLY */
    .main-nav ul li:last-child,
    .header-cta.desktop-only,
    .btn-orange {
        display: none !important;
    }

    /* 6. ANIMASI X (SILANG) */
    .hamburger-menu.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
    .hamburger-menu.active span:nth-child(2) { opacity: 0; }
    .hamburger-menu.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -7px); }

    .mobile-only { display: none !important; }
}



/* Hero */
.gallery-hero { padding: 80px 0 40px; text-align: center; background: white; border-bottom: 1px solid #eee; }
.hero-title { font-size: 42px; font-weight: 800; text-transform: uppercase; line-height: 1.1; }
.highlight { color: #FF7F00; }
.hero-subtitle { color: #666; margin: 15px auto; max-width: 700px; }

/* Filter Buttons */
.filter-wrapper { margin-top: 30px; display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.btn-filter { padding: 10px 20px; border: 2px solid #FF7F00; background: transparent; color: #FF7F00; border-radius: 50px; cursor: pointer; font-weight: 700; transition: 0.3s; }
.btn-filter.active, .btn-filter:hover { background: #FF7F00; color: white; }

/* --- Gallery Grid Layout --- */

.gallery-content {
    padding: 50px 0 100px;
}

.gallery-grid {
    display: grid;
    /* Kita kunci 3 kolom di desktop biar puzzle-nya pas */
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    /* Ini biar kotak kecil otomatis ngisi bolongan di samping kotak gede */
    grid-auto-flow: dense;
}

.gallery-item {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.07);
    cursor: pointer;
    position: relative;
    /* Default kotak biasa */
    aspect-ratio: 4/3;
    transition: 0.4s;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    z-index: 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Pengatur Puzzle (Bento Grid) --- */

/* Kotak Tinggi (9:16) - Makan 2 baris kebawah */
.gallery-item.v-stretch {
    grid-row: span 2;
    /* Matikan aspect-ratio biar tingginya ngikutin grid */
    aspect-ratio: auto;
}

/* Kotak Lebar (16:9) - Makan 2 kolom kesamping */
.gallery-item.h-stretch {
    grid-column: span 2;
    /* Matikan aspect-ratio biar lebarnya ngikutin grid */
    aspect-ratio: auto;
}

/* --- Responsif Mobile --- */

@media (max-width: 768px) {
    .gallery-grid {
        /* Di HP balik jadi 1 kolom biar gak kekecilan */
        grid-template-columns: 1fr;
    }

    .gallery-item.v-stretch,
    .gallery-item.h-stretch {
        /* Di HP balik jadi kotak normal semua */
        grid-column: span 1;
        grid-row: span 1;
        aspect-ratio: 4/3;
    }
}

/* Labels */
.item-overlay { position: absolute; top: 12px; left: 12px; }
.label { padding: 6px 12px; border-radius: 8px; color: white; font-size: 10px; font-weight: 700; text-transform: uppercase; }
.trip-label { background: #FF7F00; }
.payment-label { background: #3498db; }

/* Lightbox */
.lightbox { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.95); z-index: 1000; justify-content: center; align-items: center; flex-direction: column; }
.lightbox-content { max-width: 90%; max-height: 80%; border: 4px solid white; border-radius: 10px; }
.close-lightbox { position: absolute; top: 20px; right: 30px; color: white; font-size: 50px; cursor: pointer; }
.lightbox-caption { color: white; margin-top: 15px; font-size: 18px; font-weight: 600; }

/* CTA Bawah */
.gallery-actions { text-align: center; margin-top: 60px; }
.btn-orange-lg { background: #FF7F00; color: white; padding: 20px 40px; border-radius: 50px; text-decoration: none; font-weight: 800; font-size: 18px; box-shadow: 0 10px 30px rgba(255,127,0,0.4); display: inline-block; transition: 0.3s; }
.btn-orange-lg:hover { transform: scale(1.05); background: #e67200; }

@media (max-width: 768px) { .main-nav { display: none; } .hero-title { font-size: 30px; } }


.brand-section {
    padding: 96px 0;
    background-color: #ffffff;
    border-top: 1px solid #f8fafc;
    position: relative;
    overflow: hidden;
}

.top-divider {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, #f97316, transparent);
}

.container-center {
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    padding-left: 16px;
    padding-right: 16px;
    text-align: center;
}

.logo-box {
    position: relative;
    display: inline-block;
}

.logo-image {
    margin-left: auto;
    margin-right: auto;
    height: 128px; /* Mobile height (32) */
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {
    .logo-image {
        height: 176px; /* Desktop height (44) */
    }
}

/* Hover Effects Logo */
.logo-box:hover .logo-image {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
    filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15));
}

.text-content {
    margin-top: 40px;
}

.slogan-title {
    font-size: 18px; /* lg */
    font-weight: 900;
    color: #cbd5e1; /* slate-300 */
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-style: italic;
    line-height: 1.625;
}

@media (min-width: 768px) {
    .slogan-title {
        font-size: 20px; /* xl */
    }
}

.accent-text {
    color: rgba(249, 115, 22, 0.5); /* orange-500/50 */
    transition: color 0.5s ease;
}

/* Hover Effects Text Accent */
.logo-box:hover ~ .text-content .accent-text {
    color: #f97316; /* orange-500 */
}

.bottom-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    opacity: 0.2;
}

.side-line {
    width: 48px;
    height: 1px;
    background-color: #0f172a; /* slate-900 */
}

.center-dot {
    width: 8px;
    height: 8px;
    border-radius: 9999px;
    background-color: #f97316; /* orange-500 */
}




/* --- Footer Section --- */
.site-footer {
    background-color: #030712;
    color: #ffffff;
    padding: 48px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .footer-container {
        padding: 0 48px;
    }
}

.footer-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

@media (min-width: 768px) {
    .footer-wrapper {
        flex-direction: row;
    }
}

.footer-info {
    text-align: center;
}

@media (min-width: 768px) {
    .footer-info {
        text-align: left;
    }
}

.footer-logo {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-style: italic;
}

.footer-logo-accent {
    color: #f97316;
    font-size: 14px;
    letter-spacing: 0.1em;
    font-style: normal;
}

.footer-copyright {
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}

@media (min-width: 768px) {
    .footer-status {
        justify-content: flex-start;
    }
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #f97316;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.company-tag {
    font-size: 10px;
    color: #475569;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.footer-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-btn {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background-color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s ease;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    color: inherit;
    text-decoration: none;
}

.footer-btn i {
    font-size: 20px;
    transition: all 0.5s ease;
}

/* Instagram Hover Effect */
.instagram:hover {
    border-color: rgba(236, 72, 153, 0.5);
    color: #ec4899;
}

.instagram:hover i {
    transform: scale(1.1) rotate(6deg);
}

/* Email Hover Effect */
.email:hover {
    border-color: rgba(249, 115, 22, 0.5);
    color: #f97316;
}

.email:hover i {
    transform: scale(1.1);
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons {
        justify-content: center;
    }
}