/* ================= FOOTER ================= */
.site-footer {
    width: 100%;
    background:linear-gradient(90deg,#05558E,#5A8196);
    color: #fff;
    padding: 40px 20px 20px 20px;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.footer-left h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.footer-left p {
    font-size: 16px;
    line-height: 1.5;
}

.footer-right h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-contacts {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.contact-card img {
    width: 32px;
    height: 32px;
}

.contact-card:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 20px;
    }
}

/* ================= STICKY FOOTER FIX ================= */
html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1; /* konten utama fleksibel, footer di bawah */
    display: flex;
    flex-direction: column;
}