/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   VARIABLES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
:root {
    --bg-main: #070B14;
    --bg-surface: #0D1527;
    --bg-glass: rgba(255, 255, 255, 0.03);
    --border-glass: rgba(255, 255, 255, 0.08);
    
    --primary-cyan: #00F0FF;
    --primary-blue: #2563EB;
    --accent-glow: rgba(0, 240, 255, 0.2);
    
    --text-white: #FFFFFF;
    --text-soft: #94A3B8;
    
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BASE STYLES & ELEMENTOR FIXES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
body {
    font-family: var(--font-main);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.site-main { padding-top: 100px; }

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

a { text-decoration: none; transition: var(--transition-smooth); }
ul { list-style: none; margin: 0; padding: 0; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HEADER STYLES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.header-main {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    padding: 24px 0;
    background-color: var(--bg-main); 
    color: var(--text-white);
    transition: var(--transition-smooth);
    border-bottom: 1px solid var(--border-glass);
}

.header-main.scrolled {
    background: rgba(7, 11, 20, 0.95);
    backdrop-filter: blur(12px);
    padding: 14px 0;
}

.header-container { display: flex; justify-content: space-between; align-items: center; }
.logo-img { height: 45px; width: auto; display: block; }

.nav-list { display: flex; gap: 32px; }
.nav-link, .nav-list li a { font-size: 15px; font-weight: 500; color: var(--text-soft) !important; }
.nav-link:hover, .nav-list li.current-menu-item a { color: var(--primary-cyan) !important; }

.header-action { display: flex; align-items: center; gap: 20px; }
.btn-cta-whatsapp {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-cyan));
    color: white !important;
    padding: 12px 28px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px var(--accent-glow);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER STYLES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.footer-main {
    background-color: var(--bg-surface);
    color: var(--text-white);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-glass);
    margin-top: 0;
}

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 60px; }

/* Perbaikan Footer Logo */
.footer-logo-wrapper { display: flex; align-items: center; margin-bottom: 24px; }
.footer-logo-img { max-width: 200px; height: auto; display: block; } /* Membatasi agar logo tidak raksasa */

.footer-info p { color: var(--text-soft); line-height: 1.6; }
.footer-links h4, .footer-contact h4 { color: white; margin-bottom: 24px; font-size: 18px; margin-top: 0; }
.footer-links ul li { margin-bottom: 12px; }
.footer-links ul li a { color: var(--text-soft) !important; }
.footer-links ul li a:hover { color: var(--primary-cyan) !important; padding-left: 5px; }
.footer-contact p { margin-bottom: 8px; color: var(--text-soft); }

.footer-bottom {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-glass);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-soft);
    font-size: 14px;
}
.social-links { display: flex; gap: 20px; }
.social-links a { color: var(--text-soft) !important; }
.social-links a:hover { color: var(--primary-cyan) !important; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MODAL OVERLAY
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(7, 11, 20, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
}
.modal-overlay.active { display: flex; }
.modal-content-glass { background: var(--bg-surface); border: 1px solid var(--border-glass); border-radius: 24px; width: 100%; max-width: 900px; position: relative; overflow: hidden; }
.modal-close { position: absolute; top: 20px; right: 20px; background: var(--bg-main); border: 1px solid var(--border-glass); color: white; font-size: 1.5rem; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; z-index: 10; outline: none; -webkit-tap-highlight-color: transparent; }
.modal-body { display: grid; grid-template-columns: 1fr 1.2fr; }
.modal-image-context img { width: 100%; height: 100%; object-fit: cover; min-height: 400px; }
.modal-info-context { padding: 50px; display: flex; flex-direction: column; justify-content: center; }
.text-gradient { background: linear-gradient(to right, #fff, var(--primary-cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 15px; margin-top: 0; font-size: 2rem;}
.modal-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 25px 0 35px; }
.meta-label { display: block; color: var(--text-soft); font-size: 0.8rem; margin-bottom: 5px; text-transform: uppercase; }
.meta-value { display: block; font-weight: 700; color: var(--primary-cyan); font-size: 1.1rem; }
.btn-cta-large { background: var(--primary-cyan); color: var(--bg-main) !important; padding: 16px 32px; border-radius: 12px; font-weight: 800; text-align: center; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MOBILE TOGGLE & RESPONSIVE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.mobile-toggle { 
    display: none; 
    background: none; 
    border: none; 
    cursor: pointer; 
    padding: 10px; 
    outline: none; /* Hilangkan garis biru */
    -webkit-tap-highlight-color: transparent; /* MENGHILANGKAN WARNA PINK SAAT DIKLIK */
}
.bar { display: block; width: 25px; height: 2px; background-color: white; margin: 5px 0; transition: 0.4s; }

@media (max-width: 992px) {
    /* Header Responsive */
    .nav-menu { display: none; }
    .btn-cta-whatsapp { display: none; } /* MENGHILANGKAN TOMBOL WA DI MOBILE AGAR TIDAK SESAK */
    .mobile-toggle { display: block; }
    
    /* Footer Responsive */
    .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .footer-logo-wrapper { justify-content: center; } /* Rata tengah logo di mobile */
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
    .social-links { justify-content: center; }
    
    /* Modal Responsive */
    .modal-body { grid-template-columns: 1fr; }
    .modal-image-context img { min-height: 250px; }
    .modal-info-context { padding: 30px; }
}