/* --- RESET & GLOBAL --- */
:root {
    --navy: #1A5B7A;       /* Biru Navy Logo */
    --navy-dark: #13455C;  /* Navy lebih gelap buat hover */
    --green: #2C9C4B;      /* Hijau Segar Logo */
    --gold: #F1B524;       /* Kuning Matahari Logo */
    --bg-light: #F8FAFC;
    --text-main: #1E293B;
}

* {
    margin: 0; padding: 0; box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 { font-family: 'Montserrat', sans-serif; }

/* --- NAVBAR --- */
.navbar {
    background: rgba(255, 255, 255, 0.85); /* Efek Kaca Transparan */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 0; /* Padding diperkecil biar ringkas */
    position: sticky;
    top: 0; 
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* --- JINAKIN LOGO BIAR GAK KEGEDEAN --- */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px; /* <--- Kunci: Tinggi logo maksimal 50px aja */
    width: auto;
    object-fit: contain;
}

/* --- MENU TENGAH (DESKTOP ONLY) --- */
.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--navy);
    font-weight: 700;
    font-size: 0.8rem; /* Font dikecilkan dikit biar elegan */
    text-transform: uppercase;
    transition: 0.3s;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: var(--gold);
}

/* --- TOMBOL WA --- */
.btn-wa-nav {
    background: var(--navy);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(42, 91, 177, 0.2);
    white-space: nowrap; /* Biar teks gak turun ke bawah */
}

.btn-wa-nav:hover { 
    background: var(--navy-dark); 
    transform: translateY(-2px); 
}

/* --- RESPONSIVE LOGIC (MOBILE) --- */
@media (max-width: 900px) {
    .nav-links { 
        display: none; /* Menu ngilang di HP */
    }
    
    .logo img { 
        height: 40px; /* Logo di HP lebih kecil dikit */
    }

    .btn-wa-nav {
        padding: 8px 15px;
        font-size: 0.75rem;
    }
}

/* --- HAMBURGER MENU (MOBILE NAV) --- */
.hamburger-btn {
    display: none;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: var(--navy);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Item WA di dalam menu hamburger, disembunyikan di desktop */
.wa-mobile-item {
    display: none;
}

@media (max-width: 900px) {
    .nav-wrapper {
        position: relative;
        flex-wrap: wrap;
    }

    .nav-contact {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    /* Sembunyikan tombol WA pill di navbar, karena sudah pindah ke dalam hamburger */
    .nav-contact .btn-wa-nav {
        display: none;
    }

    .hamburger-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 10px 20px;
        box-shadow: 0 15px 25px rgba(0,0,0,0.08);
        border-top: 1px solid #eef2f6;
        z-index: 999;
    }

    .nav-links.mobile-active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #f1f5f9;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 14px 5px;
        font-size: 0.85rem;
    }

    /* Tombol WA di dalam hamburger, tampil beda dari link menu biasa */
    .wa-mobile-item {
        display: block;
        margin-top: 8px;
    }

    .wa-mobile-item a {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background: var(--navy);
        color: #fff !important;
        text-transform: none !important;
        font-weight: 700;
        padding: 12px !important;
        border-radius: 50px;
    }
}

/* --- HERO SECTION --- */
/* --- HERO SECTION (EDITED: TINGGI DITAMBAH BIAR TOMBOL MASUK) --- */
.hero {
    position: relative;
    height: 100vh; /* <--- GANTI INI biar mentok full layar manapun */
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    padding: 0 20px;
    overflow: hidden; /* Biar aman gak ada scroll halus yg ganggu */
}

.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }

.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    /* Gradient dari Navy Transparan ke Navy Pekat */
    background: linear-gradient(to bottom, rgba(26, 91, 122, 0.4), rgba(19, 69, 92, 0.85));
}

.hero-content { 
    width: 100%; 
    z-index: 1; 
}

.hero-content h1 { 
    font-size: 3.5rem; 
    font-weight: 900; 
    margin-bottom: 10px; 
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.5); 
}

.text-gold { color: var(--gold); }

.hero-content p { 
    font-size: 1.2rem; 
    opacity: 0.9; 
    text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.5); 
    margin-bottom: 80px; /* Jarak biar teks gak nempel ke tombol */
}

/* --- TOMBOL DI DALEM HERO --- */
.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-hero-primary, .btn-hero-secondary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.3s;
    cursor: pointer;
    border: none;
}

.btn-hero-primary {
    background: var(--navy);
    color: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-hero-primary:hover {
    background: var(--navy-dark);
    transform: translateY(-3px);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.15); /* Efek Kaca */
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(5px);
}

.btn-hero-secondary:hover {
    background: white;
    color: var(--navy);
    transform: translateY(-3px);
}

/* RESPONSIVE KHUSUS HERO */
@media (max-width: 768px) {
    .hero { 
        height: 70vh; /* <--- Pendekin dikit biar gambarnya gak perlu ngezoom ampe pecah */
    } 
    
    .hero-bg img {
        object-position: center top; /* <--- PENTING: Biar fokus ke gunung/puncak, bukan ke tengah/bawah */
    }

    .hero-content h1 { font-size: 2rem; }
    .hero-content p { margin-bottom: 40px; } /* Kurangin jarak biar pas di layar HP */
    .hero-cta { flex-direction: column; align-items: center; gap: 15px; }
    .btn-hero-primary, .btn-hero-secondary { width: 90%; justify-content: center; }
}



/* --- PACKAGE GRID & HEADER --- */
.packages { padding: 60px 0 100px; }

/* Judul & Penjelasan Section */
.section-header { 
    text-align: center; 
    margin-bottom: 50px; 
}
.section-header h2 { 
    font-size: 2.5rem; 
    color: var(--navy); 
    font-weight: 900; 
    margin-bottom: 10px;
}
.section-header p { 
    color: #64748b; 
    font-size: 1.1rem; 
    max-width: 600px; 
    margin: 0 auto; 
    line-height: 1.6;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 350px)); 
    gap: 30px;
    justify-content: center; 
    align-items: stretch;
}

.p-card {
    background: white; 
    border-radius: 25px; 
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05); 
    transition: 0.3s;
    width: 100%;
    max-width: 350px; 
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.p-card:hover { transform: scale(1.02); }

.p-img { position: relative; height: 220px; }
.p-img img { width: 100%; height: 100%; object-fit: cover; }

.p-badge {
    position: absolute; top: 15px; left: 15px;
    background: var(--green); /* Ganti dari Pink ke Hijau Logo */
    color: white;
    padding: 5px 12px; border-radius: 50px; font-size: 0.7rem; font-weight: 800;
}

.p-info { 
    padding: 25px; 
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.p-info h3 { font-size: 1.3rem; margin-bottom: 10px; min-height: 52px; }
.p-price { 
    font-size: 1.5rem; 
    font-weight: 800; 
    color: var(--gold); 
    margin: 15px 0; 
    margin-top: auto;
}
.p-price span { font-size: 0.8rem; color: #94a3b8; font-weight: 400; }

.btn-detail {
    width: 100%; background: var(--text-main); color: white; border: none;
    padding: 12px; border-radius: 12px; font-weight: 600; cursor: pointer; transition: 0.3s;
}

.btn-detail:hover { background: var(--navy); }

/* --- RESPONSIVE KHUSUS MOBILE (SLIDER MODE) --- */
@media (max-width: 768px) {
    .section-header h2 { font-size: 1.8rem; }
    .section-header p { font-size: 0.9rem; padding: 0 15px; }

    /* 1. Paksa Grid jadi Flex buat jejer ke samping */
    .package-grid {
        display: flex !important; 
        grid-template-columns: none !important; /* Matikan sistem kolom */
        overflow-x: auto; /* Aktifin scroll kanan-kiri */
        scroll-snap-type: x mandatory; /* Efek magnet pas geser */
        align-items: stretch; /* Samain tinggi semua kartu dalam satu baris */
        gap: 20px;
        padding: 20px 25px 40px; /* Kasih ruang biar gak nempel tembok */
        justify-content: flex-start; /* Start dari kiri */
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch; /* Biar licin di iPhone */
    }

    /* 2. Sembunyiin Scrollbar biar bersih ala aplikasi */
    .package-grid::-webkit-scrollbar {
        display: none;
    }

    /* 3. Atur lebar kartu biar kartu sebelahnya keliatan nongol dikit */
    .p-card {
        flex: 0 0 85%; /* Kartu makan 85% lebar layar */
        max-width: 85%;
        margin: 0;
        scroll-snap-align: center; /* Kartu bakal otomatis berhenti di tengah */
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        align-self: stretch; /* Kartu ini sendiri ikut nyamain tinggi ke yang paling tinggi */
        height: auto; /* Biarin tinggi diatur oleh stretch, bukan dipaksa 100% dari parent yang tingginya auto */
    }

    /* Atur gambar biar gak penyet di mobile */
    .p-img { height: 200px; }
}



/* --- TESTIMONI SECTION --- */
.testi-section {
    padding: 80px 0;
    background-color: #fcfcfc;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.testi-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid #f1f5f9;
    transition: 0.3s;
}

.testi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(42, 91, 177, 0.1);
}

.testi-stars {
    color: #FFD700;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.testi-card p {
    font-size: 0.95rem;
    color: #475569;
    font-style: italic;
    margin-bottom: 20px;
}

.testi-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testi-user img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

/* --- RESPONSIVE KHUSUS MOBILE (SLIDER MODE) --- */
@media (max-width: 768px) {
    .testi-section { padding: 50px 0; }

    /* 1. Paksa Grid jadi Flex biar jejer ke samping */
    .testi-grid {
        display: flex !important;
        grid-template-columns: none !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        margin-top: 30px;
        padding: 6px 25px 30px;
        justify-content: flex-start;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    /* 2. Sembunyiin scrollbar biar bersih */
    .testi-grid::-webkit-scrollbar {
        display: none;
    }

    /* 3. Atur lebar kartu biar kartu sebelahnya nongol dikit */
    .testi-card {
        flex: 0 0 85%;
        max-width: 85%;
        padding: 24px;
        scroll-snap-align: center;
        box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    }

    .testi-card:hover { transform: none; }
}

/* --- KUNCI ANIMASI SCROLL (BOLAK-BALIK) --- */
.hidden-animate {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    visibility: hidden;
}

.show-animate {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
}

/* EFEK NGANTRE (STAGGER) */
.package-grid .p-card:nth-child(1) { transition-delay: 0.1s; }
.package-grid .p-card:nth-child(2) { transition-delay: 0.2s; }
.package-grid .p-card:nth-child(3) { transition-delay: 0.3s; }
.package-grid .p-card:nth-child(4) { transition-delay: 0.4s; }

/* --- WHY CHOOSE US STYLE --- */
.why-us {
    padding: 80px 0;
    background-color: white;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.why-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: 30px;
    transition: 0.3s;
    border: 1px solid transparent;
}

.why-card:hover {
    background: white;
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(198, 154, 83, 0.1);
    transform: translateY(-10px);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: var(--navy);
    color: white;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(42, 91, 177, 0.2);
}

.why-card h3 {
    color: var(--navy);
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.why-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.7;
}

/* Biar ikutan ngantre pas muncul (Animasi Scroll) */
.why-grid .why-card:nth-child(1) { transition-delay: 0.1s; }
.why-grid .why-card:nth-child(2) { transition-delay: 0.2s; }
.why-grid .why-card:nth-child(3) { transition-delay: 0.3s; }

/* --- RESPONSIVE WHY CHOOSE US (HP) --- */
@media (max-width: 768px) {
    .why-us {
        padding: 50px 0; /* Padding atas bawah dikecilin biar gak kelamaan scroll */
    }

    .why-grid {
        grid-template-columns: 1fr; /* Paksa jadi 1 kolom di HP */
        gap: 20px;
        padding: 0 10px;
    }

    .why-card {
        padding: 30px 20px; /* Padding dalem kartu dirampingin */
        border-radius: 20px; /* Lengkungan sudut disesuaikan */
    }

    .why-icon {
        width: 60px; /* Ikon dikecilin dikit biar gak makan tempat */
        height: 60px;
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .why-card h3 {
        font-size: 1.1rem; /* Judul poin dikecilin dikit */
    }

    .why-card p {
        font-size: 0.85rem; /* Teks penjelasan dirampingin */
        line-height: 1.5;
    }
}

/* --- INSTAGRAM GALLERY STYLE --- */
.gallery-ig { padding: 80px 0; background: #fff; overflow: hidden; }

.ig-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: -20px; /* Biar agak tumpuk dikit pas ngumpul */
    margin-top: 50px;
    perspective: 1000px;
}

.ig-card-wrapper {
    transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ig-card {
    background: white;
    width: 300px;
    border-radius: 12px;
    border: 1px solid #dbdbdb;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* --- UI INSTAGRAM PART (Polesan Bersih) --- */
.ig-header { padding: 12px; display: flex; justify-content: space-between; align-items: center; }
.ig-user { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 0.85rem; color: #262626; }
.ig-user img { width: 32px; height: 32px; border-radius: 50%; border: 1.5px solid var(--gold); padding: 1px; }
.ig-img { width: 100%; aspect-ratio: 1/1; overflow: hidden; background: #fafafa; }
.ig-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.ig-card:hover .ig-img img { transform: scale(1.05); } /* Efek zoom tipis pas hover */
.ig-footer { padding: 12px; border-top: 1px solid #efefef; }
.ig-actions { display: flex; gap: 15px; font-size: 1.2rem; margin-bottom: 8px; color: #262626; }
.ig-caption { font-size: 0.8rem; line-height: 1.4; color: #262626; text-align: left; }
.ig-caption strong { font-weight: 700; margin-right: 5px; }


/* ==========================================================================
   --- KUNCI MAGNETIC SNAP IG (FIXED: ANTI NGILANG) ---
   ========================================================================== */

/* 1. Posisi Awal Berhamburan (Sembunyi) */
.ig-card-wrapper {
    opacity: 0;
    visibility: hidden;
    transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card-left { transform: translateX(-150%) translateY(50px) rotate(-15deg); }
.card-center { transform: translateY(150px); }
.card-right { transform: translateX(150%) translateY(50px) rotate(15deg); }

/* 2. STATE PAS MUNCUL (SNAP BALIK KE MIRING & GEDE) */
/* Tambahin .snap-active di sini biar Opacity-nya jadi 1 */
.snap-active { 
    opacity: 1 !important; 
    visibility: visible !important; 
}

.snap-active.card-left { 
    transform: translateX(0) translateY(0) rotate(-8deg) !important; 
}

.snap-active.card-center { 
    transform: translateY(-20px) scale(1.1) !important; 
    z-index: 10 !important; 
}

.snap-active.card-right { 
    transform: translateX(0) translateY(0) rotate(8deg) !important; 
}


/* --- RESPONSIVE KARTU IG (MUNGIL & SNAP DI HP) --- */
@media (max-width: 768px) {
    .ig-grid { 
        display: flex !important; 
        flex-direction: row !important; 
        justify-content: center !important; 
        align-items: center !important; 
        height: 400px !important; 
        width: 100% !important;
        overflow: visible !important;
        gap: 0 !important;
        padding: 0 10px !important;
    }

    .ig-card-wrapper {
        /* KUNCI: Margin negatif dikurangin biar gak saling telan */
        margin: 0 -60px !important; 
        position: relative !important;
        width: auto !important;
        transition: 0.5s;
    }

    /* Kartu tengah tetep di depan */
    .card-center { z-index: 10 !important; }
    .card-left, .card-right { z-index: 1 !important; }

    .ig-card {
        width: 220px !important; /* Kecilin dikit lebar dasarnya biar gak makan tempat */
        flex-shrink: 0;
    }

    /* KUNCI VISUAL: Samping dikecilin (0.6) biar tengah (0.85) kelihatan dominan */
    
    .snap-active.card-left { 
        transform: rotate(-10deg) scale(0.6) translateY(20px) translateX(-10px) !important; 
        opacity: 1 !important;
        visibility: visible !important;
    }

    .snap-active.card-center { 
        transform: scale(0.85) translateY(-10px) !important; 
        opacity: 1 !important;
        visibility: visible !important;
    }

    .snap-active.card-right { 
        /* Paksa geser keluar dikit (translateX) biar nongol */
        transform: rotate(10deg) scale(0.6) translateY(20px) translateX(10px) !important; 
        opacity: 1 !important;
        visibility: visible !important;
    }

    /* UI IG super mungil */
    .ig-caption, .ig-user { font-size: 0.6rem !important; }
    .ig-header, .ig-footer { padding: 6px !important; }
}



/* --- TESTIMONI AREA STYLE --- */
.testi-section {
    padding: 100px 0;
    background-color: #F8FAFC;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testi-card {
    background: white;
    padding: 35px;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.03);
    border: 1px solid #f1f5f9;
    transition: all 0.4s ease;
}

.testi-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 45px rgba(42, 91, 177, 0.08);
}

.testi-stars {
    color: #FFD700;
    margin-bottom: 20px;
    font-size: 0.85rem;
}

.testi-card p {
    font-size: 1rem;
    color: #475569;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 25px;
}

.testi-user {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
}

.testi-user img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.user-info h4 {
    font-size: 1rem;
    color: var(--navy);
    margin: 0;
}

.user-info span {
    font-size: 0.8rem;
    color: #94a3b8;
}

/* Biar ikutan ngantre pas muncul (Animasi Scroll) */
.testi-grid .testi-card:nth-child(1) { transition-delay: 0.1s; }
.testi-grid .testi-card:nth-child(2) { transition-delay: 0.2s; }
.testi-grid .testi-card:nth-child(3) { transition-delay: 0.3s; }


/* --- FAQ STYLE --- */
.faq-section { padding: 80px 0; background: #f8fafc; }

.faq-wrapper {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
}

.faq-question:hover { background: #f1f5f9; }

.faq-question h3 {
    font-size: 1rem;
    color: var(--navy);
    margin: 0;
}

.faq-question i {
    font-size: 0.9rem;
    color: var(--gold);
    transition: 0.4s;
}

.faq-answer {
    max-height: 0; /* Sembunyi secara default */
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: #fff;
}

.faq-answer p {
    padding: 0 25px 20px;
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Class saat aktif (buka) */
.faq-item.active .faq-answer {
    max-height: 200px; /* Batasin tinggi biar transisinya jalan */
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* --- FIX FOOTER GELAP (BIAR LOGO KELIHATAN) --- */
footer {
    padding: 100px 0 50px;
    background-color: #0D2E3D !important; /* Navy yang sangat gelap dari palet mereka */
    color: #cbd5e1;
    text-align: center;
    border-top: 4px solid var(--gold); /* Garis Kuning Logo sebagai pemisah */
}

.footer-logo {
    width: 200px; /* Sesuai request: GEDE */
    height: auto;
    margin-bottom: 30px;
    /* Kalau logo lo aslinya warna warni, hapus baris filter di bawah ini */
    filter: brightness(0) invert(1); 
}

.footer-desc {
    font-size: 1rem;
    color: #94a3b8;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- IKON SOSMED BULAT (PENTING) --- */
.footer-social-pure {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 50px;
}

.footer-social-pure a {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.05); /* Efek kaca */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    text-decoration: none;
    transition: 0.4s;
    border: 1px solid rgba(255,255,255,0.1);
}

.footer-social-pure a:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(198, 154, 83, 0.3);
}

.footer-copy {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.8rem;
    color: #64748b;
}

.footer-copy span {
    color: #cbd5e1;
    font-weight: 600;
}


/* ==========================================================================
   --- KUNCI ANIMASI SCROLL (FIXED & SMOOTH) ---
   ========================================================================== */

/* 1. Kondisi Awal: Sembunyi & Geser ke Bawah */
.p-card, .testi-card, .section-header, .why-card, 
.ig-card-wrapper, .hero-content, .faq-item, .how-to-book .step-card {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    visibility: hidden;
}

/* 2. Kondisi Pas Muncul (Dipicu oleh JS) */
.show-animate {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
    visibility: visible !important;
}

/* --- EFEK NGANTRE (STAGGERED DELAY) --- */
/* Kartu Paket */
.package-grid .p-card:nth-child(1) { transition-delay: 0.1s; }
.package-grid .p-card:nth-child(2) { transition-delay: 0.2s; }
.package-grid .p-card:nth-child(3) { transition-delay: 0.3s; }

/* Kenapa Choose Us */
.why-grid .why-card:nth-child(1) { transition-delay: 0.1s; }
.why-grid .why-card:nth-child(2) { transition-delay: 0.2s; }
.why-grid .why-card:nth-child(3) { transition-delay: 0.3s; }

/* Testimoni */
.testi-grid .testi-card:nth-child(1) { transition-delay: 0.1s; }
.testi-grid .testi-card:nth-child(2) { transition-delay: 0.2s; }
.testi-grid .testi-card:nth-child(3) { transition-delay: 0.3s; }