
/* ============================================
   BOUTONS CTA AVEC SÉPARATEUR
   ============================================ */

/* Conteneur des boutons */
.contact-cta-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* Séparateur "ou" */
.btn-separator {
    color: #ffffff;
    font-size: 16px !important;
    font-weight: 500;
    padding: 0 10px;
}

/* Styles de base des boutons CTA */
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    background-color: #F7EA48;
    color: #004B87 !important;
    border-color: #F7EA48;
}

.btn-cta svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}



.btn-cta:hover {
    background-color: #F7EA48;
    border-color: #F7EA48;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(247, 234, 72, 0.3);
}



/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .contact-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-cta {
        width: 100%;
        justify-content: center;
    }

    .btn-separator {
        display: none;
    }
}


.nav-container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
}