.site-footer {
    width: 100%;
    min-height: 110px;
    background: #000;
    color: #fff;
}

.site-footer-inner {
    max-width: 1200px;
    min-height: 110px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 0px;
    box-sizing: border-box;
}
.footer-social {
    width: 250px;
    flex: 0 0 250px;
}

.footer-contact {
    width: 230px;
    flex: 0 0 230px;
}

.footer-social span,
.footer-contact span {
    display: block;
    font-size: 13px;
    margin-bottom: 8px;
    color: #fff;
}

.footer-social ul {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 28px;
    padding: 0 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 11px;
    text-decoration: none;
    border: 1px solid #333;
}

.footer-social a:hover {
    background: #4eb4ff;
    border-color: #4eb4ff;
}

.footer-contact a {
    color: #fff;
    text-decoration: none;
}

.footer-contact strong {
    display: block;
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 2px;
}

.footer-contact > a {
    font-size: 13px;
}

.footer-contact a:hover {
    color: #4eb4ff;
}

.footer-brand-logos {
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
}

.footer-brand-logos div {
    width: 100px;
    height: 35px;
}

.footer-brand-logos img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 1024px) {
    .site-footer-inner {
        flex-wrap: wrap;
        align-items: flex-start;
        padding: 22px 4%;
        gap: 18px;
    }

    .footer-social,
    .footer-contact {
        width: auto;
        flex: 1 1 260px;
    }

    .footer-brand-logos {
        width: 100%;
        margin-left: 0;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}