/* ============================================================
   BFL — CTA BANNER
   Section pleine largeur : fond sombre + image bg
   title | phone | bouton orange
   ============================================================ */

.bfl-ctab {
    position: relative;
    background-color: var(--steel);
    background-image: var(--ctab-bg, none);
    background-size: cover;
    background-position: center 30%;
    overflow: hidden;
    padding: 0;
}


/* ── OVERLAY ────────────────────────────────────────────────── */

.bfl-ctab-overlay {
    position: absolute;
    inset: 0;
    /* Dégradé : sombre à gauche (texte lisible) → transparent à droite (image visible) */
    background: linear-gradient( to right, rgba(18, 18, 18, 0.92) 0%, rgba(18, 18, 18, 0.78) 45%, rgba(18, 18, 18, 0.40) 75%, rgba(18, 18, 18, 0.15) 100%);
    z-index: 1;
}


/* ── INNER LAYOUT ───────────────────────────────────────────── */

.bfl-ctab-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 52px 7%;
    max-width: 100%;
    margin: 0 auto;
}


/* ── TITLE ──────────────────────────────────────────────────── */

.bfl-ctab-title {
    font-family: var(--font-title);
    font-size: clamp(1.6rem, 2.8vw, 2.4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.18;
    letter-spacing: -0.2px;
    margin: 0;
    flex: 1;
    max-width: 520px;
}


/* ── ACTIONS (phone + sep + btn) ────────────────────────────── */

.bfl-ctab-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-shrink: 0;
}


/* Phone */

.bfl-ctab-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--orange);
    font-family: var(--font-title);
    font-size: clamp(1.1rem, 1.8vw, 1.5rem);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s;
}

.bfl-ctab-phone:hover {
    opacity: 0.8;
    color: var(--orange);
}

.bfl-ctab-phone-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--teal) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
}

.bfl-ctab-phone:hover .bfl-ctab-phone-icon {
    background: rgba(232, 80, 10, 0.28);
}


/* Separator vertical bar */

.bfl-ctab-sep {
    display: block;
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}


/* CTA Button */

.bfl-ctab-btn {
    display: inline-flex;
    align-items: center;
    background: var(--orange);
    color: var(--white);
    font-family: var(--font-title);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: var(--radius);
    white-space: nowrap;
    border: 2px solid var(--orange);
    transition: background 0.2s, color 0.2s, transform 0.18s;
}

.bfl-ctab-btn:hover {
    background: transparent;
    color: var(--orange);
    transform: translateY(-2px);
}


/* ── RESPONSIVE ─────────────────────────────────────────────── */

@media (max-width: 1024px) {
    .bfl-ctab-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
        padding: 48px 6%;
    }
    .bfl-ctab-title {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .bfl-ctab-inner {
        padding: 40px 5%;
    }
    .bfl-ctab-actions {
        flex-wrap: wrap;
        gap: 16px;
    }
    .bfl-ctab-sep {
        display: none;
    }
    .bfl-ctab-phone {
        font-size: 1.1rem;
    }
}

#bfl-main .bfl-ctab {
    background-size: cover;
}