/* ==========================================================================
   FOOTER STYLES — FIGMA DESIGN SPECIFICATION
   ========================================================================== */
.site-footer {
    background: #FFFFFF;
    padding: 56px 0 28px 0;
    width: 100%;
    border-top: 1px solid #E2E8F0;
    box-sizing: border-box;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 120px;
    gap: 24px;
    max-width: 1440px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Top Row: Logo & Contact Info */
.footer-top-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 56px;
    width: 100%;
}

.footer-logo-col {
    width: 120px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex-shrink: 0;
}

.footer-logo-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.footer-contact-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
    width: 100%;
}

.footer-contact-title {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    display: flex;
    align-items: center;
    color: #333333;
    margin: 0;
    text-align: left;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
}

.footer-contact-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
}

.footer-icon-wrap {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding-top: 2px;
}

.footer-icon {
    width: 28px;
    height: 28px;
}

.footer-text-wrap {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    display: flex;
    align-items: center;
    color: #333333;
    flex-wrap: wrap;
    gap: 4px;
    text-align: left;
    justify-content: flex-start;
}

.footer-email-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    text-align: left;
}

.footer-link-text {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #333333;
    text-decoration: none;
    transition: color 0.2s ease, text-decoration 0.2s ease;
}

.footer-link-text:hover {
    color: #1E436F;
    text-decoration: underline;
}

.footer-sep {
    color: #333333;
    font-size: 18px;
    font-weight: 400;
    margin: 0 4px;
}

/* Divider */
.footer-divider-line {
    width: 100%;
    height: 0px;
    border: none;
    border-top: 1px solid #606060;
    opacity: 0.6;
    margin: 8px 0;
}

/* Bottom Row */
.footer-bottom-row {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.footer-copyright-text {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    color: #333333;
    margin: 0;
    width: 100%;
}

.footer-credit-link {
    color: #333333;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-credit-link:hover {
    color: #1E436F;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (Desktop, Macbook, Tablet, Mobile)
   ========================================================================== */

/* MACBOOK & LAPTOP (1025px - 1440px) */
@media (max-width: 1440px) {
    .footer-inner {
        padding: 0 60px;
    }
}

/* TABLET (768px - 1024px) */
@media (max-width: 1024px) {
    .site-footer {
        padding: 40px 0 20px 0;
    }

    .footer-inner {
        padding: 0 32px;
        gap: 20px;
    }

    .footer-top-row {
        gap: 32px;
    }

    .footer-link-text,
    .footer-copyright-text {
        font-size: 16px;
        line-height: 24px;
    }
}

/* MOBILE (< 767px) — RATA KIRI (LEFT-ALIGNED) */
@media (max-width: 767px) {
    .site-footer {
        padding: 32px 0 16px 0;
    }

    .footer-inner {
        padding: 0 20px;
        gap: 24px;
        align-items: flex-start;
    }

    .footer-top-row {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 24px;
    }

    .footer-logo-col {
        width: auto;
        align-items: flex-start;
    }

    .footer-logo-img {
        width: 80px;
        height: 80px;
    }

    .footer-contact-col {
        width: 100%;
        align-items: flex-start;
        text-align: left;
    }

    .footer-contact-title {
        font-size: 18px;
        line-height: 22px;
        text-align: left;
    }

    .footer-contact-list {
        align-items: flex-start;
        width: 100%;
    }

    .footer-contact-item {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 12px;
        width: 100%;
    }

    .footer-icon-wrap {
        width: 24px;
        height: 24px;
        padding-top: 2px;
    }

    .footer-icon {
        width: 24px;
        height: 24px;
    }

    .footer-text-wrap {
        justify-content: flex-start;
        text-align: left;
        font-size: 15px;
        line-height: 22px;
    }

    .footer-email-wrap {
        align-items: flex-start;
        text-align: left;
    }

    .footer-link-text {
        font-size: 15px;
        line-height: 22px;
        text-align: left;
    }

    .footer-bottom-row {
        text-align: center;
        justify-content: center;
    }

    .footer-copyright-text {
        font-size: 14px;
        line-height: 20px;
        text-align: center;
    }
}
