/* ==========================================================================
   MAYATAMA SOLUSINDO — DESIGN SYSTEM
   Tema gelap premium (fintech/ISP) terinspirasi layout Flock (Webflow):
   navbar kaca melayang, hero besar dengan gradient glow, kartu kaca
   konsisten, tombol pil dengan panah, dan tipografi tegas.
   ========================================================================== */

:root {
    --bg: #000000;
    --bg-soft: #0e0e0e;
    --bg-elevated: #161616;
    --surface: rgba(255, 255, 255, 0.045);
    --surface-strong: rgba(255, 255, 255, 0.08);
    --border: rgba(255, 255, 255, 0.09);
    --border-strong: rgba(255, 255, 255, 0.18);
    --text: #ffffff;
    --text-muted: #9f9f9f;
    --text-dim: #5d5d5d;
    --accent: #229eff;
    --accent-2: #0062ff;
    --accent-gradient: linear-gradient(135deg, #229eff 0%, #0062ff 100%);
    --rose: #fb7185;
    --amber: #fbbf24;
    --green: #34d399;
    --nav-glass: rgba(0, 0, 0, 0.72);
    --nav-glass-solid: rgba(0, 0, 0, 0.98);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 22px;
    --radius-xl: 28px;
    --radius-full: 999px;
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 25px 60px -15px rgba(0, 0, 0, 0.55);
    --container: 1200px;
    --nav-h: 76px;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

:root[data-theme="light"] {
    --bg: #ffffff;
    --bg-soft: #f5f5f5;
    --bg-elevated: #f2f2f2;
    --surface: rgba(0, 0, 0, 0.035);
    --surface-strong: rgba(0, 0, 0, 0.06);
    --border: rgba(0, 0, 0, 0.09);
    --border-strong: rgba(0, 0, 0, 0.16);
    --text: #0a0a0a;
    --text-muted: #5d5d5d;
    --text-dim: #9f9f9f;
    --rose: #e11d48;
    --amber: #b45309;
    --green: #059669;
    --nav-glass: rgba(255, 255, 255, 0.78);
    --nav-glass-solid: rgba(255, 255, 255, 0.98);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 25px 60px -15px rgba(0, 0, 0, 0.18);
}

/* ==========================================================================
   1. RESET & BASE
   ========================================================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter Tight', 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Glow ambience tetap (tidak fixed penuh agar performa & keterbacaan lebih baik) */
body::before,
body::after {
    content: '';
    position: fixed;
    z-index: 0;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(10px);
}

body::before {
    width: 640px; height: 640px;
    top: -220px; left: -160px;
    background: radial-gradient(circle, rgba(34, 158, 255, 0.07) 0%, transparent 70%);
}

body::after {
    width: 720px; height: 720px;
    bottom: -280px; right: -200px;
    background: radial-gradient(circle, rgba(34, 158, 255, 0.05) 0%, transparent 70%);
}

body.loading-active { overflow: hidden; }

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

::selection { background: rgba(34, 158, 255, 0.3); color: var(--text); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

/* ==========================================================================
   2. PRELOADER
   ========================================================================== */
#preloader {
    position: fixed; inset: 0; z-index: 99999;
    background: var(--bg);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-content { text-align: center; }

.loader-logo { width: 76px; height: auto; animation: loaderPulse 1.5s infinite ease-in-out; }

.loader-text {
    margin-top: 16px; font-size: 13px; font-weight: 700; letter-spacing: 3px;
    color: var(--text-muted); text-transform: uppercase;
}

@keyframes loaderPulse {
    0%, 100% { transform: scale(0.94); opacity: 0.75; }
    50% { transform: scale(1.04); opacity: 1; }
}

/* ==========================================================================
   3. UTILITIES: EYEBROW, BUTTONS, BADGES, CARDS
   ========================================================================== */
.icon { width: 1em; height: 1em; display: inline-block; vertical-align: -0.15em; flex-shrink: 0; }

.eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12.5px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
    color: var(--accent); margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 4px; height: 16px; border-radius: 2px; background: var(--accent-gradient); }

.section { padding: clamp(60px, 8vw, 110px) 0; position: relative; z-index: 1; }
.section-soft { background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.02) 15%, rgba(255, 255, 255, 0.02) 85%, transparent); }
.section-head { max-width: 680px; margin: 0 auto 50px; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); font-weight: 800; letter-spacing: -0.5px; line-height: 1.2; }
.section-head p { margin-top: 16px; color: var(--text-muted); font-size: 16px; line-height: 1.7; }
.section-head.align-left { margin: 0 0 40px; text-align: left; }

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 15px 30px; border-radius: var(--radius-full); font-weight: 700; font-size: 15px;
    border: 1px solid transparent; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color .25s var(--ease);
    cursor: pointer; white-space: nowrap;
}
.btn-primary { background: var(--accent-gradient); color: #000000; box-shadow: 0 10px 30px -8px rgba(34, 158, 255, 0.55); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -8px rgba(34, 158, 255, 0.7); }

.btn-outline { background: rgba(255, 255, 255, 0.03); color: var(--text); border-color: var(--border-strong); }
.btn-outline:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.35); transform: translateY(-2px); }

.btn-whatsapp { background: transparent; color: #25d366; border-color: rgba(37, 211, 102, 0.4); }
.btn-whatsapp:hover { background: rgba(37, 211, 102, 0.12); border-color: #25d366; transform: translateY(-2px); }

.btn-block { width: 100%; }
.btn-sm { padding: 11px 22px; font-size: 14px; }

.badge-pill {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 18px; border-radius: var(--radius-full); font-size: 13px; font-weight: 700;
}
.badge-info { background: rgba(34, 158, 255, 0.12); border: 1px solid rgba(34, 158, 255, 0.3); color: var(--accent); }
.badge-promo { background: rgba(251, 191, 36, 0.14); border: 1px solid rgba(251, 191, 36, 0.4); color: var(--amber); }

.hl-green { color: var(--green); font-weight: 700; }
.hl-amber { color: var(--amber); font-weight: 700; }

.glass-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
}
.glass-card:hover { transform: translateY(-6px); border-color: rgba(34, 158, 255, 0.35); box-shadow: var(--shadow-lg); background: var(--surface-strong); }

/* Scroll reveal */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   4. NAVBAR
   ========================================================================== */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 5%; height: var(--nav-h);
    background: var(--nav-glass);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}

.navbar .logo img { height: 34px; width: auto; }
.navbar .logo .logo-light { display: none; }
:root[data-theme="light"] .navbar .logo .logo-dark { display: none; }
:root[data-theme="light"] .navbar .logo .logo-light { display: block; }

.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links > li > a {
    display: inline-block; padding: 10px 16px; border-radius: var(--radius-full);
    font-weight: 600; font-size: 14.5px; color: var(--text-muted); transition: color 0.25s, background 0.25s;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--text); background: rgba(255, 255, 255, 0.06); }

.nav-cta { display: flex; align-items: center; gap: 14px; }

.nav-links li.nav-cta-mobile { display: none; }

.dropdown { position: relative; }
.dropdown input[type="checkbox"] { display: none; }
.dropbtn {
    display: inline-flex; align-items: center; gap: 4px; cursor: pointer; user-select: none;
    padding: 10px 16px; border-radius: var(--radius-full);
    font-weight: 600; font-size: 14.5px; color: var(--text-muted); transition: color 0.25s, background 0.25s;
}
.dropbtn .chevron { transition: transform 0.25s var(--ease); }
.dropdown:hover .dropbtn { color: var(--text); background: rgba(255, 255, 255, 0.06); }
.dropdown:hover .dropbtn .chevron { transform: rotate(180deg); }
.dropdown-content {
    display: none; position: absolute; top: calc(100% + 8px); left: 0;
    background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius-md);
    min-width: 190px; padding: 8px; box-shadow: var(--shadow-lg); z-index: 50;
}
.dropdown-content a { display: block; padding: 10px 14px; border-radius: var(--radius-sm); font-size: 14px; color: var(--text-muted); }
.dropdown-content a:hover { background: rgba(34, 158, 255, 0.1); color: var(--accent); }
.dropdown:hover .dropdown-content { display: block; }

.hamburger-menu { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; padding: 6px; }
.hamburger-menu .bar { width: 24px; height: 2.5px; border-radius: 2px; background: var(--text); transition: 0.3s; }
.hamburger-menu.active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-menu.active .bar:nth-child(2) { opacity: 0; }
.hamburger-menu.active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   5. HERO
   ========================================================================== */
.hero-section {
    /* Hero selalu punya foto latar gelap, jadi teks & border di dalamnya dikunci
       ke warna mode-gelap terlepas dari tema terang/gelap yang aktif di situs. */
    --text: #ffffff;
    --text-muted: #9f9f9f;
    --border: rgba(255, 255, 255, 0.09);
    --border-strong: rgba(255, 255, 255, 0.18);
    min-height: 100vh;
    display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
    padding: calc(var(--nav-h) + 60px) 20px 90px;
    position: relative; overflow: hidden;
    background-color: #000000;
    background-image:
        linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.88) 60%, #000000 100%),
        url('../img/bg-kota.png');
    background-size: cover; background-position: center; background-repeat: no-repeat;
}

.hero-content { position: relative; z-index: 2; max-width: 860px; }

.hero-badge {
    background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 9px 18px; border-radius: var(--radius-full); font-size: 14px; font-weight: 700;
    display: inline-flex; align-items: center; gap: 8px; margin-bottom: 26px;
    color: var(--text);
}

.hero-content h1 {
    font-size: clamp(32px, 5.6vw, 58px); font-weight: 800; line-height: 1.14; letter-spacing: -1.2px;
    margin-bottom: 22px;
    background: linear-gradient(135deg, #ffffff 30%, #b9c6dd 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

.hero-content p { font-size: 18px; color: var(--text-muted); max-width: 640px; margin: 0 auto 38px; line-height: 1.7; }

.hero-buttons { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

.hero-stats {
    position: relative; z-index: 2; display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
    margin-top: 56px;
}
.hero-stat {
    background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 18px 26px; min-width: 140px; backdrop-filter: blur(10px);
}
.hero-stat strong { display: block; font-size: 26px; font-weight: 800; background: var(--accent-gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-stat span { font-size: 12.5px; color: var(--text-muted); font-weight: 600; letter-spacing: 0.4px; }

/* ==========================================================================
   6. PROFILE / ABOUT-SPLIT SECTIONS (gambar + teks berdampingan)
   ========================================================================== */
.split-section {
    display: flex; align-items: center; gap: 64px; max-width: var(--container);
    margin: 0 auto; padding: clamp(50px, 7vw, 100px) 24px;
}
.split-section.reverse { flex-direction: row-reverse; }
.split-media { flex: 1; position: relative; }
.split-media img { width: 100%; height: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.split-text { flex: 1.15; }

.stat-badge {
    position: absolute; bottom: -22px; right: -22px;
    width: 116px; height: 116px; border-radius: 50%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--rose), #be123c); color: #fff;
    box-shadow: 0 14px 30px rgba(225, 29, 72, 0.4); border: 4px solid var(--bg);
}
.stat-badge strong { font-size: 22px; font-weight: 800; line-height: 1; }
.stat-badge span { font-size: 11px; font-weight: 600; opacity: 0.9; margin-top: 3px; }

/* Komposisi gambar ganda (halaman Tentang): gambar utama + badge + gambar kecil */
.media-composed { position: relative; min-height: 420px; display: flex; align-items: center; }
.media-composed .main-img { width: 78%; height: 400px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.media-composed .main-img img { width: 100%; height: 100%; object-fit: cover; }
.media-composed .sub-img {
    position: absolute; right: 4%; bottom: 4%; width: 46%; height: 170px; border-radius: var(--radius-md);
    overflow: hidden; box-shadow: var(--shadow-lg); border: 6px solid var(--bg); z-index: 4;
}
.media-composed .sub-img img { width: 100%; height: 100%; object-fit: cover; }
.media-floating-badge {
    position: absolute; left: -4%; top: 10%; z-index: 5; text-align: center;
    background: linear-gradient(135deg, #dc2626, #991b1b); color: #fff;
    padding: 18px 14px; border-radius: var(--radius-md); max-width: 130px;
    box-shadow: 0 14px 28px rgba(220, 38, 38, 0.4);
}
.media-floating-badge .glyph { font-size: 22px; display: block; margin-bottom: 6px; }
.media-floating-badge p { font-size: 12.5px; font-weight: 700; line-height: 1.3; }

@media (max-width: 1024px) {
    .media-composed { min-height: auto; width: 100%; justify-content: center; }
    .media-composed .main-img { width: 88%; height: 320px; }
}

.split-text h2 { font-size: clamp(26px, 3.2vw, 36px); font-weight: 800; line-height: 1.25; margin-bottom: 18px; }
p.lead { color: var(--text-muted); font-size: 15.5px; line-height: 1.75; margin-bottom: 26px; }

.info-panel {
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md);
    padding: 18px 20px; display: flex; gap: 16px; align-items: flex-start; margin-bottom: 26px;
}
.info-panel .icon-box {
    background: rgba(34, 158, 255, 0.1); border-left: 3px solid var(--accent); border-radius: var(--radius-sm);
    padding: 12px 16px; min-width: 130px; text-align: center;
}
.info-panel .icon-box .glyph { font-size: 22px; display: block; margin: 0 auto 4px; color: var(--accent); }
.info-panel .icon-box strong { font-size: 13px; line-height: 1.3; display: block; }
.info-panel p { font-size: 14px; color: var(--text); line-height: 1.6; }

.check-list li {
    display: flex; align-items: center; gap: 12px; font-size: 14.5px; font-weight: 600; margin-bottom: 13px;
}
.check-list li::before {
    content: '✓'; flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
    background: rgba(34, 158, 255, 0.15); color: var(--accent); font-size: 11px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
}

.feature-row { display: flex; gap: 18px; align-items: flex-start; margin-bottom: 24px; }
.feature-row:last-child { margin-bottom: 0; }
.feature-icon {
    width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
    background: rgba(34, 158, 255, 0.1); border: 1px solid rgba(34, 158, 255, 0.22);
    display: flex; align-items: center; justify-content: center; font-size: 21px; color: var(--accent);
}
.feature-row h4 { font-size: 16px; font-weight: 700; margin-bottom: 5px; }
.feature-row p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ==========================================================================
   7. FEATURE / WHY-CHOOSE GRID
   ========================================================================== */
.feature-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; }
.feature-card { flex: 0 1 250px; padding: 32px 26px; text-align: left; }
.feature-card .card-icon {
    width: 56px; height: 56px; border-radius: var(--radius-md); font-size: 28px; color: var(--accent);
    display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
    background: rgba(34, 158, 255, 0.1);
}
.feature-card h3 { font-size: 18.5px; font-weight: 700; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ==========================================================================
   8. STATS STRIP (impact numbers)
   ========================================================================== */
.stats-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat-tile {
    padding: 26px 20px; text-align: left;
}
.stat-tile .glyph {
    width: 44px; height: 44px; border-radius: 50%; background: rgba(34, 158, 255, 0.1); color: var(--accent);
    display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 14px;
}
.stat-tile strong { display: block; font-size: 28px; font-weight: 800; color: var(--accent); }
.stat-tile span { font-size: 12px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }

.banner-cta {
    display: flex; align-items: center; gap: 22px; padding: 24px 28px; border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #dc2626, #991b1b); color: #fff; box-shadow: 0 16px 34px rgba(220, 38, 38, 0.3);
    margin-top: 20px;
}
.banner-cta .year { font-size: 40px; font-weight: 900; line-height: 1; }
.banner-cta .copy strong { display: block; font-size: 15px; letter-spacing: 0.5px; text-transform: uppercase; }
.banner-cta .copy span { font-size: 13px; opacity: 0.9; }

/* ==========================================================================
   9. PRICING (teaser cards on homepage + package cards on paket.php)
   ========================================================================== */
.pricing-grid, .package-grid {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 26px;
    max-width: var(--container); margin: 0 auto;
}

.price-card, .package-card {
    flex: 0 1 265px;
    padding: 38px 28px; text-align: center; display: flex; flex-direction: column; justify-content: space-between;
    position: relative;
}
.price-card.featured, .package-card.featured { border-color: rgba(34, 158, 255, 0.5); background: var(--surface-strong); }

.card-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--accent-gradient); color: #000000; font-size: 11.5px; font-weight: 800;
    padding: 6px 16px; border-radius: var(--radius-full); white-space: nowrap;
}

.price-card .pkg-name, .package-card .pkg-name {
    font-size: 15px; font-weight: 800; letter-spacing: 0.6px; text-transform: uppercase; margin-bottom: 8px;
}
.price-card .pkg-speed, .package-card .pkg-speed { color: var(--accent); font-size: 14px; font-weight: 600; margin-bottom: 18px; }
.price-card .pkg-price, .package-card .pkg-price { font-size: 26px; font-weight: 800; margin-bottom: 26px; }
.price-card .pkg-price span, .package-card .pkg-price span { font-size: 13px; font-weight: 500; color: var(--text-dim); }

.pkg-features { text-align: left; margin-bottom: 28px; }
.pkg-features li { font-size: 13.5px; color: var(--text-muted); line-height: 1.5; margin-bottom: 11px; display: flex; align-items: flex-start; gap: 8px; }
.pkg-features li::before { content: '✓'; color: var(--accent); font-weight: 800; flex-shrink: 0; }

.pkg-note {
    text-align: center; color: var(--text-dim); font-size: 13px; margin-top: 30px;
}

.category-title {
    font-size: clamp(18px, 2vw, 22px); font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase;
    color: var(--accent); margin: 54px 0 24px; padding-bottom: 12px;
    border-bottom: 2px solid rgba(34, 158, 255, 0.2);
    display: flex; align-items: center; gap: 10px;
}
.category-title::before { content: ''; width: 4px; height: 20px; background: var(--accent-gradient); border-radius: 3px; }
.category-title.cctv { color: var(--rose); border-bottom-color: rgba(251, 113, 133, 0.25); }
.category-title.cctv::before { background: linear-gradient(135deg, var(--rose), #be123c); }

/* ==========================================================================
   10. PAYMENT / GENERIC CTA SPLIT
   ========================================================================== */
.cta-split {
    display: flex; align-items: center; gap: 60px; max-width: var(--container); margin: 0 auto; padding: 0 24px;
}
.cta-split img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; }
.cta-split .copy { flex: 1; }
.cta-split .media { flex: 1; }

/* ==========================================================================
   11. CONTACT / WILAYAH SECTION
   ========================================================================== */
.contact-grid-layout { display: grid; grid-template-columns: 1.15fr 1fr; gap: 44px; align-items: start; }

.branch-chip-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
    background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius-md);
    padding: 18px; margin: 26px 0;
}
.branch-chip {
    display: block; padding: 12px 8px; text-align: center; font-size: 12.5px; font-weight: 600;
    color: var(--text-muted); background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border);
    border-radius: var(--radius-sm); transition: 0.25s; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.branch-chip:hover { background: var(--accent); color: #000000; border-color: var(--accent); transform: translateY(-2px); }

.info-box { padding: 20px; margin-bottom: 15px; }
.info-box .info-item { display: flex; gap: 14px; align-items: flex-start; }
.info-box .info-icon { font-size: 21px; color: var(--accent); }
.info-box strong { font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 5px; }
.info-box p, .info-box a { font-size: 14px; color: var(--text); line-height: 1.6; }
.info-box a { color: var(--accent); font-weight: 700; }
.info-box a:hover { text-decoration: underline; }

.map-frame { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-lg); }
.map-frame iframe { width: 100%; height: 430px; border: 0; display: block; }

/* ==========================================================================
   12. BRANCH INFO BOX (halaman paket.php)
   ========================================================================== */
.branch-info-box {
    padding: 34px; margin-top: 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center;
}
.branch-info-box h3 { font-size: 22px; font-weight: 700; margin-bottom: 16px; color: var(--accent); }
.branch-info-box p { color: var(--text-muted); line-height: 1.7; margin-bottom: 14px; font-size: 14.5px; }
.branch-info-box .map-frame iframe { height: 230px; }

/* ==========================================================================
   13. FAQ
   ========================================================================== */
.faq-list { display: flex; flex-direction: column; gap: 16px; max-width: 820px; margin: 0 auto; }
.faq-item { padding: 6px 26px; }
.faq-item summary {
    list-style: none; cursor: pointer; padding: 20px 0; font-size: 16.5px; font-weight: 700;
    display: flex; align-items: center; gap: 12px; color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .q-mark {
    flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: rgba(34, 158, 255, 0.12);
    color: var(--accent); font-size: 13px; font-weight: 800; display: flex; align-items: center; justify-content: center;
}
.faq-item summary .chevron { margin-left: auto; color: var(--text-dim); transition: transform 0.3s var(--ease); }
.faq-item[open] summary .chevron { transform: rotate(180deg); }
.faq-answer { padding: 0 0 24px 40px; color: var(--text-muted); font-size: 14.5px; line-height: 1.7; }
.faq-answer p { margin-bottom: 12px; }
.faq-answer ol { margin-left: 18px; display: flex; flex-direction: column; gap: 8px; }

.faq-hero { text-align: center; max-width: 700px; margin: 0 auto 50px; }
.faq-hero h1 { font-size: clamp(28px, 3.6vw, 42px); font-weight: 800; margin-bottom: 14px; }
.faq-hero p { color: var(--text-muted); font-size: 16px; }

.faq-support-banner {
    display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
    padding: 30px 34px; margin-top: 50px; max-width: 820px; margin-left: auto; margin-right: auto;
}
.faq-support-banner img { width: 96px; border-radius: var(--radius-md); flex-shrink: 0; }
.faq-support-banner .copy { flex: 1; min-width: 220px; }
.faq-support-banner h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.faq-support-banner p { color: var(--text-muted); font-size: 14px; }

.pattern-banner {
    background-color: #1e3a8a;
    background-image:
        linear-gradient(45deg, #172554 25%, transparent 25%),
        linear-gradient(-45deg, #172554 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #172554 75%),
        linear-gradient(-45deg, transparent 75%, #172554 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0;
    padding: 44px 5%; border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
    border: 1px solid rgba(34, 158, 255, 0.2);
}
.pattern-banner h3 { font-size: 24px; font-weight: 800; margin-bottom: 6px; color: #fff; }
.pattern-banner p { color: #cbd5e1; font-size: 14.5px; }

/* ==========================================================================
   14. FOOTER
   ========================================================================== */
footer.site-footer { border-top: 1px solid var(--border); padding: 64px 0 0; position: relative; z-index: 1; }
.footer-grid {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px;
    max-width: var(--container); margin: 0 auto; padding: 0 24px 50px;
}
.footer-brand img { height: 30px; margin-bottom: 16px; }
.footer-brand .logo-light { display: none; }
:root[data-theme="light"] .footer-brand .logo-dark { display: none; }
:root[data-theme="light"] .footer-brand .logo-light { display: block; }
.footer-brand p { color: var(--text-muted); font-size: 14px; line-height: 1.7; max-width: 300px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 38px; height: 38px; border-radius: 50%; background: rgba(255, 255, 255, 0.06); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center; font-size: 15px; transition: 0.25s;
}
.footer-social a:hover { background: var(--accent); color: #000000; }

.footer-col h5 { font-size: 13px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14px; color: var(--text-muted); transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.footer-col.coverage ul { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 16px; }

.footer-bottom {
    border-top: 1px solid var(--border); padding: 22px 0; text-align: center;
}
.footer-bottom p { color: var(--text-dim); font-size: 13px; }
.footer-bottom p + p { margin-top: 4px; font-size: 12px; }

/* ==========================================================================
   15. MISC PAGES (speedtest)
   ========================================================================== */
.fullscreen-frame { position: fixed; inset: 0; background: var(--bg); }
.fullscreen-frame iframe { width: 100%; height: 100%; border: 0; }

/* ==========================================================================
   16. THEME TOGGLE
   ========================================================================== */
.theme-toggle {
    position: fixed; bottom: 24px; right: 24px; z-index: 950;
    width: 52px; height: 52px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--bg-elevated); border: 1px solid var(--border-strong);
    color: var(--accent); box-shadow: var(--shadow-lg); cursor: pointer;
    transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.theme-toggle:hover { transform: translateY(-3px); border-color: rgba(34, 158, 255, 0.4); }
.theme-toggle .icon { width: 22px; height: 22px; }
.theme-toggle .icon-moon { display: none; }
:root[data-theme="light"] .theme-toggle .icon-sun { display: none; }
:root[data-theme="light"] .theme-toggle .icon-moon { display: block; }

/* ==========================================================================
   17. RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
    .split-section, .split-section.reverse { flex-direction: column; }
    .contact-grid-layout { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-strip { grid-template-columns: repeat(2, 1fr); }
    .cta-split { flex-direction: column; }
}

@media (max-width: 860px) {
    .nav-cta > .btn-primary, .nav-cta > .btn-outline { display: none; }
    .hamburger-menu { display: flex; }

    .nav-links {
        position: fixed; top: var(--nav-h); left: 0; width: 100%; z-index: 999;
        background: var(--nav-glass-solid); backdrop-filter: blur(14px);
        max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease);
        border-bottom: 1px solid var(--border);
        flex-direction: column; align-items: stretch; gap: 0;
    }
    .nav-links.active { max-height: 520px; overflow-y: auto; }
    .nav-links > li { width: 100%; }
    .nav-links > li > a { display: block; padding: 15px 24px; border-radius: 0; }
    .nav-links > li > a:hover, .nav-links > li > a.active { background: rgba(255, 255, 255, 0.04); }
    .nav-links .dropbtn { display: flex; justify-content: space-between; padding: 15px 24px; border-radius: 0; }
    .nav-links .dropdown:hover .dropbtn { background: transparent; }
    .nav-links .dropdown input:checked ~ .dropbtn { background: rgba(255, 255, 255, 0.04); }
    .nav-links .dropdown input:checked ~ .dropbtn .chevron { transform: rotate(180deg); }
    .nav-links .dropdown-content { display: block; position: static; background: none; border: none; box-shadow: none; padding-left: 24px; }
    .nav-links .dropdown input:not(:checked) ~ .dropdown-content { display: none; }
    .nav-links li.nav-cta-mobile { display: block; padding: 8px 24px; }
    .nav-links li.nav-cta-mobile .btn { width: 100%; }
}

@media (max-width: 640px) {
    .branch-chip-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .stats-strip { grid-template-columns: 1fr 1fr; }
    .branch-info-box { grid-template-columns: 1fr; padding: 24px; }
    .hero-stats { gap: 10px; }
    .hero-stat { min-width: 120px; padding: 14px 18px; }
    .cta-split, .split-section { padding-left: 20px; padding-right: 20px; }
    .feature-card, .price-card, .package-card { flex-basis: 100%; max-width: 400px; }
    .theme-toggle { width: 46px; height: 46px; bottom: 16px; right: 16px; }
    .theme-toggle .icon { width: 19px; height: 19px; }
}
