/* Footer Fixes */
.footer {
    background: #0f172a !important;
    color: #f8fafc !important;
    padding: 80px 0 32px !important;
    margin-top: 60px !important;
}

.footer-content {
    display: grid !important;
    grid-template-columns: 2fr 1fr 1fr 1fr !important;
    gap: 60px !important;
    margin-bottom: 60px !important;
}

.footer-brand p {
    color: #94a3b8 !important;
    line-height: 1.6 !important;
    margin: 24px 0 !important;
    max-width: 300px !important;
}

.footer-logo {
    height: 40px !important;
    width: auto !important;
    filter: brightness(0) invert(1) !important;
}

.social-links {
    display: flex !important;
    gap: 16px !important;
}

.social-links a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 50% !important;
    color: white !important;
    transition: all 0.3s ease !important;
}

.social-links a:hover {
    background: #6366f1 !important;
    transform: translateY(-3px) !important;
}

.footer-column h4 {
    font-size: 18px !important;
    font-weight: 600 !important;
    margin-bottom: 24px !important;
    color: white !important;
}

.footer-links {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
}

.footer-links a {
    color: #94a3b8 !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    text-decoration: none !important;
}

.footer-links a:hover {
    color: white !important;
    transform: translateX(5px) !important;
}

.footer-bottom {
    padding-top: 32px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    text-align: center !important;
    color: #64748b !important;
    font-size: 14px !important;
}

/* Mobile Footer Fixes */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .footer-brand {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

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

    .footer-column {
        text-align: center !important;
    }

    .footer-links a:hover {
        transform: none !important;
    }
}