.rr-services-section {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    padding: 60px 20px;
}

.rr-service-card {
    background: #ffffff;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.rr-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.rr-icon-wrapper {
    margin-bottom: 40px;
}

.rr-icon-svg {
    width: 180px;
    height: 180px;
}

.rr-icon-wrapper {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    /* Centrage horizontal de l'image */
}

.rr-icon-img {
    width: 180px;
    /* même taille que le SVG d'origine */
    height: 180px;
    object-fit: contain;
    /* conserve les proportions */
}

.rr-service-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e80;
    margin-bottom: 15px;
}

.rr-service-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e80;
    margin-bottom: 25px;
    line-height: 1.6;
}

.rr-service-description {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 30px;
}

.rr-service-link {
    margin-top: auto;
    font-size: 1rem;
    font-weight: 600;
    color: #4169e1;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.rr-service-link::after {
    content: "→";
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.rr-service-link:hover {
    color: #ecab23;
}

.rr-service-link:hover::after {
    transform: translateX(6px);
}

/* Responsive */
@media (max-width: 1024px) {
    .rr-services-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .rr-service-card {
        padding: 40px 30px;
    }

    .rr-service-title {
        font-size: 1.8rem;
    }

    .rr-icon-svg {
        width: 140px;
        height: 140px;
    }
}

/* Carte flexible sans bord ni fond */
.pbmit-ihbox-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 0;
    /* minimaliste */
    background: transparent;
    margin-bottom: 20px;
}

.pbmit-ihbox-contents {
    flex: 1;
}

/* Espacement des paragraphes plus proche du titre et entre eux */
.pbmit-ihbox-contents p {
    margin-top: 4px;
    /* plus proche du titre */
    margin-bottom: 2px;
    /* plus proche du bouton ou du paragraphe suivant */
    line-height: 1.5;
}

/* Lien simple avec flèche, style texte minimaliste */
.pbmit-simple-link {
    margin-top: 2px;
    /* bouton très proche du dernier paragraphe */
    align-self: flex-start;
    text-decoration: none;
    color: #000;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s;
}

.pbmit-simple-link .pbmit-arrow {
    margin-right: 6px;
    font-weight: bold;
}

.pbmit-simple-link:hover {
    color: #ecab23;
    /* couleur hover */
}

.pbmit-simulateur-box {
    background: transparent;
    padding-left: 30px;
}

.pbmit-sim-block {
    margin-bottom: 28px;
}

.pbmit-sim-header {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
}

.pbmit-sim-range {
    width: 100%;
}

/* SLIDER CUSTOM – SUPPRESSION DU HOVER BLANC */
.pbmit-sim-range {
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    outline: none;
}

/* BARRE */
.pbmit-sim-range::-webkit-slider-runnable-track {
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.pbmit-sim-range::-moz-range-track {
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

/* CURSEUR */
.pbmit-sim-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: #ecab23;
    border-radius: 50%;
    cursor: pointer;
    margin-top: -6px;
}

.pbmit-sim-range::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: #ecab23;
    border-radius: 50%;
    cursor: pointer;
}

/* AUCUN EFFET AU HOVER */
.pbmit-sim-range:hover,
.pbmit-sim-range:focus,
.pbmit-sim-range:active {
    background: transparent;
    box-shadow: none;
    outline: none;
}

.pbmit-sim-range-values {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    opacity: 0.8;
    margin-top: 4px;
    color: #fff;
}

/* BOUTON AVEC CADRE */
.pbmit-sim-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    padding: 12px 26px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    /* border plus doux */
    border-radius: 8px;
    /* légèrement réduit pour plus d’élégance */
    transition: all 0.3s ease;
}

.pbmit-sim-btn:hover {
    background-color: #ecab23;
    color: #000;
}

/* TEXTE LÉGAL */
.pbmit-sim-legal-wrapper {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.pbmit-sim-legal {
    margin: 0;
    font-size: 13px;
    opacity: 0.8;
    color: #fff;
    line-height: 1.6;
}
.marquee-image-container {
    width: 200px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.marquee-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}
/* Style des cartes */
.team-card {
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.team-card-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-card-image img {
    transform: scale(1.1);
}

.team-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(245, 159, 70, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover .team-card-overlay {
    opacity: 1;
}

.team-card-overlay i {
    font-size: 40px;
    color: #fff;
}

.team-card-content {
    padding: 20px;
    text-align: center;
}

.team-role {
    display: block;
    font-size: 13px;
    color: #f59f46;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.team-name {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

/* Style des modals */
.modal-content {
    border: none;
    border-radius: 15px;
}

.modal-body img {
    max-width: 100%;
    height: auto;
}

.badge {
    padding: 8px 15px;
    font-size: 13px;
    font-weight: 600;
}

/* En-tête de section */
.team-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
}

.team-header h4 {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-header .lead {
    font-size: 18px;
    color: #666;
}

/* simulateur

 .pbmit-simulateur-box {
                background: transparent;
                padding-left: 30px;
            }

            .pbmit-sim-block {
                margin-bottom: 28px;
            }

            .pbmit-sim-header {
                display: flex;
                justify-content: space-between;
                font-weight: 600;
                margin-bottom: 8px;
                color: #fff;
            }

            .pbmit-sim-range {
                width: 100%;

            }

            /* SLIDER CUSTOM – SUPPRESSION DU HOVER BLANC */
.pbmit-sim-range {
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    outline: none;
}

/* BARRE */
.pbmit-sim-range::-webkit-slider-runnable-track {
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.pbmit-sim-range::-moz-range-track {
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

/* CURSEUR */
.pbmit-sim-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: #ecab23;
    border-radius: 50%;
    cursor: pointer;
    margin-top: -6px;
}

.pbmit-sim-range::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: #ecab23;
    border-radius: 50%;
    cursor: pointer;
}

/* AUCUN EFFET AU HOVER */
.pbmit-sim-range:hover,
.pbmit-sim-range:focus,
.pbmit-sim-range:active {
    background: transparent;
    box-shadow: none;
    outline: none;
}

.pbmit-sim-range-values {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    opacity: 0.8;
    margin-top: 4px;
    color: #fff;
}

/* BOUTON AVEC CADRE */
.pbmit-sim-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    padding: 12px 26px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    /* border plus doux */
    border-radius: 8px;
    /* légèrement réduit pour plus d’élégance */
    transition: all 0.3s ease;
}

.pbmit-sim-btn:hover {
    background-color: #ecab23;
    color: #000;
}

/* TEXTE LÉGAL */
.pbmit-sim-legal-wrapper {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.pbmit-sim-legal {
    margin: 0;
    font-size: 13px;
    opacity: 0.8;
    color: #fff;
    line-height: 1.6;
}
.rr-services-section {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    padding: 60px 20px;
}

.rr-service-card {
    background: #ffffff;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.rr-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.rr-icon-wrapper {
    margin-bottom: 40px;
}

.rr-icon-svg {
    width: 180px;
    height: 180px;
}

.rr-icon-wrapper {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    /* Centrage horizontal de l'image */
}

.rr-icon-img {
    width: 180px;
    /* même taille que le SVG d'origine */
    height: 180px;
    object-fit: contain;
    /* conserve les proportions */
}

.rr-service-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e80;
    margin-bottom: 15px;
}

.rr-service-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e80;
    margin-bottom: 25px;
    line-height: 1.6;
}

.rr-service-description {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 30px;
}

.rr-service-link {
    margin-top: auto;
    font-size: 1rem;
    font-weight: 600;
    color: #4169e1;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.rr-service-link::after {
    content: "→";
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.rr-service-link:hover {
    color: #ecab23;
}

.rr-service-link:hover::after {
    transform: translateX(6px);
}

/* Responsive */
@media (max-width: 1024px) {
    .rr-services-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .rr-service-card {
        padding: 40px 30px;
    }

    .rr-service-title {
        font-size: 1.8rem;
    }

    .rr-icon-svg {
        width: 140px;
        height: 140px;
    }
}

/* ==================== ACCOMPAGNEMENT SECTION ==================== */
.accompagnement-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
}

/* Contenu Gauche */
.accompagnement-content-box {
    background: #fff;
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.accompagnement-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #fff5e6 0%, #ffe8cc 100%);
    color: #ecab23;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    width: fit-content;
}

.accompagnement-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(135deg, #ecab23 0%, #ecab23 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.accompagnement-intro {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Features */
.accompagnement-features {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ecab23 0%, #ecab23 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 22px;
    color: #fff;
}

.feature-content h5 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.feature-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Highlight */
.accompagnement-highlight {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #fff5e6 0%, #ffe8cc 100%);
    padding: 20px 25px;
    border-radius: 12px;
    border-left: 4px solid #ecab23;
    margin-bottom: 20px;
}

.accompagnement-highlight i {
    font-size: 24px;
    color: #ecab23;
}

.accompagnement-highlight p {
    margin: 0;
    font-size: 15px;
    color: #333;
}

.accompagnement-cta-text {
    font-size: 15px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Boutons */
.accompagnement-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-accompagnement-primary,
.btn-accompagnement-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-accompagnement-primary {
    background: linear-gradient(135deg, #ecab23 0%, #ecab23 100%);
    color: #fff;
    border: 2px solid transparent;
}

.btn-accompagnement-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(245, 159, 70, 0.3);
    color: #fff;
}

.btn-accompagnement-outline {
    background: transparent;
    color: #ecab23;
    border: 2px solid #ecab23;
}

.btn-accompagnement-outline:hover {
    background: #ecab23;
    color: #fff;
    transform: translateY(-3px);
}

.btn-accompagnement-primary i,
.btn-accompagnement-outline i {
    transition: transform 0.3s ease;
}

.btn-accompagnement-primary:hover i {
    transform: translateX(5px);
}

.btn-accompagnement-outline:hover i {
    transform: scale(1.1);
}

/* Image Droite */
.accompagnement-image-box {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.image-wrapper {
    position: relative;
    height: 100%;
    min-height: 500px;
    border-radius: 24px;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.accompagnement-image-box:hover .image-wrapper img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(245, 159, 70, 0.1) 0%,
        rgba(255, 140, 66, 0.1) 100%
    );
    pointer-events: none;
}

/* Statistiques flottantes */
.stats-floating {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: fit-content;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.stat-card-1 {
    align-self: flex-start;
    animation-delay: 0.2s;
}

.stat-card-2 {
    align-self: flex-end;
    animation-delay: 0.4s;
}

.stat-card-3 {
    align-self: flex-start;
    margin-top: auto;
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ecab23 0%, #ecab23 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 22px;
    color: #fff;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: #666;
    margin: 5px 0 0;
    font-weight: 600;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 991px) {
    .accompagnement-title {
        font-size: 32px;
    }

    .accompagnement-content-box {
        padding: 40px 30px;
        margin-bottom: 30px;
    }

    .image-wrapper {
        min-height: 400px;
    }

    .stats-floating {
        padding: 20px;
    }

    .stat-card {
        padding: 15px;
    }

    .stat-number {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .accompagnement-section {
        padding: 50px 0;
    }

    .accompagnement-title {
        font-size: 28px;
    }

    .accompagnement-content-box {
        padding: 30px 20px;
    }

    .feature-item {
        flex-direction: column;
        gap: 15px;
    }

    .accompagnement-buttons {
        flex-direction: column;
    }

    .btn-accompagnement-primary,
    .btn-accompagnement-outline {
        width: 100%;
        justify-content: center;
    }

    .image-wrapper {
        min-height: 350px;
    }

    .stats-floating {
        position: static;
        padding: 20px;
        background: rgba(255, 255, 255, 0.9);
        margin-top: -50px;
        border-radius: 20px 20px 0 0;
    }

    .stat-card {
        width: 100%;
        margin-bottom: 15px;
    }

    .stat-card-2,
    .stat-card-3 {
        align-self: flex-start;
    }
}

/* accompagnement */

/* Variables */
:root {
    --primary-color: #ecab23;
    --secondary-color: #ecab23;
    --accent-color: #1d4ed8;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px -5px rgba(0,0,0,0.1);
    --radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Section principale */
.promotion-section {
    padding: 5rem 0;
    background: var(--white);
    position: relative;
}

/* En-tête */
.section-header .section-subtitle .badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--gray-100);
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 0;
}

/* Introduction */
.intro-block {
    margin-bottom: 4rem;
}

.illustration-box {
    background: var(--gray-50);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.illustration-box img {
    max-height: 300px;
    width: auto;
    margin: 0 auto;
    display: block;
}

.intro-text .lead {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Cartes d'événements */
.events-section {
    margin-top: 3rem;
}

.events-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--text-dark);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.event-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-image .img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.event-card:hover .card-image .img-cover {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.7));
}

.card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-badge {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: var(--gray-100);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 6px;
    margin-bottom: 0.75rem;
    align-self: flex-start;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.card-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 1rem;
    flex-grow: 1;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: var(--transition);
    margin-top: auto;
}

.card-link:hover {
    color: var(--accent-color);
    gap: 0.75rem;
}

.card-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Responsive */
@media (max-width: 768px) {
    .promotion-section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .intro-block .row {
        flex-direction: column;
    }
    
    .illustration-box {
        margin-bottom: 2rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    } 
}

@media (min-width: 1025px) {
    .events-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
/* contact */
/* Espace en bas de la section sur mobile */
@media (max-width: 767px) {
    .about-us-section-three {
        padding-bottom: 60px; /* ajuste si besoin */
    }

    .about-us-three-rightbox .pbmit-btn {
        display: inline-block;
        margin-bottom: 30px;
    }
}
/* logo */
.site-footer .pbmit-main-logo {
    width: 169px;
    height: 42px;
    object-fit: contain;
}

@media (max-width: 767px) {
    .site-footer .pbmit-main-logo {
        width: 140px;
        height: auto;
        margin: 20px auto 0;
    }
}


.pbmit-featured-img-wrapper {
    width: 100%;             /* Prend toute la largeur de la carte */
    height: 250px;           /* Hauteur fixe que tu peux ajuster */
    overflow: hidden;        /* Coupe les parties qui dépassent */
    display: flex;
    align-items: center;     /* Centre verticalement l'image */
    justify-content: center; /* Centre horizontalement l'image */
}

.pbmit-featured-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;       /* L'image remplit le cadre sans déformation */
    object-position: center; /* Centrage du contenu de l'image */
}
.pbmit-footer-policy-links {
    list-style: none;
    padding: 0;
}

.pbmit-footer-policy-links li a {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    transition: color 0.3s ease;
}

.pbmit-footer-policy-links li a:hover {
    color: #ffffff;
    text-decoration: underline;
}

    

   

    .pbmit-step-title {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 30px;
    }

    .pbmit-step-number {
        font-size: 32px;
        font-weight: 700;
        color: #ecab23;
    }

    .pbmit-simulateur-box {
        padding: 30px;
        border-radius: 12px;
    }

    .pbmit-sim-header {
        display: flex;
        justify-content: space-between;
        font-weight: 600;
    }

    .pbmit-sim-range {
        -webkit-appearance: none;
        width: 100%;
        height: 6px;
        border-radius: 5px;
        outline: none;
        cursor: pointer;
    }

    .pbmit-sim-range::-webkit-slider-thumb {
        -webkit-appearance: none;
        width: 18px;
        height: 18px;
        background: #ecab23;
        border-radius: 50%;
        border: 3px solid #fff;
        box-shadow: 0 2px 6px rgba(0, 0, 0, .25);
    }

    .pbmit-sim-range::-moz-range-thumb {
        width: 18px;
        height: 18px;
        background: #ecab23;
        border: none;
        border-radius: 50%;
    }

    .pbmit-sim-range-values {
        display: flex;
        justify-content: space-between;
        font-size: 13px;
    }

    .pbmit-sim-results p {
        display: flex;
        justify-content: space-between;
        margin: 6px 0;
        font-weight: 500;
    }

    .pbmit-sim-legal {
        font-size: 13px;
        margin-top: 20px;
    }

    .pbminfotech-post-item {
        background: #fff;
        padding: 30px;
        border-radius: 14px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    }

    .pbminfotech-box-img img {
        width: 90px;
        height: 90px;
        margin-bottom: 20px;
    }

    .pbmit-contact-input {
        width: 100%;
        padding: 13px;
        border-radius: 6px;
        border: 1px solid #ddd;
    }

    .pbmit-contact-btn {
        background: #ecab23;
        border: none;
        padding: 13px 34px;
        border-radius: 6px;
        font-weight: 600;
        cursor: pointer;
    }

    /* ====== Témoignage – ajustement taille pour correspondre à simulateur ====== */
    .pbmit-sim-contact-section .pbminfotech-post-item {
        max-width: 100%;
        /* Limite la largeur au conteneur parent */
        padding: 30px;
        /* Même padding que simulateur */
        border-radius: 12px;
        /* Même que simulateur */
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .pbmit-sim-contact-section .pbminfotech-box-img {
        margin-bottom: 15px;
        /* Réduit l’espace au-dessus de la photo */
    }

    .pbmit-sim-contact-section .pbminfotech-box-img img {
        width: 80px;
        /* Taille plus petite que 90px si besoin */
        height: 80px;
        object-fit: cover;
        border-radius: 50%;
    }

    .pbmit-sim-contact-section .pbminfotech-box-desc {
        text-align: center;
        font-size: 14px;
        /* Ajuste la taille du texte */
        line-height: 1.5;
    }

    .pbmit-sim-contact-section .pbminfotech-box-desc blockquote {
        margin-bottom: 10px;
        font-size: 14px;
        /* Même taille que la simulation */
    }

    .formation-card {
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .formation-image img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .formation-content {
            padding: 20px;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .formation-content h3 {
            font-size: 18px;
            margin-bottom: 6px;
        }

        .formation-meta {
            font-size: 14px;
            color: #777;
            margin-bottom: 10px;
        }

        .pbmit-simple-link {
            margin-top: auto;
            font-weight: 600;
            text-decoration: none;
            color: #000;
        }

        .pbmit-simple-link:hover {
            color: #ecab23;
        }

        .pbmit-pagination ul.pagination {
            list-style: none;
            display: inline-flex;
            padding: 0;
            margin: 0;
        }

        .pbmit-pagination ul.pagination li {
            margin: 0 5px;
        }

        .pbmit-pagination ul.pagination li a,
        .pbmit-pagination ul.pagination li span {
            display: block;
            padding: 8px 12px;
            border: 1px solid #ddd;
            text-decoration: none;
            color: #000;
            border-radius: 5px;
        }

        .pbmit-pagination ul.pagination li.active span {
            background: #000;
            color: #fff;
        }

        .pbmit-pagination ul.pagination li a:hover {
            background: #000;
            color: #fff;
        }

        .pbmit-pagination ul.pagination li.disabled span {
            opacity: 0.5;
        }
    
        .hoew-content {
            padding-left: 20px;
        }

        .hoew-text {
            font-size: 18px;
            line-height: 1.6;
            color: #333;
            margin: 0;
        }

        .hoew-link {
            font-weight: 600;
            color: #000;
            text-decoration: underline;
            transition: color 0.3s ease;
        }

        .hoew-link:hover {
            color: #ecab23;
        }
    
        /* NEWSLETTER SECTION */
        .newsletter-section {
            overflow: hidden;
        }

        .newsletter-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 12px 0 0 12px;
        }

        .newsletter-content {
            padding: 60px;
        }

        .newsletter-title {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .newsletter-subtitle {
            font-size: 16px;
            color: #666;
            margin-bottom: 30px;
        }

        /* INPUTS */
        .newsletter-input {
            width: 100%;
            padding: 14px 16px;
            border-radius: 8px;
            border: 1px solid #ccc;
            margin-bottom: 20px;
            font-size: 14px;
        }

        .newsletter-input:focus {
            border-color: #5F2DED;
            outline: none;
        }

        /* BOUTON */
        .newsletter-btn {
            width: 100%;
            padding: 14px;
        }

        /* RESPONSIVE */
        @media (max-width: 768px) {
            .newsletter-content {
                padding: 40px 20px;
            }

            .newsletter-image img {
                border-radius: 12px 12px 0 0;
            }
        }

        /* ==================== NEWSLETTER SECTION ==================== */
        .newsletter-modern-section {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .newsletter-modern-card {
            background: #fff;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 10px 60px rgba(0, 0, 0, 0.1);
        }

        .newsletter-image-wrapper {
            position: relative;
            height: 100%;
            min-height: 500px;
            overflow: hidden;
        }

        .newsletter-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .newsletter-shape {
            position: absolute;
            top: 0;
            right: -50px;
            width: 200px;
            height: 100%;
            background: linear-gradient(90deg, transparent, #fff);
        }

        .newsletter-form-wrapper {
            padding: 60px 50px;
        }

        .newsletter-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #ecab23, 0%, #ecab23, 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
        }

        .newsletter-icon i {
            font-size: 32px;
            color: #fff;
        }

        .newsletter-modern-title {
            font-size: 36px;
            font-weight: 800;
            color: #1a1a1a;
            margin-bottom: 15px;
        }

        .newsletter-modern-subtitle {
            font-size: 16px;
            color: #666;
            margin-bottom: 35px;
            line-height: 1.6;
        }

        .newsletter-modern-input {
            border: 2px solid #e9ecef;
            border-radius: 12px;
            padding: 15px 20px;
            height: 58px;
            font-size: 15px;
            transition: all 0.3s ease;
        }

        .newsletter-modern-input:focus {
            border-color: #ecab23;
            box-shadow: 0 0 0 4px rgba(245, 159, 70, 0.1);
        }

        .form-floating>label {
            color: #999;
            padding: 1rem 1.25rem;
        }

        .btn-newsletter-modern {
            background: linear-gradient(135deg, #ecab23 0%, #ecab23 100%);
            color: #fff;
            border: none;
            padding: 18px 40px;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 700;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .btn-newsletter-modern:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(245, 159, 70, 0.3);
            color: #fff;
        }

        .btn-newsletter-modern i {
            transition: transform 0.3s ease;
        }

        .btn-newsletter-modern:hover i {
            transform: translateX(5px);
        }

        .newsletter-privacy {
            font-size: 13px;
            color: #999;
            text-align: center;
            margin: 0;
        }

        .newsletter-privacy i {
            color: #f59f46;
        }

        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 991px) {
            .faq-main-title {
                font-size: 32px;
            }

            .faq-answer {
                padding: 0 24px 24px 24px;
            }

            .newsletter-image-wrapper {
                min-height: 300px;
            }

            .newsletter-form-wrapper {
                padding: 40px 30px;
            }

            .newsletter-modern-title {
                font-size: 28px;
            }

            .newsletter-shape {
                display: none;
            }
        }

        @media (max-width: 767px) {
            .faq-question {
                padding: 20px;
            }

            .faq-question-text {
                gap: 15px;
            }

            .faq-number {
                width: 38px;
                height: 38px;
                font-size: 14px;
            }

            .faq-question h4 {
                font-size: 16px;
            }

            .faq-main-title {
                font-size: 28px;
            }
        }






    /* style financement  */


    :root {
                --gold: #ecab23;
                --gold-light: #E8D49A;

                --dark: #F8F6F2;
                --dark-2: #FFFFFF;
                --dark-3: #F1ECE4;

                --off-white: #111;
                --text-muted: #666;
                --border: rgba(201, 168, 76, 0.3);
            }

            .loan-section {
                background: var(--dark);
                min-height: 100vh;
                padding: 80px 0;
                position: relative;
                overflow: hidden;
                font-family: 'DM Sans', sans-serif;
            }

            .loan-section::before {
                content: '';
                position: absolute;
                top: -200px;
                right: -200px;
                width: 600px;
                height: 600px;
                background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
                pointer-events: none;
            }

            .loan-section::after {
                content: '';
                position: absolute;
                bottom: -100px;
                left: -100px;
                width: 400px;
                height: 400px;
                background: radial-gradient(circle, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
                pointer-events: none;
            }

            /* Header */
            .loan-header {
                text-align: center;
                margin-bottom: 60px;
            }

            .loan-header .overline {
                font-family: 'DM Sans', sans-serif;
                font-size: 11px;
                font-weight: 500;
                letter-spacing: 0.3em;
                text-transform: uppercase;
                color: var(--gold);
                display: block;
                margin-bottom: 16px;
            }

            .loan-header h1 {
                font-family: 'Cormorant Garamond', serif;
                font-size: clamp(36px, 5vw, 64px);
                font-weight: 300;
                color: var(--off-white);
                line-height: 1.1;
                margin: 0 0 20px 0;
                letter-spacing: -0.02em;
            }

            .loan-header h1 em {
                font-style: italic;
                color: var(--gold);
            }

            .loan-header p {
                color: var(--text-muted);
                font-size: 15px;
                line-height: 1.7;
                max-width: 480px;
                margin: 0 auto;
            }

            /* Progress Bar */
            .progress-wrapper {
                max-width: 720px;
                margin: 0 auto 50px;
                padding: 0 20px;
            }

            .progress-steps {
                display: flex;
                align-items: center;
                justify-content: space-between;
                position: relative;
            }

            .progress-line {
                position: absolute;
                top: 20px;
                left: 20px;
                right: 20px;
                height: 1px;
                background: var(--dark-3);
                z-index: 0;
            }

            .progress-line-fill {
                height: 100%;
                background: linear-gradient(90deg, var(--gold), var(--gold-light));
                transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
                width: 0%;
            }

            .step-dot {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 10px;
                z-index: 1;
                cursor: pointer;
            }

            .step-circle {
                width: 40px;
                height: 40px;
                border-radius: 50%;
                border: 1px solid var(--dark-3);
                background: var(--dark-2);
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 13px;
                font-weight: 500;
                color: var(--text-muted);
                transition: all 0.4s ease;
                position: relative;
            }

            .step-dot.active .step-circle {
                border-color: var(--gold);
                background: var(--gold);
                color: var(--dark);
                box-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
            }

            .step-dot.completed .step-circle {
                border-color: var(--gold);
                background: transparent;
                color: var(--gold);
            }

            .step-dot.completed .step-circle::after {
                content: '✓';
                position: absolute;
            }

            .step-dot.completed .step-circle span {
                display: none;
            }

            .step-label {
                font-size: 11px;
                letter-spacing: 0.05em;
                color: var(--text-muted);
                text-transform: uppercase;
                white-space: nowrap;
                transition: color 0.3s;
            }

            .step-dot.active .step-label {
                color: var(--gold);
            }

            /* Form Card */
            .form-card {
                max-width: 720px;
                margin: 0 auto;
                padding: 0 20px;
            }

            .form-panel {
                background: var(--dark-2);
                border: 1px solid var(--border);
                border-radius: 4px;
                padding: 50px;
                position: relative;
            }

            .form-panel::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                height: 2px;
                background: linear-gradient(90deg, transparent, var(--gold), transparent);
            }

            /* Step panels */
            .step-panel {
                display: none;
                animation: fadeSlide 0.4s ease forwards;
            }

            .step-panel.active {
                display: block;
            }

            @keyframes fadeSlide {
                from {
                    opacity: 0;
                    transform: translateY(12px);
                }

                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            .step-title {
                font-family: 'Cormorant Garamond', serif;
                font-size: 28px;
                font-weight: 400;
                color: var(--off-white);
                margin: 0 0 6px 0;
            }

            .step-subtitle {
                color: var(--text-muted);
                font-size: 13px;
                margin: 0 0 36px 0;
                line-height: 1.6;
            }

            /* Form Fields */
            .field-group {
                margin-bottom: 24px;
            }

            .field-group label {
                display: block;
                font-size: 11px;
                letter-spacing: 0.1em;
                text-transform: uppercase;
                color: var(--text-muted);
                margin-bottom: 8px;
                font-weight: 500;
            }

            .field-group label span.req {
                color: var(--gold);
            }

            .field-group input,
            .field-group select,
            .field-group textarea {
                width: 100%;
                background: var(--dark-3);
                border: 1px solid rgba(255, 255, 255, 0.07);
                border-radius: 2px;
                color: var(--off-white);
                font-family: 'DM Sans', sans-serif;
                font-size: 14px;
                padding: 14px 18px;
                outline: none;
                transition: border-color 0.3s, background 0.3s;
                box-sizing: border-box;
                -webkit-appearance: none;
            }

            .field-group select {
                cursor: pointer;
                background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
                background-repeat: no-repeat;
                background-position: right 16px center;
                padding-right: 44px;
            }

            .field-group textarea {
                resize: vertical;
                min-height: 110px;
            }

            .field-group input:focus,
            .field-group select:focus,
            .field-group textarea:focus {
                border-color: var(--gold);
                background: rgba(201, 168, 76, 0.03);
            }

            .field-group input::placeholder,
            .field-group textarea::placeholder {
                color: rgba(255, 255, 255, 0.2);
            }

            .field-group select option {
                background: var(--dark-2);
            }

            .fields-row {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }

            @media (max-width: 600px) {
                .fields-row {
                    grid-template-columns: 1fr;
                }

                .form-panel {
                    padding: 30px 24px;
                }

                .step-label {
                    display: none;
                }
            }

            /* Loan type cards */
            .loan-types {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 14px;
                margin-bottom: 24px;
            }

            @media (max-width: 500px) {
                .loan-types {
                    grid-template-columns: 1fr;
                }
            }

            .loan-type-card {
                border: 1px solid rgba(255, 255, 255, 0.07);
                border-radius: 3px;
                padding: 18px;
                cursor: pointer;
                transition: all 0.3s;
                position: relative;
            }

            .loan-type-card:hover {
                border-color: rgba(201, 168, 76, 0.3);
            }

            .loan-type-card.selected {
                border-color: var(--gold);
                background: rgba(201, 168, 76, 0.05);
            }

            .loan-type-card input[type="radio"] {
                position: absolute;
                opacity: 0;
                pointer-events: none;
            }

            .loan-type-card .card-icon {
                font-size: 22px;
                margin-bottom: 8px;
            }

            .loan-type-card .card-title {
                font-size: 13px;
                font-weight: 500;
                color: var(--off-white);
                margin-bottom: 3px;
            }

            .loan-type-card .card-desc {
                font-size: 11px;
                color: var(--text-muted);
                line-height: 1.5;
            }

            .loan-type-card .check-mark {
                position: absolute;
                top: 12px;
                right: 12px;
                width: 18px;
                height: 18px;
                border-radius: 50%;
                border: 1px solid rgba(255, 255, 255, 0.15);
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 9px;
                color: transparent;
                transition: all 0.3s;
            }

            .loan-type-card.selected .check-mark {
                background: var(--gold);
                border-color: var(--gold);
                color: var(--dark);
            }

            /* Range slider */
            .range-wrapper {
                margin-bottom: 24px;
            }

            .range-header {
                display: flex;
                justify-content: space-between;
                align-items: baseline;
                margin-bottom: 12px;
            }

            .range-header label {
                font-size: 11px;
                letter-spacing: 0.1em;
                text-transform: uppercase;
                color: var(--text-muted);
                font-weight: 500;
            }

            .range-value {
                font-family: 'Cormorant Garamond', serif;
                font-size: 22px;
                color: var(--gold);
            }

            input[type="range"] {
                -webkit-appearance: none;
                width: 100%;
                height: 2px;
                background: var(--dark-3);
                outline: none;
                cursor: pointer;
            }

            input[type="range"]::-webkit-slider-thumb {
                -webkit-appearance: none;
                width: 20px;
                height: 20px;
                border-radius: 50%;
                background: var(--gold);
                cursor: pointer;
                box-shadow: 0 0 10px rgba(201, 168, 76, 0.4);
                transition: box-shadow 0.2s;
            }

            input[type="range"]::-webkit-slider-thumb:hover {
                box-shadow: 0 0 18px rgba(201, 168, 76, 0.6);
            }

            .range-limits {
                display: flex;
                justify-content: space-between;
                margin-top: 8px;
                font-size: 11px;
                color: rgba(255, 255, 255, 0.2);
            }

            /* Navigation */
            .form-nav {
                display: flex;
                justify-content: space-between;
                align-items: center;
                margin-top: 42px;
                padding-top: 32px;
                border-top: 1px solid rgba(255, 255, 255, 0.05);
            }

            .btn-prev {
                background: transparent;
                border: 1px solid rgba(255, 255, 255, 0.1);
                color: var(--text-muted);
                padding: 12px 28px;
                border-radius: 2px;
                font-family: 'DM Sans', sans-serif;
                font-size: 12px;
                letter-spacing: 0.1em;
                text-transform: uppercase;
                cursor: pointer;
                transition: all 0.3s;
            }

            .btn-prev:hover {
                border-color: rgba(255, 255, 255, 0.25);
                color: var(--off-white);
            }

            .btn-next,
            .btn-submit {
                background: var(--gold);
                border: none;
                color: var(--dark);
                padding: 14px 38px;
                border-radius: 2px;
                font-family: 'DM Sans', sans-serif;
                font-size: 12px;
                letter-spacing: 0.12em;
                text-transform: uppercase;
                font-weight: 500;
                cursor: pointer;
                transition: all 0.3s;
                display: flex;
                align-items: center;
                gap: 10px;
            }

            .btn-next:hover,
            .btn-submit:hover {
                background: var(--gold-light);
                box-shadow: 0 4px 20px rgba(201, 168, 76, 0.25);
            }

            .btn-next svg,
            .btn-submit svg {
                width: 14px;
                height: 14px;
            }

            .step-count {
                font-size: 11px;
                color: rgba(255, 255, 255, 0.2);
                letter-spacing: 0.1em;
            }

            /* Loader */
            .btn-submit.loading {
                pointer-events: none;
                opacity: 0.7;
            }

            .btn-loader {
                display: none;
            }

            .btn-submit.loading .btn-loader {
                display: inline-flex;
            }

            .btn-submit.loading .btn-text {
                display: none;
            }

            /* Success */
            .success-panel {
                text-align: center;
                padding: 20px 0;
            }

            .success-icon {
                width: 70px;
                height: 70px;
                border: 1px solid var(--gold);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                margin: 0 auto 28px;
                font-size: 28px;
                color: var(--gold);
                animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
            }

            @keyframes popIn {
                from {
                    transform: scale(0.5);
                    opacity: 0;
                }

                to {
                    transform: scale(1);
                    opacity: 1;
                }
            }

            .success-panel h2 {
                font-family: 'Cormorant Garamond', serif;
                font-size: 36px;
                font-weight: 300;
                color: var(--off-white);
                margin: 0 0 12px;
            }

            .success-panel p {
                color: var(--text-muted);
                font-size: 14px;
                line-height: 1.7;
                max-width: 380px;
                margin: 0 auto;
            }

            /* Alert */
            .form-alert {
                padding: 14px 18px;
                border-radius: 2px;
                font-size: 13px;
                margin-bottom: 24px;
                display: none;
            }

            .form-alert.error {
                background: rgba(220, 53, 69, 0.1);
                border: 1px solid rgba(220, 53, 69, 0.2);
                color: #f88;
                display: block;
            }

            .form-alert.success {
                /* background: rgba(61, 243, 5, 0.849); */
                border: 1px solid var(--border);
                color: var(--gold-light);
                display: block;
            }

            /* RGPD */
            .rgpd-text {
                font-size: 11px;
                color: rgba(255, 255, 255, 0.25);
                line-height: 1.6;
                margin-top: 20px;
            }

            @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600;700&family=DM+Sans:wght@300;400;500&display=swap');

            


