/* ===================================================
   FOOTER STYLES - Berita Modern Pro
   =================================================== */

.footer {
    background: #0f172a;
    color: #cbd5e1;
}
.footer-top {
    padding: 48px 0 36px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
}

/* Footer About */
.footer-about .logo { margin-bottom: 14px; }
.footer-about .logo .logo-text { color: white; }
.footer-about p {
    font-size: 13.5px;
    line-height: 1.7;
    color: #94a3b8;
    margin-bottom: 16px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 18px;
    transition: all 0.2s;
}
.footer-social a:hover { background: #DC2626; color: white; }

/* Footer Headings */
.footer-heading {
    font-size: 13px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
    font-family: 'Inter', sans-serif;
}
.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 30px; height: 2px;
    background: #DC2626;
}

/* Footer Links */
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    font-size: 13.5px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}
.footer-links a:hover { color: white; padding-left: 4px; }
.footer-links a .iconify { font-size: 10px; color: #DC2626; }

/* Footer Bottom */
.footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12.5px;
    color: #64748b;
}
.footer-bottom a { color: #94a3b8; }
.footer-bottom a:hover { color: white; }

/* ===== RESPONSIVE FOOTER ===== */
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}