/**************************************** HERO ****************************************/

.hero_section {
    /* background-image: url("/images/visitor/home/home_hero_background.png"); */
    background-image: url("/images/visitor/home/test_home_background.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 700px;
    position: relative;
}

.hero_container {
    max-width: 1300px;
    padding: 0px 32px;
}

.hero_content {
    backdrop-filter: blur(5px);
    border-radius: 12px;
    background: linear-gradient(45deg, #0000008c, #00000017);
    padding: 5px;
}

.hero_title {
    display: flex;
    justify-self: start;
    position: relative;
    color: white;
    margin-bottom: 30px;
}

.hero_title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -16px;
    width: 27%;
    height: 6px;
    background-color: var(--starcar-gold);
}

.hero_subtitle {
    line-height: 1.25;
    max-width: 80%;
    color: white;
    margin-bottom: 10px;
}

.hero_small_title {
    color: white;
    margin-bottom: 30px;
}

.hero_pro_badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background-color: var(--starcar-gold);
    color: black;
    padding: 10px 15px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 10;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.hero_pro_badge:hover{
    transform: scale(1.05);
}

.hero_pro_badge a{
    color: black;
    padding: 10px 15px;
}


.hero_cta {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 25px;
    margin-bottom: 20px;
}

.hero_book_cta {
    display: flex;
    padding: 15px 20px;
    align-items: center;
    gap: 15px;
    background-color: var(--starcar-gold);
    border-radius: 15px;
    color: black;
    text-decoration: none;
}

.hero_call_cta {
    display: flex;
    padding: 15px 20px;
    align-items: center;
    gap: 15px;
    background-color: white;
    border-radius: 10px;
    color: black;
}

.hero_cta span {
    font-size: 1.5rem;
}

.hero_cta strong {
    font-size: 1rem;
}

.hero_description {
    max-width: 500px;
    font-size: 1.25rem;
    color: white;
}

.book_mobile {
    display: none;
}

/**************************************** PLAQUE LOOKUP ****************************************/

.plate_lookup_section {
    padding: 80px 0;
    background: #f5f5f5;
}

.plate_lookup_container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 32px;
    text-align: center;
}

.plate_lookup_header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.plate_lookup_title {
    display: flex;
    justify-self: start;
    position: relative;
    font-size: 1.75rem;
    color: black;
    margin-bottom: 30px;
}

.plate_lookup_title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -16px;
    width: 27%;
    height: 6px;
    background-color: var(--starcar-gold);
}

.plate_lookup_subtitle {
    margin: 0px auto 30px auto;
    max-width: 682px;
    font-size: 1.25rem;
}

.plate_lookup_form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.plate_lookup_form input {
    padding: 12px 15px;
    width: 220px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
    outline: none;
    text-transform: uppercase;
}

.plate_lookup_form input:focus {
    border-color: var(--starcar-gold);
}

.plate_lookup_form button {
    padding: 12px 20px;
    background-color: var(--starcar-gold);
    color: var(--starcar-dark);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.plate_lookup_form button:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

/**************************************** RESULTAT PLAUQE ****************************************/

.plate_result_card {
    margin: 40px auto 0;
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.plate_result_card img {
    max-width: 100%;
    margin-bottom: 15px;
}

.plate_result_card h2 {
    margin-bottom: 10px;
}

.plate_result_card p {
    margin: 5px 0;
    color: #444;
}

.plate_error {
    background: tomato;
    border-radius: 10px;
    color: white;
    padding: 10px 0px;
}


/**************************************** FEATURES ****************************************/

.home_features_section {
    padding: 30px 0px;
}

.home_features_container {
    margin: 0px auto;
    padding: 0px 32px;
    max-width: 1300px;
}

.home_features_list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    overflow: scroll;
}

.home_features_list::-webkit-scrollbar {
    display: none;
}

.home_feature {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 282px;
    max-width: 282px;
}

/**************************************** ADVANTAGES ****************************************/

.advantages_section {
    /* background-image: url("/images/visitor/home/home_advantages_background.jpg"); */
    background: #e1e1e1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom 66%;
    padding: 88px 0px;
    position: relative;
    /* height: 900px; */
}

.advantages_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 32px;
    margin: 0 auto;
    max-width: 1300px;
}

.advantages_title {
    position: relative;
    text-align: center;
    max-width: 970px;
    margin-bottom: 100px;
}

.advantages_title::after {
    content: "";
    width: 35%;
    background-color: var(--starcar-gold);
    height: 6px;
    position: absolute;
    bottom: -34px;
    left: 33%;
}

.advantages_cards {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 30px;
    margin-bottom: 55px;
    overflow-x: scroll;
    overflow-y: hidden;
}

.advantages_cards::-webkit-scrollbar {
    display: none;
}

.advantage_card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    margin: 10px 0px;
    padding: 15px;
    border-radius: 15px;
    max-width: 285px;
    min-width: 285px;
    height: 300px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.advantage_card:hover {
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.20);
}

.card_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease
}

.card_alternative_content {
    text-align: center;
    transform: translateY(20px);
    opacity: 0;
    margin: 20px 0px;
    transition: all 0.3s ease;
}


.advantage_card:hover .card_content {
    transform: translateY(-40px);
    opacity: 0;
}

.advantage_card:hover .card_alternative_content {
    transform: translateY(-130px);
    opacity: 1;
}

.advantage_card span {
    font-size: 150px;
    user-select: none;
    color: var(--starcar-gold);
}

.advantage_card_title {
    text-align: center;
    margin-top: 20px;
    font-weight: 600;
}

.advantage_card_subtitle {
    text-align: center;
    margin: 20px 0px;
}

.home_advantages_cta_button a {
    background-color: var(--starcar-gold);
    color: black;
    max-width: 260px;
    font-size: 1.25rem;
    justify-content: center;
    text-decoration: none;
    padding: 10px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.home_advantages_cta_button a:hover {
    width: fit-content;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

/**************************************** DIFFERENCE ****************************************/

/* SECTION DIFFERENCE */
.difference_section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 70px 0px 50px 0px;
}

.difference_container {
    margin: 0 auto;
    max-width: 1300px;
    padding: 0px 32px;
    width: 100%;
}

.difference_title {
    text-align: start;
    margin-bottom: 50px;
    position: relative;
}

.difference_title::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 10px;
    left: 0;
    bottom: -20px;
    background-color: var(--starcar-gold);
}

.difference_card {
    position: relative;
    width: 100%;
}

/* SLIDER AVANT/APRÈS */
.slider-container {
    position: relative;
    width: 100%;
    height: 460px;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
    border-radius: 15px;
}

.slider-container .base-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    border-radius: 15px 0 0 15px;
}

.after-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    max-width: 1236px;
    height: 100%;
    object-fit: cover;
}

.handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: #fff;
    cursor: ew-resize;
    z-index: 10;
    transform: translateX(-50%);
    transition: background 0.2s ease;
}

.handle:hover {
    background: var(--starcar-gold);
}

.handle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    border: 4px solid var(--starcar-gold);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s, border-color 0.2s;
}

.handle:hover::before {
    transform: translate(-50%, -50%) scale(1.15);
    border-color: #000;
}

.handle::after {
    content: '⟷';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 22px;
    color: #000;
    font-weight: bold;
    z-index: 1;
}

.difference_before {
    background-color: var(--starcar-gold);
    color: black;
    border-radius: 10px;
    padding: 10px 20px;
    position: absolute;
    font-size: 24px;
    left: 25px;
    top: 25px;
    z-index: 100;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.difference_after {
    background-color: var(--starcar-gold);
    color: black;
    border-radius: 10px;
    padding: 10px 20px;
    position: absolute;
    font-size: 24px;
    right: 25px;
    top: 25px;
    z-index: 100;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/**************************************** SEARCH ****************************************/

.search_section {
    background: radial-gradient(circle at bottom right,
            rgba(66, 126, 143, 0.22),
            transparent 70%),
        #ffffff;
    padding: 70px 0px;
}

.search_container {
    display: flex;
    justify-content: center;
    padding: 0px 32px;
    margin: 0 auto;
    max-width: 1300px;
}

.search {
    max-width: 1116px;
}

.search_bar {
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    margin-bottom: 45px;
}

.search_title {
    font-size: 1.8rem;
    text-align: start;
    position: relative;
}

.search_title::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 6px;
    left: 0;
    bottom: -20px;
    background-color: var(--starcar-gold);
}

.search_bar span {
    font-size: 2rem;
    margin-right: 5px;
}

.search_subtitle {
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 50px;
}

.select_form {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 6px 0px;
}

.select_form select {
    background: transparent;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    outline: none;
    border: 2px solid var(--starcar-gold);
    padding: 5px 10px;
    border-radius: 10px;
    font-weight: 500;
    width: 265px;
}

.select_form option{
    background-color: white;
}

.select_form option:hover{
    background-color: #ffffff;
}

.select_button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0px;
}

.select_button span {
    margin-top: 1px;
}

#brand_search {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

#brand_search p {
    display: flex;
    font-size: 1.25rem;
    align-items: center;
    border: 1px solid var(--starcar-gold);
    background-color: var(--starcar-gold);
    padding: 10px;
    border-radius: 15px;
    font-weight: 500;
}

/**************************************** REVIEW ****************************************/

.home_review_section {
    background: radial-gradient(circle at bottom right,
            rgba(66, 126, 143, 0.22),
            transparent 70%),
        #1c1b1f;
    padding: 50px 0px;
}

.home_review_container {
    padding: 0px 32px;
    margin: 0 auto;
    max-width: 1443px;
}

.home_review_top {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.home_review_title {
    text-align: start;
    margin-bottom: 70px;
    position: relative;
    color: white;
}

.home_review_title::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 10px;
    left: 0;
    bottom: -20px;
    background-color: var(--starcar-gold);
}

.home_review_carousel_buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.carousel_prev,
.carousel_next {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--starcar-gold);
    background-color: var(--starcar-dark);
    font-size: 50px;
    padding: 5px;
    user-select: none;
    cursor: pointer;
    border-radius: 50%;
}

.home_review_cards {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
    gap: 15px;
    margin-bottom: 70px;
}

.home_review_cards::-webkit-scrollbar {
    display: none;
}

.home_review_card {
    background-color: white;
    border-radius: 15px;
    min-width: 333px;
    max-width: 333px;
}

.home_review_card_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 55px 39px;
}

.home_review_stars {
    color: var(--starcar-gold);
    font-size: 35px;
}

.home_reviewer_name {
    font-size: 24px;
    margin-bottom: 8px;
}

.home_review_publish {
    color: #00000080;
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 400;
}

.home_review_creation {
    color: #000000b2;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

.home_review_comment {
    font-size: 18px;
    font-weight: 700;
    max-width: 200px;
    text-align: center;
}

.home_reviews_link {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    color: var(--starcar-gold);
    text-decoration: none;
    font-family: "inter", sans-serif;
}

/**************************************** QUALITY ****************************************/

.home_quality_section {
    background-color: white;
    margin: 100px 0px;
}

.home_quality_container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 32px;
    max-width: 1650px;
    gap: 30px;
    margin: 0 auto;
}

.home_quality_title {
    text-align: start;
    margin-bottom: 50px;
    position: relative;
}

.home_quality_title::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 10px;
    left: 0;
    bottom: -20px;
    background-color: var(--starcar-gold);
}

.home_quality_content {
    max-width: 480px;
}

.home_quality_description {
    font-size: 1.25rem;
    min-width: 480px;
    font-family: "inter", sans-serif;
    margin-bottom: 50px;
}

.home_quality_cta_button {
    margin: 10px 0px;
}

.home_quality_cta_button a {
    background-color: var(--starcar-gold);
    color: black;
    max-width: 260px;
    justify-content: center;
    text-decoration: none;
    padding: 9px;
    text-align: center;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.home_quality_cta_button a:hover {
    width: fit-content;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}


.home_quality_carousel_button span {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--starcar-gold);
    background-color: var(--starcar-dark);
    font-size: 2rem;
    padding: 15px;
    border-radius: 45px;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.home_quality_carousel_button span:hover {
    transform: scale(1.1);
}

.home_quality_carousel {
    display: flex;
    overflow: scroll;
    gap: 45px;
    max-width: 802px;
}

.home_quality_carousel::-webkit-scrollbar {
    display: none;
}

.home_quality_carousel_item {
    max-width: 350px;
    min-width: 350px;
    background-color: var(--starcar-dark);
    border-radius: 15px;
    padding: 10px 10px 70px 10px;
    transition: all 0.5s ease;
}

/* .home_quality_carousel_item.active{
    opacity: 1;
    transform: scale(1.05);
} */

.home_quality_carousel_item img {
    border-radius: 15px;
    width: 100%;
    height: 277px;
    object-fit: cover;
}

.home_quality_item_title {
    color: var(--starcar-gold);
    margin-bottom: 15px;
}

.home_quality_item_description {
    color: white;
    font-weight: 300;
}

/**************************************** SECTION FAQ ****************************************/

.product_faq_section {
    padding: 50px 0;
    background-color: #1c1b1f;
}

.product_faq_container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 32px;
}

/* TITRE */
.product_faq_title {
    text-align: center;
    color: white;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 50px;
    position: relative;
}

.product_faq_title::after {
    content: "";
    display: block;
    width: 80px;
    height: 5px;
    background-color: var(--starcar-gold);
    margin: 15px auto 0;
}

/* ACCORDION */
.product_faq_accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* ITEM */
.product_faq_item {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: border 0.3s ease;
}

.product_faq_item.active {
    border: 1px solid var(--starcar-gold);
}

/* QUESTION */
.product_faq_question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 18px 20px;

    font-family: "Exo 2", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: white;
    text-align: left;

    transition: color 0.3s ease, background-color 0.3s ease;
}

.product_faq_question:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--starcar-gold);
}

/* ICONE (+ / -) – gérée via JS */
.product_faq_question::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--starcar-gold);
    transition: transform 0.3s ease;
}

.product_faq_item.active .product_faq_question::after {
    content: "–";
}

/* RÉPONSE */
.product_faq_answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.product_faq_answer p {
    color: #d1d1d1;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ÉTAT OUVERT – déclenché par JS */
.product_faq_item.active .product_faq_answer {
    max-height: 500px; /* suffisant pour toutes tes réponses */
    padding: 0 20px 20px;
}

/**************************************** INFOS ****************************************/

.infos_section {
    background: radial-gradient(circle at bottom right,
            rgba(66, 126, 143, 0.22),
            transparent 70%),
        #ffffff;
    padding: 50px 0px;
}

.infos_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    max-width: 1300px;
    padding: 0px 32px;
}

.infos_title {
    text-align: start;
    margin-bottom: 100px;
    position: relative;
}

.infos_title::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 10px;
    left: 0;
    bottom: -20px;
    background-color: var(--starcar-gold);
}

.infos_left p {
    font-size: 1.25rem;
    font-weight: 500;
    max-width: 450px;
    margin-bottom: 30px;
}

.infos_right {
    width: 50%;
}

.starcar-map-home {
    width: 100%;
    height: 350px;
    border-radius: 12px;
}

/****************************************  RESPONSIVE DESING ****************************************/

@media (max-width: 1199px) {
    .advantages_cards{
        display: grid;
        justify-items: center;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
    }

}

@media (max-width: 1199px) {
    .hero_container {
        padding: 0px 20px;
    }

    .home_features_container {
        padding: 0px 20px;
    }

    .advantages_container {
        padding: 0px 20px;
    }

    .difference_container {
        padding: 0px 20px;
    }

    .search_container {
        padding: 0px 20px;
    }

    .home_review_container {
        padding: 0px 20px;
    }

    .home_quality_container {
        padding: 0px 20px;
    }

    .home_quality_content {
        max-width: 330px;
    }

    .home_quality_description {
        min-width: 330px;
    }

    .infos_container {
        padding: 0px 20px;
    }

    .infos_right {
        width: 100%;
    }
}

@media (max-width: 999px) {
    .hero_section {
        background-size: auto;
        height: 600px;
        align-items: flex-end;
    }

    .hero_container {
        padding: 0px 20px;
    }

    .hero_title {
        color: white;
    }

    .hero_content {
        color: white;
        background-color: #0000001f;
    }

    .hero_cta {
        display: none;
    }

    .book_mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0px 20px;
        margin: 30px 0px;
    }

    .book_mobile .hero_description {
        display: flex;
        margin-bottom: 20px;
        text-align: center;
    }

    .book_mobile_buttons {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    .book_mobile_buttons .hero_call_cta {
        justify-content: center;
        border: 1px solid #8080806b;
        width: 100%;
    }
    .book_mobile_buttons .hero_book_cta{
        justify-content: center;
        width: 100%;
    }

    .hero_description {
        display: none;
    }

    .home_features_section {
        background: rgba(250, 250, 252, 1);
        margin-bottom: 20px;
    }

    .home_features_container {
        padding: 0px 12px;
    }

    .advantages_section {
        padding: 50px 0px;
        /* height: 900px; */
    }

    .advantages_container {
        padding: 0px 12px;
    }

    .advantages_title::after {
        width: 81%;
        left: 9%;
    }

    .advantages_cards {
        display: flex;
        justify-content: flex-start;
    }

    .home_advantages_cta_button a {
        /* position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%); */
    }

    .difference_section {
        margin: 50px 0px;
    }

    .difference_container {
        padding: 0px 12px;
    }

    .search_section {
        padding: 50px 0px;
    }

    .search_container {
        padding: 0px 12px;
    }

    .home_review_container {
        padding: 0px 12px;
    }

    .home_quality_section {
        margin: 50px 0px;
    }

    .home_quality_container {
        padding: 0px 12px;
        flex-direction: column-reverse;
        overflow: hidden;
    }

    .home_quality_carousel_item:nth-child(2) {
        opacity: 1;
    }

    .home_quality_carousel_item:nth-child(3) {
        opacity: 1;
    }

    .home_quality_content {
        max-width: 100%;
    }

    .home_quality_description {
        min-width: auto;
    }

    .home_quality_carousel_button {
        display: none;
    }

    .home_quality_carousel {
        gap: 30px;
        justify-content: flex-start !important;
        max-width: 95%;
        scroll-snap-type: x mandatory;
    }

    .home_quality_carousel_item {
        scroll-snap-align: start;
        padding: 20px 10px;
    }

    .infos_title {
        margin-bottom: 50px;
    }

    .infos_container {
        padding: 0px 12px;
        flex-direction: column-reverse;
        align-items: flex-start;
    }

    .infos_left {
        width: 100%;
    }

    .infos_right {
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .hero_container {
        padding: 0px 12px;
    }

    .hero_title {
        font-size: 1.5rem;
    }

    .hero_subtitle {
        font-size: 1.2rem;
    }

    .hero_description {
        font-size: 1.2rem;
    }

    .advantages_title {
        font-size: 1.5rem;
    }

    .home_advantages_cta_button a {
        font-size: 1.2rem;
    }

.slider-container {
		height: 60vh;
		min-height: 300px;
		border-radius: 8px;
	}

	.after-image img {
		width: 100vw;
	}

	.handle::before {
		width: 50px;
		height: 50px;
	}

	.handle::after {
		font-size: 20px;
	}

	.slider-labels {
		padding: 0 10px;
		margin-top: 15px;
	}

	.difference_before,
	.difference_after {
		font-size: 16px;
	}

    .search_subtitle {
        font-size: 1.2rem;
        margin-bottom: 40px;
    }

    .home_review_title {
        font-size: 1.5rem;
    }

    .home_review_carousel_buttons {
        display: none;
    }

    .home_reviews_link {
        font-size: 1.2rem;
    }

    .home_quality_title {
        font-size: 1.5rem;
    }

    .home_quality_description {
        font-size: 1.2rem;
    }

    .infos_title {
        font-size: 1.5rem;
    }

    .infos_left p {
        font-size: 1rem;
    }
}