/* Footer Styles */
.footer {
    background: #050505;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
    position: relative;
    overflow: hidden;
    margin-top: 100px;
}

/* Footer Background */
.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    pointer-events: none;
}

.footer-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(139, 92, 246, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
}

/* Footer Content */
.footer-content {
    position: relative;
    z-index: 1;
    padding: 60px 0 30px;
}

/* Footer Top */
.footer-top {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    margin-bottom: 50px;
}

/* Footer Brand */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    height: 50px;
    width: auto;
}

.footer-tagline {
    color: #9ca3af;
    font-size: 1rem;
    line-height: 1.6;
}

/* Footer Socials */
.footer-socials {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 10px;
    color: #8B5CF6;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: #8B5CF6;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

/* Footer Links */
.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: #f3f4f6;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-column a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #8B5CF6;
    transition: width 0.3s ease;
}

.footer-column a:hover {
    color: #8B5CF6;
    transform: translateX(5px);
}

.footer-column a:hover::after {
    width: 100%;
}

/* Footer Stats */
.footer-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 40px 0;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
    margin-bottom: 30px;
}

.footer-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #9ca3af;
    font-size: 0.95rem;
}

.footer-stat i {
    color: #8B5CF6;
    font-size: 1.2rem;
}

.footer-stat strong {
    color: #f3f4f6;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 30px;
}

.footer-bottom p {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 5px 0;
}

.footer-disclaimer {
    color: #4b5563;
    font-size: 0.8rem;
    font-style: italic;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-stats {
        flex-wrap: wrap;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-content {
        padding: 40px 0 20px;
    }
}

@media (max-width: 480px) {
    .footer-socials {
        justify-content: center;
    }
    
    .footer-column a:hover {
        transform: none;
    }
}