/* ============================================
   ВАРИАНТ 1: МИНИМАЛИСТИЧНЫЙ С ГРАДИЕНТОМ
   ============================================ */

.site-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #e0e0e0;
    padding: 60px 0 0;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

/* Декоративная линия сверху */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF6900, #FF8533, #FF6900);
}

.footer-columns {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Заголовки */
.site-footer h3 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.site-footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #FF6900;
}

/* Логотип и адрес */
.logo-wrapper {
    margin-bottom: 20px;
}

.site-logo {
    width: 60px;
    height: 60px;
    filter: brightness(1.2);
    transition: transform 0.3s;
}

.site-logo:hover {
    transform: scale(1.05);
}

.site-title {
    font-size: 24px;
    font-weight: 700;
    color: #FF6900;
    text-decoration: none;
}

.footer-address {
    padding-top: 40px;
    font-style: normal;
    line-height: 1.8;
}

.address-line {
    color: #b0b0b0;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: color 0.3s;
}

.address-line:hover {
    color: #ffffff;
}

.address-line i {
    color: #FF6900;
    font-size: 16px;
    margin-top: 2px;
}

/* Навигация */
.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-list li {
    margin-bottom: 12px;
}

.footer-nav-list a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s;
    display: inline-block;
}

.footer-nav-list a:hover {
    color: #FF6900;
    transform: translateX(5px);
}

/* Контакты */
.footer-email a,
.footer-phone a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    display: inline-block;
}

.footer-phone a {
    font-size: 22px;
    font-weight: 600;
}

.footer-email a:hover,
.footer-phone a:hover {
    color: #FF6900;
}

/* Нижняя панель */
.footer-bottom-bar {
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 13px;
}

.copyright {
    color: #808080;
}

.legal-link {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s;
}

.legal-link:hover {
    color: #FF6900;
}

/* Социальные сети */
.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #b0b0b0;
    transition: all 0.3s;
    font-size: 18px;
}

.social-icon:hover {
    background: #FF6900;
    border-color: #FF6900;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Адаптивность */
@media (max-width: 992px) {
    .footer-columns {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-col--details {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-bar {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-bottom-left {
        flex-direction: column;
        gap: 10px;
    }
}