@charset "UTF-8";

/* ===== Footer (light bg, matching original) ===== */
.site-footer {
    background: var(--bg-light);
    color: var(--text-dark);
}
.footer-payment-bar {
    text-align: center;
    padding: 30px 0 20px;
    border-bottom: none;
}
.footer-payment-bar img {
    display: inline-block;
    height: 40px;
    margin: 0 12px;
    vertical-align: middle;
}
.footer-main {
    padding: 40px 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: start;
}
.footer-brand {
    justify-self: end;
    padding: 0 15px;
}
.footer-logo-img {
    max-width: 320px;
    height: auto;
    margin-bottom: 10px;
}
.footer-map {
    justify-self: start;
    width: 100%;
    max-width: 360px;
    padding: 0 15px;
}
.footer-contact h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin: 10px 0 12px;
    letter-spacing: 0.3px;
    line-height: 33px;
}
.footer-contact .company-name {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
    letter-spacing: 0.3px;
    line-height: 27px;
}
.footer-contact .company-name-en {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 14px;
    letter-spacing: 0.3px;
    line-height: 24px;
}
.footer-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-contact-list li {
    font-size: 12px;
    color: #000;
    margin-bottom: 2px;
    line-height: 18px;
    letter-spacing: 0.3px;
}
.footer-contact-list li:first-child {
    color: #333;
}
.footer-contact-list a {
    color: inherit;
}
.footer-contact-list a:hover { color: var(--primary-color); }
.footer-map iframe {
    width: 320px;
    height: 400px;
    border: 0;
    border-radius: 0;
}

/* Social icons */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 14px;
    padding: 20px 0;
}
.footer-social img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: var(--transition);
}
.footer-social img:hover { opacity: 0.8; transform: scale(1.05); }

/* Footer bottom */
.footer-bottom {
    text-align: center;
    padding: 20px 15px;
    border-top: none;
    font-size: 8px;
    color: #333;
    line-height: 24px;
    background: transparent;
}
.footer-bottom a {
    color: #000;
    font-size: 8px;
    text-decoration: none;
}
.footer-bottom a:hover { color: #000; text-decoration: underline; }
.footer-bottom .brand-name { color: rgb(181, 48, 31); }

@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr; gap: 20px; }
    .footer-brand {
        display: block;
        justify-self: center;
        text-align: center;
        max-width: 560px;
        margin: 0 auto;
    }
    .footer-brand .footer-logo-img {
        max-width: 240px;
        margin: 0 auto 10px;
    }
    .footer-map {
        display: block;
        width: 100%;
        max-width: 560px;
        margin: 0 auto;
    }
    .footer-map iframe {
        width: 100%;
        height: 240px;
    }
    .footer-contact {
        border: 1px solid var(--primary-color);
        border-radius: 4px;
        padding: 28px 32px;
        max-width: 560px;
        margin: 0 auto;
    }
}
