/* Footer */
footer {
    padding: 3rem 0;
    border-top: 1px solid var(--border-light);
    background: white;
    margin-top: auto;
    transition: all 0.3s;
}

.dark-mode footer {
    background: var(--bg-dark);
    border-top-color: var(--border-dark);
}

footer .container {
    text-align: center;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}



.footer-desc {
    opacity: 0.7;
    margin-bottom: 1.5rem;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: inherit;
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
    opacity: 1;
}

.footer-copyright {
    font-size: 0.75rem;
    opacity: 0.5;
}
