/* ------------------------------------------------------
   FOOTER
-------------------------------------------------------*/
.footer {
    background: white;
    border-top: 1px solid #e5e5e5;
    margin-top: 60px;
    font-family: "Inter", sans-serif;
}

/* TOP FOOTER */
.footer-top {
    display: flex;
    justify-content: space-between;
    padding: 50px 80px;
    gap: 60px;
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h3 {
    font-size: 1.2em;
    font-weight: 700;
    margin-bottom: 18px;
    color: #1e293b;
}

/* CONTACT ITEM */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.contact-item i {
    font-size: 1.15em;
    color: #2a3a56;
    margin-top: 3px;
}

.contact-item a,
.contact-item p {
    color: #555;
    font-size: 0.92em;
    text-decoration: none;
}

.contact-item a:hover {
    color: #24324b;
}

/* LINKS */
.footer-column a {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-size: 0.92em;
    text-decoration: none;
    transition: .2s;
}

.footer-column a:hover {
    color: #24324b;
}

/* SOCIAL ICONS */
.social-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.social-links a {
    font-size: 1.65em; /* diperbesar */
    color: #666;
    transition: .3s;
}

.social-links a:hover {
    color: #24324b;
}

/* BOTTOM FOOTER */
.footer-bottom {
    text-align: center;
    padding: 18px 0;
    background: #fafafa;
    color: #666;
    font-size: 0.88em;
    border-top: 1px solid #e5e5e5;
}
/* ------------------------------------------------------
   RESPONSIVE FOOTER
-------------------------------------------------------*/
@media (max-width: 992px) {
    .footer-top {
        padding: 40px 40px;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;   /* kolom jadi kebawah */
        padding: 40px 25px;
        gap: 35px;
        text-align: left;
    }

    .social-links {
        gap: 15px;
    }

    .footer-column h3 {
        font-size: 1.15em;
    }

    .footer-column a,
    .contact-item p {
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    .footer-top {
        padding: 35px 20px;
        gap: 30px;
    }

    .social-links a {
        font-size: 1.5em; /* sedikit kecil di HP */
    }

    .footer-bottom {
        font-size: 0.82em;
        padding: 15px 0;
    }
}
