.footer {
    padding: 150px 0 60px 0;
    background: #f5f5f5;
}

.footer-container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.footer-nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-nav-link {
    font-family: 'Open Sans', Roboto-Ruble, Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #060607;
    text-decoration: none;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.footer-nav-link:hover {
    opacity: 0.7;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social-link {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
}

.footer-social-link:hover {
    transform: scale(1.1);
}

.footer-social-whatsapp {
    background: #25D366;
}

.footer-social-whatsapp svg {
    color: #fff;
}

.footer-social-telegram {
    background: #0088CC;
}

.footer-social-telegram svg {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-company {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-company-name {
    font-family: 'Open Sans', Roboto-Ruble, Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    color: #060607;
    margin: 0;
}

.footer-company-info {
    font-family: 'Open Sans', Roboto-Ruble, Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #060607;
    margin: 0;
}

.footer-policy {
    font-family: 'Open Sans', Roboto-Ruble, Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #060607;
    text-decoration: underline;
    transition: opacity 0.3s ease;
    margin-top: 5px;
}

.footer-policy:hover {
    opacity: 0.7;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.footer-phone {
    font-family: 'Open Sans', Roboto-Ruble, Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    color: #060607;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.footer-phone:hover {
    opacity: 0.7;
}

.footer-address {
    font-family: 'Open Sans', Roboto-Ruble, Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #060607;
    margin: 0;
    text-align: right;
}

@media (max-width: 992px) {
    .footer {
        padding: 80px 0 40px 0;
    }
    
    .footer-top {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        text-align: center;
    }
    
    .footer-nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 8px 15px;
        max-width: 400px;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        text-align: center;
        margin-top: 30px;
    }
    
    .footer-company {
        align-items: center;
    }
    
    .footer-contact {
        align-items: center;
        margin-top: 20px;
    }
    
    .footer-address {
        text-align: center;
    }
    
    .footer-social {
        order: 1;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 30px 0;
    }
    
    .footer-top {
        margin-bottom: 25px;
        gap: 20px;
    }
    
    .footer-nav {
        gap: 6px 12px;
        max-width: 350px;
    }
    
    .footer-nav-link {
        font-size: 15px;
    }
    
    .footer-bottom {
        gap: 20px;
        margin-top: 25px;
    }
    
    .footer-company {
        gap: 8px;
    }
    
    .footer-company-name,
    .footer-company-info {
        font-size: 15px;
    }
    
    .footer-policy {
        font-size: 14px;
        margin-top: 8px;
    }
    
    .footer-social {
        gap: 12px;
        margin: 20px 0;
    }
    
    .footer-social-link {
        width: 45px;
        height: 45px;
    }
    
    .footer-social-link svg {
        width: 24px;
        height: 24px;
    }
    
    .footer-phone {
        font-size: 18px;
        font-weight: 700;
    }
    
    .footer-address {
        font-size: 14px;
    }
    
    .footer-contact {
        margin-top: 15px;
    }
}
