.elementor-209 .elementor-element.elementor-element-23305d9{--display:flex;--min-height:0px;--margin-top:-117px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-209 .elementor-element.elementor-element-6f3c579{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}/* Start custom CSS for html, class: .elementor-element-6f3c579 *//* --- Google Font: Poppins --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* --- Variabel Warna & Reset CSS --- */
:root {
    --dark-blue-color: #0D1740; /* Warna utama sesuai permintaan */
    --light-accent-color: #87CEEB; /* Warna aksen biru muda */
    --white-color: #FFFFFF;
    --dark-color: #222;
    --body-bg-color: #f5f5f5;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--body-bg-color);
    padding-top: 150px; 
    padding-bottom: 100px;
    /* Catatan: padding-top 150px untuk memberi ruang bagi header desktop.
      padding-bottom 100px untuk memberi ruang bagi nav mobile.
      Sesuaikan ini jika perlu.
    */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* --- Style Header & Navbar Desktop (Floating Capsule) --- */
.header {
    position: fixed;
    top: 0.8cm;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px;
    background-color: var(--dark-blue-color);
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 15px 15px;
    box-shadow: 0 10px 35px rgba(13, 23, 64, 0.5);
    z-index: 1000;
    display: none; /* Default hidden, akan 'block' di media query */
    border-radius: 50px;
    transition: top 0.3s, box-shadow 0.3s;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    padding: 0 30px;
}

.nav-logo img {
    height: 38px;
    display: block;
    filter: brightness(0) invert(1); /* Membuat logo putih agar kontras */
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 10px; /* Jarak antar menu item */
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.95rem; /* Sedikit disesuaikan */
    border-radius: 30px;
    transition: background-color 0.3s, color 0.3s;
}

.nav-link:hover, .nav-link.active {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white-color);
}

.nav-link .icon {
    font-size: 1.1rem;
}

/* --- Style Mega Menu --- */
.mega-menu {
    position: absolute;
    top: 120%; /* Posisi awal sedikit di bawah */
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    min-width: 500px;
    background-color: var(--white-color);
    box-shadow: var(--shadow);
    border-radius: var(--border-radius);
    padding: 25px;
    opacity: 0;
    visibility: hidden;
    transition: top 0.3s ease, opacity 0.3s ease, visibility 0.3s;
    z-index: 1001;
}

/* Munculkan mega-menu saat nav-item di-hover */
.nav-item:hover .mega-menu {
    top: 110%; /* Posisi akhir sedikit naik */
    opacity: 1;
    visibility: visible;
}

.mega-menu-content {
    display: grid;
    gap: 25px;
}

/* Grid layout untuk mega menu 'Profil' / 'Jelajahi' */
.mega-menu-profil {
    grid-template-columns: 1fr 1fr;
}
    
/* Grid layout untuk mega menu 'Mitra' / 'Info' */
.mega-menu-mitra {
     grid-template-columns: 1fr 2fr;
}

.mega-menu-header {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--dark-blue-color);
}

.mega-menu-list {
    list-style: none;
}

.mega-menu-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.mega-menu-list li a:hover {
    color: var(--dark-blue-color);
}

/* Style untuk kotak promo di mega menu */
.mega-menu-promo {
    background: linear-gradient(135deg, #eaf2ff, #f0f5ff);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mega-menu-promo h4 {
    color: var(--dark-color);
    margin-bottom: 10px;
}

.mega-menu-promo p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 15px;
}

.btn-promo {
    display: inline-block;
    background-color: var(--dark-blue-color);
    color: var(--white-color);
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}
.btn-promo:hover {
    background-color: #152240;
}

/* Tombol CTA (Call to Action) di navbar desktop */
.nav-cta .btn-whatsapp {
    background-color: var(--white-color);
    color: var(--dark-blue-color);
    font-weight: 600;
    border-radius: 30px;
    padding: 12px 25px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-cta .btn-whatsapp:hover {
    background-color: #f1f1f1;
    transform: translateY(-2px);
}
.nav-cta .btn-whatsapp .icon {
    font-size: 1.3rem;
}

/* --- Style Navbar Mobile (di Bawah) --- */
.mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: var(--dark-blue-color);
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 15px 15px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    font-weight: 500;
    transition: color 0.3s, transform 0.2s;
    padding: 5px;
    position: relative;
    flex: 1; /* Agar setiap item memenuhi ruang */
    text-align: center;
}
    
.mobile-nav-item.active {
    color: var(--white-color);
    transform: translateY(-5px); /* Efek 'pop' saat aktif */
}

.mobile-nav-item .icon {
    font-size: 1.5rem;
    margin-bottom: 4px;
}
    
/* Titik di bawah item aktif */
.mobile-nav-item.active::before {
    content: '';
    position: absolute;
    bottom: -5px;
    width: 8px;
    height: 8px;
    background-color: var(--white-color);
    border-radius: 50%;
}

/* --- Style Mobile Menu Panel (Samping) --- */
.mobile-menu-panel {
    position: fixed;
    top: 0;
    right: -100%; /* Mulai dari luar layar */
    width: 300px;
    height: 100%;
    background-color: var(--dark-blue-color);
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 15px 15px;
    z-index: 1002;
    box-shadow: -5px 0 25px rgba(0,0,0,0.1);
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 20px;
    display: flex;
    flex-direction: column;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
}
    
.mobile-menu-panel.open {
    right: 0; /* Pindah ke dalam layar */
}

.mobile-menu-header {
    display: flex;
    justify-content: center; /* Logo di tengah */
    align-items: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-logo img {
    height: 35px;
    filter: brightness(0) invert(1); /* Logo putih */
}
    
.mobile-menu-list {
    list-style: none;
    flex-grow: 1; /* Ambil sisa ruang */
    overflow-y: auto; /* Scroll jika menu terlalu panjang */
}

.mobile-menu-list li a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 10px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    border-radius: 30px;
    transition: background-color 0.3s, color 0.3s;
}
.mobile-menu-list li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white-color);
}
.mobile-menu-list .icon {
    font-size: 1.2rem;
    width: 22px;
    text-align: center;
}
    
/* Accordion Styling */
.mobile-menu-accordion details {
    margin-bottom: 5px;
}
.mobile-menu-accordion summary {
    list-style: none; /* Hapus panah default */
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 10px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s;
}
/* Hilangkan panah default di WebKit (Chrome, Safari) */
.mobile-menu-accordion summary::-webkit-details-marker {
    display: none;
}
.mobile-menu-accordion summary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
/* Ikon chevron kustom */
.mobile-menu-accordion summary::after {
    content: '\f078'; /* Font Awesome chevron down */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: auto;
    transition: transform 0.3s;
    font-size: 0.9rem;
}
.mobile-menu-accordion details[open] > summary::after {
    transform: rotate(180deg);
}
.mobile-menu-accordion .submenu {
    padding-left: 30px; /* Indentasi submenu */
    margin-top: 5px;
    list-style: none; /* Pastikan submenu juga tidak ada list style */
}
.mobile-menu-accordion .submenu a {
    padding: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.mobile-menu-footer {
    padding-top: 20px;
}

#close-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 30px;
    color: var(--white-color);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

#close-menu-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}
    
/* Overlay latar belakang saat menu mobile terbuka */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
}
.mobile-menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* --- Media Queries untuk Responsif --- */
/* Tampilkan header desktop dan sembunyikan nav mobile di layar besar */
@media (min-width: 992px) {
    .header {
        display: block;
    }
    .mobile-nav {
        display: none;
    }
}/* End custom CSS */