/* CTA Section */
.cta-section {
    background: linear-gradient(var(--overlay), var(--overlay)),
                url('../vendor/img/yeah.jpg?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
    padding: 5rem 0;
    text-align: center;
    color: var(--text-light);
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.btn-primary-hero {
    background: linear-gradient(135deg, var(--primary-gold), #f6e05e);
    color: var(--primary-navy);
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
    color: var(--primary-navy);
}

.cta-section .cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.btn-primary-hero.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--text-light);
}

.btn-primary-hero.btn-outline:hover {
    color: var(--primary-gold);
    box-shadow: none;
}

.cta-map-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border: 6px solid rgba(255, 255, 255, 0.35);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.35);
}

.cta-map-wrapper iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
}

@media (max-width: 768px) {
    .cta-map-wrapper iframe {
        height: 320px;
    }
}

/* Footer */
.footer {
    background: var(--primary-navy);
    color: var(--text-light);
    padding: 3rem 0 1rem;
    text-align: center;
}

.social-links a {
    color: var(--text-light);
    font-size: 1.5rem;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-gold);
}

.footer .legal-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
}

.footer .legal-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.footer .legal-links a:hover {
    color: var(--primary-gold);
    text-decoration: underline;
}

.footer .legal-links .separator {
    color: rgba(255, 255, 255, 0.6);
}
