/* Footer Styles */
footer {
    padding: 4rem 5%;
    border-top: 1px solid var(--border);
    background: var(--bg-primary);
    margin-top: 6rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

footer .footer-left h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.2;
}

.footer-left p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Footer button uses .btn-primary-sm from button-styles.css */
footer .btn-primary-sm {
    margin-top: 0.5rem;
    width: fit-content;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    align-self: stretch;
}

.footer-links {
    display: flex;
    gap: 2rem;
    padding-top: 0.4rem;
}

footer .footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

footer .footer-links a:hover {
    color: var(--accent);
}

footer .copyright {
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-align: right;
    margin-bottom: 0.3rem;
}

/* Responsive */
@media (max-width: 768px) {
    footer {
        padding: 3rem 5%;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-left h2 {
        font-size: 1.5rem;
    }

    .footer-right {
        align-items: flex-start;
        gap: 2rem;
    }

    .footer-links {
        gap: 1.5rem;
    }

    .copyright {
        text-align: left;
    }
}
