/* footer.css - ТОЛЬКО стили для футера */
.modern-footer {
    background: linear-gradient(135deg, #1c2a3a, #0f1a2e);
    padding: 40px 20px;
    color: #e0e0e0;
    border-top: 3px solid rgba(0, 204, 102, 0.3);
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.modern-footer::before {
    animation: none !important;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 1;
}

.footer-section {
    padding: 15px;
    background: rgba(28, 42, 58, 0.9);
    border-radius: 10px;
    border: 2px solid rgba(0, 204, 102, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.footer-section:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 204, 102, 0.4);
}

.footer-section h4 {
    color: #00cc66;
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 8px rgba(0, 204, 102, 0.5);
}

.footer-links a, .footer-links p {
    display: block;
    font-size: 14px;
    color: #bbb;
    margin: 8px 0;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-links a:hover {
    color: #ff66cc;
    text-shadow: 0 0 8px rgba(255, 102, 204, 0.5);
}

.copyright {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bbb;
    font-size: 14px;
}

/* Адаптация для мобильных */
@media (max-width: 768px) {
    .modern-footer {
        padding: 30px 15px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .footer-section {
        padding: 12px;
    }
    
    .footer-section h4 {
        font-size: 16px;
    }
    
    .footer-links a, .footer-links p {
        font-size: 13px;
        margin: 6px 0;
    }
    
    .copyright {
        font-size: 12px;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .modern-footer {
        padding: 20px 10px;
    }
    
    .footer-section {
        padding: 10px;
    }
    
    .footer-section h4 {
        font-size: 15px;
    }
    
    .footer-links a, .footer-links p {
        font-size: 12px;
    }
}