/* =========================================================
   === PREMIUM DARK FOOTER (INSPIRED CONCEPT) === 
   ========================================================= */
.cyber-footer {
    background-color: #35033686; 
    color: #e2e8f0;
    font-family: 'Inter', system-ui, sans-serif;
    position: relative;
    z-index: 50;
    margin-top: 3rem;
}

/* --- FOOTER TOP (GRID 4 KOLOM) --- */
.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 (GAYA UNDERLINE KEKINIAN) --- */
.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%;
}

/* --- KOLOM KIRI (TAUTAN) --- */
.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;
}

/* --- KOLOM TENGAH-KIRI (MAP) --- */
.map-container {
    width: 100%;
    height: 120px; 
    border-radius: 8px;
    overflow: hidden;
    background: rgba(75, 2, 71, 0.685);
    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%;
}

/* --- KOLOM TENGAH-KANAN (SOSIAL MEDIA CIRCLES) --- */
.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);
}

/* --- KOLOM KANAN (KONTAK RATA KANAN) --- */
.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;
}

/* --- SUB-FOOTER BOTTOM --- */
.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); }

/* === LOGO [HZT] ANIMASI MIKRO === */
.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 --- */
@media (max-width: 1024px) {
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: flex-start; }
    .footer-heading { width: 100%; }
    .contact-col { text-align: left; }
    /* Balik ikon ke kiri untuk tablet */
    .contact-info p { flex-direction: row-reverse; justify-content: flex-end; } 
}

@media (max-width: 768px) {
    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
    
    /* === LINGKARAN KUNING: Social Media Rata Tengah === */
    .social-col { 
        display: flex; 
        justify-content: center; 
        width: 100%; 
        padding-top: 1rem;
    }
    .social-icons {
        justify-content: center;
    }

    /* === LINGKARAN HIJAU: 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: 1.8rem 1.5rem; 
        margin: 0 auto; 
        width: 100%;
        max-width: 400px; 
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

    .footer-brand-title {
        text-align: center; 
        margin-bottom: 1.5rem;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
    }

    /* Trik CSS Grid agar Ikon lurus vertikal dan rapi */
    .contact-info p { 
        display: grid; 
        grid-template-columns: 24px 1fr; 
        gap: 12px;
        align-items: start;
        text-align: left; 
        margin: 0;
        width: 100%;
    }

    .contact-info p svg {
        grid-column: 1; 
        grid-row: 1;
        margin-top: 3px; 
        margin-left: 0;
    }

    .contact-info p span {
        grid-column: 2; 
        grid-row: 1;
    }

    /* === SUB-FOOTER BAWAH === */
    .footer-bottom { 
        flex-direction: column; 
        gap: 1.5rem; 
        text-align: center; 
    }
    .fb-right { text-align: center; }
}