/* ============================================ */
/* VARIABLES CSS MODERNES - AJOUTÉ DEPUIS INDEX.HTML */
/* ============================================ */
:root {
    --color1: #f4627f;
    --color2: #f9fafb;
    --color3: #d9d9d9;
    --color4: #707070;
    --green1: #a1c84e;
    --green2: #d0e1a4;
    --green3: #eef8d9;
    --font: "Poppins", sans-serif;
    --font2: "Funnel Display", "Poppins", sans-serif;
}

/* ============================================ */
/* FONTS - GARDÉ DE MAIN.CSS + AJOUT GOOGLE FONTS */
/* ============================================ */
@font-face {
  font-family: 'Fira Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://mongustave.fr/wp-content/uploads/mg-files/fonts/va9E4kDNxMZdWfMOD5Vvl4jL.woff2) format('woff2');
}

@font-face {
  font-family: 'Fira Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://mongustave.fr/wp-content/uploads/mg-files/fonts/va9B4kDNxMZdWfMOD5VnLK3eRhf6.woff2) format('woff2');
}

/* Import Google Fonts pour Poppins et Funnel Display */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Funnel+Display:wght@400;500;600;700&display=swap');

/* ============================================ */
/* BASE STYLES - MODIFIÉ AVEC VARIABLES */
/* ============================================ */
body {
    font-family: var(--font);
    margin: 0;
    padding: 0;
    /* background-color: var(--color2); */
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

h1, h2 {
    font-family: var(--font2);
    line-height: 1.2;
}

.colorpink {
    color: var(--color1);
}

.colleft img {
    width: 100%;
    max-width: 439px;
    height: auto;
}

.mrgimgslide {
    margin-top: 43px;
}

.phonebtn {
    background-color: var(--green1);
    border: 1px solid #000;
    border-radius: 100px;
    padding: 8px;
    margin-top: -12px;
}

.colleft h1 {
    font-family: var(--font2);
    font-weight: 700;
    line-height: 1.2;
}

.phonebtn a {
    color: black !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

/* ============================================ */
/* HEADER MODIFIÉ - STYLE INDEX.HTML */
/* ============================================ */
header {
    max-width: 1200px;
    margin: 0px auto;
    padding: 20px 20px;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

p.home-desc {
text-align: left;
}

a.mongustavetoplogo {
    position: relative;
    top: 27px;
    left: -115px;
    text-decoration: none;
    font-size: 14px;
    color: #2c2c2d;
    font-weight: bold;
}

.logo img {
    height: 40px;
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    margin-left: auto;
}

.help-button {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    padding: 10px 20px;
    padding-right: 15px;
}

.help-button:hover {
    color: var(--color1);
}

.help-button i {
    font-size: 20px;
}

/* Menu burger pour mobile - GARDÉ DE MAIN.CSS */
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    float: right;
    margin-top: 10px;
    margin-right: 20px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* ============================================ */
/* RESPONSIVE DESKTOP */
/* ============================================ */
@media only screen and (min-width: 768px) {
    .colleft h1 {
        text-align: left;
    }

    .container {
        max-width: 1200px;
        margin: 0px auto;
        padding: 0 20px;
    }

    .burger-menu {
        display: none !important;
    }

    .mobile-menu {
        display: none !important;
    }

    .colleft {
        width: 60%;
        float: left;
        text-align: center;
        padding-right: 30px;
        box-sizing: border-box;
    }

    .colright {
        width: 40%;
        float: right;
        box-sizing: border-box;
    }

    .step1formulaire {
        display: flow-root;
    }

    .colleft h1 {
        font-size: 36px;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 30px;
        color: #333;
    }

    .fullwidthgreen {
        display: flex !important;
    }
}

/* ============================================ */
/* RESPONSIVE MOBILE - OPTIMISÉ INDEX.HTML */
/* ============================================ */
@media only screen and (max-width: 767px) {
    .step3formulaire {
        padding: 0px 0 !important;
    }

    .colleft h1 {
        margin-top: 20px !important;
        font-size: 22px !important;
    }

    .colleft {
        margin-bottom: 15px !important;
        margin-top: -14px;
    }

    .colright {
        margin-top: -12px !important;
    }

    .dspnonejauge {
        display: none;
    }

    .container {
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }

    header {
        padding: 15px 20px 8px 20px;
        background-color: white;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        position: relative;
    }

    p.home-desc {
        margin-top: -21px;
        font-size: 14px;
        margin-bottom: 31px;
        text-align: center;
    }

    .logo img {
        height: 35px;
    }

    .help-button {
        font-size: 14px;
    }

    .help-button span {
        display: none;
    }

    .help-button i {
        font-size: 20px;
    }

    .burger-menu {
        display: flex;
    }

    .mobile-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        z-index: 1000;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    .mobile-menu.active {
        max-height: 500px;
        opacity: 1;
        transform: translateY(0);
    }

    .mobile-menu ul {
        list-style: none;
        margin: 0;
        padding: 20px;
    }

    .mobile-menu ul li {
        margin: 0;
        padding: 15px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .mobile-menu ul li:last-child {
        border-bottom: none;
    }

    .mobile-menu ul li a {
        text-decoration: none;
        color: #333;
        font-size: 16px;
        font-weight: 500;
        display: block;
        transition: color 0.3s ease;
    }

    .mobile-menu ul li a:hover {
        color: var(--green1);
    }

    .mobile-menu .phonebtn {
        background-color: var(--green1);
        border: none;
        border-radius: 100px;
        padding: 12px;
        margin: 10px 0;
        display: inline-block;
    }

    .mobile-menu .phonebtn a {
        color: white !important;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 25px;
        height: 25px;
    }

    .colleft {
        width: 100% !important;
        float: none !important;
        text-align: center;
        margin-bottom: 30px;
        padding-right: 0 !important;
    }

    .colright {
        width: 100% !important;
        float: none !important;
    }

    .colleft h1 {
        font-size: 22px !important;
        line-height: 1.3 !important;
        margin-bottom: 20px;
        font-family: var(--font2) !important;
        font-weight: 700 !important;
    }

    .colleft img {
        width: 70% !important;
        max-width: 220px !important;
    }
}

/* ============================================ */
/* SECTION PRINCIPALE */
/* ============================================ */
.fullwidthgreen {
    background-color: #cbd4a5;
    width: 100%;
    padding: 10px 0;
    background-image: url(../images/draw_v3.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
    background-size: 100%;
    background-position: top;

}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.colleft h1 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #333;
    margin-top: 0px;
}

/* ============================================ */
/* FORMULAIRE - STYLE INDEX.HTML */
/* ============================================ */
.form-container {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    width: 90%;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin: 0px auto !important;
}

.form-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0;
}

.form-header .form-title {
    margin-bottom: 15px;
}

.form-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 23px 0;
    font-family: var(--font2);
    line-height: 1.3;
}

h2.form-title {
    font-family: var(--font2);
}

.required {
    color: #333;
}

.time-badge {
    background-color: var(--color1);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.form-group {
    margin-bottom: 15px;
}

/* ============================================ */
/* BOUTONS RADIO - STYLE INDEX.HTML */
/* ============================================ */
.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.button-group label {
    flex: 1 1 calc(33.333% - 8px);
    min-width: 0;
    display: block;
}

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

.option-button {
    background-color: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 15px 10px;
    font-size: 15px;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 60px;
    box-sizing: border-box;
    font-family: var(--font);
    line-height: 1.3;
}

.option-button:hover {
    border-color: var(--color1);
    background-color: #fff5f8;
}

.button-group input[type="radio"]:checked + .option-button {
    border-color: var(--color1);
    background-color: #fff5f8;
    color: var(--color1);
    font-weight: 600;
}

/* ============================================ */
/* PERSONNALISÉ - STYLE INDEX.HTML */
/* ============================================ */
.personnalise-wrapper {
    width: 100%;
}

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

.personnalise-button {
    width: 100%;
    background-color: transparent;
    border: none;
    font-size: 12px;
    font-weight: 400;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: block;
    text-decoration: underline;
    padding: 10px 0;
    font-family: var(--font);
    line-height: 1.4;
}

.personnalise-button:hover {
    color: var(--color1);
}

.personnalise-wrapper input[type="radio"]:checked + .personnalise-button {
    color: var(--color1);
    font-weight: 500;
}

.personnalise-subtitle {
    font-size: 14px;
    color: #888;
    font-weight: 400;
}

/* ============================================ */
/* DATE INPUTS - STYLE INDEX.HTML */
/* ============================================ */
.date-group {
    margin-bottom: 25px;
}

.date-inputs {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 15px 20px;
}

.date-input {
    border: none;
    outline: none;
    font-size: 16px;
    color: #333;
    background: transparent;
    text-align: center;
    min-width: 40px;
    font-family: var(--font);
}

.date-input::placeholder {
    color: #999;
    font-weight: 400;
}

.date-separator {
    color: #999;
    font-size: 16px;
    font-weight: 500;
}

/* ============================================ */
/* BOUTONS SUBMIT - STYLE INDEX.HTML */
/* ============================================ */
.submit-button {
    background: linear-gradient(135deg, var(--color1), #ff8fab);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 18px;
    font-weight: 600;
    padding: 18px 40px;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
    font-family: var(--font2);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
    background: linear-gradient(135deg, #ff5a8a, #ff7a9f);
}

/* Google Reviews sous le bouton - AJOUTÉ DE INDEX.HTML */
.google-reviews-bottom {
    text-align: center;
    margin-top: 15px;
}

.google-reviews-bottom img {
    height: 22px;
}

.google-reviews-bottom.devis-highlighted {
    text-align: center;
    margin-top: -12px;
    margin-bottom: 10px;
}

.google-reviews-bottom.devis-highlighted img {
    height: 15px;
}

.google-reviews-bottom.devis-horizontal {
    text-align: center;
    margin-top: 1px;
}

.google-reviews-bottom.devis-horizontal img {
    height: 15px;
}


.step3formulaire .google-reviews-bottom {
    text-align: right;
    margin-top: 15px;
}

.step3formulaire .google-reviews-bottom img {
    height: 18px;
}


/* ============================================ */
/* RESPONSIVE MOBILE FORMULAIRE */
/* ============================================ */
@media (max-width: 767px) {
    .form-container {
        margin: 0;
        padding: 20px 15px;
    }

    .form-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .button-group label {
        flex: 1 1 calc(50% - 6px);
    }

    .button-group label:nth-child(3) {
        flex: 1 1 100%;
    }

    .option-button {
        padding: 12px 8px;
        font-size: 14px;
        min-height: 55px;
    }

    .button-group {
        gap: 8px;
    }

    .date-inputs {
        padding: 12px 15px;
    }

    .form-title {
        font-size: 15px;
    }

    .time-badge {
        font-size: 12px;
        padding: 6px 12px;
    }

    .fullwidthgreen {
         /* padding: 30px 0 !important;
        background-repeat: no-repeat;
        background-image: url(images/draw.png) !important;
        background-position: 20% 90%;
        background-size: 306%;  */

        background-color: #ffffff;
        width: 100%;
        padding: 10px 0;
        background-image: url('../images/draw_v3.png');
        background-repeat: no-repeat;
        background-size: 100%;
        background-position: bottom;
    }
}

/* ============================================ */
/* STEP 2 - OFFRES */
/* ============================================ */
.step2formulaire {
    width: 100%;
}

.step2formulaire .info {
    text-align: center;
    font-size: 13px;
}

.step2formulaire .info hr {
    border: none;
    border-top: 1px solid #8b8b6b;
    margin: 20px 0;
    background: transparent;
}


.step2-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.step2-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
    font-family: var(--font2);
    line-height: 1.2;
}

.beneficiaire-dropdown {
    position: relative;
    max-width: 400px;
    margin: 0 auto 40px auto;
}

.dropdown-select {
    width: 100%;
    background-color: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 15px 45px 15px 20px;
    font-size: 16px;
    color: #333;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font);
}

.dropdown-select:focus {
    outline: none;
    border-color: var(--color1);
}

.dropdown-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
}






.step2-content {
    padding: 0 0px;
}

@media (max-width: 767px) {

    .step2-content {
        padding: 0 15px;
    }

    .step2-title {
        font-size: 22px;
        margin-bottom: 15px;
        margin-top: -5px;
    }
}

/* ============================================ */
/* STEP 3 & 3B - COORDONNÉES */
/* ============================================ */
.step3-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    min-height: 660px;
}

.contact-form-section {
    flex: 1;
    max-width: 600px;
    width: 600px;
}

.contract-preview-section {
    width: 300px;
    flex-shrink: 0;
    text-align: center;
}

.form-subtitle {
    color: #666;
    font-size: 15px;
    text-align: left;
    margin-bottom: 30px;
    line-height: 1.5;
    font-family: var(--font);
}

.civility-group {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
    justify-content: center;
}

.radio-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    color: #333;
    font-family: var(--font);
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
    transition: all 0.3s ease;
}

.radio-option input[type="radio"]:checked + .radio-custom {
    border-color: var(--color1);
    background-color: var(--color1);
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.form-fields {
    margin-bottom: 30px;
}

.form-input {
    width: 100%;
    background-color: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 15px 45px 15px 20px;
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-family: var(--font);
}

/* GARDÉ DE MAIN.CSS */
.select-input {
    width: 100%;
    background-color: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 15px 45px 15px 20px;
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.select-wrapper {
    position: relative;
}

.input-group {
    position: relative;
    margin-bottom: 15px;
    width: 100%;
    box-sizing: border-box;
}

.form-input::placeholder {
    color: #999;
}

.form-input:focus {
    outline: none;
    border-color: var(--color1);
}

.input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #ccc;
    font-size: 14px;
}

.date-effect-section {
    margin-bottom: 30px;
}

.date-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.date-buttons label {
    flex: 1 1 calc(33.333% - 10px);
    min-width: 0;
    display: block;
}

.date-buttons input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.date-option-btn {
    background-color: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 12px 10px;
    font-size: 15px;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    font-family: var(--font);
}

.date-option-btn:hover {
    border-color: var(--color1);
    background-color: #fff5f8;
}

.date-buttons input[type="radio"]:checked + .date-option-btn {
    border-color: var(--color1);
    background-color: #fff5f8;
    color: var(--color1);
    font-weight: 600;
}

.custom-date-section {
    margin-top: 15px;
}

.custom-date-label {
    color: #333;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    font-family: var(--font);
}

.checkbox-section {
    margin-bottom: 30px;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    font-family: var(--font);
}

.checkbox-container input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 3px;
    margin-right: 10px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
    margin-top: 2px;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark {
    background-color: var(--color1);
    border-color: var(--color1);
}

.checkbox-container input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.contract-card {
    background-color: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    position: relative;
}

.contract-header {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    font-family: var(--font2);
    margin-top: 12px;
}

.contract-divider {
    border: none;
    height: 2px;
    background-color: #333;
    margin-bottom: 15px;
}

.contract-plan {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-top: 4px;
    margin-bottom: 10px;
    font-family: var(--font2);
}

.contract-logo {
  width: 110px;
  margin: auto;
}

.contract-logo img {
    width: 95%;
}

.contract-details {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    font-family: var(--font);
}

.contract-price {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    font-family: var(--font2);
}

.price-unit {
    font-size: 16px;
    font-weight: 400;
}

.contract-illustration img {
    width: 100%;
    max-width: 250px;
    height: auto;
}

@media (max-width: 767px) {
    .contact-form-section {
        flex: 1;
        width: 100%;
    }

    .step3formulaire, .step3bformulaire {
        padding: 30px 0;
        background-image: none;
    }

    .step3-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .contract-preview-section {
        width: 100%;
        order: 1;
    }

    .civility-group {
        gap: 20px;
    }

    .date-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .date-buttons label {
        flex: 1 1 100%;
    }

    .date-option-btn {
        min-width: auto;
    }

    .contract-card {
        padding: 20px;
    }

    .contract-price {
        font-size: 24px;
    }
}

.custom-date-section {
    display: block;
}

.custom-date-section.hidden {
    display: none;
}

/* ============================================ */
/* BÉNÉFICIAIRE POPUP */
/* ============================================ */
.beneficiaire-trigger {
    max-width: 400px;
    margin: 0 auto 15px auto;
}

.beneficiaire-btn {
    width: 100%;
    background-color: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font);
    gap: 10px;
}

.beneficiaire-btn:hover {
    border-color: var(--color1);
    background-color: #fff5f8;
}

.beneficiaire-arrow {
    color: #999;
    transition: transform 0.3s ease;
}

.beneficiaire-summary {
    margin-top: 10px;
    padding: 10px 15px;
    background-color: #fff5f8;
    border-radius: 8px;
    font-size: 14px;
    color: var(--color1);
    font-weight: 500;
    font-family: var(--font);
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.popup-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.popup-container {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    max-width: 450px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.popup-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
    font-family: var(--font2);
}

.popup-close {
    background: none;
    border: none;
    font-size: 16px;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.popup-close:hover {
    color: var(--color1);
}

.popup-content {
    margin-bottom: 25px;
}

.beneficiaire-option {
    margin-bottom: 25px;
}

.checkbox-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    font-family: var(--font);
}

.checkbox-option input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 4px;
    margin-right: 12px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-option input[type="checkbox"]:checked + .checkbox-custom {
    background-color: var(--color1);
    border-color: var(--color1);
}

.checkbox-option input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    color: white;
    font-size: 14px;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.conjoint-fields,
.enfant-fields {
    margin-left: 32px;
}

.field-label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
    font-family: var(--font);
}

.year-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.year-input {
    background-color: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 50px 12px 15px;
    font-size: 16px;
    color: #333;
    width: 120px;
    transition: all 0.3s ease;
    font-family: var(--font);
}

.year-input:focus {
    outline: none;
    border-color: var(--color1);
}

.calendar-icon {
    background-color: var(--color1);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    cursor: pointer;
}

.number-select-group {
    position: relative;
    width: 80px;
}

.number-select {
    width: 100%;
    background-color: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 35px 12px 15px;
    font-size: 16px;
    color: #333;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font);
}

.number-select:focus {
    outline: none;
    border-color: var(--color1);
}

.select-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
    font-size: 12px;
}

.validate-btn {
    background: linear-gradient(135deg, var(--color1), #ff8fab);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    padding: 15px 30px;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
    font-family: var(--font2);
}

.validate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 767px) {
    .popup-container {
        margin: 10px;
        padding: 25px 20px;
        max-width: calc(100% - 20px);
    }

    .popup-header h3 {
        font-size: 16px;
    }

    .year-input {
        width: 100px;
        padding: 10px 15px;
    }

    .calendar-icon {
        width: 35px;
        height: 35px;
    }
}

/* ============================================ */
/* BOUTONS NAVIGATION */
/* ============================================ */
.prev-button {
    background: #fff;
    border: 2px solid var(--color1);
    border-radius: 12px;
    color: var(--color1);
    font-size: 16px;
    font-weight: 600;
    padding: 15px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font2);
}

.prev-button.link-btn {
    background: none;
    border: none;
    cursor: pointer;
}

.prev-button:not(.link-btn):hover {
    background-color: var(--color1);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.prev-button i {
    font-size: 14px;
}

.navigation-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    gap: 15px;
}

.navigation-buttons .submit-button {
    margin: 0;
    flex: 1;
}

button:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

@media (max-width: 767px) {
    .navigation-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .navigation-buttons .prev-button,
    .navigation-buttons .submit-button {
        width: 93%;
        place-content: center;
    }

    .prev-button {
        margin-bottom: 0;
        order: 2;
    }

    .submit-button {
        order: 1;
    }

    .dspondesktop {
        display: none;
    }

    .imgmobile {
        width: 50%;
        margin-top: 25px;
    }

    .time-badge {
        font-size: 12px;
        padding: 6px 12px;
        position: absolute;
        right: 10%;
        display: none;
    }
}

@media only screen and (min-width: 768px) {
    .dsponmobile {
        display: none;
    }
}

/* ============================================ */
/* POPUP PERSONNALISÉ */
/* ============================================ */
.popup-personnalise {
    max-width: 800px;
    width: 95%;
}

.custom-category {
    margin-bottom: 25px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.category-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.category-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
    font-family: var(--font2);
}

.info-icon {
    width: 20px;
    height: 20px;
    background-color: #4A90E2;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    cursor: help;
}

.level-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.custom-radio {
    cursor: pointer;
}

.custom-radio input[type="radio"] {
    display: none;
}

.radiocontent2 {
    background-color: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 10px;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font);
}

.radiocontent2:hover {
    border-color: var(--color1);
    background-color: #fff5f8;
}

.custom-radio input[type="radio"]:checked + .radiocontent2 {
    border-color: var(--color1);
    background-color: var(--color1);
    color: white;
    font-weight: 600;
}

@media (max-width: 767px) {
    .popup-personnalise {
        max-width: calc(100% - 20px);
    }

    .level-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .radiocontent2 {
        padding: 10px 8px;
        font-size: 13px;
    }

    .category-title {
        font-size: 14px;
    }

    .step2formulaire .info {
        display: none;
    }
}

/* MODIFIÉ - Taille jauge de INDEX.HTML */
img.jauge {
    margin-top: 3px;
    width: 40px;
}

/* ============================================ */
/* POPUP D'ERREUR */
/* ============================================ */
.error-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
}

.error-popup-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.error-popup {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    max-width: 440px;
    width: 75%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease;
    text-align: center;
}

.error-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color1), #ff8fab);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 30px;
    color: white;
}

.error-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    font-family: var(--font2);
}

.error-message {
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
    font-family: var(--font);
}

.error-ok-btn {
    background: linear-gradient(135deg, var(--color1), #ff8fab);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
    font-family: var(--font2);
}

.error-ok-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
}

/* ============================================ */
/* BLOC BÉNÉFICES - STYLE INDEX.HTML */
/* ============================================ */
.benefits-list {
    margin: 25px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.benefit-card {
display: flex;
align-items: center;
gap: 12px;
transition: all 0.3s ease;
background-color: #e0e9cc;
padding: 10px;
border-radius: 10px;
}


.benefit-card:hover {
    /* transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(244, 98, 127, 0.15);
    border-color: rgba(244, 98, 127, 0.3); */
}

.benefit-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--color1), #ff8fab);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(244, 98, 127, 0.3);
}

.benefit-text {
    font-size: 14px;
    color: #333;
    font-weight: 600;
    line-height: 1.3;
    font-family: var(--font);
}

@media only screen and (min-width: 768px) {
    .benefits-desktop {
        display: block;
        margin-top: 25px;
        margin-bottom: 30px;
    }

    .benefits-mobile {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .benefits-desktop {
        display: none;
    }

    .benefits-mobile {
        display: block;
        margin-top: 25px;
        margin-bottom: 20px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .benefit-card {
        padding: 0px;
    }

    .benefit-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .benefit-text {
        font-size: 13px;
    }
}

img.iconebox {
    width: 33px;
}

@media (max-width: 767px) {
    .form-group .button-group label {
        flex: 1 1 calc(33.333% - 6px) !important;
    }

    .form-group .button-group .option-button {
        padding: 12px 6px !important;
        font-size: 13px !important;
    }
}

@media (max-width: 380px) {
    .form-group .button-group label {
        flex: 1 1 calc(50% - 8px) !important;
    }

    .form-group .button-group label:nth-child(3) {
        flex: 1 1 100% !important;
    }

    .form-group .button-group .option-button {
        padding: 12px 8px !important;
        font-size: 14px !important;
    }
}

/* ============================================ */
/* FOOTER - MENTIONS LÉGALES */
/* ============================================ */

.lapresse {
    text-align: center;
    padding-top: 30px;
}

.logopresse {
    display: inline-flex;
    gap: 20px;
    margin-top: 13px;
}

.logo-mg {
    width: 100%;
    margin-top: 20px;
    text-align: center;
}

.logo-mg hr {
    width: 70%;
}

.logo-mg img {
    width: 257px;
    padding-top: 20px;
}

.mentions-legales-section {
    background-color: #ffffff;
    padding: 10px 20px 30px 20px;
    margin-top: 0;
}

.mentions-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mentions-text {
    background-color: #ffffff;
    padding: 0;
}

.mentions-text p {
    font-size: 12px;
    line-height: 1.8;
    color: #7a8ba3;
    margin-bottom: 18px;
    text-align: justify;
    font-weight: 400;
    font-family: var(--font);
}

.tarif-note {
    font-style: italic;
    color: #7a8ba3;
    font-size: 12px !important;
    margin-top: 25px;
    padding-top: 0;
    border-top: none;
    text-align: justify;
}

.mentions-footer {
    margin-top: 40px;
    padding-top: 0;
    border-top: none;
    text-align: center;
}

.mentions-footer p {
    font-size: 12px;
    color: #7a8ba3;
    margin-bottom: 12px;
    line-height: 1.8;
    font-family: var(--font);
}

.mentions-link {
    color: #5b9bd5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mentions-link:hover {
    color: #4a7fb8;
    text-decoration: underline;
}

.mentions-links {
    margin: 15px 0 !important;
}

.orias-info {
    font-weight: 400;
    color: #7a8ba3 !important;
    margin: 12px 0 !important;
}

.copyright {
    font-size: 12px !important;
    color: #7a8ba3 !important;
    margin-top: 8px !important;
    font-weight: 400;
}

@media (max-width: 767px) {
    .mentions-legales-section {
        padding: 0px 15px 30px 20px;
    }

    .mentions-container {
        padding: 0 10px;
    }

    .mentions-text p {
        font-size: 11px;
        text-align: justify;
    }

    .mentions-links {
        font-size: 11px !important;
        line-height: 2;
    }
}

.mentions-container p {
    text-align: center;
}

/* ============================================ */
/* REVIEWS SOUS BOUTON - AJOUTÉ DE INDEX.HTML */
/* ============================================ */
.reviewsousbtn {
    text-align: center;
    margin-bottom: 20px;
    margin-top: -11px;
}

.reviewsousbtn img {
    width: 80%;
    margin: 0px auto;
}

/* ============================================ */
/* LIEN SUBTIL - AJOUTÉ DE INDEX.HTML */
/* ============================================ */
.subtle-link {
    color: #a0a0a0;
    font-size: 13px;
    font-weight: 400;
    text-decoration: none;
    border: none;
    padding: 0px 0;
    transition: all 0.3s ease;
    cursor: pointer;
    background: linear-gradient(to right, transparent 0%, rgba(244, 98, 127, 0.03) 50%, transparent 100%);
    border-radius: 8px;
    margin-top: -6px;
}

.subtle-link:hover {
    opacity: 0.7;
    color: #c0c0c0;
    text-decoration: none;
    background: linear-gradient(to right, transparent 0%, rgba(244, 98, 127, 0.05) 50%, transparent 100%);
}

/* ============================================ */
/* CARTE MOTIVANTE - ANIMATIONS INDEX.HTML */
/* ============================================ */
.motivate-card {
    position: relative;
    border: 3px solid #859b53;
    animation: pulseGlow 2s ease-in-out infinite;
    box-shadow: 0 8px 30px rgba(244, 98, 127, 0.25) !important;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(244, 98, 127, 0.25);
    }
    50% {
        box-shadow: 0 8px 40px rgba(244, 98, 127, 0.45);
    }
}

.progress-badge {
       position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #859b53;
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font2);
    box-shadow: 0 4px 15px rgba(161, 200, 78, 0.4);
    animation: bounceIn 0.6s ease;
    width: max-content;
}

@keyframes bounceIn {
    0% { transform: translateX(-50%) scale(0); }
    50% { transform: translateX(-50%) scale(1.1); }
    100% { transform: translateX(-50%) scale(1); }
}

.highlight-price {
    animation: priceShine 3s ease-in-out infinite;
}

@keyframes priceShine {
    0%, 100% { color: #333; }
    50% { color: var(--color1); }
}

.motivate-text {
    text-align: center;
    color: var(--color1);
    font-size: 14px;
    font-weight: 600;
    margin-top: 15px;
    animation: float 2s ease-in-out infinite;
}

.motivate-text a {
    text-decoration: none;
    color: #000;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform:translateY(-5px); }
}




/* ============================================ */
/* STEP 4 - PAGE DE SUCCÈS - GARDÉ DE MAIN.CSS */
/* ============================================ */
.success-container {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 20px;
}

.success-icon {
    font-size: 80px;
    color: #4caf50;
    margin-bottom: 30px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-title {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
    font-family: var(--font2);
}

.success-message {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
    font-family: var(--font);
}

.success-details {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    text-align: left;
}

.success-reference {
    background: linear-gradient(135deg, var(--color1), #ff8fab);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
    font-family: var(--font2);
}

.success-info-grid {
    display: grid;
    gap: 20px;
}

.success-info-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    border-left: 4px solid var(--color1);
}

.info-label {
    font-size: 13px;
    color: #999;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-family: var(--font);
}

.info-value {
    font-size: 16px;
    color: #333;
    font-weight: 500;
    font-family: var(--font);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color1), #ff8fab);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 18px;
    font-weight: 600;
    padding: 18px 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
    font-family: var(--font2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .success-icon {
        font-size: 60px;
    }

    .success-title {
        font-size: 24px;
    }

    .success-message {
        font-size: 16px;
    }

    .success-details {
        padding: 20px;
    }
}

/* ============================================ */
/* AUTOCOMPLÉTION CODE POSTAL - GARDÉ DE MAIN.CSS */
/* ============================================ */
.hidden {
    display: none !important;
}

.free-text__suggest {
    border: 1px solid #d9dee3;
    background: #fff;
    width: 100%;
    border-radius: 8px;
    margin-top: 10px;
    position: relative;
    overflow-x: hidden;
}

.free-text__suggest ul {
    padding: 0;
    -webkit-overflow-scrolling: touch;
    max-height: 300px;
}

.free-text__suggest ul.has-gradient-bottom:after {
    border-radius: 0 0 8px 8px;
    display: block;
    pointer-events: none;
    content: " ";
    width: calc(100% - 2px);
    height: 100px;
    position: absolute;
    bottom: 1px;
    left: 1px;
    background: linear-gradient(180deg, hsla(0, 0%, 100%, 0) 0, #fff);
}

.free-text__suggest li {
    margin: 0;
    padding: 0;
}

.free-text__suggest .letter-mark,
.free-text__suggest button,
.free-text__suggest label {
    display: flex;
    align-items: center;
    background: 0;
    border: 0;
    color: #333;
    cursor: pointer;
    width: 100%;
    outline: 0;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    padding: 15px 45px 15px 20px;
    z-index: 90;
    overflow: none;
    font-family: var(--font);
}

.free-text__suggest .letter-mark button,
.free-text__suggest button button,
.free-text__suggest label button {
    white-space: pre;
}

.free-text__suggest .letter-mark strong,
.free-text__suggest button strong,
.free-text__suggest label strong {
    margin-right: 10px;
    font-weight: 600;
}

.free-text__suggest .letter-mark:hover,
.free-text__suggest button:hover,
.free-text__suggest label:hover {
    background: #edfcff;
}

.free-text__suggest .letter-mark picture.suggest-with-icons__picture,
.free-text__suggest button picture.suggest-with-icons__picture,
.free-text__suggest label picture.suggest-with-icons__picture {
    width: 30px;
    height: 30px;
    margin-right: 15px;
}

.free-text__suggest .letter-mark {
    font-family: var(--font);
    line-height: 30px;
    cursor: inherit;
    pointer-events: none;
}

.free-text__suggest.is-visible {
    display: block;
}

.free-text:focus {
    box-shadow: inset 0 2px 5px 0 #d9dee3;
}

.free-text + input {
    margin-left: 5px;
}

.free-text__suggest {
    position: inherit;
}

.suggest-list {
    scrollbar-width: thin;
    scrollbar-color: #374c9b;
}

/* ============================================ */
/* VALIDATION ERRORS - GARDÉ DE MAIN.CSS */
/* ============================================ */
.field-error {
    display: block;
    z-index: 3;
    position: relative;
    bottom: 0;
    right: auto;
    margin: -20px auto 7.66667px;
    padding: 1.5px 11.5px 1.83333px;
    border-radius: 4px;
    text-align: center;
    font-size: 0.8125rem;
    font-weight: 700;
    line-height: 18.4px;
    white-space: normal;
    max-width: 250px;
    min-width: fit-content;
    width: 100%;
    color: #fff;
    background-color: #c61544;
    transform: translateY(100%);
    letter-spacing: normal;
    font-family: var(--font);
}

.invalid {
    border-color: #c61544 !important;
    color: #c61544;
    background-position: right center;
}

.invalid-select {
    border-color: #c61544 !important;
    background-position: right center;
}

@media (max-width: 462px) {
    .field-error {
        font-size: 0.7600rem !important;
    }
}

@media (max-width: 352px) {
    .field-error {
        font-size: 0.7400rem !important;
    }
}

/* ============================================ */
/* GESTION ENFANTS - GARDÉ DE MAIN.CSS */
/* ============================================ */
.enfant-dates-container .enfant-group {
    margin: 20px auto;
}

.enfant-dates-container .enfant-group.inactive {
    display: none;
}

.enfant-dates-container .enfant-label.active {
    display: block;
}

/* ============================================ */
/* NO TARIFS MESSAGE - GARDÉ DE MAIN.CSS */
/* ============================================ */
.no-tarifs-message-global {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    padding: 40px 20px;
    text-align: center;
}

.no-tarifs-content {
    max-width: 500px;
}

.no-tarifs-content svg {
    color: var(--color1);
    margin-bottom: 24px;
}

.no-tarifs-content h3 {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    font-family: var(--font2);
}

.no-tarifs-content p {
    font-size: 16px;
    color: #666;
    margin: 0 0 8px 0;
    line-height: 1.5;
    font-family: var(--font);
}

.no-tarifs-content .secondary-text {
    font-size: 14px;
    color: #999;
    font-family: var(--font);
}

.tarifs-info {
    font-size: 14px;
    text-align: center;
    background-color: #9daf6e;
    color: white;
    padding: 15px;
    border-radius: 15px;
    margin-top: 0;
    margin-bottom: 0;
}

/****** offers CSS *****/

/* ============================================ */
/* MAIN CONTAINER */
/* ============================================ */
.offers-container {
    display: flex;
    flex-direction: column;
    gap: 19px;
}

.highlighted-offers-section,
.normal-offers-container,
.tarifs-info {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

/* ============================================ */
/* HIGHLIGHTED OFFERS SECTION */
/* ============================================ */
.highlighted-offers-section {
    background: #b9cb8a;
    border-radius: 13px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-top: 42px;
    position: relative; /* ADD THIS */
}

.highlighted-section-title {
    background-color: #b9cb8a;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    font-family: var(--font2);
    padding: 10px 30px;
    border-radius: 10px 10px 10px 0px;
    text-align: center;
    position: absolute;
    top: -42px;
    right: 30px;
    margin: 0;
}

.highlighted-offers-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

.skeleton-section-title {
    width: auto;
    min-width: 280px;
    height: 38px;
    padding: 10px 30px; /* Match actual padding */
    border-radius: 10px 10px 10px 0px;
    position: absolute;
    top: -40px;
    right: 30px;
    margin: 0;
    box-sizing: border-box;
    display: none;
}

/* ============================================ */
/* NORMAL OFFERS CONTAINER */
/* ============================================ */
.normal-offers-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    padding: 0 30px; /* Match highlighted section padding */
}

.normal-offers-container .offer-card {
    width: 100%;
    max-width: 1200px;
}

/* ============================================ */
/* HIGHLIGHTED OFFER CARDS (Vertical Layout) */
/* ============================================ */
.offer-card {
    background-color: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    height: auto;
}

.offer-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    align-items: center;
}

.highlighted-offers-container .offer-header {
    min-height: 123px;
}

.offer-logo {
    width: 30%;
}

.offer-logo img {
    width: 100%;
}

.offer-details {
    width: 70%;
    text-align: right;
}

.offer-title {
    font-size: 18px;
    color: #333;
    font-weight: normal;
    font-family: var(--font2);
}

.offer-price {
    font-size: 28px;
    font-weight: 700;
    font-family: var(--font2);
}

.price-period {
    font-size: 16px;
    font-weight: 400;
}

.offer-description {
    color: #333;
    font-size: 15px;
    margin-bottom: 20px;
    font-family: var(--font);
    line-height: 1.4;
}

.offer-button {
    background: linear-gradient(135deg, var(--color1), #ff8fab);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 15px;
    font-weight: 600;
    padding: 15px 10px;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
    font-family: var(--font2);
}

.highlighted-offers-container .offer-button {
    margin-bottom: 10px;
}

.offer-button.rappel,  .offer-button.souscrire {
    border: 1px solid #f46380;
    border-radius: 7px;
    padding: 7px;
    background: #fff;
    color: #f46380;
}

.offer-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
}

/* ============================================ */
/* HORIZONTAL OFFER CARDS */
/* ============================================ */
.offer-card-horizontal {
    display: grid;
    grid-template-columns: 150px 1.5fr 280px 320px; /* Reduced logo from 200px to 150px, increased coverage from 1fr to 1.5fr */
    column-gap: 30px;
    row-gap: 0;
    align-items: center;
    padding: 30px;
    max-width: 100%;
    min-width: auto;
}


.horizontal-logo-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.horizontal-logo-section img {
    width: 100%;
    max-width: 130px; /* Reduced from 180px */
}

.horizontal-coverage-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.horizontal-coverage-section .coverage-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.horizontal-coverage-section .coverage-label {
    min-width: 130px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.horizontal-price-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* gap: 5px; */
}

.horizontal-price-section .offer-title {
    font-size: 18px;
    color: #333;
    font-weight: normal;
}

.horizontal-price-section .offer-price {
    font-size: 32px;
}

.horizontal-actions-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
}

.horizontal-links-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}


.horizontal-actions-section .offer-button {
    margin: 0;
}

.horizontal-links-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
}

.horizontal-bottom-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    text-align: right;
    align-items: flex-end;
}

.horizontal-actions-section .petittexteboxe {
    margin: 0;
}

.horizontal-actions-section .petittexteboxe p {
    margin: 0;
    font-size: 11px;
    color: #666;
}

.offer-card-horizontal .offer-plus-details {
    grid-column: 1 / -1;
}

/* ============================================ */
/* COVERAGE BARS (Shared by both layouts) */
/* ============================================ */
.coverage-bars {
    margin-bottom: 20px;
}

.coverage-item {
    display: flex;
    align-items: center;
    /* margin-bottom: 12px; */
    position: relative;
}

.coverage-label {
    font-size: 14px;
    color: #333;
    width: 120px;
    flex-shrink: 0;
    font-family: var(--font);
}

.coverage-bar {
    flex: 1;
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 4px;
    overflow: visible;
    margin-left: 15px;
    position: relative;
}

.coverage-fill {
    height: 100%;
    background-color: var(--green1);
    border-radius: 4px;
    transition: width 0.3s ease;
    position: relative;
    max-width: 100%;
}

.coverage-tooltip {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(calc(100% + 8px), -50%);
    background-color: var(--green1);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 10;
}

.coverage-tooltip::before {
    content: '';
    position: absolute;
    left: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-right: 4px solid var(--green1);
}

.coverage-item:hover .coverage-tooltip {
    opacity: 1;
}

/* ============================================ */
/* OFFER LINKS (Shared by both layouts) */
/* ============================================ */
.offer-links {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
    gap: 10px;
}

.offer-links .colrightofferlinks,
.offer-links .colleftofferlinks {
    display: flex;
    flex-direction: column;
}

.offer-link {
    color: #333;
    font-size: 11px;
    text-decoration: underline;
    transition: color 0.3s ease;
    font-family: var(--font);
}

.offer-link.pink {
    color: var(--color1);
}

.offer-link:hover {
    color: var(--color1);
}

.petittexteboxe {
    margin-top: 0px;
}

.petittexteboxe p {
    font-size: 0.7rem;
}

.offer-plus-details {
    font-size: 12px;
    font-weight: 400;
}

/* ============================================ */
/* SKELETON LOADING */
/* ============================================ */
.skeleton-card {
    pointer-events: none;
    opacity: 0.7;
}

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-title {
    display: block;
    width: 65%;
    height: 22px;
    margin-bottom: 8px;
}

.skeleton-subtitle {
    display: block;
    width: 45%;
    height: 14px;
}

.skeleton-price {
    width: 90px;
    height: 28px;
}

.skeleton-description {
    width: 75%;
    height: 16px;
    margin-bottom: 20px;
}

.skeleton-button {
    width: 100%;
    height: 48px;
    margin-bottom: 25px;
    border-radius: 12px;
}

.skeleton-label {
    display: inline-block;
    width: 100px;
    height: 14px;
}

.skeleton-bar-fill {
    width: 100%;
    height: 8px;
}

.skeleton-link {
    display: inline-block;
    width: 120px;
    height: 13px;
}

/* ============================================ */
/* RESPONSIVE */
/* ============================================ */
@media (max-width: 1200px) {
    .highlighted-offers-container {
        flex-wrap: wrap;
    }

    .offer-card-horizontal {
        grid-template-columns: 180px 1fr 250px 280px;
        column-gap: 20px;
    }
}

@media (max-width: 1024px) {
    .offer-card-horizontal {
        grid-template-columns: 150px 1fr 200px;
        grid-template-rows: auto auto;
        row-gap: 15px;
    }

    .horizontal-actions-section {
        grid-column: 3;
        grid-row: 1 / 3;
    }
}

@media (max-width: 768px) {

    .tarifs-info {
        font-size: 13px;
        text-align: justify;
        width: fit-content;
        margin: 0;
        padding: 13px;
    }

    .highlighted-offers-section {
        padding: 20px;
    }

    .highlighted-section-title {
        font-size: 16px;
        padding: 10px 20px;
        top: -32px;
        right: 20px;
    }

    .highlighted-offers-container,
    .normal-offers-container {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    /* EQUAL WIDTH FOR ALL CARDS */
    .offer-card,
    .offer-card-horizontal {
        max-width: 100%;
        min-width: auto;
        width: 100%;
        padding: 20px;
        box-sizing: border-box;
    }

    .normal-offers-container .offer-card {
        max-width: 100%;
        width: 100%;
    }

    /* Show description on mobile */
    .horizontal-mobile-description {
        display: block;
        grid-area: desc;
        font-size: 14px;
        color: #666;
        text-align: center;
        margin: 0;
        font-family: var(--font);
    }

    /* HORIZONTAL CARDS IN MOBILE - Vertical Layout */
    .offer-card-horizontal {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "logo price"
            "desc desc"
            "button button"
            "coverage coverage"
            "links links"
            "details details";
        column-gap: 15px;
        row-gap: 15px;
    }

    /* Logo on left */
    .offer-card-horizontal .horizontal-logo-section {
        grid-area: logo;
        justify-self: start;
        align-self: start;
    }

    .offer-card-horizontal .horizontal-logo-section img {
        max-width: 120px;
        width: 100%;
    }

    /* Title and Price on right */
    .offer-card-horizontal .horizontal-price-section {
        grid-area: price;
        justify-self: end;
        align-self: start;
        text-align: right;
    }

    .offer-card-horizontal .horizontal-price-section .offer-title {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .offer-card-horizontal .horizontal-price-section .offer-price {
        font-size: 24px;
    }

    /* Coverage bars */
    .offer-card-horizontal .horizontal-coverage-section {
        grid-area: coverage;
        gap: 10px;
    }

    .offer-card-horizontal .horizontal-coverage-section .coverage-label {
        min-width: 100px;
        font-size: 13px;
    }

    /* Button */
    .offer-card-horizontal .horizontal-actions-section {
        grid-area: button;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .offer-card-horizontal .horizontal-actions-section .offer-button {
        /* grid-area: button; */
        width: 100%;
        margin: 0;
    }

    .google-reviews-bottom.devis-horizontal {
        grid-column: 3 / 1;
    }

    .google-reviews-bottom.devis-horizontal img {
        max-width: 100%;
    }

    .step3formulaire .google-reviews-bottom {
        text-align: center;
    }

    /* Links */
    .offer-card-horizontal .horizontal-links-wrapper {
        grid-area: links;
    }

    /* Plus details - positioned at the very bottom */
    .offer-card-horizontal .offer-plus-details {
        grid-area: details;
        grid-column: 1 / -1;
        margin-top: 10px;
    }

    /* Hide disclaimer in mobile */
    .offer-card-horizontal .petittexteboxe {
        display: none !important;
    }

    .offer-header {
        flex-direction: row;
        gap: 10px;
    }

    .coverage-label {
        width: 100px;
        font-size: 13px;
    }

    .normal-offers-container {
        padding: 10px;
        border: 1px solid transparent;
    }

    .logopresse {
        display: inline-flex;
        gap: 5px;
        margin-top: 13px;
        width: 100%;
    }

    .logopresse img {
        width: 80%;
    }


    .dspnonelogo
    {
        display: none;
    }

    .beneficiaire-btn {
        padding: 10px 12px;
        font-size: 14px;
    }

    .beneficiaire-trigger {
        margin-bottom: 0px;
        max-width: 300px;
    }
}


/****** offers CSS *****/

.step3formulaire .personspeak  {
    width: 70%;
}

.personspeak {
    width: 51%;
    margin: 0px auto;
    display: flex;
    background-color: #fff;
    border-radius: 12px;
    margin-top: 23px;
    margin-bottom: 28px;
    align-items: anchor-center;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
}

.width80 {
    width: 77%;
    float: left;
    margin-left: 3%;
}



.width20 {
    text-align: right;
    width: 17%;
    float: left;
    margin-right: 3%;
}

@media screen and (max-width: 1024px) {
    .personspeak {
        width: 70%;
    }
}

/* Version mobile */
@media screen and (max-width: 768px) {
    .personspeak {
        width: 90%;
        flex-direction: column;
        padding: 15px;
        box-shadow: none;
    }

    .width80 {
        width: 100%;
        margin-left: 0;
        order: 2;
    }

    .textenewlead p {
        margin-top: 15px;
        font-size: 14px;
    }

    .width20 {
        width: 100%;
        margin-right: 0;
        text-align: center;
        order: 1;
    }

    .width20 img {
        max-width: 80px;
    }
}

/* Très petits écrans */
@media screen and (max-width: 480px) {
    .personspeak {
        width: 95%  !important;
        margin: 0px auto 0px;
    }

    .textenewlead p {
        font-size: 13px;
    }
}

/* ========================================
   📦 BOX SOPHIE - TOUT EN UN
======================================== */
.sophie-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
}

.sophie-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: visible;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    position: relative;
    transition: transform 0.2s ease;
}

.sophie-avatar:hover {
    transform: scale(1.05);
}

.sophie-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #fff;
}

.status-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 18px;
    height: 18px;
    background: #10b981;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    animation: pulse 2s infinite;
    z-index: 10;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
}

.notification-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #ef4444;
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    animation: popIn 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    opacity: 0;
    z-index: 10;
}

.notification-badge.show {
    opacity: 1;
}

@keyframes popIn {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

.sophie-dialog {
    position: absolute;
    bottom: 90px;
    right: 0;
    width: 340px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}

.sophie-dialog.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.dialog-header {
    background: linear-gradient(135deg, #f472b6 0%, #ec4899 100%);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}

.dialog-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dialog-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid white;
    overflow: hidden;
}

.pointenligne {
    width: 11px;
    height: 11px;
    background-color: #10b981;
    position: absolute;
    border-radius: 50px;
    left: 61px;
    margin-top: -25px;
    border: 2px solid #fff !important;
}

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

.dialog-info h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.dialog-info p {
    font-size: 12px;
    opacity: 0.9;
    margin: 2px 0 0 0;
}

.close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.2s;
    position: relative;
    top: -25px;
    right: -12px;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.dialog-body {
    padding: 24px;
}

.dialog-message {
    font-size: 15px;
    line-height: 1.6;
    color: #1f2937;
    margin-bottom: 23px;
}

.dialog-message strong {
    display: block;
    margin-bottom: 4px;
}

.dialog-check {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #059669;
    font-size: 14px;
    font-weight: 500;
    margin-top: 22px;
}

.dialog-check::before {
    content: '✅';
    font-size: 16px;
}

@media (max-width: 768px) {
    .sophie-widget {
        bottom: 20px;
        right: 20px;
    }

    .sophie-dialog {
        width: calc(100vw - 48px);
        max-width: 340px;
    }
}


.google-reviews-bottom.devis-highlighted {
    align-items: flex-start;
    gap: 6px;
    color: #2e7d32;
    font-size: 12px;
    font-weight: 600;
    border-radius: 16px;
    margin: 12px auto;
    display: flex;
    margin-top: 3px;
    width: 100%;
    justify-content: center;
}

.col1 {
    float: left !important;
    width: 30%;
    text-align: left;
}


.col2 {
    width: 70%;
    float: right;
    text-align: right;
}


.google-reviews-bottom.devis-highlighted img {
    height: 30px;
}


.google-reviews-bottom img{
    margin-bottom: 6px;
}
span.emoji {
    font-size: 14px;
}

/******** 28/10  ********/
.card {
    border-radius: 12px;
    max-width: 100%;
    text-align: center;
    margin: 0px auto;
    margin-bottom: 19px;
    background-color: #eef7d5;
    padding: 1px 16px;
    border: 2px dotted #b9cb8a;
    width: fit-content;
}


.title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: -5px;
}
.description {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}


.beneficiaire-btn {
    border: 2px solid #f56885;
}

.guarantee-text {
    color: #4caf50;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    padding: 6px 0;
    margin-top: 8px;
    background: #e8f5e9;
}




@media (max-width: 767px) {
    .title {
    font-size: 15px !important;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 10px;
    }

    .bonus-box {
        flex-direction: column;
    }
}



.bonus-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background-color: #fff0f5;
    border: 2px solid #ffb3d9;
    border-radius: 10px;
    gap: 15px;
    max-width: 100%; /* s'adapte à la largeur du conteneur parent */
    margin-bottom: 20px;
    margin-top: -10px;
}

.bonus-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bonus-icon {
    font-size: 32px;
    line-height: 1;
}

.bonus-text h3 {
    margin: 0 0 3px 0;
    font-size: 16px;
    color: #4a5568;
    font-weight: 600;
}

.bonus-text p {
    margin: 0;
    font-size: 13px;
    color: #a0aec0;
}

.bonus-points {
    font-size: 20px;
    font-weight: bold;
    color: #ff4d94;
    line-height: 1;
}

/******/

.benefit-points {
    color: #ff6b35;
    font-weight: 500;
    background: #ffe8df;
    margin-top: 9px;
    border-radius: 50px;
}

.benefit-free {
    color: #28a745;
    font-weight: 500;
    background: #e8f5e9;
    border-radius: 50px;
    margin-top: 25px;
}

.benefit-item {
    padding: 8px 0;
    font-size: 14px;
}

.chrono {
    font-size: 22px;
    font-weight: 700;
    color: #ff6b35;
    letter-spacing: 1px;
}

.textoffreperso {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.offrepourvous {
    background: #ffe8df;
    border: 2px solid #ff7068;
    border-radius: 12px;
    padding: 12px 16px;
    /* margin: 15px 0; */
    text-align: center;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.15);
    padding-top: 24px;
    position: relative;
    z-index: 0;
}

.people-chose-badge {
    background: #E8F5E9;
    color: #2E7D32;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 15px;
    display: inline-block;
    margin-top: 20px;
}

.popular-badge{
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 400;
    box-shadow: 0 4px 10px rgba(255, 107, 107, 0.4);
    width: max-content;
    margin: 0px auto;
    margin-top: -1px;
    position: relative;
    z-index: 2;
    top: 16px;
}


.help-button-speaker a {
    background: #57b45b;
    color: white;
    padding: 8px 20px;
    text-decoration: none;
    cursor: pointer;
    border-radius: 20px;
    margin-top: 20px;
}

/* Stats Badges Container - LES DEUX CÔTE À CÔTE */
.stats-badges-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
}

.stats-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 24px;
    background: linear-gradient(135deg, #eef7d5 0%, #deedb5 100%);
    border: 2px dotted #b9cb8a;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
    box-shadow: 0 2px 8px rgba(253, 224, 71, 0.3);
    animation: fadeIn 0.6s
ease-out;
}

.stats-badge-icon {
    font-size: 18px;
}

.stats-badge-number {
    font-size: 16px;
    font-weight: 800;
    color: #6a8b26;
}

/* Live Indicator Badge */
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    animation: fadeIn 0.6s ease-out 0.2s both;
}

.live-pulse {
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
}

.offer-btns-container {
    min-height: 134px;
}


@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
}

.live-count {
    color: #10b981;
    font-weight: 800;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {

    .stats-badges-container {
        flex-direction: column;
        gap: 12px;
        max-width: 100%;
        width: fit-content;
        margin: 5px auto 15px;
        display: none;
    }

    .stats-badge,
    .live-badge {
        width: 100%;
        justify-content: center;
    }

    .offer-btns-container {
        min-height: auto;
    }

    .highlighted-offers-container .offer-header {
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .stats-badge,
    .live-badge {
        font-size: 12px;
        padding: 10px 18px;
    }
}

.see-more-container {
    text-align: center;
}

.see-more-btn {
   background: #fff;
    border: 2px solid var(--color1);
    border-radius: 12px;
    color: var(--color1);
    font-size: 16px;
    font-weight: 600;
    padding: 15px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font2);
}


/****************** Avis clients css *********************/

.avis-clients {
    padding: 20px 16px;
}

.reviews-section {
    max-width: 1400px;
    margin: 0 auto 40px;
    text-align: center;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    margin-top: 45px;
}

.section-description {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.review-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
}

.review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

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

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    color: #fbbf24 !important;
    font-size: 16px;
}

.review-text {
    color: #4b5563;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
    flex: 1;
}

.read-more {
    color: #3b82f6;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
    align-self: flex-end;
    cursor: pointer;
    transition: color 0.2s;
}

.read-more:hover {
    color: #2563eb;
    text-decoration: underline;
}

/* Responsive breakpoints */
@media (max-width: 1200px) {
    .reviews-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .reviews-container {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 16px;
    }

    .review-card {
        padding: 20px;
    }

    .section-title {
        font-size: 26px;
    }

    .section-description {
        font-size: 15px;
    }

    .reviews-section {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .reviews-container {
        grid-template-columns: 1fr;
    }

    .review-card {
        padding: 18px;
    }

    .reviewer-name {
        font-size: 15px;
    }

    .review-text {
        font-size: 13px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-description {
        font-size: 14px;
    }
}

