/* ===================================
   MODERN COMPACT FOOTER STYLES
   =================================== */

.footer {
    background: #0f172a;
    /* Solid dark color for cleanness, or subtle gradient */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem 0 1.5rem;
    /* Reduced padding */
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    flex-direction: column;
    /* Stack if needed, but mainly for centering */
    text-align: center;
    margin-bottom: 2rem;
}

/* 1. Brand Section (Left) */
.footer-brand {
    max-width: 500px;
    /* Allow a bit more width for centered text */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center logo items */
    gap: 0.75rem;
    margin-bottom: 1rem;
    text-decoration: none;
}

/* Ensure logo text is visible */
.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.logo-accent {
    color: #667eea;
}

.footer-description {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    /* Circular for modern feel */
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all 0.2s ease;
}

.social-link:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

/* 2. Links Section (Right Grid) */
.footer-nav-grid {
    display: flex;
    gap: 4rem;
    flex: 1;
    justify-content: flex-end;
}

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

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #667eea;
}

/* 3. Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: #64748b;
    font-size: 0.85rem;
    margin: 0;
}

.copyright-right {
    color: #64748b;
    font-size: 0.85rem;
    margin: 0;
    opacity: 0.8;
}

.disclaimer {
    display: none;
    /* Hide lengthy disclaimer in compact mode or make it tooltip */
}

/* Responsive */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 2.5rem;
    }

    .footer-brand {
        max-width: 100%;
        text-align: center;
    }

    .footer-nav-grid {
        width: 100%;
        justify-content: space-between;
        gap: 2rem;
        flex-wrap: wrap;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-nav-grid {
        flex-direction: column;
        gap: 2rem;
    }
}