/* =========================================================
   === PREMIUM DARK FOOTER (INSPIRED CONCEPT) === 
   ========================================================= */
.cyber-footer {
    background-color: #0d1115; 
    color: #e2e8f0;
    font-family: 'Inter', system-ui, sans-serif;
    position: relative;
    z-index: 50;
    margin-top: 0; 
}

/* --- FOOTER TOP (GRID 4 KOLOM PC) --- */
.footer-top {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr 1.5fr; 
    gap: 3rem;
    align-items: flex-end; 
}

/* --- HEADINGS --- */
.footer-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.2rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    display: inline-block; 
    width: 80%;
}

/* --- LINKS --- */
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-list a {
    font-size: 0.85rem;
    color: #94a3b8;
    transition: color 0.3s ease;
}

.footer-list a:hover { color: #ffffff; }

/* --- MAP --- */
.map-container {
    width: 100%;
    height: 120px; 
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.85;
    transition: all 0.3s ease;
}

.map-container:hover {
    opacity: 1;
    border-color: rgba(126, 16, 156, 0.5); 
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: grayscale(30%) contrast(1.1);
}

.map-placeholder {
    display: flex; align-items: center; justify-content: center; height: 100%;
}

/* --- SOCIAL MEDIA --- */
.social-col {
    display: flex;
    justify-content: center;
    padding-bottom: 1rem;
}

.social-icons { display: flex; gap: 1.2rem; }

.social-icons a {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #ffffff; transition: all 0.3s ease;
}

.social-icons svg { width: 16px; height: 16px; }
.social-icons a:hover { background: #ffffff; color: #0d1115; transform: translateY(-3px); }

/* --- CONTACT (PC) --- */
.contact-col { text-align: right; }

.footer-brand-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.2rem;
}

.contact-info { display: flex; flex-direction: column; gap: 0.8rem; }

.contact-info p {
    display: flex; justify-content: flex-end; align-items: flex-start;
    gap: 0.8rem; font-size: 0.8rem; color: #94a3b8; line-height: 1.5; margin: 0;
}

.contact-info svg { width: 14px; height: 14px; color: #ffffff; margin-top: 3px; flex-shrink: 0; }

/* --- BOTTOM BAR --- */
.footer-bottom {
    background-color: #07090b; padding: 1.5rem 2rem; display: flex;
    align-items: center; justify-content: space-between; font-size: 0.75rem;
    color: #64748b; border-top: 1px solid rgba(255,255,255,0.05);
}

.fb-left { flex: 1; }
.fb-center { flex: 1; display: flex; justify-content: center; gap: 1rem; }
.fb-right { flex: 1; text-align: right; }

.fb-center a, .fb-right a { color: #94a3b8; text-decoration: none; transition: color 0.3s; }
.fb-center a:hover, .fb-right a:hover { color: #ffffff; }
.separator { color: rgba(255,255,255,0.2); }

/* --- [HZT] BADGE --- */
.hzt-link { text-decoration: none; display: inline-block; transition: transform 0.3s ease; }
.hzt-link:hover { transform: scale(1.05); }

.hzt-badge {
    font-family: 'Orbitron', sans-serif; font-weight: 900; font-size: 1.3rem; letter-spacing: 1px;
    display: inline-block; background: linear-gradient(90deg, #C704F7, #00f3ff, #ffffff, #00f3ff, #C704F7);
    background-size: 200% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    animation: hzt-color-flow 8s linear infinite; filter: drop-shadow(0 0 5px rgba(0, 243, 255, 0.2)); 
}
@keyframes hzt-color-flow { to { background-position: 200% center; } }

/* =========================================================
   === RESPONSIVE MOBILE & TABLET (BENTO STYLE) === 
   ========================================================= */
@media (max-width: 1024px) {
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: flex-start; }
    .contact-col { text-align: left; }
    .contact-info p { flex-direction: row-reverse; justify-content: flex-end; } 
}

@media (max-width: 768px) {
    .footer-top { grid-template-columns: 1fr; gap: 2rem; padding: 2rem 1rem; }
    
    .social-col { display: flex; justify-content: center; width: 100%; }
    .social-icons { justify-content: center; }

    /* BENTO CARD KONTAK */
    .contact-col { 
        background: rgba(255, 255, 255, 0.03); 
        border: 1px solid rgba(255, 255, 255, 0.08); 
        border-radius: 16px; 
        padding: 2rem 1rem; 
        margin: 0 auto; 
        width: 100%;
        max-width: 350px; 
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        display: flex;
        flex-direction: column;
        align-items: center; 
    }

    .footer-brand-title { text-align: center; margin-bottom: 1.5rem; width: 100%; }

    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
        width: 100%;
        align-items: center; 
    }

    /* Kunci Posisi Kontak agar Lurus Vertikal di Tengah */
    .contact-info p { 
        display: flex;
        flex-direction: row; 
        align-items: flex-start;
        justify-content: flex-start;
        text-align: left; 
        margin: 0;
        width: 100%;
        max-width: 260px; /* Menjaga blok teks tetap sempit agar terlihat di tengah */
        gap: 15px;
    }

    .contact-info p svg { flex-shrink: 0; margin-top: 2px; }

    .footer-bottom { flex-direction: column; gap: 1.5rem; text-align: center; }
    .fb-right { text-align: center; }
}