/* Основные стили футера */
.footer {
    background: var(--gradient-primary);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
    margin-top: auto;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(46, 139, 87, 0.9) 0%, 
        rgba(60, 179, 113, 0.9) 50%,
        rgba(46, 139, 87, 0.95) 100%);
    z-index: 1;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem 1rem;
    position: relative;
    z-index: 2;
}

/* Основная секция футера */
.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 3rem;
}

/* Секция с логотипом - УВЕЛИЧЕН РАЗМЕР */
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
}

.footer-logo {
    width: 250px; /* Увеличено с 100px */
    height: 250px; /* Увеличено с 100px */
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s ease, filter 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 10px;
    backdrop-filter: blur(10px);
}

.footer-logo:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.footer-brand-text h2 {
    font-size: 2rem; /* Увеличено */
    font-weight: 700;
    margin-bottom: 0.8rem;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
    color: #ffffff;
}

.footer-brand-text p {
    font-size: 1.1rem; /* Увеличено */
    opacity: 0.95;
    line-height: 1.6;
    max-width: 350px;
    color: rgba(255, 255, 255, 0.9);
}

/* Навигационная секция - УЛУЧШЕНА КОНТРАСТНОСТЬ */
.footer-navigation {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-navigation h3 {
    font-size: 1.5rem; /* Увеличено */
    font-weight: 700;
    margin-bottom: 2rem;
    color: #ffffff; /* Изменено на белый */
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

/* КАРДИНАЛЬНО УЛУЧШЕНЫ ХОВЕРЫ И КОНТРАСТНОСТЬ */
.footer-nav-link {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem 1.8rem;
    background: rgba(255, 255, 255, 0.15); /* Более светлый фон */
    border-radius: 15px;
    color: #ffffff; /* Белый текст */
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

/* ОЧЕНЬ ЗАМЕТНЫЙ ХОВЕР */
.footer-nav-link:hover {
    background: rgba(255, 255, 255, 0.25); /* Еще светлее */
    color: #ffffff;
    transform: translateX(15px) translateY(-3px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    scale: 1.02;
}

/* Светящийся эффект при ховере */
.footer-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.4), 
        rgba(255, 255, 255, 0.2));
    border-radius: 15px 0 0 15px;
    transition: width 0.4s ease;
    z-index: -1;
}

.footer-nav-link:hover::before {
    width: 100%;
}

/* Анимация иконок */
.footer-nav-link i {
    font-size: 1.3rem;
    width: 28px;
    text-align: center;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.9);
}

.footer-nav-link:hover i {
    transform: scale(1.3) rotate(5deg);
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.footer-nav-link span {
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Пульсирующий эффект для активной ссылки */
.footer-nav-link:active {
    animation: pulse 0.3s ease;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(0.95); }
    100% { transform: scale(1); }
}

/* Нижняя часть футера */
.footer-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 500;
}

.legal-links a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.footer-copyright {
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-copyright p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Адаптивность */
@media (max-width: 992px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .footer-brand {
        align-items: center;
    }
    
    .footer-navigation {
        align-items: center;
    }
    
    .footer-bottom {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-copyright {
        text-align: center;
    }
    
    .footer-logo {
        width: 130px;
        height: 130px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 2.5rem 1rem 1rem;
    }
    
    .footer-nav-links {
        max-width: 450px;
    }
    
    .footer-nav-link {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .legal-links {
        justify-content: center;
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .footer-logo {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .footer-logo {
        width: 100px;
        height: 100px;
    }
    
    .footer-brand-text h2 {
        font-size: 1.7rem;
    }
    
    .footer-nav-link {
        padding: 0.9rem 1.3rem;
        font-size: 0.95rem;
    }
    
    .footer-nav-link i {
        font-size: 1.2rem;
    }
}
