/* Стили для футера */
footer {
    display: block !important;
    width: 100% !important;
    background-color: #333 !important;
    color: #fff !important;
    padding: 40px 0 20px !important;
    margin-top: auto !important;
}

/* Десктопная версия футера */
.footer-desktop {
    display: block !important;
    width: 100% !important;
    border: none !important;
}

.footer-desktop .container {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
    gap: 40px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.footer-desktop .footer-column {
    width: 320px !important;
    flex: unset !important;
    min-width: unset !important;
    padding: 0 15px !important;
    margin-bottom: 20px !important;
    background: none !important;
    min-height: unset !important;
}

.footer-desktop .footer-logo {
    font-size: 24px !important;
    font-weight: bold !important;
    margin-bottom: 15px !important;
    color: #fff !important;
}

.footer-desktop p {
    color: #ccc !important;
    margin-bottom: 20px !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
}

.footer-desktop .footer-social {
    display: flex !important;
    margin-top: 20px !important;
}

.footer-desktop .footer-social a {
    margin-right: 15px !important;
    color: #fff !important;
    font-size: 20px !important;
}

.footer-desktop h4 {
    font-size: 18px !important;
    margin-bottom: 20px !important;
    color: #fff !important;
}

.footer-desktop ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-desktop ul li {
    margin-bottom: 10px !important;
}

.footer-desktop ul li a {
    color: #ccc !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.footer-desktop ul li a:hover {
    color: #fff !important;
}

.footer-desktop .contact-list li {
    display: flex !important;
    align-items: flex-start !important;
    margin-bottom: 15px !important;
    color: #ccc !important;
}

.footer-desktop .contact-list li i {
    margin-right: 10px !important;
    color: #a367dc !important;
    margin-top: 4px !important;
}

/* Мобильная версия футера */
.footer-mobile {
    display: none !important;
    padding: 0 15px !important;
    text-align: center !important;
    border: none !important;
}

.footer-mobile-logo {
    font-size: 22px !important;
    font-weight: bold !important;
    margin-bottom: 15px !important;
    color: #fff !important;
    text-align: center !important;
}

.footer-mobile-nav {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    margin-bottom: 20px !important;
}

.footer-mobile-nav a {
    color: #ccc !important;
    text-decoration: none !important;
    margin: 5px 10px !important;
    font-size: 14px !important;
}

.footer-mobile-nav a:hover {
    color: #fff !important;
}

.footer-mobile-contacts {
    margin-bottom: 20px !important;
}

.footer-mobile-contacts p {
    color: #ccc !important;
    margin-bottom: 10px !important;
    font-size: 14px !important;
}

.footer-mobile-contacts p i {
    margin-right: 8px !important;
    color: #a367dc !important;
}

.footer-mobile-social {
    display: flex !important;
    justify-content: center !important;
    margin-bottom: 10px !important;
}

.footer-mobile-social a {
    margin: 0 10px !important;
    color: #fff !important;
    font-size: 20px !important;
}

/* Нижняя часть футера */
.footer-bottom {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    margin-top: 20px !important;
    padding-top: 20px !important;
    border-top: none !important;
}

.footer-bottom .container {
    display: block !important;
}

.copyright {
    color: #aaa !important;
    font-size: 14px !important;
    margin-bottom: 5px !important;
}

.credits {
    color: #aaa !important;
    font-size: 12px !important;
}

/* Медиа-запросы для адаптивности */
@media (max-width: 1024px) {
    .footer-desktop .footer-column {
        width: 48% !important;
        padding: 0 10px !important;
    }
    .footer-desktop .container {
        gap: 20px !important;
        flex-direction: row !important;
    }
}

@media (max-width: 768px) {
    .footer-desktop {
        display: none !important;
    }
    .footer-mobile {
        display: block !important;
    }
    /* Только мобильная версия футера вертикальная */
} 