/* ================================== */
/* FOOTER */
/* ================================== */
footer {
    background-color: #000;
    color: #fff;
    padding: 30px 60px 30px;
    margin-top: auto;
    /* Mendorong footer ke bawah halaman */
}

.container-footer {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-left {
    flex: 0 0 auto;
    max-width: 400px;
    min-width: 250px;
    margin-left: -45px;
}

/* Logo di footer (jika ada class .logo-bottom) */
.footer-left .logo-bottom {
    margin-top: 5px;
    font-size: 14px;
    color: #c79e3d;
}

.footer-columns {
    display: flex;
    gap: 25px;
}

.footer-right {
    min-width: 120px;
}

.footer-right h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-right a,
.footer-right p {
    color: #fff;
    display: block;
    width: fit-content;
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-right a:hover {
    color: #c79e3d;
}

.bottom-bar {
    max-width: 1200px;
    margin: 30px auto 0;
    padding-top: 30px;
    text-align: left;
    border-top: 1px solid #333;
    /* Garis pemisah */
}

.bottom-bar p {
    color: #666;
    font-size: 14px;
}

/* ================================== */
/* MEDIA QUERY (UNTUK FOOTER) */
/* ================================== */
@media (max-width: 1024px) {
    .footer-columns {
        gap: 20px;
    }

    .footer-right {
        min-width: 110px;
    }
}

@media (max-width: 900px) {
    .container-footer {
        flex-direction: column;
        gap: 30px;
    }

    .footer-left {
        margin-left: 0;
        text-align: center;
        max-width: 100%;
    }

    .footer-columns {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 25px 20px;
    }

    .footer-left {
        text-align: center;
    }

    .footer-columns {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }

    .footer-right {
        text-align: center;
        width: 100%;
        min-width: 100%;
    }

    .footer-right h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .footer-right a,
    .footer-right p {
        font-size: 14px;
        margin: 0 auto 10px;
    }

    .bottom-bar {
        margin-top: 15px;
        padding-top: 15px;
        text-align: center;
    }

    .bottom-bar p {
        font-size: 12px;
    }
}