/* Новый footer стили */
.footer-new {
    background: #1a1d29;
    color: #fff;
    padding: 60px 0 40px;
    position: relative;
    border-radius: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.footer-new .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-new__content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

/* Левая часть - логотип */
.footer-new__left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-new__logo {
    margin-bottom: 10px;
}

.footer-new__logo a {
    display: inline-block;
    text-decoration: none;
}

.footer-new__logo img {
    max-height: 60px;
    width: auto;
}

.footer-new__tagline {
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
    opacity: 0.9;
}

.footer-new__copyright {
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
    opacity: 0.9;
}

/* Правая часть - колонки */
.footer-new__right {
    flex: 1;
}

.footer-new__columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-new__column-title {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-new__menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-new__link {
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
    opacity: 0.9;
}

.footer-new__link:hover {
    opacity: 1;
    color: #f0cf4c;
}

/* Контакты */
.footer-new__contacts {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.footer-new__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
    opacity: 0.9;
}

.footer-new__contact-item i {
    font-size: 16px;
    color: #fff;
    margin-top: 2px;
    min-width: 20px;
}

.footer-new__contact-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-new__contact-link:hover {
    color: #f0cf4c;
}

/* Социальные сети */
.footer-new__social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-new__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.footer-new__social-link:hover {
    background: #f0cf4c;
    color: #1a1d29;
    transform: translateY(-2px);
}

/* Кнопка "Сообщить об ошибке" */
.footer-new__error-button-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-new__error-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #e8e8e8;
    border: none;
    border-radius: 6px;
    color: #4a4a4a;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.footer-new__error-button:hover {
    background: #d0d0d0;
}

.footer-new__error-button i {
    font-size: 16px;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .footer-new__content {
        grid-template-columns: 250px 1fr;
        gap: 40px;
    }
    
    .footer-new__columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-new {
        padding: 40px 0 30px;
    }
    
    .footer-new__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-new__columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-new__error-button-wrapper {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-new__columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-new__left {
        text-align: center;
    }
    
    .footer-new__logo {
        display: flex;
        justify-content: center;
    }
}

