footer {
    background-color: #2a2933;
    padding: 40px 20px 20px;
    color: #fff;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin: auto;
}

.footer-left {
    flex: 1 1 250px;
    max-width: 350px;
}

.footer-left img {
    height: 40px;
    margin-bottom: 15px;
}

.footer-left p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

/* .footer-column {
        flex: 1;
    } */

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #0D9CEF;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.social-icons a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #33333d;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 14px;
    transition: background 0.3s;
}

.social-icons a:hover {
    background: #0D9CEF;
}

.btn-help {
    display: inline-block;
    padding: 10px 20px;
    background: #33333d;
    border-radius: 6px;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-help:hover {
    background: #0D9CEF;
}

.footer-bottom {
    margin: 30px auto 0;
    padding-top: 15px;
    border-top: 1px solid #555;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 13px;
    color: #aaa;
}

.footer-bottom a {
    color: #aaa;
    text-decoration: none;
    margin: 0 10px;
}

.footer-bottom a:hover {
    color: #fff;
}

.footer-column-group {
    display: flex;
    justify-content: space-between;
    gap: 150px;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }

    /* Peta Situs + Top Up sejajar */
    .footer-column-group {
        display: flex;
        gap: 20px;
    }

    .footer-column-group .footer-column {
        flex: 1;
    }

    /* Ikuti Kami + Bantuan sejajar */
    .footer-social-help {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}