
/* ================= FOOTER ================= */
.footer {
    font-family: 'Inter', Arial, sans-serif;
    background: linear-gradient(160deg, #FFD93D, #FFB300, #FFF8E7);
    color: #222;
    padding: 60px 20px 30px;
}

/* GRID LAYOUT */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    align-items: start;
}

/* BRAND */
.footer-brand img {
    width: 140px;
    display: block;          /* PENTING */
    margin: 0 auto 15px;     /* CENTER + JARAK BAWAH */
    transition: transform 0.4s ease;
}

.footer-brand img:hover {
    transform: scale(1.05);
}


.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.85;
    text-align: center;

}

/* LINKS */
.footer-links {
    text-align: center;
}

.footer-links h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 14px;
    position: relative;
    text-align: center;
}

.footer-links h4::after {
    content: '';
    display: block;
    width: 42px;
    height: 2px;
    background: #FF9800;
    margin: 8px auto 0;   /* GARIS DI TENGAH */
    border-radius: 2px;
}

.footer-links a {
    display: block;
    font-size: 14px;
    color: #222;
    text-decoration: none;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

/* SOCIAL MEDIA */
.footer-social {
    text-align: center;
}

.footer-social h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 14px;
    text-align: center;
    position: relative;
}

.footer-social h4::after {
    content: '';
    display: block;
    width: 42px;
    height: 2px;
    background: #FF9800;
    margin: 8px auto 0;
    border-radius: 2px;
}

.footer-social .social-icons {
    display: flex;
    justify-content: center;
    gap: 22px;
    margin-top: 12px;
}

.footer-social .social-icons a {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-social .social-icons a img {
    width: 44px;     /* DIBESARIN */
    height: 44px;
}

.footer-social .social-icons a:hover {
    transform: translateY(-6px) scale(1.15);
    opacity: 0.9;
}

/* HALAL LOGO */
.footer-halal {
    text-align: center;
    margin-top: 18px;
}

.footer-halal img {
    width: 90px;     /* DIBESARIN */
    margin-top: 10px;
}


/* COPYRIGHT */
.footer-legal {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    opacity: 0.75;
}
