

.footer {
    flex-shrink: 0;
    position: relative;
    width: 100%;
    background: var(--color-4);
    padding: 60px 0 30px;
    margin-top: 60px;
}

.footer_container {
    max-width: 1400px;
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer_logo {
    font-family: var(--font-main);
    font-size: 2rem;
    font-weight: 300;
    color: white;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.footer_description {
    font-family: var(--font-main);
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer_social {
    display: flex;
    gap: 15px;
}

.footer_social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.footer_social-link:hover {
    background: var(--color-2);
    transform: translateY(-3px);
}

.footer_column-title {
    font-family: var(--font-main);
    font-size: 1.3rem;
    font-weight: 500;
    color: white;
    margin-bottom: 25px;
    letter-spacing: 1px;
    position: relative;
}

.footer_column-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background: var(--color-2);
}

.footer_menu {
    list-style: none;
    padding: 0;
}

.footer_menu-item {
    margin-bottom: 12px;
}

.footer_menu-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer_menu-link:hover {
    color: white;
    transform: translateX(5px);
}

.footer_contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-main);
    font-size: 1rem;
}

.footer_contact-icon {
    font-size: 1.2rem;
    color: var(--color-2);
}

.footer_bottom {
    max-width: 1400px;
    width: 90%;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-main);
    font-size: 0.9rem;
}

.footer_legal {
    display: flex;
    gap: 30px;
}

.footer_legal-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer_legal-link:hover {
    color: white;
}

@media screen and (max-width: 1200px) {
    .footer_container,
    .footer_bottom {
        width: 95%;
        gap: 30px;
    }
}

@media screen and (max-width: 992px) {
    .footer_container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media screen and (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
        margin-top: 40px;
    }
    
    .footer_container {
        grid-template-columns: 1fr;
        gap: 35px;
        width: 90%;
    }
    
    .footer_column {
        text-align: center;
    }
    
    .footer_column-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer_social {
        justify-content: center;
    }
    
    .footer_contact-item {
        justify-content: center;
    }
    
    .footer_bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        width: 90%;
    }
    
    .footer_legal {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}

@media screen and (max-width: 480px) {
    .footer_container,
    .footer_bottom {
        width: 85%;
    }
}