/* Основные стили */
#custom-avia-footer {
    width: 100%;
    top: 35px;
    margin: 100px 0 0 0;
    padding: 30px 0 20px;
    background: transparent;
    position: relative;
    border-top: none;
}

.gp-container {
    width: 100%;
    max-width: 1520px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
    position: relative;
}

.custom-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 20px 0 20px;
    position: relative;
}

/* Стили для логотипа с градиентным эффектом */
#gp-footer-logo {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    margin-right: 20px;
}

/* .logo-gradient-effect {
    position: absolute;
    z-index: -1;
    width: 65%;
    height: 140%;
    top: 50%;
    left: 22%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(
        circle at 30% 40%,
        rgba(255, 230, 0, 0.4) 0%,
        rgba(255, 145, 0, 0.3) 30%,
        rgba(0, 200, 255, 0.2) 70%,
        transparent 100%
    );
    opacity: 0.8;
    filter: blur(15px);
} */

.footer-logo-img {
    display: block;
    position: relative;
    z-index: 2;
}

/* Стили навигации */
#gp-footer-nav.gp-nav {
    margin-left: auto;
    top: 8px;
}

#gp-footer-nav.gp-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

#gp-footer-nav.gp-nav ul li {
    margin-left: 25px;
    position: relative;
}

#gp-footer-nav.gp-nav ul li:first-child {
    margin-left: 0;
}

#gp-footer-nav.gp-nav ul li a {
    text-decoration: none;
    color: inherit;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

/* Эффект при наведении как в шапке */
#gp-footer-nav.gp-nav ul li a:hover {
    color: #f5d769 !important;
}

/* Убираем все псевдоэлементы, которые могли быть разделителями */
#gp-footer-nav.gp-nav ul.menu > li::before,
#gp-footer-nav.gp-nav ul.menu > li::after {
    display: none !important;
    content: none !important;
}

/* Адаптация для планшетов */
@media (max-width: 992px) {
    .custom-footer-content {
        flex-direction: column;
        align-items: center;
    }
    
    #gp-footer-logo {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    #gp-footer-nav.gp-nav {
        margin-left: 0;
        width: 100%;
    }
    
    #gp-footer-nav.gp-nav ul {
        justify-content: center;
    }
    
    #gp-footer-nav.gp-nav ul li {
        margin-left: 15px;
        margin-right: 15px;
    }

    #gp-footer-nav.gp-nav ul li a {
        padding: 5px;
    }
}

/* Адаптация для мобильных */
@media (max-width: 768px) {
    #gp-footer-nav.gp-nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    #gp-footer-nav.gp-nav ul li {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 12px;
    }

    #gp-footer-nav.gp-nav ul li a {
        padding: 5px;
    }
    
    .logo-gradient-effect {
        width: 200%;
        height: 200%;
        filter: blur(10px);
    }
}

#gp-footer-widgets {
    display: none !important;
}