/* =========================================
   FOOTER SECTION
   ========================================= */
.site-footer {
    background-color: #171c3d; /* Warna biru gelap / Navy sesuai gambar */
    color: #aebce1; /* Warna teks biru muda/abu-abu */
    padding: 60px 20px 30px;
    font-family: 'Inter', sans-serif;
}

.site-footer .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* Disclaimer Top */
.footer-disclaimer {
    text-align: center;
    margin-bottom: 60px;
}

.footer-disclaimer h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-disclaimer p {
    font-size: 15px;
    line-height: 1.6;
    max-width: 1000px;
    margin: 0 auto;
}

/* 4 Columns Grid */
.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.footer-col h5 {
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: #aebce1;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #2b3974; /* Warna bulat biru */
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: #3f52a1;
}

/* App Buttons */
.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.app-btn {
    display: flex;
    align-items: center;
    background-color: #2b3974; /* Sama dengan tombol sosial */
    color: #ffffff;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    max-width: 180px;
    transition: background-color 0.3s ease;
}

.app-btn:hover {
    background-color: #3f52a1;
}

.app-btn i {
    font-size: 26px;
    margin-right: 12px;
}

.app-btn-text {
    display: flex;
    flex-direction: column;
}

.app-btn-text span {
    font-size: 9px;
    letter-spacing: 0.5px;
}

.app-btn-text strong {
    font-size: 15px;
    font-weight: 600;
}

/* Bottom Copyright Bar */
.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #2b3974; /* Garis pemisah tipis */
}

.copyright-text,
.bottom-links a {
    color: #aebce1;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.bottom-links {
    display: flex;
    gap: 25px;
}

.bottom-links a:hover {
    color: #ffffff;
}

/* Responsive agar bagus di HP */
@media screen and (max-width: 992px) {
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media screen and (max-width: 576px) {
    .footer-columns {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .app-buttons {
        align-items: center;
    }

    .footer-bottom-bar {
        flex-direction: column;
        gap: 20px;
    }
}