/* ============================
   FOOTER - SUTA
   ============================ */
.site-footer {
    background: var(--color-bg-secondary);
    width: 100%;
    padding: 60px 120px 0;
}

.footer-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 140px;
    margin: 0 34px;
}

/* --- Footer Logo --- */
.footer-logo-col {
    flex-shrink: 0;
}

.footer-logo-col img {
    width: 135px;
    height: 205px;
    object-fit: contain;
    display: block;
}

/* --- Footer Title (Kontak Kami & Navigasi) --- */
.footer-title {
    font-family: var(--font-wondar);
    font-weight: 400;
    font-size: 36px;
    line-height: 120%;
    letter-spacing: 0;
    color: #6B594D;
    margin-bottom: 24px;
}

/* --- Kontak Kami --- */
.footer-kontak-col {
    min-width: 0;
}

.footer-kontak-list {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px 40px;
}

.footer-kontak-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-kontak-item .kontak-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-kontak-item .kontak-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
}

.footer-kontak-item span,
.footer-kontak-item span {
    font-family: var(--font-afacad);
    font-weight: 400;
    font-size: 26px;
    line-height: 120%;
    letter-spacing: 0;
    color: #333333;
}

.footer-kontak-item a {
    font-family: var(--font-afacad);
    font-weight: 400;
    font-size: 26px;
    line-height: 120%;
    letter-spacing: 0;
    color: #333333;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.footer-kontak-item a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: #6B594D;
    transition: width 0.35s ease;
}

.footer-kontak-item a:hover::after {
    width: 100%;
}

.footer-kontak-item a:hover {
    color: #6B594D;
}

/* --- Navigasi --- */
.footer-nav-col {
    flex-shrink: 0;
    text-align: right;
}

.footer-nav-col .footer-title {
    text-align: left;
}

.footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.footer-nav-list a {
    font-family: var(--font-afacad);
    font-weight: 400;
    font-size: 26px;
    line-height: 120%;
    letter-spacing: 0;
    color: #333333;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.footer-nav-list a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: #6B594D;
    transition: width 0.35s ease;
}

.footer-nav-list a:hover::after {
    width: 100%;
}

.footer-nav-list a:hover {
    color: #6B594D;
}

/* --- Divider --- */
.footer-divider {
    width: 100%;
    height: 0;
    border: 1px solid #BBBBBB;
    margin-top: 24px;
}

/* --- Copyright --- */
.footer-copyright {
    font-family: var(--font-afacad);
    font-weight: 400;
    font-size: 24px;
    line-height: 24px;
    letter-spacing: 0;
    text-align: center;
    color: #6B594D;
    padding: 32px 0 40px;
}

/* ============================
   RESPONSIVE - Tablet (≤1023px)
   ============================ */
@media (max-width: 1023px) {
    .site-footer {
        padding: 48px 40px 0;
    }

    .footer-inner {
        flex-wrap: wrap;
        gap: 48px;
        margin: 0;
    }

    .footer-logo-col {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .footer-logo-col img {
        width: 100px;
        height: 152px;
    }

    .footer-kontak-col {
        flex: 1 1 55%;
        min-width: 0;
    }

    .footer-kontak-list {
        grid-template-columns: auto 1fr;
        gap: 12px 24px;
    }

    .footer-nav-col {
        flex-shrink: 0;
        text-align: right;
    }

    .footer-nav-col .footer-title {
        text-align: left;
    }

    .footer-nav-list {
        align-items: flex-start;
    }

    .footer-title {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .footer-kontak-item span,
    .footer-kontak-item a,
    .footer-nav-list a {
        font-size: 22px;
    }

    .footer-divider {
        margin-top: 24px;
    }

    .footer-copyright {
        font-size: 20px;
        line-height: 22px;
        padding: 28px 0 36px;
    }
}

/* ============================
   RESPONSIVE - Mobile (≤575px)
   ============================ */
@media (max-width: 575px) {
    .site-footer {
        padding: 40px 20px 0;
    }

    .footer-inner {
        flex-direction: column;
        gap: 32px;
        align-items: center;
        text-align: center;
        margin: 0;
    }

    .footer-logo-col img {
        width: 85px;
        height: 129px;
    }

    .footer-kontak-col {
        width: 100%;
    }

    .footer-kontak-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .footer-kontak-item {
        justify-content: center;
    }

    .footer-nav-col {
        width: 100%;
        text-align: center;
    }

    .footer-nav-col .footer-title {
        text-align: center;
    }

    .footer-nav-list {
        align-items: center;
    }

    .footer-title {
        font-size: 26px;
        margin-bottom: 18px;
    }

    .footer-kontak-item span,
    .footer-kontak-item a,
    .footer-nav-list a {
        font-size: 18px;
    }

    .footer-divider {
        margin-top: 20px;
    }

    .footer-copyright {
        font-size: 16px;
        line-height: 20px;
        padding: 24px 0 32px;
    }
}
