/* ===== FOOTER LEGAL SECTION ===== */
.footer-legal {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-legal h4 {
    color: var(--primary-gold-light);
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

.footer-legal ul {
    list-style: none;
    padding: 0;
}

.footer-legal ul li {
    margin-bottom: 0.5rem;
}

.footer-legal ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.footer-legal ul li a:hover {
    color: var(--primary-gold-light);
    transform: translateX(3px);
}

.footer-legal ul li a::before {
    content: '⚖️';
    font-size: 0.8rem;
}

.footer-legal ul li a[href*="privacy-policy"]::before {
    content: '🔒';
}

.footer-legal ul li a[href*="terms"]::before {
    content: '📋';
}

.footer-legal ul li a[href*="contact"]::before {
    content: '💬';
}

/* Enhanced Footer Bottom Legal Links */
.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links .legal-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    padding: 0.3rem 0.6rem;
    border-radius: 0.3rem;
    border: 1px solid transparent;
}

.footer-links .legal-link:hover {
    color: var(--primary-gold-light);
    border-color: rgba(201, 169, 97, 0.3);
    background: rgba(201, 169, 97, 0.1);
}

.footer-links .cta-link {
    color: var(--primary-gold-light);
    font-weight: 600;
    text-decoration: none;
    padding: 0.3rem 0.8rem;
    border-radius: 0.3rem;
    border: 1px solid var(--primary-gold-light);
    transition: var(--transition-fast);
}

.footer-links .cta-link:hover {
    background: var(--primary-gold-light);
    color: var(--navy);
    transform: translateY(-1px);
}

/* Responsive adjustments for legal sections */
@media (max-width: 768px) {
    .footer-legal {
        margin-top: 1.5rem;
        padding-top: 1rem;
    }

    .footer-links {
        gap: 1rem;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .footer-links .legal-link,
    .footer-links .cta-link {
        text-align: center;
        min-width: 150px;
    }
}

@media (max-width: 480px) {
    .footer-legal ul li a {
        font-size: 0.85rem;
    }

    .footer-links {
        gap: 0.8rem;
    }

    .footer-links .legal-link,
    .footer-links .cta-link {
        font-size: 0.85rem;
        padding: 0.4rem 0.6rem;
    }
}