.site-footer {
    background-color: #060913; /* Dark background matching the design */
    color: #9ca3af;
    padding: 5rem 1.5rem 2rem;
    font-family: var(--font-family-base);
    position: relative;
    overflow: hidden;
}

.site-footer__inner {
    width: min(100%, var(--container-width, 1200px));
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .site-footer__grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    
    .site-footer__col--brand {
        grid-column: span 2;
        padding-right: 2rem;
    }
}

.site-footer__logo {
    max-width: 180px;
    margin-bottom: 1.5rem;
    display: block;
}

.site-footer__text {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #8c92a4;
}

.site-footer__socials {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.site-footer__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #4a5568;
    transition: all 0.2s ease;
}

.site-footer__social-link img {
    width: 16px;
    height: 16px;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.site-footer__social-link:hover {
    border-color: #a3c938; /* olive hover */
}

.site-footer__social-link:hover img {
    opacity: 1;
}

.site-footer__title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.site-footer__form {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.site-footer__form input {
    flex: 1;
    min-width: 200px;
    padding: 0.75rem 1rem;
    border: 1px solid #4a5568;
    background: transparent;
    color: #fff;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.2s;
}

.site-footer__form input:focus {
    border-color: #a3c938; 
}

.site-footer__address {
    font-style: normal;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #8c92a4;
    margin-bottom: 1rem;
}

.site-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer__list li {
    margin-bottom: 0.75rem;
}

.site-footer__list a {
    color: #8c92a4;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.site-footer__list a:hover {
    color: #ffffff;
}

.site-footer__bottom {
    padding-top: 1.5rem;
    border-top: 1px solid #2d3748;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.site-footer__copyright {
    font-size: 0.85rem;
    color: #8c92a4;
}

.site-footer__legal {
    font-size: 0.85rem;
    color: #8c92a4;
}

.site-footer__legal a {
    color: #8c92a4;
    text-decoration: none;
    transition: color 0.2s;
}

.site-footer__legal a:hover {
    color: #fff;
}
