/* ===== ФУТЕР (ТЁМНАЯ ВЕРСИЯ С РЕКВИЗИТАМИ) ===== */
.site-footer {
    background: #1E1E1E;      /* тёмный фон как в шапке */
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 60px 0 30px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.8fr;
    gap: 40px;
    margin-bottom: 50px;
}

/* Логотип и описание */
.footer-logo {
    margin-bottom: 20px;
}
.footer-logo-text {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: -0.5px;
}
.footer-logo-text span {
    color: #FDB81E;
}
.footer-description {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

/* Социальные сети */
.footer-social {
    display: flex;
    gap: 15px;
}
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #FFFFFF;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}
.social-link:hover {
    background: #FDB81E;
    color: #1E1E1E;
    transform: translateY(-3px);
    border-color: transparent;
}

/* Заголовки в футере */
.footer-title {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #FFFFFF;
    position: relative;
    padding-bottom: 12px;
}
.footer-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #FDB81E;
}

/* Меню в футере */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-menu li {
    margin-bottom: 12px;
}
.footer-menu a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}
.footer-menu a:hover {
    color: #FDB81E;
    padding-left: 5px;
}

/* Контактная информация */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}
.footer-contact i {
    color: #FDB81E;
    font-size: 1.1rem;
    margin-top: 3px;
    min-width: 20px;
}
.footer-contact a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.2s;
}
.footer-contact a:hover {
    color: #FDB81E;
}

/* Блок реквизитов */
.footer-requisites {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.requisites-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #FDB81E;
}

.requisites-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requisites-list li {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 6px;
    line-height: 1.4;
}

.requisites-list li strong {
    color: rgba(255,255,255,0.9);
    font-weight: 600;
}

/* Нижняя часть футера */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}
.footer-bottom a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: all 0.2s;
}
.footer-bottom a:hover {
    color: #FDB81E;
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 20px;
        margin-top: 40px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .footer-title:after {
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
    }
    .footer-col {
        text-align: center;
    }
    .footer-social {
        justify-content: center;
    }
    .footer-contact li {
        justify-content: center;
    }
    .footer-requisites {
        text-align: center;
    }
    .requisites-list li {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-logo-text {
        font-size: 1.5rem;
    }
    .footer-description {
        font-size: 0.85rem;
    }
    .footer-title {
        font-size: 1.1rem;
    }
    .footer-menu a,
    .footer-contact li {
        font-size: 0.85rem;
    }
    .requisites-list li {
        font-size: 0.7rem;
    }
}