/* Стили для футера */
footer {
    width: 100%;
    max-width: 1440px;
    height: auto;
    flex-shrink: 0;
    margin: 0 auto;
    background-color: var(--white);
    display: flex;
    align-items: center;
    padding: 50px 136.45px;
    border-top: 1px solid #eee;
    margin-top: auto;
    flex-wrap: wrap;
}

.footer-logo {
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 1px;
    color: var(--gray-1);
    margin-right: 50px;
}

.footer-content {
    display: flex;
    gap: 99px;
    margin-left: auto;
    flex-wrap: wrap;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column-title {
    color: var(--gray-4);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links a {
    color: var(--gray-4);
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.42px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gray-1);
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    border-radius: 50%;
    color: var(--gray-1);
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.footer-whatsapp:hover {
    background: #25D366;
    color: white;
}

.footer-telegram:hover {
    background: #0088cc;
    color: white;
}

.footer-instagram:hover {
    background: #e1306c;
    color: white;
}

.footer-info {
    font-size: 14px;
    line-height: 1.7;
}

/* Адаптивность футера */
@media (max-width: 1200px) {
    footer {
        flex-direction: column;
        height: auto;
        padding: 40px 20px;
        gap: 40px;
    }
    
    .footer-content {
        margin-left: 0;
        padding-right: 0;
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 900px) {
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
}