/* Improved Footer Styles */
footer {
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 50%, #16213e 100%);
    color: #fff;
    padding: 60px 20px 20px;
    margin-top: auto;
    border-top: 2px solid rgba(0, 255, 234, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto 30px;
    gap: 30px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
    padding: 0 10px;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #00ffea;
    position: relative;
    padding-bottom: 8px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #00ffea;
    border-radius: 2px;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    position: relative;
}

.footer-section ul li a::before {
    content: '▶';
    margin-right: 8px;
    font-size: 0.7rem;
    opacity: 0.7;
    transition: transform 0.3s ease;
}

.footer-section ul li a:hover {
    color: #00ffea;
    transform: translateX(5px);
}

.footer-section ul li a:hover::before {
    transform: translateX(3px);
}

/* Newsletter Section */
.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-input {
    flex: 1;
    padding: 10px 0px 10px 10px;
    border: none;
    border-radius: 4px 0 0 4px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    outline: none;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-btn {
    background: #00ffea;
    color: #000;
    border: none;
    padding: 10px 10px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background 0.3s ease;
    font-weight: bold;
}

.newsletter-btn:hover {
    background: #00d4c0;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #00ffea;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: bold;
    border: 1px solid rgba(0, 255, 234, 0.2);
}

.social-links a:hover {
    background: #00ffea;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 234, 0.4);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.7;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer Links Hover Animation */
.footer-section ul li a {
    position: relative;
}

.footer-section ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #00ffea;
    transition: width 0.3s ease;
}

.footer-section ul li a:hover::after {
    width: 100%;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .footer-section {
        margin-bottom: 0;
        padding: 0;
    }

    .social-links {
        justify-content: center;
    }

    .newsletter-form {
        max-width: 300px;
        margin: 15px auto 0;
    }

    .newsletter-input {
        border-radius: 4px;
    }

    .newsletter-btn {
        border-radius: 4px;
        margin-top: 10px;
        width: 100%;
    }
}

/* Footer Animation */
@keyframes footerFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

footer {
    animation: footerFadeIn 0.8s ease-out;
}

/* Footer Icon Styles */
.footer-icon {
    margin-right: 8px;
    font-size: 1.1rem;
}