/* ============================================
   Footer Styles - All Pages
   ============================================ */

.site-footer {
    background: #1A2B4A;
    padding: 48px 24px 24px;
    color: #fff;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

/* Desktop: logo fixed left, 4 columns flex right */
.footer-main {
    display: flex;
    gap: 40px;
    margin-bottom: 32px;
}

.footer-brand {
    width: 150px;
    flex-shrink: 0;
}

.footer-brand img {
    height: 42px;
    width: auto;
    margin-bottom: 14px;
    display: block;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-columns {
    flex: 1;
    display: flex;
    gap: 24px;
    min-width: 0;
}

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

.footer-col-title {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 2px solid #E85A24;
    white-space: nowrap;
}

.footer-col a {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 12px;
    display: block;
    margin-bottom: 6px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #E85A24;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    color: #9CA3AF;
    font-size: 12px;
    line-height: 1.4;
}

.footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    color: #9CA3AF;
    font-size: 12px;
    margin: 0;
}

.footer-bottom a {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 12px;
}

/* <=1100px: logo on top, 4 columns below */
@media (max-width: 1100px) {
    .footer-main {
        flex-direction: column;
        gap: 24px;
    }

    .footer-brand {
        width: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
    }

    .footer-brand img {
        margin-bottom: 0;
    }

    .footer-columns {
        gap: 20px;
    }
}

/* <=768px: 2x2 columns */
@media (max-width: 768px) {
    .footer-columns {
        flex-wrap: wrap;
        gap: 24px;
    }

    .footer-col {
        flex: 1 1 45%;
        min-width: 140px;
    }

    .footer-brand {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* <=480px: single column */
@media (max-width: 480px) {
    .footer-col {
        flex: 1 1 100%;
    }
}

