footer {
    margin: 0 auto;
    padding: 60px 0 0;
    background-image: url(../img/sutvarkom-hero-background.png);
    background-color: #fbfbfb;
    background-position: center center;
    color: var(--text-dark);
    font-size: 16px;
    margin-top: 60px;
}

/* Footer Container */
.site-footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

/* Footer Sections */
.site-footer__section {
    display: flex;
    flex-direction: column;
}

.site-footer__section-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

/* Company Section */
.site-footer__company {
    grid-column: span 1;
}

.site-footer__logo {
    margin-bottom: 20px;
}

.site-footer__logo img {
    max-width: 180px;
    height: auto;
}

.site-footer__company-info {
    margin-bottom: 15px;
}

.site-footer__company-info p {
    margin: 5px 0;
    font-size: 14px;
    line-height: 1.6;
}

.site-footer__company-info strong {
    font-weight: 700;
}

.site-footer__contacts {
    margin-bottom: 20px;
}

.site-footer__contacts p {
    margin: 8px 0;
}

.site-footer__contacts a {
    color: var(--text-dark);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.site-footer__contacts a:hover {
    color: var(--primary-color);
}

.site-footer__contacts i {
    font-size: 16px;
}

/* Social Media Icons */
.site-footer__social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.site-footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    vertical-align: middle;
}


.site-footer__social a:hover {
    background-color: var(--text-dark);
    transform: translateY(-3px);
}

.site-footer__social i {
    font-size: 18px;
    line-height: 16px;
}

/* Footer Menus */
.site-footer__menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer__menu li {
    margin-bottom: 12px;
}

.site-footer__menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.site-footer__menu a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* CTA Section */
.site-footer__cta p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.site-footer__cta .btn-primary {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-align: center;
}


/* Footer Bottom - Copyright */
.site-footer__bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    text-align: center;
}

.site-footer__copyright {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-footer__copyright p {
    margin: 0;
    font-size: 14px;
    color: var(--text-dark);
}

.site-footer__copyright a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer__copyright a:hover {
    color: var(--text-dark);
}

/* Responsive Design */
@media (max-width: 992px) {
    .site-footer__container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .site-footer__company {
        grid-column: span 2;
    }
}

@media (max-width: 576px) {
    footer {
        padding: 40px 0 0;
        margin-top: 40px;
    }

    .site-footer__container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .site-footer__company {
        grid-column: span 1;
        text-align: center;
    }

    .site-footer__logo {
        display: flex;
        justify-content: center;
    }

    .site-footer__social {
        justify-content: center;
    }

    .site-footer__section-title {
        text-align: center;
    }

    .site-footer__menu {
        text-align: center;
    }

    .site-footer__cta {
        text-align: center;
    }
}