/* ===================================
   CTA SECTION - BACKGROUND IMAGE FULL COVER
   Image de fond dynamique qui remplit tout l'espace
   =================================== */

/* ===================================
   BACKGROUND DYNAMIQUE - Cover total
   =================================== */
.mxd-promo__bg.cta-dynamic-bg {
    position: absolute;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    z-index: 0;
}

/* ===================================
   CONTENU CENTRÉ
   =================================== */
.mxd-promo__content.cta-centered-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    padding: 2rem;
}

/* Titre centré */
.mxd-promo__content.cta-centered-content .mxd-promo__title {
    text-align: center;
    margin-bottom: 2rem;
}

/* Bouton centré */
.mxd-promo__content.cta-centered-content .mxd-promo__controls {
    display: flex;
    justify-content: center;
}

/* ===================================
   Responsive adjustments
   =================================== */
@media only screen and (max-width: 768px) {
    .mxd-promo__content.cta-centered-content {
        padding: 1.5rem;
    }
    
    .mxd-promo__content.cta-centered-content .mxd-promo__title {
        font-size: 1.8rem;
    }
}

@media only screen and (min-width: 1200px) {
    .mxd-promo__content.cta-centered-content {
        padding: 3rem;
    }
}
