/* Footer Styling */
.footer {
    background: var(--secondary-bg);
    padding: 40px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    overflow: hidden;
}

.footer .container {
    max-width: 1400px;
    padding: 0 2rem;
    margin: 0 auto;
}

.footer-brand {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--accent-blue);
    margin-bottom: 1rem;
    text-decoration: none;
    display: block;
}

.footer h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-blue);
    text-decoration: none;
}

.footer small {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer b {
    color: var(--text-primary);
}
