/* TEMA WARNA: BLACK & GOLD ELEGANT */
:root {
    --primary: #121212; /* Hitam Gelap (Background Utama) */
    --secondary: #1E1E1E; /* Hitam Abu-abu (Background Kartu) */
    --gold: #D4AF37; /* Emas Mewah */
    --gold-light: #F3E5AB; /* Emas Terang untuk hover */
    --text-light: #F5F5F5; /* Putih Tulang untuk Teks */
    --text-muted: #A0A0A0; /* Abu-abu untuk teks deskripsi */
}

* {
    margin: 0; padding: 0; box-sizing: border-box; text-decoration: none; list-style: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--primary);
    color: var(--text-light);
    overflow-x: hidden;
}

/* --- ANIMASI --- */
.reveal {
    position: relative;
    transform: translateY(40px);
    opacity: 0;
    transition: all 0.8s ease;
}

.reveal.active {
    transform: translateY(0);
    opacity: 1;
}

/* --- HEADER & NAVBAR --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0; z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2); /* Garis emas tipis di bawah header */
}

.logo-container { display: flex; align-items: center; gap: 10px; }

/* LOGO NAVBAR (Disesuaikan) */
.navbar-logo { 
    width: auto; /* Biar tinggi menyesuaikan */
    height: 40px; /* Tinggi diset agar rapi */
    max-width: 150px; /* Batasi lebar maksimal */
    object-fit: contain; /* Gambar tidak terpotong */
    /* Menghapus radius dan border agar logo asli terlihat jelas */
}

.logo-text { font-weight: 800; font-size: 1.3rem; color: var(--text-light); letter-spacing: -0.5px; }
.logo-text span { color: var(--gold); }

/* Navigasi Desktop */
.nav-menu { display: flex; align-items: center; gap: 30px; }
.nav-link { color: var(--text-light); font-weight: 600; font-size: 1rem; transition: 0.3s; }
.nav-link:hover { color: var(--gold); }

.btn-nav {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: 0.3s;
}

.btn-nav:hover { background: var(--gold); color: var(--primary); box-shadow: 0 0 15px rgba(212, 175, 55, 0.4); }

/* Hamburger Menu (Sembunyi di Desktop) */
.menu-toggle { display: none; flex-direction: column; cursor: pointer; gap: 5px; z-index: 1001; }
.menu-toggle .bar { width: 25px; height: 3px; background-color: var(--gold); transition: all 0.3s ease; border-radius: 5px; }

/* --- HERO --- */
#hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('https://images.unsplash.com/photo-1545173168-9f1947eeca99?q=80&w=2070') center/cover;
    position: relative;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(18, 18, 18, 0.85), rgba(18, 18, 18, 1));
}

.hero-content { position: relative; z-index: 1; max-width: 800px; padding: 0 20px; }

/* LOGO HERO (Ditambahkan) */
.hero-logo {
    display: block;
    margin: 0 auto 20px auto; /* Center dan margin bawah */
    width: auto;
    height: 100px; /* Sesuaikan tinggi agar proporsional */
    max-width: 250px;
    object-fit: contain;
}

.badge { border: 1px solid var(--gold); color: var(--gold); padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; }
.hero-content h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800; margin: 20px 0; line-height: 1.2; color: var(--text-light); }
.hero-content p { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 30px; }

.btn-main { background: var(--gold); color: var(--primary); padding: 15px 35px; border-radius: 10px; font-weight: 700; display: inline-block; margin-right: 15px; transition: 0.3s; }
.btn-sub { border: 2px solid var(--gold); color: var(--gold); padding: 13px 35px; border-radius: 10px; font-weight: 700; display: inline-block; transition: 0.3s; }
.btn-main:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3); }
.btn-sub:hover { background: var(--gold); color: var(--primary); transform: translateY(-3px); }

/* --- GLOBAL SECTION --- */
.container { max-width: 1200px; margin: 0 auto; padding: 80px 5%; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 2.2rem; color: var(--gold); font-weight: 800; }
.line { width: 60px; height: 3px; background: var(--gold); margin: 15px auto; border-radius: 10px; }

/* --- PAS GRID --- */
.pas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.pas-card { background: var(--secondary); padding: 40px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.05); transition: 0.4s; text-align: center; }
.pas-card:hover { transform: translateY(-10px); border-color: var(--gold); box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1); }
.pas-icon { font-size: 3rem; margin-bottom: 20px; color: var(--gold); }
.pas-card h3 { color: var(--text-light); margin-bottom: 15px; }
.pas-card p { color: var(--text-muted); }

/* Highlight Box untuk Solusi */
.highlight { background: linear-gradient(145deg, var(--secondary), #2a2a2a); border: 1px solid var(--gold); }

/* --- TESTIMONIALS --- */
#testimonials { background-color: #0a0a0a; }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.testi-card { background: var(--secondary); padding: 30px; border-radius: 15px; border-left: 3px solid var(--gold); }
.stars { color: var(--gold); margin-bottom: 15px; font-size: 1.2rem; }
.testi-card p { font-style: italic; color: var(--text-muted); margin-bottom: 20px; line-height: 1.6; }
.testi-card h4 { color: var(--gold); font-weight: 700; }

/* --- CONTACT --- */
.contact-box { background: var(--secondary); border-radius: 30px; padding: 60px 40px; text-align: center; border: 1px solid rgba(212, 175, 55, 0.2); }
.contact-box h2 { color: var(--gold); font-weight: 800; margin-bottom: 10px;}
.contact-box p { color: var(--text-muted); }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 40px; }

.c-item { color: var(--text-light); padding: 30px; background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.05); border-radius: 20px; transition: 0.3s; display: flex; flex-direction: column; align-items: center; }
.c-item i { font-size: 2.2rem; color: var(--gold); margin-bottom: 15px; }
.c-item span { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 5px; }
.c-item strong { font-size: 1.1rem; color: var(--text-light); }
.c-item small { color: var(--gold); font-size: 0.8rem; margin-top: 5px;}
.c-item:hover { background: var(--gold); transform: translateY(-5px); }
.c-item:hover i, .c-item:hover span, .c-item:hover strong, .c-item:hover small { color: var(--primary); }

.location-item { cursor: default; } /* Bikin kotak lokasi ga berubah kursornya jadi tangan */

/* --- FOOTER (Diperkecil) --- */
footer { text-align: center; padding: 20px; background: #000; color: var(--text-muted); font-size: 0.9rem; border-top: 1px solid rgba(255,255,255,0.1); }

/* Mengecilkan padding khusus untuk container di dalam footer agar footer jadi kecil */
footer .container { padding: 10px 5%; }

/* --- RESPONSIVE MOBILE & TABLET --- */
@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    
    .nav-menu {
        position: absolute; top: 100%; left: 0; width: 100%;
        background-color: rgba(18, 18, 18, 0.98);
        border-bottom: 1px solid var(--gold);
        flex-direction: column; padding: 20px 0; gap: 20px;
        transform: translateY(-150%); opacity: 0; transition: all 0.4s ease; z-index: -1;
    }
    .nav-menu.active { transform: translateY(0); opacity: 1; }
    .nav-link { font-size: 1.2rem; }

    .menu-toggle.is-active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.is-active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.is-active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .hero-btns { display: flex; flex-direction: column; gap: 15px; }
    .btn-main, .btn-sub { margin-right: 0; width: 100%; }
    .contact-box { padding: 40px 20px; }
}