* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

:root {
    --hijau-tua: #059669;
    --hijau-muda: #10B981;
    --hijau-lembut: #D1FAE5;
    --putih: #FFFFFF;
    --gelap: #0F172A;
    --abu: #64748B;
    --kuning: #F59E0B;
    --garis: rgba(5, 150, 105, 0.15);
}

body {
    background: linear-gradient(135deg, #F0FDF4 0%, #CCFBF1 50%, #E0F2FE 100%);
    color: var(--gelap);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === NAVBAR === */
.navbar {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--garis);
    position: sticky;
    top: 0;
    z-index: 99;
}
.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.nav-logo strong { font-size: 15px; color: var(--gelap); }
.nav-logo span { font-size: 10px; color: var(--abu); }
.nav-menu { display: flex; gap: 18px; }
.nav-menu a {
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    color: var(--gelap);
    transition: color 0.2s;
}
.nav-menu a:hover { color: var(--hijau-tua); }
.btn-wa-nav {
    background: #25D366;
    color: white !important;
    padding: 8px 14px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    transition: all 0.2s;
}
.btn-wa-nav:hover { transform: scale(1.05); background: #128C7E; }

/* === HERO === */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 50px 0;
}
.label-buka {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--hijau-tua);
    background: var(--hijau-lembut);
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
}
.hero h1 {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--gelap);
}
.hero p {
    color: var(--abu);
    font-size: 15px;
    margin-bottom: 24px;
}
.tombol-hero {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}
.btn-utama {
    background: var(--hijau-tua);
    color: white;
    padding: 12px 22px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.2s;
}
.btn-utama:hover { background: var(--hijau-muda); transform: translateY(-2px); }
.btn-kedua {
    background: white;
    color: var(--hijau-tua);
    border: 2px solid var(--hijau-tua);
    padding: 12px 22px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.2s;
}
.btn-kedua:hover { background: var(--hijau-lembut); }
.stat-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.stat-box > div {
    background: rgba(255,255,255,0.7);
    border: 1px solid var(--garis);
    padding: 14px;
    border-radius: 12px;
    text-align: center;
}
.stat-box strong {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: var(--hijau-tua);
}
.stat-box span { font-size: 10px; color: var(--abu); font-weight: 600; }

/* GAMBAR DI KANAN HERO */
.hero-kanan { display: flex; justify-content: center; }
.wadah-gambar { position: relative; width: 100%; max-width: 340px; }
.gambar-hero {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(5, 150, 105, 0.25);
    display: block;
}
.label-best {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: var(--kuning);
    color: white;
    font-size: 10px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

/* === SECTION UMUM === */
.section { padding: 50px 0; }
.judul-section {
    text-align: center;
    margin-bottom: 40px;
}
.judul-section small {
    color: var(--hijau-tua);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}
.judul-section h2 {
    font-size: 30px;
    font-weight: 800;
    margin-top: 8px;
    color: var(--gelap);
}
.judul-section p {
    color: var(--abu);
    font-size: 14px;
    max-width: 500px;
    margin: 10px auto 0;
}

/* === KARTU LAYANAN === */
.grid-layanan {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}
.kartu-layanan {
    background: rgba(255,255,255,0.85);
    border: 1px solid var(--garis);
    border-radius: 18px;
    padding: 26px;
    transition: all 0.3s ease;
    position: relative;
    padding-top: 40px;
}
.kartu-layanan:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(5, 150, 105, 0.15);
}
.badge {
    position: absolute;
    top: 14px;
    left: 20px;
    font-size: 9px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 12px;
    letter-spacing: 1px;
}
.badge.best { background: var(--kuning); color: white; }
.badge.koreksi { background: #DBEAFE; color: #1E40AF; }
.badge.kecil {
    position: static;
    display: inline-block;
    margin-left: 6px;
    font-size: 8px;
    padding: 2px 8px;
}
.kartu-layanan h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--gelap);
}
.kartu-layanan p {
    font-size: 13px;
    color: var(--abu);
    margin-bottom: 16px;
    line-height: 1.6;
}
.kartu-layanan ul { list-style: none; }
.kartu-layanan li {
    font-size: 12px;
    font-weight: 600;
    color: var(--gelap);
    margin-bottom: 6px;
}

/* === TABEL TARIF === */
.wadah-tabel {
    background: rgba(255,255,255,0.9);
    border: 1px solid var(--garis);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.06);
}
.tabel-tarif {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.tabel-tarif thead {
    background: var(--hijau-tua);
    color: white;
}
.tabel-tarif th {
    padding: 16px;
    text-align: left;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.tabel-tarif th:nth-child(2) { text-align: center; }
.tabel-tarif th:nth-child(3) { text-align: right; }
.tabel-tarif td {
    padding: 16px;
    border-bottom: 1px solid var(--garis);
    font-weight: 500;
}
.tabel-tarif td:nth-child(2) { text-align: center; color: var(--abu); }
.tabel-tarif .harga {
    text-align: right;
    font-weight: 800;
    color: var(--hijau-tua);
}
.tabel-tarif tbody tr:last-child td { border-bottom: none; }
.tabel-tarif tbody tr:hover { background: var(--hijau-lembut); }
.baris-paket {
    background: linear-gradient(90deg, var(--hijau-lembut), transparent);
    font-weight: 600;
}

/* === FOOTER === */
.footer {
    text-align: center;
    padding: 24px;
    font-size: 12px;
    color: var(--abu);
    border-top: 1px solid var(--garis);
    margin-top: 40px;
    background: rgba(255,255,255,0.5);
}

/* === WA MENGAPUNG === */
.wa-mengapung {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: transform 0.2s;
}
.wa-mengapung:hover { transform: scale(1.1); }

/* === RESPONSIF HP === */
@media (max-width: 768px) {
    .nav-menu { display: none; }
    .hero {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 0;
        text-align: center;
    }
    .hero h1 { font-size: 26px; }
    .tombol-hero { justify-content: center; }
    .stat-box { grid-template-columns: 1fr 1fr 1fr; }
    .judul-section h2 { font-size: 22px; }
    .tabel-tarif { font-size: 12px; }
    .tabel-tarif th, .tabel-tarif td { padding: 12px 8px; }
}
/* 
========================================
   TAMBAHAN: TENTANG KAMI, TIM, SERTIFIKAT
   ======================================== */

/* --- TENTANG PEMILIK --- */
.tentang-wrap {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: center;
    background: rgba(255,255,255,0.9);
    border: 1px solid var(--garis);
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 10px 35px rgba(5, 150, 105, 0.08);
}
.foto-pemilik {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(5, 150, 105, 0.25);
    border: 4px solid white;
}
.tentang-teks small {
    color: var(--hijau-tua);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}
.tentang-teks h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--gelap);
    margin: 8px 0 15px;
    line-height: 1.2;
}
.tentang-teks h3 {
    font-size: 15px;
    color: var(--hijau-tua);
    font-weight: 700;
    margin-bottom: 15px;
}
.tentang-teks p {
    color: var(--abu);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 12px;
}
.tentang-teks ul {
    list-style: none;
    margin-top: 15px;
}
.tentang-teks li {
    font-size: 13px;
    font-weight: 600;
    color: var(--gelap);
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}
.tentang-teks li::before {
    content: "✅";
    position: absolute;
    left: 0;
    top: 0;
}

/* --- TIM TERAPIS --- */
.grid-tim {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.kartu-tim {
    background: rgba(255,255,255,0.9);
    border: 1px solid var(--garis);
    border-radius: 18px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}
.kartu-tim:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(5, 150, 105, 0.15);
}
.foto-tim {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--hijau-lembut);
    margin-bottom: 15px;
}
.kartu-tim h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--gelap);
    margin-bottom: 5px;
}
.kartu-tim .jabatan {
    font-size: 12px;
    color: var(--hijau-tua);
    font-weight: 700;
    margin-bottom: 10px;
}
.kartu-tim p {
    font-size: 12px;
    color: var(--abu);
    line-height: 1.6;
}

/* --- GALERI SERTIFIKAT --- */
.grid-sertifikat {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 30px;
}
.kartu-sertifikat {
    background: white;
    border: 1px solid var(--garis);
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}
.kartu-sertifikat:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(5, 150, 105, 0.2);
    border-color: var(--hijau-tua);
}
.kartu-sertifikat img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}
.label-sertifikat {
    padding: 10px 12px;
    font-size: 11px;
    font-weight: 800;
    color: var(--gelap);
    text-align: center;
    background: var(--hijau-lembut);
    letter-spacing: 0.3px;
}
.zoom-tanda {
    position: absolute;
    top: 10px; right: 10px;
    background: rgba(5, 150, 105, 0.9);
    color: white;
    width: 30px; height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    opacity: 0;
    transition: opacity 0.3s;
}
.kartu-sertifikat:hover .zoom-tanda { opacity: 1; }

/* --- LIGHTBOX (KLIK SERTIFIKAT JADI BESAR) --- */
.lightbox {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    cursor: zoom-out;
}
.lightbox.aktif { display: flex; }
.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 0 50px rgba(255,255,255,0.1);
}
.tutup-lightbox {
    position: absolute;
    top: 20px; right: 30px;
    color: white;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
}

/* --- RESPONSIF KHUSUS BAGIAN BARU INI --- */
@media (max-width: 768px) {
    .tentang-wrap {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 25px 20px;
        text-align: center;
    }
    .foto-pemilik {
        max-width: 220px;
        margin: 0 auto;
    }
    .tentang-teks h2 { font-size: 22px; }
    .tentang-teks ul { text-align: left; }
}
/* 
========================================
   TAMBAHAN LENGKAP (TEMPLEK DI PALING BAWAH)
   Serasi 100% dengan tema CSS kamu yang sudah ada
   ======================================== */

/* ---------- 1. LOGO NAVBAR (SOLUSI LOGO RAKSASA) ---------- */
.nav-logo {
    flex-direction: row !important;   /* Ubah dari kolom jadi gambar + teks sejajar */
    align-items: center;
    gap: 12px;
}
.logo-klinik {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid var(--hijau-lembut);
    background: white;
    flex-shrink: 0;
}
.teks-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.teks-logo strong { font-size: 15px; color: var(--gelap); }
.teks-logo span { font-size: 10px; color: var(--abu); }

/* Responsif logo di HP */
@media (max-width: 768px){
    .logo-klinik { width: 38px; height: 38px; }
    .teks-logo strong { font-size: 14px; }
    .teks-logo span { font-size: 9px; }
}

/* ---------- 2. GRID KELUHAN YANG BISA DIATASI ---------- */
.grid-keluhan {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 12px;
    margin-top: 30px;
}
.kartu-keluhan {
    background: rgba(255,255,255,0.85);
    border: 1px solid var(--garis);
    color: var(--gelap);
    padding: 14px 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 13px;
    border-left: 4px solid var(--hijau-tua);
    transition: all 0.25s ease;
    cursor: default;
}
.kartu-keluhan:hover {
    transform: translateY(-2px);
    background: var(--hijau-lembut);
    border-color: var(--hijau-tua);
    box-shadow: 0 6px 18px rgba(5, 150, 105, 0.12);
}

/* ---------- 3. KARTU PAKET HEMAT MENONJOL ---------- */
.kartu-paket {
    background: rgba(255,255,255,0.9);
    border: 2px solid var(--garis);
    border-radius: 18px;
    padding: 28px 20px 22px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}
.kartu-paket:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(5, 150, 105, 0.15);
    border-color: var(--hijau-muda);
}
.kartu-paket.populer {
    border-color: var(--hijau-tua);
    background: linear-gradient(180deg, var(--hijau-lembut) 0%, rgba(255,255,255,0.95) 40%);
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.18);
}
.badge-best-paket {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--hijau-tua);
    color: white;
    font-size: 10px;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 20px;
    letter-spacing: 1px;
    white-space: nowrap;
}
.nama-paket {
    font-size: 11px;
    color: var(--abu);
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.isi-paket {
    font-size: 14px;
    font-weight: 700;
    color: var(--gelap);
    margin-bottom: 16px;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.harga-paket {
    font-size: 28px;
    font-weight: 800;
    color: var(--hijau-tua);
    margin-bottom: 6px;
    line-height: 1;
}
.hemat {
    font-size: 11px;
    color: #DC2626;
    font-weight: 800;
    background: #FEE2E2;
    display: inline-block;
    padding: 3px 10px;
    border-radius: 10px;
}

/* Responsif paket di HP */
@media (max-width: 768px){
    .kartu-paket.populer { transform: none; }
    .harga-paket { font-size: 24px; }
}

/* ---------- 4. TESTIMONI PASIEN ---------- */
.grid-testimoni {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 18px;
    margin-top: 30px;
}
.kartu-testi {
    background: rgba(255,255,255,0.9);
    border: 1px solid var(--garis);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.kartu-testi:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(5, 150, 105, 0.12);
    border-color: var(--hijau-muda);
}
.bintang {
    color: var(--kuning);
    font-size: 15px;
    margin-bottom: 12px;
    letter-spacing: 2px;
    line-height: 1;
}
.isi-testi {
    font-size: 13.5px;
    line-height: 1.75;
    color: var(--gelap);
    margin-bottom: auto;
    flex-grow: 1;
    font-style: italic;
}
.nama-testi {
    font-size: 12px;
    font-weight: 800;
    color: var(--hijau-tua);
    padding-top: 14px;
    margin-top: 16px;
    border-top: 1px solid var(--garis);
}
.nama-testi span {
    font-weight: 500;
    color: var(--abu);
    margin-left: 2px;
}

/* ---------- 5. INFO KLINIK SEBELUM FOOTER ---------- */
.grid-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 14px;
}
.kartu-info {
    background: rgba(255,255,255,0.9);
    border: 1px solid var(--garis);
    border-radius: 16px;
    padding: 22px 18px;
    text-align: center;
    transition: all 0.25s ease;
}
.kartu-info:hover {
    transform: translateY(-2px);
    border-color: var(--hijau-muda);
    box-shadow: 0 8px 22px rgba(5, 150, 105, 0.1);
}
.ikon-info {
    font-size: 30px;
    margin-bottom: 10px;
    line-height: 1;
}
.kartu-info h4 {
    color: var(--hijau-tua);
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}
.kartu-info p {
    font-size: 12.5px;
    line-height: 1.7;
    color: var(--gelap);
    margin: 0;
    font-weight: 600;
}
.kartu-info a {
    display: inline-block;
    margin-top: 8px;
    font-size: 12px;
    font-weight: 800;
    color: var(--hijau-tua);
    text-decoration: none;
    transition: color 0.2s;
}
.kartu-info a:hover { color: var(--hijau-muda); }

/* ---------- 6. PERBAIKAN LIGHTBOX SUPAYA PASTI MUNCUL ---------- */
.lightbox {
    display: none !important;
}
.lightbox.aktif {
    display: flex !important;
}

/* ---------- 7. PERBAIKAN SEMENTARA JIKA MENU DI HP TETAP MAU MUNCUL ---------- */
/* (Opsional) Kalau mau menu di HP tetap muncul, hapus tanda komentar di bawah:
@media (max-width: 768px) {
    .nav-menu {
        display: flex;
        gap: 10px;
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        padding-top: 8px;
        border-top: 1px solid var(--garis);
        margin-top: 8px;
    }
    .nav-menu a { font-size: 11px; }
}
*/
/* =====================================================
   ✅ PERBAIKAN FINAL: SEMBUNYIKAN MAPS ANEH HANYA DI INDEX
   ❌ TIDAK AKAN MENGHAPUS MAPS DI LOKASI.HTML
   ===================================================== */

/* 1) HANYA sembunyikan maps yang ADA DI DALAM SECTION INFO KLINIK / SETELAH SERTIFIKAT */
section#info-klinik ~ iframe[src*="google.com/maps"],
section#sertifikat ~ iframe[src*="google.com/maps"],
main > iframe[src*="google.com/maps"] {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    border: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
}

/* 2) ✅ PAKSA MAPS DI LOKASI.HTML TETAP MUNCUL (OVERRIDE KUAT) */
div.peta,
div.peta iframe {
    display: block !important;
    width: 100% !important;
    min-height: 450px !important;
    height: 450px !important;
    visibility: visible !important;
    opacity: 1 !important;
    border: 1px solid var(--garis) !important;
    border-radius: 18px !important;
    overflow: hidden !important;
}

/* 3) Hilangkan indikator scroll horizontal titik merah di HP */
html, body {
    overflow-x: hidden !important;
    max-width: 100% !important;
}
* {
    box-sizing: border-box !important;
    max-width: 100% !important;
}
/* ============================================
   ✅ MENU HAMBURGER KHUSUS HP
   ✅ DI DESKTOP TIDAK BERUBAH SEKALI PUN
   ============================================ */

/* Tombol 3 garis: HANYA MUNCUL DI HP */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: 10px;
    flex-direction: column;
    gap: 5px;
    z-index: 100;
}
.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--hijau-tua);
    border-radius: 3px;
    transition: all 0.3s;
}

/* ✅ SAAT LAYAR KECIL (HP): Menu lama hilang, hamburger muncul */
@media (max-width: 900px) {
    .hamburger {
        display: flex !important;
    }

    /* Sembunyikan menu panjang */
    .nav-menu {
        position: absolute;
        top: 70px;
        right: 20px;
        left: 20px;
        background: white;
        border: 1px solid var(--garis);
        border-radius: 16px;
        padding: 10px;
        flex-direction: column;
        gap: 0 !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.12);
        display: none !important;
        z-index: 99;
    }

    /* Saat hamburger diklik: Menu MUNCUL */
    .nav-menu.aktif {
        display: flex !important;
    }

    /* Setiap menu jadi kotak rapi */
    .nav-menu a {
        padding: 14px 16px;
        border-bottom: 1px solid var(--garis);
        font-size: 14px;
        font-weight: 600;
        color: var(--gelap);
    }
    .nav-menu a:last-child {
        border-bottom: none;
    }
    .nav-menu a:hover {
        background: var(--hijau-lembut);
        color: var(--hijau-tua);
        border-radius: 10px;
    }

    /* Tombol WA tetap kecil di HP */
    .btn-wa-nav {
        padding: 10px 14px !important;
        font-size: 12px !important;
    }
}

/* Animasi ikon berubah jadi X saat dibuka */
.hamburger.aktif span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.aktif span:nth-child(2) { opacity: 0; }
.hamburger.aktif span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
