/**
 * LD Solutions - Bandeau CTA
 * Bandeau pleine largeur entre Services et PME
 *
 * @package ldsolutions
 * @version 3.0.0
 */

/* ============================================================
   VARIABLES
   ============================================================ */

.lds-cta-bandeau {
    --cta-blue: var(--lds-blue, #125AF8);
    --cta-navy: var(--lds-navy, #021B50);
    --cta-ease: cubic-bezier(0.23, 1, 0.32, 1);
}

/* ============================================================
   SECTION - Bandeau pleine largeur
   ============================================================ */

.lds-cta-bandeau {
    position: relative;
    background: linear-gradient(135deg, rgba(2, 27, 80, 0.92) 0%, rgba(10, 42, 110, 0.92) 100%),
                url('../../img/4.png') center/cover no-repeat;
    padding: 100px 2rem;
    margin: 80px 0;
    text-align: center;
    overflow: hidden;
}

/* ============================================================
   CONTAINER
   ============================================================ */

.lds-cta-bandeau__container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

/* ============================================================
   CONTENT (plus besoin de la card)
   ============================================================ */

.lds-cta-bandeau__card {
    display: contents;
}

.lds-cta-bandeau__title {
    font-family: 'Chillax', Arial, sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--lds-white, #ffffff);
    margin: 0;
    line-height: 1.3;
    /* Blanc pur, pas de gradient */
}

.lds-cta-bandeau__text {
    font-family: Arial, sans-serif;
    font-size: 1.0625rem;
    font-weight: 400;
    color: rgba(235, 235, 235, 0.8);
    margin: 0;
    line-height: 1.7;
    max-width: 600px;
}

/* ============================================================
   CTA - Style bleu électrique (sans glow)
   ============================================================ */

.lds-cta-bandeau__cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 56px;
    padding: 0 28px;
    margin-top: 8px;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    background: linear-gradient(135deg, #0a3fd0 0%, #1a6aff 100%);
    text-decoration: none;
    border: 2.5px solid rgba(100, 170, 255, 0.5);
    border-radius: 16px;
    box-shadow:
        0 4px 12px rgba(18, 90, 248, 0.25),
        0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.35s ease;
    z-index: 1;
}

.lds-cta-bandeau__cta::before {
    display: none;
}

.lds-cta-bandeau__cta:hover,
.lds-cta-bandeau__cta:focus {
    color: rgba(255, 255, 255, 0.95);
    background: linear-gradient(135deg, #0d45da 0%, #2575ff 100%);
    border-color: rgba(130, 190, 255, 0.6);
    gap: 14px;
    transform: translateY(-2px);
    box-shadow:
        0 6px 20px rgba(18, 90, 248, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.15);
}

.lds-cta-bandeau__cta:hover::before {
    display: none;
}

.lds-cta-bandeau__cta:visited {
    color: rgba(255, 255, 255, 0.95);
}

.lds-cta-bandeau__cta svg {
    width: 18px;
    height: 18px;
    stroke: var(--lds-white, #ffffff);
    transition: transform 0.3s ease;
}

.lds-cta-bandeau__cta:hover svg {
    transform: translateX(4px);
}

/* ============================================================
   RESPONSIVE - TABLETTE
   ============================================================ */

@media (max-width: 1024px) {
    .lds-cta-bandeau {
        padding: 64px 1.5rem;
        margin: 60px 0;
    }
}

/* ============================================================
   RESPONSIVE - MOBILE
   ============================================================ */

@media (max-width: 768px) {
    .lds-cta-bandeau {
        padding: 56px 1.5rem;
        margin: 50px 0;
    }

    .lds-cta-bandeau__title {
        font-size: 1.5rem;
    }

    .lds-cta-bandeau__text {
        font-size: 1rem;
    }
}

/* ============================================================
   RESPONSIVE - PETIT MOBILE
   ============================================================ */

@media (max-width: 480px) {
    .lds-cta-bandeau {
        padding: 48px 1rem;
        margin: 40px 0;
    }

    .lds-cta-bandeau__cta {
        width: 100%;
        justify-content: center;
        height: 52px;
        padding: 0 24px;
        border-radius: 14px;
    }
}
