/* Footer Styles - Updated Layout */
.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    grid-column: 1 / -1;
}

.footer-logo h2 {
    color: #fff;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.footer-logo h2 .accent {
    color: var(--neon-blue);
}

.footer-nav-container {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.footer-links,
.footer-contact {
    width: 100%;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(26, 26, 46, 0.8);
    border-radius: 50%;
    color: var(--text-light);
    font-size: 1rem;
    transition: var(--transition);
    border: 1px solid rgba(76, 201, 240, 0.2);
}

.social-icons a:hover {
    transform: translateY(-3px);
    background: linear-gradient(45deg, var(--neon-magenta), var(--neon-purple));
    box-shadow: 0 0 15px rgba(247, 37, 133, 0.5);
    border-color: transparent;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-nav-container {
        grid-template-columns: 1fr;
    }
    
    .footer-links,
    .footer-contact {
        text-align: center;
    }
    
    .footer-links h3::after,
    .footer-contact h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons {
        justify-content: center;
    }
}
