﻿@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700;800;900&display=swap');

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, rgb(8, 11, 40), #0e1a40);
    min-height: 100vh;
    color: white;
    user-select: none;
    -webkit-user-select: none;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Centered dengan background full-width */
    padding: 24px max(40px, calc((100% - 1200px) / 2 + 40px));
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(8, 11, 40, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(41, 182, 246, 0.18);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.logo img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.logo span {
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}



.menu {
    display: flex;
    align-items: center;
}

.menu a:not(.btn-nav) {
    margin: 0 15px;
    color: #29B6F6;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
}

.menu a:not(.btn-nav):hover,
.menu a.active {
    color: #1565C0;
}

.btn-nav {
    background: #1565C0;
    color: white;
    padding: 10px 22px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.btn-nav:hover {
    background: #29B6F6;
    box-shadow: 0 6px 20px rgba(41, 182, 246, 0.30);
}

/* HERO */
.hero {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 80px 60px 60px;
    min-height: calc(100vh - 72px);
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    gap: 40px;
}

/* KIRI */
.hero-left {
    flex: 1;
    min-width: 0;   /* izinkan menyempit dan wrap */
}

/* STATS */
.stats {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.stats h2 {
    margin: 0;
}

.stats span {
    color: #aaa;
    font-size: 14px;
}

/* BUTTON */
.btn-main {
    display: inline-block;
    text-decoration: none;
    background: #1565C0;
    border: none;
    padding: 15px 32px;
    border-radius: 30px;
    color: white;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.btn-main:hover {
    background: #29B6F6;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(41, 182, 246, 0.35);
}

/* KANAN */
.hero-right {
    display: flex;
    justify-content: center;
}

/* CARD */
.card {
    background: #f9fafb;
    color: black;
    padding: 25px;
    border-radius: 20px;
    width: 320px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* UPLOAD BOX */
.upload-box {
    border: 2px dashed #d1d5db;
    padding: 40px;
    text-align: center;
    border-radius: 15px;
    background: #f9fafb;
    transition: 0.3s;
}

.upload-box p {
    margin: 0;
    font-weight: 500;
}

.upload-box span {
    font-size: 12px;
    color: #888;
}

/* efek hover (biar kerasa bisa diklik) */
.upload-box:hover {
    border-color: #1565C0;
    background: #E1F5FE;
    cursor: pointer;
}

.file-input {
    display: none;
}



/* BUTTON UPLOAD */
.btn-Upload {
    width: 100%;
    padding: 12px;
    background: #1565C0;
    border: none;
    color: white;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;

}

/* SAAT DIHOVER */
.btn-Upload:hover {
    background: #29B6F6;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(41, 182, 246, 0.35);
}

.paket {
    margin-top: 15px;
}

.paket p {
    font-size: 14px;
    margin-bottom: 10px;
}

/* item paket */
.paket-item {
    display: block;
    background: #f3f4f6;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: 0.3s;
}

/* hover */
.paket-item:hover {
    background: #B3E5FC;
}

/* sembunyikan radio asli */
.paket-item input {
    display: none;
}

/* kalau dipilih */
.paket-item input:checked+span {
    color: #1565C0;
    font-weight: bold;
}

/* POPUP BACKGROUND */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
}

/* ISI POPUP */
.popup-content {
    background: white;
    color: black;
    padding: 25px;
    border-radius: 15px;
    width: 300px;
    text-align: center;
    animation: muncul 0.3s ease;
}

/* biar bisa jadi patokan posisi */
.paket-item {
    position: relative;
}

/* box info */
.info-box {
    position: absolute;
    left: -410px;
    top: 0;

    width: 350px;
    padding: 12px;
    border-radius: 14px;

    background: #f9f9ff;

    /* 🔥 OUTLINE UNGU GELAP */
    border: 2px solid #4c1d95;

    /* 🔥 GLOW HALUS */
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.3),
        0 0 0 2px rgba(41, 182, 246, 0.15);

    color: #111;
    font-size: 12px;

    opacity: 0;
    transform: translateX(20px);
    transition: 0.3s;
}

/* panah kecil */
.info-box::after {
    content: "";
    position: absolute;
    right: -50px;
    top: 15px;

    border-width: 8px;
    border-style: solid;
    border-color: transparent transparent transparent white;
}

/* muncul saat hover */
.paket-item:hover .info-box {
    opacity: 1;
    transform: translateX(0);
}

/* muncul saat dipilih */
.paket-item input:checked~.info-box {
    opacity: 1;
    transform: translateX(0);
}

/* default hidden */
.info-box {
    opacity: 0;
    transform: translateX(30px);
    pointer-events: none;
    outline-color: rgb(8, 11, 40);
    font-size: 16px;
}

/* tampil saat hover */
.paket-item:hover .info-box {
    opacity: 1;
    transform: translateX(0);
}

/* tampil saat dipilih */
.paket-item input:checked~.info-box {
    opacity: 1;
    transform: translateX(0);
}

/* 🔥 KUNCI: matikan hover lain kalau ada yang dipilih */
.paket:has(input:checked) .paket-item:hover .info-box {
    opacity: 0;
    transform: translateX(20px);
}

/* tetap tampilkan yang dipilih */
.paket-item input:checked~.info-box {
    opacity: 1 !important;
}

.kategori {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #555;
}

.paket-row {
    display: flex;
    gap: 10px;
}

.paket-item {
    user-select: none;
}

/* MODE HP */
@media (max-width: 768px) {

    /* HERO jadi ke bawah */
    .hero {
        flex-direction: column;
        padding: 40px 20px;
        text-align: center;
    }

    /* kiri full */
    .hero-left {
        max-width: 100%;
        margin-bottom: 30px;
    }

    /* card full */
    .card {
        width: 100%;
    }

    /* navbar dipadatkan */
    .navbar {
        padding: 18px 20px;
    }

    .menu {
        display: none;
        /* opsional: biar simpel di HP */
    }

    /* INFO BOX JANGAN KE SAMPING */
    .info-box {
        left: 50%;
        top: 110%;
        transform: translateX(-50%) translateY(10px);
    }

    /* panah pindah ke atas */
    .info-box::after,
    .info-box::before {
        display: none;
    }
}

.upload-box {
    display: block;
    text-decoration: none;
    color: inherit;
}

.btn-Upload {
    display: block;
    width: 93%;
    text-align: center;
    text-decoration: none;
}
.card h2 {
    margin-bottom: 10px;
}

.card p {
    color: #555;
    margin-bottom: 20px;
}
.card {
    animation: fadeUp 0.5s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================== NAVBAR DROPDOWN ===================== */
.dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0 15px;
    color: #29B6F6;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: color 0.2s;
}

.dropdown-toggle:hover {
    color: #1565C0;
}

.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.25s;
    display: inline-block;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 0;
    background: #0d1640;
    border: 1px solid rgba(41, 182, 246, 0.25);
    border-radius: 14px;
    padding: 8px;
    min-width: 260px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
    z-index: 200;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    text-decoration: none;
    color: #e2e2e2;
    transition: background 0.2s;
}

.dropdown-menu a:hover {
    background: rgba(41, 182, 246, 0.15);
    color: white;
}

.dropdown-item-icon {
    font-size: 18px;
    width: 38px;
    height: 38px;
    background: rgba(41, 182, 246, 0.15);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dropdown-item-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 3px;
}

.dropdown-item-desc {
    font-size: 12px;
    color: #9ca3af;
    line-height: 1.4;
}

.dropdown-group-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(41,182,246,0.6);
    padding: 8px 10px 3px;
    display: block;
}
.dropdown-divider {
    height: 1px;
    background: rgba(41,182,246,0.25);
    margin: 6px 6px;
    display: block;
}
html[data-theme="light"] .dropdown-group-label { color: #94a3b8; }
html[data-theme="light"] .dropdown-divider { background: rgba(21,101,192,0.12); }

/* ===================== HERO BADGE ===================== */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(41, 182, 246, 0.12);
    border: 1px solid rgba(41, 182, 246, 0.35);
    color: #81D4FA;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 22px;
    letter-spacing: 0.3px;
}

/* ===================== HERO STATS ===================== */
.stats-row {
    display: flex;
    gap: clamp(16px, 3vw, 40px);
    margin-bottom: 36px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    white-space: nowrap;
}

.stat-label {
    font-size: clamp(10px, 1.4vw, 14px);
    color: #29B6F6;
    font-weight: 500;
}

.stat-num {
    font-size: clamp(16px, 3vw, 30px);
    font-weight: 800;
    color: white;
    line-height: 1.1;
}

/* ===================== HERO CARD KANAN ===================== */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.hero-card-outer {
    position: relative;
    width: 400px;
    height: 320px;
    overflow: visible;
    padding-left: 20px;
    box-sizing: border-box;
}

/* Kartu belakang */
.hc-back {
    position: absolute;
    top: 0;
    right: 30px;
    width: 230px;
    background: white;
    border-radius: 14px;
    padding: 16px 16px 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    border: 2px solid rgba(41,182,246,0.40);
    overflow: visible;
}

.hc-pagenum-corner {
    position: absolute;
    top: 12px;
    right: 14px;
    font-size: 12px;
    font-weight: 700;
    color: #1565C0;
    background: #E1F5FE;
    padding: 2px 10px;
    border-radius: 8px;
}

/* Kartu depan */
.hc-front {
    position: absolute;
    top: 50px;
    left: 20px;
    width: 195px;
    background: white;
    border-radius: 14px;
    padding: 14px 14px 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.35);
    z-index: 2;
}

.hc-cta-title {
    font-size: 15px;
    font-weight: 800;
    color: #1565C0;
    line-height: 1.25;
    margin: 8px 0 6px;
}

.hc-cta-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hc-cta-list li {
    font-size: 9px;
    color: #6b7280;
    line-height: 1.6;
}

.hc-pagenum-bottom {
    text-align: center;
    margin-top: 10px;
    font-size: 12px;
    font-weight: 700;
    color: #1565C0;
    background: #E1F5FE;
    padding: 2px 14px;
    border-radius: 8px;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
}

/* Lines dokumen */
.hc-header {
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0ebff;
    margin-bottom: 10px;
}

.hc-line {
    height: 7px;
    background: #e5e7eb;
    border-radius: 4px;
    margin-bottom: 8px;
}

.hc-title { width: 50%; margin: 0 auto 6px; background: #81D4FA; height: 9px; }
.hc-sub   { width: 34%; margin: 0 auto;     background: #B3E5FC; height: 6px; }
.hc-s     { width: 62%; }
.hc-m     { width: 80%; }

/* Dots dekoratif */
.hc-dots {
    position: absolute;
    top: 50%;
    right: -18px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 1;
}

.hc-dots span {
    display: block;
    width: 14px;
    height: 14px;
    background: #1565C0;
    border-radius: 50%;
}

/* Lingkaran besar — center tepat di sudut kanan bawah hc-back */
.hc-oval {
    position: absolute;
    right: -45px;
    bottom: -45px;
    width: 90px;
    height: 90px;
    background: #0D47A1;
    border-radius: 50%;
    z-index: 0;
}

/* ===================== HERO KIRI — update ===================== */
.hero-left h1 {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 18px;
    color: #29B6F6;
}

.hero-left p {
    color: #94a3b8;
    margin: 0 0 30px;
    line-height: 1.75;
    font-size: 16px;
}

/* ===================== SAAT GAMBAR KEBAWAH (wrap terjadi) ===================== */
@media (max-width: 860px) {
    .hero {
        justify-content: center;
        text-align: center;
    }

    .hero-left {
        flex: 0 0 100%;   /* ambil full baris atas */
    }

    .stats-row {
        justify-content: center;
    }
}

/* Dropdown Jasa khusus mobile — tersembunyi di desktop */
.mobile-jasa-drop {
    display: none;
    position: relative;
    margin-left: auto;
}

.mobile-jasa-link {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 15px;
    font-weight: 700;
    color: #ccc;
    background: none;
    border: none;
    border-radius: 8px;
    padding: 6px 8px;
    cursor: pointer;
    white-space: nowrap;
    transition: 0.2s;
}

.mobile-jasa-link:hover { color: white; }

.mobile-jasa-arrow {
    font-size: 10px;
    transition: transform 0.25s;
    display: inline-block;
}

.mobile-jasa-drop.open .mobile-jasa-arrow { transform: rotate(180deg); }

.mobile-jasa-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: auto;
    background: #0d1640;
    border: 1px solid rgba(41,182,246,0.25);
    border-radius: 14px;
    padding: 8px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 300;
    box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}

.mobile-jasa-drop.open .mobile-jasa-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-jasa-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    text-decoration: none;
    color: #e2e2e2;
    font-size: 14px;
    transition: background 0.2s;
}

.mobile-jasa-menu a:hover {
    background: rgba(41,182,246,0.15);
    color: white;
}

/* ===================== HAMBURGER ===================== */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 8px;
    flex-direction: column;
    gap: 5px;
    transition: background 0.2s;
}

.hamburger:hover { background: rgba(255,255,255,0.08); }

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: 0.3s;
}

/* ===================== MOBILE NAV OVERLAY ===================== */
.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 500;
    background: #080b28;
    display: flex;
    flex-direction: column;
    padding: 0;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-nav.open { transform: translateX(0); }

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(41,182,246,0.13);
}

.mobile-nav-close {
    background: none;
    border: none;
    color: #9ca3af;
    font-size: 24px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 8px;
    line-height: 1;
    transition: 0.2s;
}

.mobile-nav-close:hover { color: white; background: rgba(255,255,255,0.08); }

.mobile-nav-links {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 32px 24px;
}

.mobile-nav-links a {
    width: 100%;
    text-align: center;
    padding: 14px;
    font-size: 18px;
    font-weight: 700;
    color: #29B6F6;
    text-decoration: none;
    border-radius: 12px;
    transition: 0.2s;
}

.mobile-nav-links a:hover {
    background: rgba(41,182,246,0.10);
    color: #1565C0;
}

.mobile-nav-section-title {
    width: 100%;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #6b7280;
    padding: 12px 0 4px;
    border-top: 1px solid rgba(41,182,246,0.10);
    margin-top: 6px;
}

.mobile-nav-links a.mobile-nav-contact {
    font-size: 15px;
    font-weight: 500;
    color: #9ca3af;
    padding: 10px 14px;
}

.mobile-nav-links a.mobile-nav-contact:hover {
    color: #29B6F6;
    background: rgba(41,182,246,0.08);
}

.mobile-nav-footer {
    padding: 20px 24px;
    border-top: 1px solid rgba(41,182,246,0.13);
}

.mobile-nav-footer .btn-nav {
    display: block;
    text-align: center;
    border-radius: 14px;
    padding: 14px;
    font-size: 15px;
}

/* ===================== MOBILE: image hilang ===================== */
@media (max-width: 640px) {
    .hero {
        padding: 40px 20px 50px;
        gap: 20px;
        text-align: center;
    }

    .hero-right {
        display: flex;
        width: 100%;
        justify-content: center;
    }

    .hero-card-outer {
        zoom: 0.72; /* zoom mengubah layout box sekaligus — lebih reliable di mobile */
    }

    .hero-left h1 {
        font-size: 28px;
    }

    .stats-row {
        justify-content: center;
    }

    .menu { display: none; }
    .nav-right { display: none; }
    .hamburger { display: flex; }
    .mobile-jasa-drop { display: block; }

    .navbar {
        padding: 12px 16px;
    }

    .logo span { font-size: 18px; }
    .logo img  { width: 38px; height: 38px; }
}
/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 80px 24px 64px;
}
.faq-wrap {
    max-width: 760px;
    margin: 0 auto;
}
.faq-section h2 {
    text-align: center;
    color: #e2e8f0;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}
.faq-section h2 span {
    color: #29B6F6;
}
.faq-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 40px;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.faq-item {
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(41,182,246,0.15);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item:hover {
    border-color: rgba(41,182,246,0.35);
    box-shadow: 0 4px 24px rgba(41,182,246,0.08);
}
.faq-item.open {
    border-color: rgba(41,182,246,0.40);
    background: rgba(41,182,246,0.05);
    box-shadow: 0 4px 28px rgba(41,182,246,0.10);
}
.faq-q {
    width: 100%;
    background: none;
    border: none;
    color: #cbd5e1;
    font-size: 0.97rem;
    font-weight: 600;
    font-family: 'Segoe UI', sans-serif;
    text-align: left;
    padding: 18px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color 0.2s;
}
.faq-q:hover { color: #e2e8f0; }
.faq-item.open .faq-q { color: #81D4FA; }
.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(41,182,246,0.13);
    border: 1px solid rgba(41,182,246,0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.3s;
}
.faq-icon svg {
    width: 14px;
    height: 14px;
    stroke: #29B6F6;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.3s ease;
}
.faq-item.open .faq-icon {
    background: rgba(41,182,246,0.25);
}
.faq-item.open .faq-icon svg {
    transform: rotate(180deg);
}
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s ease;
    color: #94a3b8;
    font-size: 0.93rem;
    line-height: 1.75;
    padding: 0 20px;
}
.faq-a.open {
    max-height: 300px;
    padding: 0 20px 18px;
}
.faq-a strong { color: #81D4FA; font-weight: 600; }
@media (max-width: 600px) {
    .faq-section { padding: 48px 16px 40px; }
    .faq-section h2 { font-size: 1.35rem; }
    .faq-q { font-size: 0.9rem; padding: 16px; }
    .faq-a { font-size: 0.88rem; }
    .faq-a.open { padding: 0 16px 16px; }
}

/* ===== SITE FOOTER ===== */
.site-footer {
    background: #0a0820;
    border-top: 1px solid rgba(41,182,246,0.18);
    margin-top: 60px;
    padding: 48px 20px 28px;
}
.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 36px 48px;
}
.footer-brand {
    flex: 1 1 200px;
}
.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.footer-logo-wrap img {
    width: 36px;
    height: 26px;
    object-fit: contain;
}
.footer-logo-wrap span {
    font-size: 17px;
    font-weight: 700;
    color: #e2e8f0;
    letter-spacing: 0.5px;
}
.footer-brand p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.7;
}
.footer-col {
    flex: 1 1 130px;
}
.footer-col h4 {
    font-size: 15px;
    font-weight: 700;
    color: #e2e8f0;
    margin: 0 0 14px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}
.footer-col a {
    display: block;
    font-size: 15px;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 9px;
    transition: color 0.2s;
}
.footer-col a:hover { color: #29B6F6; }
.footer-divider {
    max-width: 1100px;
    margin: 28px auto 0;
    border: none;
    border-top: 1px solid rgba(41,182,246,0.10);
}
.footer-bottom {
    max-width: 1100px;
    margin: 14px auto 0;
    font-size: 11px;
    color: #475569;
    text-align: center;
}
@media (max-width: 600px) {
    .site-footer { padding: 36px 16px 20px; margin-top: 40px; }
    .footer-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 16px; }
    .footer-brand { grid-column: 1 / -1; }
}

/* ===== NAV RIGHT ===== */
@media (min-width: 641px) {
    .nav-right {
        display: flex;
        align-items: center;
        gap: 10px;
    }
}

/* ===== THEME TOGGLE MOBILE (hanya tampil di mobile) ===== */
.theme-toggle-mob {
    display: none !important;
}
@media (max-width: 640px) {
    .theme-toggle-mob {
        display: flex !important;
    }
}

/* ===== THEME TOGGLE BUTTON ===== */
.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 4px;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s, transform 0.2s;
}
.theme-toggle:hover {
    opacity: 1;
    transform: scale(1.15);
}

/* ===== LIGHT MODE OVERRIDES ===== */
html[data-theme="light"] body {
    background: linear-gradient(135deg, #f0f7ff, #e1f0fb);
    color: #1a2332;
}
html[data-theme="light"] .navbar {
    background: rgba(255,255,255,0.95);
    border-bottom-color: rgba(21,101,192,0.15);
}
html[data-theme="light"] .logo span { color: #1a2332; }
html[data-theme="light"] .menu a:not(.btn-nav) { color: #1565C0; }
html[data-theme="light"] .menu a:not(.btn-nav):hover,
html[data-theme="light"] .menu a.active { color: #0D47A1; }
html[data-theme="light"] .dropdown-toggle { color: #1565C0; }
html[data-theme="light"] .dropdown-toggle:hover { color: #0D47A1; }
html[data-theme="light"] .dropdown-menu {
    background: white;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}
html[data-theme="light"] .dropdown-menu a { color: #1a2332; }
html[data-theme="light"] .dropdown-menu a:hover {
    background: rgba(21,101,192,0.08);
    color: #1565C0;
}
html[data-theme="light"] .theme-toggle {
    color: #1565C0;
}
html[data-theme="light"] .hero-left h1 { color: #1565C0; }
html[data-theme="light"] .hero-left p { color: #475569; }
html[data-theme="light"] .stat-num { color: #1a2332; }
html[data-theme="light"] .stat-label { color: #1565C0; }
html[data-theme="light"] .stats span { color: #64748b; }
html[data-theme="light"] .hero-badge {
    background: rgba(21,101,192,0.08);
    border-color: rgba(21,101,192,0.25);
    color: #1565C0;
}
html[data-theme="light"] .hamburger span { background: #1a2332; }
html[data-theme="light"] .mobile-jasa-link { color: #1565C0; }
html[data-theme="light"] .mobile-jasa-menu {
    background: white;
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}
html[data-theme="light"] .mobile-jasa-menu a { color: #1a2332; }
html[data-theme="light"] .mobile-jasa-menu a:hover {
    background: rgba(21,101,192,0.08);
    color: #1565C0;
}
html[data-theme="light"] .mobile-nav { background: white; }
html[data-theme="light"] .mobile-nav-header { border-bottom-color: rgba(21,101,192,0.12); }
html[data-theme="light"] .mobile-nav-close { color: #64748b; }
html[data-theme="light"] .mobile-nav-close:hover { color: #1a2332; background: rgba(0,0,0,0.06); }
html[data-theme="light"] .mobile-nav-links a { color: #1565C0; }
html[data-theme="light"] .mobile-nav-links a:hover {
    background: rgba(21,101,192,0.08);
    color: #0D47A1;
}
html[data-theme="light"] .mobile-nav-links a.mobile-nav-contact { color: #64748b; }
html[data-theme="light"] .mobile-nav-links a.mobile-nav-contact:hover { color: #1565C0; }
html[data-theme="light"] .mobile-nav-section-title {
    color: #94a3b8;
    border-top-color: rgba(21,101,192,0.10);
}
html[data-theme="light"] .mobile-nav-footer { border-top-color: rgba(21,101,192,0.12); }
html[data-theme="light"] .faq-section h2 { color: #1a2332; }
html[data-theme="light"] .faq-section h2 span { color: #1565C0; }
html[data-theme="light"] .faq-subtitle { color: #64748b; }
html[data-theme="light"] .faq-item {
    background: white;
    border-color: rgba(21,101,192,0.12);
}
html[data-theme="light"] .faq-item:hover {
    border-color: rgba(21,101,192,0.30);
    box-shadow: 0 4px 24px rgba(21,101,192,0.08);
}
html[data-theme="light"] .faq-item.open {
    border-color: rgba(21,101,192,0.40);
    background: rgba(21,101,192,0.03);
    box-shadow: 0 4px 28px rgba(21,101,192,0.10);
}
html[data-theme="light"] .faq-q { color: #374151; }
html[data-theme="light"] .faq-q:hover { color: #1a2332; }
html[data-theme="light"] .faq-item.open .faq-q { color: #1565C0; }
html[data-theme="light"] .faq-a { color: #64748b; }
html[data-theme="light"] .faq-a strong { color: #1565C0; }
html[data-theme="light"] .faq-icon {
    background: rgba(21,101,192,0.08);
    border-color: rgba(21,101,192,0.20);
}
html[data-theme="light"] .faq-icon svg { stroke: #1565C0; }
html[data-theme="light"] .faq-item.open .faq-icon { background: rgba(21,101,192,0.15); }
html[data-theme="light"] .site-footer {
    background: #daeaf8;
    border-top-color: rgba(21,101,192,0.12);
}
html[data-theme="light"] .footer-logo-wrap span { color: #1a2332; }
html[data-theme="light"] .footer-brand p { color: #64748b; }
html[data-theme="light"] .footer-col h4 { color: #1a2332; }
html[data-theme="light"] .footer-col a { color: #64748b; }
html[data-theme="light"] .footer-col a:hover { color: #1565C0; }
html[data-theme="light"] .footer-bottom { color: #64748b; }
