.site-footer {
    background: #000;
    padding: 90px 0 50px;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-logo {
    margin-bottom: 26px;
}

.footer-logo img {
    max-width: 150px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.footer-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-socials a {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    color: #95a80f;
    transform: translateY(-2px);
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.footer-links a,
.footer-links span {
    color: #8a8a8a;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
}

.footer-links a:hover {
    color: #fff;
}

.footer-copy {
    margin: 0;
    color: #777;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Mobile */
@media (max-width: 575.98px) {
    .site-footer {
        padding: 70px 0 40px;
    }

    .footer-logo img {
        max-width: 120px;
    }

    .footer-socials {
        gap: 14px;
    }

    .footer-socials a {
        font-size: 14px;
    }

    .footer-links a,
    .footer-links span,
    .footer-copy {
        font-size: 11px;
        letter-spacing: 1.5px;
    }
}