/* ================= PENGATURAN DASAR ================= */
:root {
    --bg-dark: #060913;       
    --text-main: #ffffff;    
    --text-muted: #8a9bb0;   
    --accent-neon: #0066ff;   
    --font-heading: 'Oxanium', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-body);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    padding-top: 80px; 
}

/* ================= NAVBAR TACTICAL HUD ================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(6, 9, 19, 0.85); 
    backdrop-filter: blur(12px); 
    padding: 0 50px;
    height: 80px;
    border-bottom: 2px solid var(--accent-neon); 
    box-shadow: 0 4px 30px rgba(0, 102, 255, 0.25); 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    will-change: transform;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-img {
    height: 75px; 
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 28px; 
    font-weight: 800;
    font-style: italic; 
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.logo-text .flash {
    color: var(--accent-neon);
    animation: neon-flicker 2.5s infinite alternate;
}

@keyframes neon-flicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px var(--accent-neon), 0 0 40px var(--accent-neon), 0 0 80px var(--accent-neon);
        opacity: 1;
    }
    20%, 24%, 55% {
        text-shadow: none;
        opacity: 0.3;
    }
}

.nav-links ul {
    list-style: none;
    display: flex;
    gap: 10px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0 20px;
    height: 80px;
    display: flex;
    align-items: center;
    position: relative;
    transition: all 0.3s ease;
}

.nav-links a::before {
    content: ''; 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    width: 0%; 
    height: 3px;
    background-color: var(--accent-neon); 
    transition: 0.3s ease;
    box-shadow: 0 -2px 10px var(--accent-neon);
}

.nav-links a:hover::before, .nav-links a.active::before { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: #ffffff; text-shadow: 0 0 10px var(--accent-neon); }

.menu-toggle {
    display: none; 
    flex-direction: column; 
    cursor: pointer; 
    gap: 6px; 
    z-index: 100000; 
}

.menu-toggle .bar {
    height: 3px; 
    width: 30px; 
    background-color: #ffffff;
    box-shadow: 0 0 5px var(--accent-neon); 
    transition: all 0.4s ease-in-out; 
    transform-origin: center;
}

.menu-toggle.open .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); background-color: var(--accent-neon); }
.menu-toggle.open .bar:nth-child(2) { opacity: 0; transform: translateX(-20px); }
.menu-toggle.open .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); background-color: var(--accent-neon); }

/* ================= HERO SECTION ================= */
.hero {
    position: relative; 
    width: 100%; 
    height: calc(100svh - 80px); 
    min-height: 550px;
    display: flex; 
    align-items: center; 
    justify-content: flex-start; 
    padding: 0 10%;
    overflow: hidden; 
    background-color: var(--bg-dark);
}

@keyframes cinematicMove {
    0% { transform: scale(1.05) translate(0, 0); }
    100% { transform: scale(1.25) translate(-2%, 2%); } 
}

.main-bg {
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    object-fit: cover; 
    z-index: 1; 
    transition: opacity 0.6s ease-in-out;
    animation: cinematicMove 6s infinite alternate ease-in-out;
}

.overlay {
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: linear-gradient(90deg, rgba(6, 9, 19, 0.95) 0%, rgba(6, 9, 19, 0.4) 100%); 
    z-index: 2;
}

.grid-texture {
    width: 100%; 
    height: 100%;
    background-image: linear-gradient(rgba(19, 32, 59, 0.3) 1px, transparent 1px), linear-gradient(90deg, rgba(19, 32, 59, 0.3) 1px, transparent 1px);
    background-size: 30px 30px;
}

.hero-content { position: relative; z-index: 3; max-width: 650px; }

.status-bar {
    font-family: var(--font-heading); 
    font-size: 13px; 
    color: #fff; 
    margin-bottom: 20px;
    display: flex; 
    align-items: center; 
    gap: 10px; 
    letter-spacing: 2px;
}

.pulse-icon {
    width: 10px; 
    height: 10px; 
    background-color: #25D366; 
    border-radius: 50%;
    box-shadow: 0 0 10px #25D366; 
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.hero-content h1 {
    font-family: var(--font-heading); 
    font-size: 4rem; 
    font-weight: 800; 
    line-height: 1.05; 
    margin-bottom: 25px; 
    text-transform: uppercase; 
    letter-spacing: -2px;
}

.hero-content p {
    color: var(--text-muted); 
    font-size: 1.1rem; 
    line-height: 1.6; 
    margin-bottom: 40px;
    border-left: 4px solid var(--accent-neon); 
    padding-left: 20px;
}

.hero-btns { display: flex; gap: 20px; flex-wrap: wrap; }

.btn-gahar {
    display: inline-block; 
    padding: 16px 32px; 
    font-family: var(--font-heading); 
    font-weight: 800;
    text-transform: uppercase; 
    letter-spacing: 1px; 
    text-decoration: none; 
    transition: all 0.3s ease; 
    font-size: 14px;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
}

.btn-primary { background-color: var(--accent-neon); color: #fff; }
.btn-primary:hover { background-color: #fff; color: var(--accent-neon); box-shadow: 0 0 20px rgba(0, 102, 255, 0.5); }

.btn-secondary { background-color: rgba(19, 32, 59, 0.5); color: #fff; border: 1px solid var(--text-muted); }
.btn-secondary:hover { background-color: var(--accent-neon); border-color: var(--accent-neon); }

.thumbnail-list {
    position: absolute; 
    right: 8%; 
    top: 50%; 
    transform: translateY(-50%);
    z-index: 3; 
    display: flex; 
    flex-direction: column; 
    gap: 20px;
}

.thumb-frame {
    position: relative; 
    width: 140px; 
    height: 90px; 
    background-color: var(--bg-dark);
    border: 2px solid #13203b; 
    cursor: pointer; 
    overflow: hidden; 
    transition: 0.3s;
}

.thumb-frame.active { border-color: var(--accent-neon); }

.thumb-img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    opacity: 0.4; 
    filter: grayscale(80%); 
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1); 
}

.thumb-frame:hover .thumb-img, .thumb-frame.active .thumb-img { 
    opacity: 1; 
    filter: grayscale(0%); 
    transform: scale(1.3); 
}

.thumb-progress {
    position: absolute; 
    bottom: 0; 
    left: 0; 
    height: 4px;
    width: 0%; 
    background-color: var(--accent-neon);
}

.thumb-frame.active .thumb-progress { width: 100%; transition: width 5s linear; }

.corner-deco { position: absolute; width: 50px; height: 50px; z-index: 4; pointer-events: none; }
.corner-deco.top-left { top: 40px; left: 40px; border-top: 3px solid var(--accent-neon); border-left: 3px solid var(--accent-neon); }
.corner-deco.bottom-right { bottom: 40px; right: 40px; border-bottom: 3px solid var(--accent-neon); border-right: 3px solid var(--accent-neon); }

/* ================= TENTANG KAMI (DATA TERMINAL HUD) ================= */
.about-tactical {
    padding: 100px 8%; 
    background-color: var(--bg-dark); 
    position: relative; 
    display: flex; 
    justify-content: center;
    overflow: hidden; 
}

.panel-container {
    width: 100%; 
    max-width: 1200px; 
    background: var(--accent-neon); 
    padding: 2px; 
    clip-path: polygon(40px 0, 100% 0, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0 100%, 0 40px);
    box-shadow: 0 0 40px rgba(0, 102, 255, 0.2);
}

.panel-header {
    background: #0a1122; 
    padding: 15px 20px; 
    display: flex; 
    align-items: center; 
    gap: 15px;
    font-family: var(--font-heading); 
    font-size: 14px; 
    letter-spacing: 2px; 
    color: var(--text-muted);
    border-bottom: 2px solid var(--accent-neon);
}

.blinking-dot {
    width: 12px; height: 12px; background-color: #ff003c; border-radius: 50%;
    animation: blinkRed 1s infinite;
}
@keyframes blinkRed { 
    0%, 100% { opacity: 1; box-shadow: 0 0 10px #ff003c; } 
    50% { opacity: 0.2; box-shadow: none; } 
}

.panel-body { 
    display: flex; 
    gap: 0; 
    background: linear-gradient(135deg, rgba(10, 17, 34, 0.95) 0%, rgba(3, 5, 10, 0.98) 100%);
}

.hud-image-wrapper {
    flex: 1; position: relative; padding: 20px; 
    border-right: 2px solid #13203b; overflow: hidden; background-color: #03050a;
}

.hud-img {
    width: 100%; height: 100%; object-fit: cover; min-height: 400px;
    filter: grayscale(100%) sepia(30%) hue-rotate(180deg) brightness(80%) contrast(150%);
}

.scanline {
    position: absolute; top: 20px; left: 20px; right: 20px; bottom: 20px;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 102, 255, 0.15) 51%);
    background-size: 100% 4px; pointer-events: none;
}

.hud-frame { position: absolute; width: 40px; height: 40px; pointer-events: none; transition: 0.3s; }
.hud-frame.top-left { top: 10px; left: 10px; border-top: 3px solid var(--accent-neon); border-left: 3px solid var(--accent-neon); }
.hud-frame.top-right { top: 10px; right: 10px; border-top: 3px solid var(--accent-neon); border-right: 3px solid var(--accent-neon); }
.hud-frame.bottom-left { bottom: 10px; left: 10px; border-bottom: 3px solid var(--accent-neon); border-left: 3px solid var(--accent-neon); }
.hud-frame.bottom-right { bottom: 10px; right: 10px; border-bottom: 3px solid var(--accent-neon); border-right: 3px solid var(--accent-neon); }

.hud-image-wrapper:hover .hud-frame { width: 60px; height: 60px; }

.hud-data {
    position: absolute; bottom: 30px; left: 30px; background: var(--accent-neon); color: #000;
    padding: 5px 15px; font-family: var(--font-heading); font-size: 13px; font-weight: 900; letter-spacing: 2px;
}

.hud-text-wrapper {
    flex: 1.2; padding: 50px; display: flex; flex-direction: column; justify-content: center;
    background-image: linear-gradient(rgba(19, 32, 59, 0.4) 1px, transparent 1px); background-size: 100% 4px;
}

.tactical-title {
    font-family: var(--font-heading); font-size: 3rem; color: #fff; text-transform: uppercase;
    margin-bottom: 30px; border-left: 6px solid var(--accent-neon); padding-left: 20px;
    line-height: 1.1; 
    text-shadow: 2px 2px 0px rgba(0, 102, 255, 0.5), -2px -2px 0px #ff003c;
}

.text-content p { font-size: 1.1rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }
.neon-text { color: var(--accent-neon); text-shadow: 0 0 8px rgba(0, 102, 255, 0.5); letter-spacing: 1px; }

.hud-stats { 
    display: flex; gap: 20px; margin-top: 30px; 
    border-top: 2px dashed #13203b; padding-top: 30px; 
}

.h-stat { 
    flex: 1; display: flex; flex-direction: column; gap: 5px; 
    background: rgba(19, 32, 59, 0.3); padding: 15px;
    border-bottom: 2px solid var(--accent-neon);
    transition: 0.3s ease;
}

.h-stat:hover { background: rgba(0, 102, 255, 0.1); transform: translateY(-5px); }

.h-num { font-family: var(--font-heading); font-size: 2rem; color: var(--accent-neon); font-weight: 800; }
.h-label { font-size: 0.75rem; color: #fff; letter-spacing: 2px; font-weight: bold; }

/* ================= KEUNGGULAN TAKTIS (DESAIN GAHAR) ================= */
.why-tactical {
    padding: 120px 8%;
    background-color: var(--bg-dark);
    position: relative;
    background-image: 
        linear-gradient(rgba(0, 102, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 102, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    overflow: hidden; 
}

.section-header-hud { text-align: center; margin-bottom: 70px; }

.glitch-text {
    font-family: var(--font-heading); font-size: 3.5rem; color: #fff;
    text-transform: uppercase; letter-spacing: 2px;
    text-shadow: 2px 2px 0px var(--accent-neon), -2px -2px 0px #ff003c;
    font-weight: 800;
}

.hud-divider {
    width: 200px; height: 4px; background: var(--accent-neon);
    margin: 20px auto; position: relative; box-shadow: 0 0 15px var(--accent-neon);
}
.hud-divider::before, .hud-divider::after {
    content: ''; position: absolute; top: -4px; width: 12px; height: 12px;
    background: #fff; border: 2px solid var(--accent-neon);
}
.hud-divider::before { left: -20px; }
.hud-divider::after { right: -20px; }

.section-header-hud p {
    color: var(--text-muted); font-family: var(--font-heading);
    letter-spacing: 4px; font-size: 15px; font-weight: bold;
}

.advantage-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px; max-width: 1200px; margin: 0 auto;
}

.adv-card {
    position: relative; background: var(--accent-neon); padding: 2px;
    clip-path: polygon(30px 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%, 0 30px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.adv-card-inner {
    background: linear-gradient(135deg, rgba(10, 17, 34, 0.95) 0%, rgba(3, 5, 10, 0.98) 100%);
    height: 100%; padding: 40px 30px;
    clip-path: polygon(30px 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%, 0 30px);
    position: relative;
}
.adv-card:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.3);
}
.adv-card:hover .adv-card-inner { background: linear-gradient(135deg, rgba(19, 32, 59, 0.95) 0%, rgba(6, 9, 19, 0.98) 100%); }

.adv-icon {
    font-family: var(--font-heading); font-size: 1.2rem; color: #000;
    background: var(--accent-neon); display: inline-block; padding: 8px 20px; font-weight: 800;
    letter-spacing: 2px; margin-bottom: 25px;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    box-shadow: 0 0 15px var(--accent-neon);
}
.adv-card h3 { font-family: var(--font-heading); color: #fff; font-size: 1.6rem; margin-bottom: 15px; }
.adv-card p { color: var(--text-muted); font-size: 1rem; line-height: 1.7; }
.adv-target-crosshair {
    position: absolute; bottom: 20px; right: 20px; width: 30px; height: 30px;
    border-right: 2px solid rgba(0, 102, 255, 0.3); border-bottom: 2px solid rgba(0, 102, 255, 0.3); transition: 0.3s;
}
.adv-card:hover .adv-target-crosshair { border-color: var(--accent-neon); width: 40px; height: 40px; }

/* ================= KODE ANIMASI MUNCUL (REVEAL) ================= */
.reveal-left { opacity: 0; transform: translateX(-150px); transition: all 1s cubic-bezier(0.25, 1, 0.5, 1); }
.reveal-right { opacity: 0; transform: translateX(150px); transition: all 1s cubic-bezier(0.25, 1, 0.5, 1); }
.reveal-bottom { opacity: 0; transform: translateY(150px); transition: all 1s cubic-bezier(0.25, 1, 0.5, 1); }

.reveal-left.active, .reveal-right.active, .reveal-bottom.active {
    opacity: 1; transform: translate(0);
}

/* ================= SEMUA ATURAN RESPONSIF LAYAR HP (TERPUSAT DI SINI) ================= */
@media (max-width: 768px) {
    /* 1. Navbar HP */
    .navbar { padding: 0 20px; height: 70px; }
    .logo-img { height: 55px; filter: none; } 
    .logo-text { font-size: 20px; letter-spacing: 1px; }

    .nav-links {
        display: none; position: absolute; top: 70px; left: 0; width: 100%;
        background-color: #060913; 
        background-image: linear-gradient(rgba(0, 102, 255, 0.15) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 102, 255, 0.15) 1px, transparent 1px);
        background-size: 20px 20px;
        border-top: 1px solid rgba(0, 102, 255, 0.3); border-bottom: 3px solid var(--accent-neon); 
        box-shadow: 0 20px 50px rgba(0, 0, 0, 1); z-index: 99999;
    }

    .nav-links.active { display: block; animation: hudSlideDown 0.4s cubic-bezier(0.1, 1, 0.2, 1) forwards; }

    @keyframes hudSlideDown {
        from { opacity: 0; transform: translateY(-20px) scaleY(0.95); transform-origin: top; }
        to { opacity: 1; transform: translateY(0) scaleY(1); transform-origin: top; }
    }

    .nav-links ul { flex-direction: column; gap: 0; }
    .nav-links a { 
        height: 65px; justify-content: flex-start; padding-left: 25px; 
        border-bottom: 1px solid rgba(0, 102, 255, 0.15); font-size: 16px; transition: all 0.3s ease;
        color: #ffffff;
    }
    .nav-links a::before { display: none; }

    .nav-links a::after {
        content: '>'; position: absolute; left: 25px; color: var(--accent-neon);
        font-family: var(--font-heading); font-weight: 800; opacity: 0;
        transform: translateX(-15px); transition: all 0.3s ease;
    }

    .nav-links a:hover, .nav-links a.active {
        background: linear-gradient(90deg, rgba(0, 102, 255, 0.15) 0%, transparent 100%);
        padding-left: 45px; border-left: 4px solid var(--accent-neon);
    }
    .nav-links a:hover::after, .nav-links a.active::after { opacity: 1; transform: translateX(0); }
    .menu-toggle { display: flex; }

    /* 2. Hero HP */
    .hero { padding: 0 6%; justify-content: center; text-align: left; height: calc(100svh - 70px); }
    .hero-content { margin-top: -60px; }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-btns { flex-direction: column; width: 100%; gap: 10px; }
    .btn-gahar { text-align: center; }
    .thumbnail-list { flex-direction: row; top: auto; bottom: 30px; right: 50%; transform: translateX(50%); gap: 10px; }
    .thumb-frame { width: 90px; height: 60px; }
    .corner-deco { width: 30px; height: 30px; }
    .corner-deco.top-left { top: 20px; left: 20px; }
    .corner-deco.bottom-right { bottom: 120px; right: 20px; }

    /* 3. Tentang Kami HP */
    .about-tactical { padding: 60px 5%; }
    .panel-body { flex-direction: column; }
    .hud-image-wrapper { border-right: none; border-bottom: 2px solid #13203b; padding: 10px; }
    .hud-img { min-height: 250px; }
    .scanline { top: 10px; left: 10px; right: 10px; bottom: 10px; }
    .hud-data { bottom: 20px; left: 20px; font-size: 11px; }
    .hud-text-wrapper { padding: 30px 20px; background-size: 100% 3px; }
    .tactical-title { font-size: 2.2rem; border-left: 4px solid var(--accent-neon); padding-left: 15px; margin-bottom: 20px; }
    .text-content p { font-size: 1rem; }
    .hud-stats { flex-direction: column; gap: 20px; padding-top: 25px; }
    .h-stat { border-left: 3px solid #13203b; padding-left: 15px; }

    /* 4. Keunggulan HP */
    .why-tactical { padding: 80px 5%; }
    .glitch-text { font-size: 2.2rem; }
    .advantage-grid { grid-template-columns: 1fr; gap: 25px; }
    .reveal-left { transform: translateX(-50px); }
    .reveal-right { transform: translateX(50px); }
    .reveal-bottom { transform: translateY(50px); }
}
/* ================= PROTOKOL LAYANAN (SERVICES) ================= */
.services-tactical {
    padding: 100px 8%;
    background-color: var(--bg-dark);
    position: relative;
    overflow: hidden;
    border-top: 2px dashed rgba(0, 102, 255, 0.3);
}

.svc-bg-grid {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(19, 32, 59, 0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(19, 32, 59, 0.3) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.svc-card {
    background: rgba(10, 17, 34, 0.8);
    border: 1px solid rgba(0, 102, 255, 0.2);
    padding: 40px 30px;
    position: relative;
    backdrop-filter: blur(5px);
    transition: all 0.4s ease;
}

/* Sudut Taktis (Corners) */
.svc-corner {
    position: absolute;
    width: 25px;
    height: 25px;
    pointer-events: none;
    transition: 0.4s;
}
.svc-corner.top-left {
    top: 0; left: 0;
    border-top: 3px solid var(--accent-neon);
    border-left: 3px solid var(--accent-neon);
}
.svc-corner.bottom-right {
    bottom: 0; right: 0;
    border-bottom: 3px solid var(--accent-neon);
    border-right: 3px solid var(--accent-neon);
}

/* Hover Effect Card */
.svc-card:hover {
    background: rgba(19, 32, 59, 0.8);
    border-color: var(--accent-neon);
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.15);
    transform: translateY(-5px);
}
.svc-card:hover .svc-corner {
    width: 40px;
    height: 40px;
}

/* Status Bar di atas Card */
.svc-status-bar {
    position: absolute;
    top: -15px;
    left: 30px;
    background: #03050a;
    border: 1px solid var(--accent-neon);
    padding: 5px 15px;
    font-family: var(--font-heading);
    font-size: 11px;
    color: #fff;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pulse-red {
    width: 8px;
    height: 8px;
    background-color: #ff003c;
    border-radius: 50%;
    box-shadow: 0 0 10px #ff003c;
    animation: blinkRed 1.5s infinite;
}

/* Ikon Layanan */
.svc-icon-wrapper {
    margin-bottom: 25px;
    margin-top: 15px;
}
.svc-icon {
    font-size: 40px;
    color: var(--accent-neon);
    text-shadow: 0 0 15px rgba(0, 102, 255, 0.6);
    display: inline-block;
}

/* Teks Deskripsi */
.svc-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.svc-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Tombol Aksi */
.btn-svc {
    display: inline-block;
    color: var(--accent-neon);
    font-family: var(--font-heading);
    font-weight: 800;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 2px;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
    text-transform: uppercase;
}
.btn-svc:hover {
    color: #fff;
    border-bottom: 2px solid var(--accent-neon);
    text-shadow: 0 0 10px var(--accent-neon);
}
.btn-svc .arrow {
    display: inline-block;
    transition: 0.3s;
}
.btn-svc:hover .arrow {
    transform: translateX(5px);
}

/* ================= RESPONSIF LAYAR HP UNTUK LAYANAN ================= */
@media (max-width: 768px) {
    .services-tactical { padding: 80px 5%; }
    .services-grid { grid-template-columns: 1fr; gap: 40px; }
    .svc-card { padding: 30px 20px; }
    .svc-title { font-size: 1.3rem; }
}
/* ================= LAYANAN (TACTICAL HUD UPGRADE) ================= */
.services-tactical {
    padding: 100px 8%;
    background-color: var(--bg-dark);
    position: relative;
    overflow: hidden;
    border-top: 2px dashed rgba(0, 102, 255, 0.3);
}

.svc-bg-grid {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(0, 102, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 102, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 0;
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.svc-card {
    background: linear-gradient(180deg, rgba(10, 17, 34, 0.9) 0%, rgba(3, 5, 10, 0.95) 100%);
    border: 1px solid rgba(0, 102, 255, 0.2);
    padding: 50px 30px 40px 30px;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
}

/* Sudut Taktis (Corners) */
.svc-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    pointer-events: none;
    transition: 0.4s;
    z-index: 5;
}
.svc-corner.top-left { top: -1px; left: -1px; border-top: 3px solid var(--accent-neon); border-left: 3px solid var(--accent-neon); }
.svc-corner.bottom-right { bottom: -1px; right: -1px; border-bottom: 3px solid var(--accent-neon); border-right: 3px solid var(--accent-neon); }

/* Hover Effect Card */
.svc-card:hover {
    border-color: rgba(0, 102, 255, 0.6);
    box-shadow: 0 10px 40px rgba(0, 102, 255, 0.15), inset 0 0 30px rgba(0, 102, 255, 0.05);
    transform: translateY(-5px);
}
.svc-card:hover .svc-corner { width: 40px; height: 40px; box-shadow: 0 0 10px var(--accent-neon); }

/* Status Bar di atas Card */
.svc-status-bar {
    position: absolute;
    top: 0; left: 0; width: 100%;
    background: rgba(0, 102, 255, 0.1);
    border-bottom: 1px solid rgba(0, 102, 255, 0.3);
    padding: 6px 15px;
    font-family: var(--font-heading);
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 2px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-left { display: flex; align-items: center; gap: 8px; color: #fff; }
.pulse-red { width: 6px; height: 6px; background-color: #ff003c; border-radius: 50%; box-shadow: 0 0 8px #ff003c; animation: blinkRed 1s infinite; }

/* Wrapper Ikon HUD */
.svc-icon-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 20px auto 30px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Lingkaran Target Berputar */
.icon-ring {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border-radius: 50%;
    border: 1px dashed rgba(0, 102, 255, 0.4);
    border-top: 2px solid var(--accent-neon);
    animation: hudSpin 8s linear infinite;
    transition: 0.3s;
}
.icon-ring-inner {
    position: absolute;
    top: 10px; left: 10px; right: 10px; bottom: 10px;
    border-radius: 50%;
    border: 1px dotted rgba(255, 255, 255, 0.2);
    animation: hudSpinReverse 12s linear infinite;
}

@keyframes hudSpin { 100% { transform: rotate(360deg); } }
@keyframes hudSpinReverse { 100% { transform: rotate(-360deg); } }

/* Ikon SVG */
.hud-svg-icon {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 8px rgba(0, 102, 255, 0.8));
    transition: all 0.3s ease;
}

/* Efek saat card di-hover */
.svc-card:hover .icon-ring { border-color: var(--accent-neon); animation-duration: 4s; }
.svc-card:hover .hud-svg-icon { transform: scale(1.15); filter: drop-shadow(0 0 15px var(--accent-neon)); }

/* Teks Deskripsi */
.svc-content { text-align: center; }
.svc-title {
    font-family: var(--font-heading); font-size: 1.4rem; color: #fff;
    margin-bottom: 15px; text-transform: uppercase; letter-spacing: 2px;
}
.svc-desc {
    color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 30px;
}

/* Tombol Aksi bergaya Terminal */
.btn-svc {
    display: inline-block;
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.3);
    padding: 10px 20px;
    color: var(--accent-neon);
    font-family: var(--font-heading);
    font-weight: 700;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}
.btn-svc .cmd { color: #fff; animation: blinkRed 1s infinite; margin-right: 5px; }

.btn-svc:hover {
    background: var(--accent-neon);
    color: #fff;
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.5);
}

/* Garis Dekoratif (HUD Barcode) di pojok bawah */
.hud-deco-lines {
    position: absolute; bottom: 15px; right: 15px; display: flex; gap: 4px; align-items: flex-end; opacity: 0.5;
}
.hud-deco-lines span { width: 3px; background: var(--accent-neon); transition: 0.3s; }
.hud-deco-lines span:nth-child(1) { height: 10px; }
.hud-deco-lines span:nth-child(2) { height: 18px; }
.hud-deco-lines span:nth-child(3) { height: 8px; }
.hud-deco-lines span:nth-child(4) { height: 14px; }
.svc-card:hover .hud-deco-lines { opacity: 1; }
.svc-card:hover .hud-deco-lines span { animation: equalize 1s infinite alternate; }

@keyframes equalize {
    0% { height: 5px; }
    100% { height: 20px; }
}
/* ================= PAKET KEDUKAAN (PRICING TACTICAL) ================= */
.pricing-tactical {
    padding: 100px 8%;
    background-color: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    align-items: center; /* Memastikan highlight card bisa lebih tinggi */
}

.price-card {
    background: rgba(6, 9, 19, 0.8);
    border: 1px solid rgba(0, 102, 255, 0.2);
    padding: 40px 30px;
    position: relative;
    backdrop-filter: blur(8px);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Tampilan Khusus Card Rekomendasi (Highlight) */
.price-card.highlight {
    background: linear-gradient(180deg, rgba(19, 32, 59, 0.9) 0%, rgba(6, 9, 19, 0.95) 100%);
    border: 2px solid var(--accent-neon);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.15);
    z-index: 3;
}

.highlight-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-neon);
    color: #000;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    padding: 5px 20px;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 15px var(--accent-neon);
}

.highlight-badge .pulse-red { background-color: #000; box-shadow: none; animation: none; }

.price-card:hover {
    border-color: var(--accent-neon);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.2);
}
.price-card.highlight:hover { transform: scale(1.05) translateY(-5px); }

/* Sudut Taktis */
.price-corner {
    position: absolute; width: 20px; height: 20px; pointer-events: none; transition: 0.4s; z-index: 5;
}
.price-corner.top-left { top: -1px; left: -1px; border-top: 2px solid var(--accent-neon); border-left: 2px solid var(--accent-neon); }
.price-corner.bottom-right { bottom: -1px; right: -1px; border-bottom: 2px solid var(--accent-neon); border-right: 2px solid var(--accent-neon); }

/* Header & Harga */
.price-header { text-align: center; border-bottom: 2px dashed rgba(0, 102, 255, 0.3); padding-bottom: 20px; margin-bottom: 20px; }
.sys-id { display: block; font-family: var(--font-heading); font-size: 10px; color: var(--accent-neon); letter-spacing: 3px; margin-bottom: 10px; }
.price-header h3 { font-family: var(--font-heading); font-size: 1.5rem; color: #fff; letter-spacing: 2px; margin-bottom: 15px; }

.price-amount { font-family: var(--font-heading); margin-bottom: 10px; }
.currency { font-size: 1rem; color: var(--text-muted); vertical-align: top; }
.digits { font-size: 1.8rem; font-weight: 800; color: #fff; text-shadow: 0 0 10px rgba(255,255,255,0.3); }

.price-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* Fitur List HUD */
.price-features { list-style: none; margin-bottom: 30px; flex-grow: 1; }
.price-features li {
    font-size: 0.95rem; color: #fff; padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex; align-items: flex-start; gap: 10px;
}
.price-features li:last-child { border-bottom: none; }
.price-features li.disabled { color: #555; text-decoration: line-through; }
.price-features li.disabled .bullet { background: #555; box-shadow: none; }

.bullet {
    display: inline-block; width: 6px; height: 6px; background: var(--accent-neon);
    margin-top: 6px; box-shadow: 0 0 8px var(--accent-neon); transform: rotate(45deg);
}

/* Tombol Harga */
.btn-price {
    display: block; text-align: center; background: rgba(0, 102, 255, 0.05); border: 1px solid rgba(0, 102, 255, 0.4);
    padding: 15px; color: var(--accent-neon); font-family: var(--font-heading); font-weight: 700; font-size: 13px;
    letter-spacing: 2px; text-decoration: none; transition: 0.3s;
}
.btn-price.btn-price-active { background: var(--accent-neon); color: #000; border-color: var(--accent-neon); }
.btn-price.btn-price-active .cmd { color: #000; }
.btn-price:hover { background: var(--accent-neon); color: #fff; box-shadow: 0 0 20px rgba(0, 102, 255, 0.4); }
.btn-price .cmd { margin-right: 5px; animation: blinkRed 1s infinite; }
/* ================= DESAIN FOTO ARMADA DALAM PAKET ================= */
.price-img-wrapper {
    position: relative;
    width: 100%;
    height: 200px; /* Tinggi foto */
    margin-bottom: 25px;
    border: 1px solid rgba(0, 102, 255, 0.4);
    overflow: hidden;
    background-color: #03050a;
}

/* Gambar Bawaan (Dibuat mode Tactical/Radar) */
.price-img {
    width: 97;
    height: 97%;
    object-fit: cover;
    filter: grayscale(80%) sepia(30%) hue-rotate(180deg) brightness(70%);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Saat Card di-hover: Gambar kembali berwarna dan nge-zoom */
.price-card:hover .price-img {
    filter: grayscale(0%) sepia(0%) hue-rotate(0deg) brightness(100%);
    transform: scale(1.1);
}

/* Garis Animasi Scan Kamera */
.img-scanline {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 102, 255, 0.2) 51%);
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 2;
}

/* Sudut Bidik (Crosshair) di atas foto */
.p-img-corner {
    position: absolute; 
    width: 15px; 
    height: 15px; 
    z-index: 3; 
    pointer-events: none; 
    transition: 0.3s;
}
.p-img-corner.top-left { 
    top: 8px; left: 8px; 
    border-top: 2px solid var(--accent-neon); 
    border-left: 2px solid var(--accent-neon); 
}
.p-img-corner.bottom-right { 
    bottom: 8px; right: 8px; 
    border-bottom: 2px solid var(--accent-neon); 
    border-right: 2px solid var(--accent-neon); 
}

/* Sudut melebar saat card di-hover */
.price-card:hover .p-img-corner {
    width: 30px;
    height: 30px;
}
/* ================= TESTIMONI (LOG MISI TACTICAL) ================= */
.testimonial-tactical {
    padding: 100px 8%;
    background-color: #03050a;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 102, 255, 0.2);
}

.testi-container {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(10, 17, 34, 0.9) 0%, rgba(3, 5, 10, 0.95) 100%);
    border: 1px solid rgba(0, 102, 255, 0.3);
    padding: 50px;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 102, 255, 0.1);
}

/* Sudut Layar TargetHUD */
.testi-corner { position: absolute; width: 30px; height: 30px; border: 2px solid var(--accent-neon); z-index: 5; pointer-events: none; }
.testi-corner.top-left { top: 15px; left: 15px; border-right: none; border-bottom: none; }
.testi-corner.top-right { top: 15px; right: 15px; border-left: none; border-bottom: none; }
.testi-corner.bottom-left { bottom: 15px; left: 15px; border-right: none; border-top: none; }
.testi-corner.bottom-right { bottom: 15px; right: 15px; border-left: none; border-top: none; }

/* Wrapper Slider (Pengunci batas layar) */
.testi-slider-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

/* Track (Jalur geser) */
.testi-track {
    display: flex;
    flex-wrap: nowrap !important; /* KUNCI: Paksa elemen tidak turun ke bawah */
    align-items: stretch;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Individual Slide */
.testi-slide {
    flex: 0 0 100%; /* KUNCI: Paksa lebar pas 100% dari container induk */
    width: 100%;
    padding: 10px 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

/* Konten Dalam Slide */
.testi-content {
    text-align: center;
    max-width: 700px;
}

/* Foto Profil & Efek Radar */
.testi-avatar-box {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 20px auto;
}
.testi-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0, 102, 255, 0.5);
    filter: grayscale(50%);
}
.avatar-ring {
    position: absolute; top: -10px; left: -10px; right: -10px; bottom: -10px;
    border-radius: 50%;
    border: 1px dashed var(--accent-neon);
    animation: hudSpin 10s linear infinite;
}

.testi-quote-icon { font-size: 2.5rem; color: rgba(0, 102, 255, 0.3); line-height: 1; margin-bottom: 10px; }
.testi-text { font-size: 1.15rem; color: #fff; font-style: italic; line-height: 1.8; margin-bottom: 30px; letter-spacing: 0.5px; }
.testi-name { font-family: var(--font-heading); font-size: 1.2rem; color: var(--accent-neon); letter-spacing: 2px; }
.testi-role { font-size: 0.85rem; color: var(--text-muted); font-family: var(--font-heading); text-transform: uppercase; letter-spacing: 1px; display: block; margin-top: 5px; }

/* Kontrol Navigasi Bawah */
.testi-controls {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 40px; border-top: 1px dashed rgba(0, 102, 255, 0.3); padding-top: 20px;
}

.cmd-btn {
    background: transparent; border: 1px solid rgba(0, 102, 255, 0.3); color: var(--text-muted);
    font-family: var(--font-heading); font-size: 12px; font-weight: 700; letter-spacing: 2px;
    padding: 8px 15px; cursor: pointer; transition: 0.3s; text-transform: uppercase;
}
.cmd-btn:hover { background: rgba(0, 102, 255, 0.1); border-color: var(--accent-neon); color: #fff; }
.cmd-btn .cmd { color: var(--accent-neon); }

.testi-indicators { display: flex; gap: 10px; }
.dot { width: 30px; height: 3px; background: rgba(255, 255, 255, 0.2); cursor: pointer; transition: 0.3s; }
.dot.active { background: var(--accent-neon); box-shadow: 0 0 10px var(--accent-neon); }


/* ================= RESPONSIF TESTIMONI HP ================= */
@media (max-width: 768px) {
    .testimonial-tactical { padding: 60px 5%; }
    .testi-container { padding: 30px 15px; }
    .testi-avatar-box { width: 70px; height: 70px; margin-bottom: 15px; }
    .testi-text { font-size: 0.95rem; line-height: 1.6; margin-bottom: 20px; }
    .testi-quote-icon { font-size: 2rem; margin-bottom: 5px; }
    
    .testi-controls { 
        flex-direction: row; 
        justify-content: space-between; 
        gap: 10px; 
        padding-top: 15px; 
        margin-top: 20px; 
    }
    .cmd-btn { padding: 5px 10px; font-size: 10px; }
}

@media (max-width: 480px) {
    .cmd-btn { font-size: 0; }
    .cmd-btn .cmd { font-size: 12px; margin: 0; }
}
/* ================= FOOTER TACTICAL BARU ================= */
.footer-tactical {
    background-color: #010307;
    border-top: 2px solid rgba(0, 102, 255, 0.3);
    padding: 80px 8% 20px 8%;
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(0, 102, 255, 0.5);
}

.footer-desc, .footer-desc-sm {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-status {
    font-family: var(--font-heading);
    font-size: 11px;
    color: #fff;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--accent-neon);
    letter-spacing: 2px;
    margin-bottom: 20px;
    border-left: 3px solid var(--accent-neon);
    padding-left: 10px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-neon);
    transform: translateX(5px);
}

/* Grid Tombol Sosial Media */
.social-icons-grid {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon-btn {
    width: 45px;
    height: 45px;
    background: rgba(0, 102, 255, 0.05);
    border: 1px solid rgba(0, 102, 255, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-neon);
    transition: all 0.3s ease;
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.social-icon-btn svg {
    width: 20px;
    height: 20px;
    transition: 0.3s;
}

.social-icon-btn:hover {
    background: var(--accent-neon);
    color: #000;
    border-color: var(--accent-neon);
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.6);
    transform: translateY(-3px);
}

/* Garis Copyright Bawah */
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px dashed rgba(0, 102, 255, 0.2);
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    font-family: var(--font-heading);
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 2px;
}

/* Responsif Footer HP */
@media (max-width: 768px) {
    .footer-tactical { padding: 60px 5% 20px 5%; }
    .footer-container { gap: 30px; margin-bottom: 30px; }
}
/* ================= FLOATING WHATSAPP TACTICAL ================= */
.float-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: rgba(10, 17, 34, 0.95);
    border: 2px solid #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #25D366;
    z-index: 9998;
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}

.float-wa svg {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 0 8px rgba(37, 211, 102, 0.8));
    transition: 0.3s;
}

/* Lingkaran Target/Radar Berputar di Luar Tombol */
.wa-ring {
    position: absolute;
    top: -8px; left: -8px; right: -8px; bottom: -8px;
    border-radius: 50%;
    border: 1px dashed rgba(37, 211, 102, 0.6);
    animation: hudSpin 8s linear infinite;
}

/* Teks Tooltip Melayang Saat Disorot (Hover) */
.wa-tooltip {
    position: absolute;
    right: 75px;
    background: rgba(1, 3, 7, 0.95);
    border: 1px solid #25D366;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 10px;
    padding: 6px 12px;
    letter-spacing: 2px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.2);
    clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}

/* Efek Hover */
.float-wa:hover {
    background: #25D366;
    color: #000;
    box-shadow: 0 0 35px rgba(37, 211, 102, 0.9);
    transform: scale(1.1);
}

.float-wa:hover svg {
    filter: none;
}

.float-wa:hover .wa-tooltip {
    opacity: 1;
    transform: translateX(-5px);
}

/* Responsif untuk Layar HP */
@media (max-width: 768px) {
    .float-wa {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
    }
    .float-wa svg {
        width: 28px;
        height: 28px;
    }
    .wa-tooltip {
        display: none;
    }
}
/* ================= EDUKASI TACTICAL (DENGAN FOTO HUD) ================= */
.edukasi-tactical {
    padding: 80px 8%;
    background-color: #03050a;
    border-top: 1px solid rgba(0, 102, 255, 0.2);
    position: relative;
}

.edu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.edu-card {
    background: rgba(10, 17, 34, 0.8);
    border: 1px solid rgba(0, 102, 255, 0.3);
    position: relative;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Agar foto tidak keluar dari sudut */
}

.edu-card:hover {
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.2);
    border-color: var(--accent-neon);
    transform: translateY(-5px);
}

.edu-corner { position: absolute; width: 15px; height: 15px; border: 2px solid var(--accent-neon); z-index: 5; }
.edu-corner.top-left { top: 0; left: 0; border-right: none; border-bottom: none; }
.edu-corner.bottom-right { bottom: 0; right: 0; border-left: none; border-top: none; }

/* Styling Foto HUD Taktis */
.edu-img-wrapper {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 102, 255, 0.4);
}

/* Filter foto ala monitor medis/militer */
.edu-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(80%) sepia(50%) hue-rotate(180deg) brightness(70%) contrast(120%);
    transition: all 0.5s ease;
}

/* Garis scan/scanline di atas foto */
.edu-img-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.15),
        rgba(0, 0, 0, 0.15) 1px,
        transparent 1px,
        transparent 2px
    );
    z-index: 1;
    pointer-events: none;
}

/* Tulisan LIVE FEED di pojok foto */
.edu-img-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 0, 0, 0.5);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 9px;
    padding: 3px 8px;
    letter-spacing: 2px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Efek saat card di hover (Foto jadi jelas dan membesar sedikit) */
.edu-card:hover .edu-thumb {
    transform: scale(1.1);
    filter: grayscale(0%) sepia(0%) hue-rotate(0deg) brightness(90%) contrast(110%);
}

.edu-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.edu-meta {
    font-family: var(--font-heading);
    font-size: 10px;
    color: var(--accent-neon);
    letter-spacing: 2px;
    margin-bottom: 15px;
    border-bottom: 1px dashed rgba(0, 102, 255, 0.3);
    padding-bottom: 5px;
}

.edu-title {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.4;
}

.edu-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* ================= MODAL TACTICAL DENGAN FOTO ================= */
.tactical-modal {
    display: none; 
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(1, 3, 7, 0.9);
    backdrop-filter: blur(8px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.tactical-modal.active {
    display: flex;
    animation: fadeInHUD 0.3s ease forwards;
}

.modal-content {
    background: rgba(10, 17, 34, 0.95);
    border: 1px solid var(--accent-neon);
    width: 100%;
    max-width: 650px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.3);
}

.modal-header {
    background: rgba(0, 102, 255, 0.1);
    padding: 15px 20px;
    border-bottom: 1px solid rgba(0, 102, 255, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-family: var(--font-heading);
    color: var(--accent-neon);
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.close-modal {
    background: none; border: none;
    color: var(--text-muted);
    font-size: 2rem; cursor: pointer;
    line-height: 1; transition: 0.3s;
}

.close-modal:hover { color: #ff3333; text-shadow: 0 0 10px #ff3333; }

/* Foto di dalam Modal */
.modal-img-container {
    width: 100%;
    height: 250px;
    position: relative;
    border-bottom: 1px solid var(--accent-neon);
}
.modal-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(80%) contrast(110%);
}
.modal-img-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 102, 255, 0.1);
    pointer-events: none;
}

.modal-body { padding: 30px 25px; color: #fff; line-height: 1.8; font-size: 1rem; }
.modal-body h4 { color: var(--accent-neon); margin-bottom: 10px; margin-top: 15px; border-left: 2px solid var(--accent-neon); padding-left: 10px;}
.modal-body ul { padding-left: 20px; color: var(--text-muted); }
.modal-body li { margin-bottom: 10px; }
.modal-body p { color: var(--text-muted); }

.modal-footer {
    padding: 10px 20px;
    border-top: 1px dashed rgba(0, 102, 255, 0.3);
    font-family: var(--font-heading); font-size: 10px;
    color: var(--text-muted); letter-spacing: 2px;
}

.modal-content::-webkit-scrollbar { width: 5px; }
.modal-content::-webkit-scrollbar-track { background: #000; }
.modal-content::-webkit-scrollbar-thumb { background: var(--accent-neon); }

@keyframes fadeInHUD {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}