/* ========================================
   ПОДВАЛ САЙТА (.site-footer)
   ======================================== */

.site-footer {
    background: var(--dark-gray, #212121);
    color: #e0e0e0;
    padding: 50px 0 0;
    margin-top:  0px;
    font-size: 14px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* ----- Колонка "О компании" ----- */
.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.footer-logo span {
    color: var(--primary-yellow, #FFC107);
}

.footer-desc {
    color: #9e9e9e;
    line-height: 1.6;
    margin: 0;
}

/* ----- Заголовки колонок ----- */
.footer-title {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ----- Меню в футере ----- */
.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-menu a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s, padding-left 0.3s;
}

.footer-menu a:hover {
    color: var(--primary-yellow, #FFC107);
    padding-left: 4px;
}

/* ----- Контакты ----- */
.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s;
}

a.footer-contact-item:hover {
    color: var(--primary-yellow, #FFC107);
}

.footer-icon {
    font-size: 14px;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

/* ----- Соцсети ----- */
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 6px;
}

.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
}

.footer-social-icon:hover {
    background: var(--primary-yellow, #FFC107);
    color: #212121;
    transform: translateY(-3px);
}

/* ----- Нижняя строка (копирайт) ----- */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px 0;
    color: #757575;
    font-size: 12px;
}

.footer-copy,
.footer-dev {
    margin: 0;
}

.footer-dev a {
    color: #9e9e9e;
    text-decoration: none;
}

.footer-dev a:hover {
    color: var(--primary-yellow, #FFC107);
}

/* ----- Адаптив ----- */
@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}