.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 80px;
    margin-bottom: 40px;
}

/* Kolom 1: Brand */
.footer-brand {
    flex: 0 0 400px;
    /* Lebih lebar */
    min-width: 250px;
}

.footer-logo h2 {
    font-size: 24px;
    font-weight: 800;
    color: #222;
    margin: 0;
    line-height: 1;
}

.footer-logo h2 span {
    color: #203e78;
    /* Warna biru brand */
}

.footer-logo .domain-ext {
    font-size: 14px;
    color: #666;
    letter-spacing: 1px;
    display: block;
    margin-top: 5px;
    margin-bottom: 15px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: #333;
    font-size: 18px;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #203e78;
}

/* Kolom Link */
.footer-links {
    flex: 1;
    min-width: 150px;
}

.footer-links h3 {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #222;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links ul li a:hover {
    color: #203e78;
    text-decoration: underline;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #eee;
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: #666;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}

.company-name {
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    margin-top: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-content {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
    }

    .footer-brand {
        flex: 100%;
        width: 100%;
        margin-bottom: 10px;
    }

    /* Informasi dan Jaringan Media dalam 1 baris, 2 kolom */
    .footer-links {
        flex: 0 0 48%;
        width: 48%;
        min-width: 0;
    }

    /* Reduce font sizes for mobile */
    .footer-links h3 {
        font-size: 12px !important;
        margin-bottom: 10px !important;
    }

    .footer-links ul li {
        margin-bottom: 6px !important;
    }

    .footer-links ul li a {
        font-size: 11px !important;
    }

    /* Reduce brand section */
    .footer-logo h2 {
        font-size: 18px !important;
    }

    .footer-desc {
        font-size: 11px !important;
        margin-bottom: 10px !important;
    }
}

/* FORCE BLACK FOOTER */
.site-footer,
.footer {
    background-color: #000000 !important;
    color: #ffffff !important;
}

.footer-bottom {
    border-top: 1px solid #333 !important;
    color: #888 !important;
}

.footer-links h3 {
    color: #ffffff !important;
}

.footer-links ul li a {
    color: #cccccc !important;
}

.footer-desc {
    color: #cccccc !important;
}

.footer-logo h2 {
    color: #ffffff !important;
}