/* Стили для футера сайта */
.footer {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    position: relative;
    margin: 20px auto;
    z-index: 1000;
    padding: 0;
    transition: all 0.3s ease;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1200px;
    width: calc(100% - 40px);
    color: #ffffff;
}

.footer .container {
    padding: 0 2rem;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 0;
    gap: 2rem;
}

/* Левая часть - информация о компании */
.company-info {
    flex: 1;
    max-width: 600px;
}

.company-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.company-details {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.company-address {
    font-size: 0.85rem;
    color: #cbd5e0;
    line-height: 1.4;
}

.company-inn {
    font-size: 0.85rem;
    color: #cbd5e0;
}

/* Правая часть - контакты и ссылки */
.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.footer-phone {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-phone:hover {
    color: #FF1515;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.footer-link {
    font-size: 0.8rem;
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.footer-link:hover {
    color: #ffffff;
    border-bottom-color: #FF1515;
}

/* Адаптивность для футера */
@media (max-width: 1024px) {
    .footer-content {
        gap: 1.5rem;
    }
    
    .company-name {
        font-size: 0.9rem;
    }
    
    .footer-phone {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .footer {
        margin: 15px auto;
        width: calc(100% - 30px);
        border-radius: 12px;
    }
    
    .footer .container {
        padding: 0 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .footer-right {
        align-items: flex-start;
        width: 100%;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .company-name {
        font-size: 0.85rem;
    }
    
    .company-address,
    .company-inn {
        font-size: 0.8rem;
    }
    
    .footer-phone {
        font-size: 0.95rem;
    }
    
    .footer-link {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .footer {
        margin: 10px auto;
        width: calc(100% - 20px);
        border-radius: 10px;
    }
    
    .footer .container {
        padding: 0 0.75rem;
    }
    
    .footer-content {
        padding: 0.8rem 0;
    }
    
    .company-name {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
    }
    
    .company-details {
        gap: 0.2rem;
    }
    
    .company-address,
    .company-inn {
        font-size: 0.75rem;
    }
    
    .footer-phone {
        font-size: 0.9rem;
    }
    
    .footer-links {
        gap: 0.8rem;
    }
    
    .footer-link {
        font-size: 0.7rem;
    }
} 

