/* FOOTER GRID LAYOUT - 3 COLUMNS HORIZONTAL */
.footer-content {
    display: grid !important;
    grid-template-columns: 2fr 1fr 1fr !important;
    gap: 40px !important;
    margin-bottom: 40px;
    align-items: start !important;
    width: 100% !important;
}

/* Kolom 1: Brand */
.footer-brand {
    width: 100%;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.footer-logo h2 {
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 5px 0;
    line-height: 1.2;
}

.footer-logo .domain-ext {
    font-size: 13px;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 15px;
}

.footer-desc {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    font-size: 18px;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #203e78;
}

/* Kolom 2 & 3: Link Sections */
.footer-links {
    width: 100%;
}

.footer-links h3 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 15px 0;
    letter-spacing: 0.5px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
    display: block;
}

.footer-links ul li a:hover {
    text-decoration: underline;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: #888;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}

.company-name {
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 5px;
    font-size: 13px;
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }

    .footer-brand {
        padding-bottom: 15px;
        border-bottom: 1px solid #333;
    }

    .footer-links h3 {
        font-size: 13px !important;
        margin-bottom: 12px !important;
    }

    .footer-links ul li {
        margin-bottom: 7px !important;
    }

    .footer-links ul li a {
        font-size: 12px !important;
    }

    .footer-logo h2 {
        font-size: 18px !important;
    }

    .footer-desc {
        font-size: 12px !important;
        margin-bottom: 15px !important;
    }
}

/* FORCE WHITE BACKGROUND FOOTER */
.site-footer,
.footer {
    background-color: #ffffff !important;
    color: #333333 !important;
    border-top: 2px solid #e0e0e0 !important;
    padding: 40px 0 20px 0;
}

.footer-bottom {
    border-top: 1px solid #e0e0e0 !important;
    color: #666666 !important;
}

.footer-links h3 {
    color: #000000 !important;
}

.footer-links ul li a {
    color: #333333 !important;
}

.footer-desc {
    color: #555555 !important;
}

.footer-logo h2,
.footer-logo h2 span {
    color: #000000 !important;
}

.footer-logo .domain-ext {
    color: #666666 !important;
}

.footer-social a {
    color: #333333 !important;
}

.footer-social a:hover {
    color: #203e78 !important;
}

.company-name {
    color: #000000 !important;
}