@font-face {
    font-family: "PoppinsBold";
    src: url("../fonts/Poppins-Bold-MZdXsbb.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "PoppinsMedium";
    src: url("../fonts/Poppins-Medium-K3YK1cq.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "PoppinsLight";
    src: url("../fonts/Poppins-Light-MufD_GM.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "PoppinsSemiBold";
    src: url("../fonts/Poppins-SemiBold--A4nWe0.woff") format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "PoppinsRegular";
    src: url("../fonts/Poppins-Regular--dt-U2H.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --black-color: #000000;
    --white-color: #ffffff;
    --chery-color: #a4896c;
    --footer-text-muted: #9ca3af;
    --chery-color-hover: #a4896c;
    --chery-dark: #202020;
    --chery-gray: #404040;
    --text-dark: #1a1a1a;
    --text-muted: #6c757d;
    --border-color: #dee2e6;
    --bg-light: #f8f9fa;
    --fp-primary: #a4896c;
    --fp-primary-light: #c2a98a;
    --fp-primary-dark: #7d6347;
    --fp-primary-bg: rgba(164, 137, 108, 0.08);
}

body {
    font-family: "PoppinsRegular";
    font-size: 16px;
    color: var(--chery-gray);

}

* {
    margin: 0px;
    padding: 0px;
}

p {
    font-family: "PoppinsRegular";
    font-size: 16px;
    color: var(--chery-gray);
    margin-bottom: 20px;
}

li {
    font-family: "PoppinsRegular";
    font-size: 16px;
    color: var(--black-color);
}

a {
    text-decoration: none;
}

li {
    list-style-type: none;
}

ul {
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    line-height: 1;
}

.img_radius {
    border-radius: 10px;
}

.container {
    border-radius: 10px;
}
.owl-carousel .owl-item img{
    width: auto;
}

/* Header */

.navbar {
    border-bottom: 1px solid #00000014;
    padding: 20px 0;
    background-color: #DAD9D7;
    position: relative;
    width: 100%;
    z-index: 9999;
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.menu {
    width: 100%;
}

.menu_header .navbar-nav .dropdown-menu {
    padding: 20px;
    border-radius: 20px;
    border-top-left-radius: 0;
    background: #DAD9D7;
    margin-top: 28px;
}

.dropdown-menu .item-dropdown-menu {
    display: flex;
    margin: 10px 0;
}

.menu_header .navbar-nav .dropdown-menu label {
    margin-right: 15px;
    margin-top: 5px;
}

.menu_header .navbar-nav .dropdown-menu label img {
    max-width: 65px;
}

.navbar-nav li {
    margin-left: 30px;
    text-transform: uppercase;
}

.navbar .nav-link {
    color: var(--chery-dark) !important;
    font-weight: 500;
    font-size: 14px;
    padding: 0 !important;
    transition: color 0.3s;
    display: inline-block;
}
.navbar .nav-link.dropdown-toggle::after {
    display: none;
}
.navbar .nav-link i {
    margin-right: 4px;
}

.navbar .nav-link:hover {
    color: var(--chery-color);
}

.dropdown-menu {
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dropdown-menu li {
    margin-left: 0;
    margin-bottom: 10px;
}

.dropdown-menu li:last-child {
    margin-bottom: 0;
}

.dropdown-item {
    font-size: 16px;
    padding: 0.5rem 1rem;
    transition: all 0.3s;
}

.dropdown-item:hover {
    background-color: #f5f5f5;
    color: var(--chery-color);
}

.nav_fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999999;
}

.menu_header .btn-header,
.menu_header .btn-header-outline {
    font-family: "PoppinsRegular";
    font-size: 12px;
    color: var(--white-color) !important;
    padding: 10px 20px !important;
    transition: background-color 0.3s;
    text-transform: uppercase;
}

.menu_header .btn-header svg {
    width: 0;
    margin-left: 6px;
    margin-top: -2px;
}

.menu_header .btn-header:hover {
    background-color: var(--chery-color-hover);
    color: white;
}

.menu_header .btn-header-outline {
    background-color: transparent;
}

.btn-header-outline:hover {
    background-color: #000;
    color: white;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: transparent;
    border: none;
    color: #000;
    font-weight: 500;
    font-size: 14px;
    padding: 0.5rem;
    transition: color 0.3s;
}

.lang-btn:hover {
    color: var(--chery-color);
}

.hero-section {
    padding: 4rem 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.hero-section p {
    font-size: 1.125rem;
    color: #6c757d;
    margin-bottom: 3rem;
}

.card {
    border: 1px solid #e0e0e0;
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}

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

.card-text {
    font-size: 0.875rem;
    color: #6c757d;
}

.close_menu,
.open_menu {
    display: none;
    background: transparent;
    border: 0;
    outline: none;
}

@media (max-width: 1399px) {
    .menu_header .navbar-nav {
        text-align: center;
    }

    .navbar-nav li {
        margin-left: 20px;
    }
}

@media (max-width: 1199px) {
    .menu_header .navbar-nav .dropdown-menu {
        position: relative !important;
        transform: unset !important;
    }

    .close_menu {
        display: none;
    }

    .open_menu {
        display: block;
    }

    .navbar-toggler svg {
        color: var(--white-color);
    }

    .show_menu {
        left: 0;
        opacity: 1;
        z-index: 999;
    }

    .hide_menu {
        opacity: 0;
        left: 100%;
    }

    .menu {
        position: fixed;
        top: 0;
        width: 100%;
        height: 100vh;
        display: flex;
        justify-content: start;
        flex-direction: column;
        background: var(--white-color);
        transition: 0.7s ease;
        -webkit-transition: 0.7s ease;
        -moz-transition: opacity 0.7s ease;
        padding-top: 120px;
        overflow-y: auto;
        text-align: unset;
    }

    .navbar-nav li {
        margin-left: 0;
        margin-top: 20px;
    }

    .navbar-collapse {
        padding: 20px 0;
    }

    .dropdown-menu li {
        margin-top: 0;
    }
}

@media (max-width: 575px) {
    .navbar {
        padding: 12px 10px;
    }

    .btn-header,
    .btn-header-outline {
        padding: 8px 15px !important;
        font-size: 12px;
    }
}

/* Mitsubishi Buttons */

.mitsubishi_buttons {
    display: flex;
    gap: 15px;
}

.btn_mitsubishi {
    font-family: "PoppinsRegular";
    color: var(--chery-dark);
    padding: 12px 30px;
    border: 2px solid transparent;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    text-transform: uppercase;
}

.btn_mitsubishi img {
    margin-right: 15px;
    width: auto !important;
}

.btn_mitsubishi svg {
    width: 20px;
    margin-left: 12px;
}
.features-block .btn_mitsubishi {
    padding: 10px 50px;
    background-color: var(--chery-color);
    color: var(--white-color);
}

.no_border {
    border: 0 !important;
}

.chery-color {
    color: var(--chery-color);
}

.text-white {
    color: var(--white-color);
}

.text-black {
    color: var(--black-color);
}

@media (max-width: 575px) {
    .mitsubishi_buttons {
        flex-direction: column;
    }

    .mitsubishi_buttons.justify-content-center {
        flex-direction: row;
    }

    .btn_mitsubishi {
        justify-content: center;
        width: 100%;
    }
}

/* Switcher Home */

.switcher_home .slide-content::before {
    display: none;
}

.switcher_home {
    /* border-bottom-left-radius: 35px;
    border-bottom-right-radius: 35px; */
    overflow: hidden;
}

.switcher_home .slide-title {
    font-family: "PoppinsSemiBold";
}

.logo_switcher_home {
    margin-bottom: 20px;
    max-width: 230px;
}

.switcher_home_new .owl-nav {
    width: 100%;
    opacity: 0;
    position: absolute;
    top: 50%;
    transition: all 0.5s;
    z-index: 2;
    transform: translateY(-50%);
    padding: 0 0.7rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.switcher_home_new:hover .owl-nav {
    opacity: 1;
}

.switcher_home_new .owl-carousel .owl-nav button.owl-prev,
.switcher_home_new .owl-carousel .owl-nav button.owl-next {
    cursor: pointer;
    width: 60px;
    height: 60px;
    background: hsla(0, 0%, 100%, 0.15);
    border-radius: 0.14rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
}

.switcher_home_new .owl-carousel .owl-nav button.owl-next:hover,
.switcher_home_new .owl-carousel .owl-nav button.owl-prev:hover {
    background: hsla(0, 0%, 100%, 0.6);
}

.switcher_home_new .owl-carousel .owl-nav button.owl-next span,
.switcher_home_new .owl-carousel .owl-nav button.owl-prev span {
    color: #fff;
    font-size: 35px;
    line-height: 1;
    display: block;
    font-family: monospace;
}

.switcher_home_new .owl-carousel .owl-dots {
    position: absolute;
    bottom: 60px;
    right: 20px;
    line-height: 1;
}

.switcher_home_new .owl-carousel button.owl-dot {
    width: 30px;
    height: 2px;
    border-radius: 0;
    background-color: rgba(202, 180, 151, 0.4);
    opacity: 1;
    margin: 0 5px !important;
}

.switcher_home_new .owl-carousel button.owl-dot.active {
    background-color: #cab497;
}

.switcher_home_new .slide-content {
    bottom: 60px;
}


/* ==================== DESKTOP STYLES ==================== */
@media (min-width: 992px) {
    .switcher_home {
        height: 100vh;
        min-height: 700px;
    }

    .switcher_small.switcher_home {
        height: auto;
        min-height: 400px;
    }

    .switcher_home .slide-item {
        position: relative;
        height: 100vh;
        min-height: 700px;
    }

    .switcher_small.switcher_home .slide-item {
        height: 100%;
        min-height: 400px;
    }

    .switcher_home .slide-image-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .switcher_home .slide-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .switcher_home .slide-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg,
                rgba(0, 0, 0, 0.55) 0%,
                rgba(0, 0, 0, 0.35) 35%,
                rgba(0, 0, 0, 0.1) 60%,
                transparent 80%);
    }

    .switcher .slide-content {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: end;
        z-index: 10;
        padding-bottom: 40px;
    }

    .switcher_home .nav-arrows {
        position: absolute;
        top: -60px;
        left: 0;
        display: none;
        gap: 12px;
        z-index: 20;
    }

    .switcher_home .nav-arrow {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        background: rgba(55, 55, 55, 0.85);
        border: none;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .switcher_home .nav-arrow:hover {
        background: rgba(80, 80, 80, 0.95);
    }

    .switcher_home .nav-arrow svg {
        width: 22px;
        height: 22px;
    }

    .switcher_home .slide-title {
        font-size: 45px;
        font-weight: 700;
        color: #fff;
        line-height: 1.08;
        margin-bottom: 24px;
        max-width: 630px;
    }

    .switcher_home .title-underline {
        display: none;
    }

    .switcher .title-underline {
        width: 55px;
        height: 3px;
        background: var(--chery-color);
        margin-bottom: 18px;
        display: block;
    }

    .switcher_home .slide-description {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.88);
        line-height: 1.65;
        margin-bottom: 30px;
        max-width: 630px;
    }

    .slide-buttons {
        display: flex;
        gap: 16px;
    }

    .btn-reserve {
        background: var(--chery-color);
        color: #fff;
        padding: 16px 32px;
        border: none;
        font-size: 15px;
        font-weight: 500;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .btn-reserve:hover {
        background: #c50000;
        color: #fff;
    }

    .btn-reserve svg {
        width: 16px;
        height: 16px;
    }

    .btn-more {
        background: transparent;
        color: #fff;
        padding: 16px 32px;
        border: 1px solid rgba(255, 255, 255, 0.5);
        font-size: 15px;
        font-weight: 500;
        cursor: pointer;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .btn-more:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: #fff;
        color: #fff;
    }

    .slide-dots {
        position: absolute;
        bottom: -40px;
        left: 12px;
        display: none;
        gap: 12px;
        z-index: 20;
    }

    .dot-line {
        width: 48px;
        height: 4px;
        background: rgba(255, 255, 255, 0.35);
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .dot-line.active {
        background: var(--chery-color);
    }
}

/* ==================== MOBILE STYLES ==================== */
@media (max-width: 991px) {
    .switcher_home {
        height: auto;
    }

    .switcher_home .slide-item {
        display: flex;
        flex-direction: column;
    }

    .switcher_home .slide-image-wrapper {
        width: 100%;
        height: 400px;
        position: relative;
        overflow: hidden;
    }

    .switcher_home .slide-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .switcher_home .slide-overlay {
        display: none;
    }

    .switcher_home_new .slide-content {
        background: transparent;
        padding: 0;
        position: absolute;
        max-width: 100%;
        width: 100%;
        bottom: 50px;
    }

    .switcher_home .nav-arrows {
        display: none;
        gap: 10px;
        margin-bottom: 24px;
    }

    .switcher_home .nav-arrow {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: rgba(75, 75, 75, 0.9);
        border: none;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .switcher_home .nav-arrow:hover {
        background: rgba(100, 100, 100, 1);
    }

    .switcher_home .nav-arrow svg {
        width: 18px;
        height: 18px;
    }

    .switcher_home .slide-title {
        font-size: 30px;
        font-weight: 700;
        color: #fff;
        line-height: 1.12;
        margin-bottom: 10px;
    }

    .switcher_home .title-underline {
        width: 55px;
        height: 3px;
        background: var(--chery-color);
        margin-bottom: 18px;
    }

    .switcher_home .slide-description {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.72);
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .slide-buttons {
        display: flex;
        gap: 12px;
    }

    .btn-reserve {
        background: var(--chery-color);
        color: #fff;
        padding: 14px 22px;
        border: none;
        font-size: 14px;
        font-weight: 500;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .btn-reserve:hover {
        background: #c50000;
        color: #fff;
    }

    .btn-reserve svg {
        width: 14px;
        height: 14px;
    }

    .btn-more {
        background: transparent;
        color: #fff;
        padding: 14px 22px;
        border: 1px solid rgba(255, 255, 255, 0.45);
        font-size: 14px;
        font-weight: 500;
        cursor: pointer;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .btn-more:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
    }

    .slide-dots {
        display: none;
        gap: 10px;
        margin-top: 32px;
    }

    .dot-line {
        width: 36px;
        height: 3px;
        background: rgba(255, 255, 255, 0.28);
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .dot-line.active {
        background: var(--chery-color);
    }

    .logo_switcher_home {
        max-width: 200px;
    }
}

@media (max-width: 575px) {
    .switcher_home .slide-title {
        font-size: 25px;
    }

    .switcher_home_new .btn_mitsubishi {
        width: fit-content;
    }

    .switcher_home_new .owl-carousel .owl-dots {
        bottom: 30px;
        right: 0;
        left: 0;
        margin: auto;
        width: 100%;
        text-align: center;
    }
}

/* Footer */

.footer {
    background: url("../images/bg_footer_desktop-Yb1veK5.jpg") no-repeat top;
    padding-top: 500px;
    background-size: cover !important;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.footer .container {
    background-color: var(--white-color);
    padding: 30px 50px;
    position: relative;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.footer-main {
    padding-bottom: 30px;
}

.footer-logo {
    max-width: 120px;
}

.footer-content {
    padding: 50px 0;
    border-top: 1px solid #00000029;
    border-bottom: 1px solid #00000029;
}

.footer-tagline {
    font-size: 12px;
    color: var(--white-color);
    margin-top: 8px;
    font-style: italic;
}

.footer-column-title {
    font-family: "PoppinsSemiBold";
    font-size: 14px;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 12px;
    display: inline-block;
}

.footer-column-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--chery-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--black-color);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--black-color);
}

.footer-bottom {
    padding: 20px 0;
}

.footer-bottom-text {
    font-size: 12px;
    color: var(--black-color);
}

.footer-bottom-links {
    display: inline-flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-left: 10px;
}

.footer-bottom-links a {
    color: var(--black-color);
    text-decoration: underline;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--black-color);
}

.footer-social {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.footer-social a {
    color: var(--black-color);
    font-size: 20px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--chery-color);
}

@media (max-width: 991px) {
    .footer-column {
        margin-bottom: 30px;
    }

    .footer-bottom-links {
        justify-content: start;
        margin: 15px 0;
    }

    .footer-info {
        padding-top: 40px;
        border-top: 1px solid #00000029;
    }

    .footer-social {
        justify-content: start;
        margin-bottom: 20px;
    }
}

@media (max-width: 575px) {
    .footer {
        background: url("../images/bg_footer_desktop_mobile-4EOkU57.png") no-repeat top;
        padding-top: 250px;
    }

    .footer .container {
        padding: 30px 20px;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-social,
    .footer-bottom-links {
        justify-content: center;
    }
}

/* Card Horizontal - Large */

.vehicle-card-horizontal {
    display: flex;
    align-items: center;
    overflow: hidden;
}

.vehicle-card-horizontal .card-content {
    flex: 0 0 50%;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section_block_with_img_left .vehicle-card-horizontal .card-content {
    padding: 15px 15px 15px 35px;
}

.section_block_with_img_right .vehicle-card-horizontal .card-content {
    padding: 15px 35px 15px 15px;
}

figure {
    margin: 0;
}

.vehicle-card-horizontal .card-image {
    flex: 0 0 50%;
    position: relative;
}

.vehicle-card-horizontal .card-image img {
    /*width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;*/
}

/* Card Horizontal - Bottom Image */
.vehicle-card-bottom {
    display: flex;
    background-color: var(--chery-dark);
    color: white;
    overflow: hidden;
    margin-bottom: 2rem;
}

.vehicle-card-bottom .card-image {
    flex: 0 0 50%;
    position: relative;
    min-height: 400px;
}

.vehicle-card-bottom .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.vehicle-card-bottom .card-content {
    flex: 0 0 50%;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Card Vertical */
.vehicle-card-vertical {
    background-color: var(--chery-dark);
    color: white;
    overflow: hidden;
}

.vehicle-card-vertical .card-image {
    height: 200px;
    overflow: hidden;
}

.vehicle-card-vertical .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vehicle-card-vertical .card-content {
    padding: 1.5rem;
}

/* Common Card Styles */

.card-category {
    font-family: "PoppinsSemiBold";
    display: inline-block;
    padding: 7px 24px;
    border: 1px solid var(--chery-color);
    border-radius: 50px;
    color: var(--chery-color);
    font-size: 14px;
    margin-bottom: 24px;
    width: fit-content;
}

.card-title {
    font-family: "PoppinsSemiBold";
    font-size: 34px;
    color: var(--chery-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.card-preview {
    font-family: "PoppinsSemiBold";
    font-size: 28px;
    color: var(--chery-dark);
    margin-bottom: 20px;
}

.vehicle-card-vertical .card-title {
    font-size: 1.25rem;
}

.card-description {
    line-height: 1.6;
    margin-bottom: 30px;
    margin-top: 30px;
}

.card-description p:last-child {
    margin-bottom: 0;
}

.card-description ul li,
.block-page-content ul li,
.section-description ul li {
    color: #000;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
    font-family: "mmcMedium";
    position: relative;
    padding-left: 25px;
}

.card-description ul li::before,
.block-page-content ul li::before,
.section-description ul li::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    background: url("../images/arrow_outward-hUxxszu.png") no-repeat;
    width: 11px;
    height: 11px;
    background-size: contain;
}

.card-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.vehicle-card-vertical .card-buttons {
    flex-direction: column;
    gap: 0.75rem;
}

.btn-reserve {
    background-color: transparent;
    border: 2px solid var(--chery-color);
    color: white;
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-reserve:hover {
    background-color: var(--chery-color);
    color: white;
}

.btn-essai {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-essai:hover {
    background-color: white;
    color: var(--chery-dark);
}

.caracteristiques_block {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

.item_caracteristiques_block {
    background-color: #FBFAF7;
    border-radius: 10px;
    padding: 15px;
    width: 48%;
}

.item_caracteristiques_block h5 {
    font-family: "PoppinsSemiBold";
    font-size: 15px;
    color: var(--black-color);
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    line-height: 1.2;
}

.item_caracteristiques_block h5 span {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 35px;
    margin-right: 10px;
}

.item_caracteristiques_block p {
    margin-top: 0;
}

.caracteristiques_block_under_img {
    background-color: #f5f4f3;
    border: 1px solid #00000014;
    border-radius: 10px;
    padding: 35px 25px;
    position: relative;
    margin-top: -35px;
}

.caracteristiques_block_under_img h5 {
    font-family: "PoppinsRegular";
    font-size: 16px;
    color: var(---chery-dark);
    margin: 10px 0;
    display: inline-flex;
    align-items: center;
    width: 100%;
    line-height: 1.3;
}

.caracteristiques_block_under_img h5 span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    margin-right: 10px;
}

.section_block_with_caracter figure {
    max-width: 480px;
}
@media (max-width: 1199px) {
    .item_caracteristiques_block {
        width: 47%;
    }
}
@media (max-width: 991px) {
    .vehicle-card-horizontal .card-content {
        padding: 25px 0 0 !important;
    }

    .vehicle-card-horizontal,
    .vehicle-card-bottom {
        flex-direction: column;
    }

    .vehicle-card-horizontal .card-content,
    .vehicle-card-horizontal .card-image,
    .vehicle-card-bottom .card-content,
    .vehicle-card-bottom .card-image {
        flex: none;
        width: 100%;
    }

    .vehicle-card-horizontal .card-image,
    .vehicle-card-bottom .card-image {
        min-height: 250px;
    }

    .vehicle-card-horizontal {
        flex-direction: column-reverse;
    }

    .card-title {
        font-size: 32px;
    }

    .card-preview {
        font-size: 24px;
    }
}

@media (max-width: 575px) {
    .card-title {
        font-size: 25px;
        margin-bottom: 10px;
    }

    .card-preview {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .card-description {
        margin-bottom: 20px;
        margin-top: 20px;
    }

    .caracteristiques_block {
        flex-direction: column;
    }

    .item_caracteristiques_block {
        width: 100%;
    }

    .caracteristiques_block_under_img {
        padding: 30px 15px;
    }
}

/* Section Contact */

.contact_form_section {
    background-color: var(--white-color);
    padding: 30px;
    position: relative;
    margin-top: -80px;
    border-radius: 30px;
    border: 1px solid #00000014;
    z-index: 99;
}

.form_contact {
    position: relative;
}

.contact_form_section .form-control,
.contact_form_section .form-check-input {
    border: 1px solid #00000029;
    background-color: #f5f4f3;
}

.contact_form_section .form-control {
    height: 45px;
}

.contact_form_section textarea.form-control {
    height: 200px;
    resize: none;
}

.contact_form_section .check {
    display: flex;
    gap: 40px;
}

.contact_form_section .submit_btn {
    font-family: "PoppinsSemiBold";
    font-size: 16px;
    background-color: var(--chery-color);
    color: #ffffff;
    padding: 11px 21px;
    width: 100%;
}

.contact_form_section .submit_btn:hover {
    color: var(--chery-color);
    background-color: var(--bs-btn-hover-bg);
    border-color: var(--chery-color);
}

.contact_form_section label {
    font-family: "PoppinsSemiBold";
    padding-bottom: 12px;
    font-size: 14px;
    color: var(--chery-gray);
}

.form-check-label {
    font-family: "PoppinsRegular" !important;
}

.contact_form_section h2 {
    font-size: 14px;
}

.form-check-input:checked {
    background-color: #a4896c;
}

.form-check {
    position: relative;
}

.service_chekbox .form-check {
    display: inline-block;
    width: 45%;
}

samp.error {
    position: absolute;
    bottom: -20px;
    color: #df0c0c;
    font-size: 12px;
}

.form-check samp.error {
    bottom: -2px;
}

@media (max-width: 991px) {
    .contact_form_section {
        margin-top: 0;
        margin: 60px 0;
    }

    .contact_form_section .form-check-label {
        font-size: 12px !important;
    }
}

/*@media (max-width: 767px){
  .contact_form_section .form-control,
  .contact_form_section .form-check-input{
    background-color:#ffffff ;
  }
  .contact_form_section{
    background-color: #f5f4f3;
  }
}*/
@media (max-width: 575px) {
    .contact_form_section {
        padding: 30px 15px;
    }

    .contact_form_section .check {
        gap: 24px;
    }

    .icon-box {
        min-width: 50px;
        width: 50px;
        height: 50px;
    }

    .service_chekbox .form-check {
        width: 49%;
    }
}

/*.contact-form-section {
    padding: 30px 0 100px;
    max-width: 800px;
    margin: 0 auto;
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
    margin-bottom: 8px;
}

.form-control,
.form-select {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 14px;
    color: var(--text-dark);
    background-color: #fff;
    height: auto;
}

.form-control::placeholder,
.form-select {
    color: var(--text-muted);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--chery-color);
    box-shadow: 0 0 0 3px rgba(230, 0, 18, 0.1);
}

.form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%236c757d' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-size: 14px;
    padding-right: 40px;
}

.phone-input-group {
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.phone-input-group:focus-within {
    border-color: var(--chery-color);
    box-shadow: 0 0 0 3px rgba(230, 0, 18, 0.1);
}

.phone-prefix {
    display: flex;
    align-items: center;
    padding: 14px 12px;
    background-color: #fff;
    border-right: 1px solid var(--border-color);
    gap: 6px;
    color: var(--text-dark);
    font-size: 14px;
    white-space: nowrap;
    max-width: 160px;
}

.phone-prefix i {
    color: var(--text-muted);
}

.phone-prefix select {
    border: none;
    background: transparent;
    font-size: 14px;
    color: var(--text-dark);
    padding: 0;
    cursor: pointer;
    outline: none;
}

.phone-input-group input {
    flex: 1;
    border: none;
    padding: 14px 16px;
    font-size: 14px;
    outline: none;
}

.phone-input-group input::placeholder {
    color: var(--text-muted);
}
textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.form-check-custom {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    position: relative;
}

.form-check-custom input[type="checkbox"] {
    opacity: 0;
    width: 0;
}

.form-check-custom .checkmark {
    width: 24px;
    height: 24px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    transform: rotate(0deg) !important;
}

.form-check-custom input[type="checkbox"]:checked ~ .checkmark {
    background-color: var(--chery-color);
    border-color: var(--chery-color);
}

.form-check-custom .checkmark i {
    color: #fff;
    font-size: 22px;
    line-height: 1;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.form-check-custom input[type="checkbox"]:checked ~ .checkmark i {
    opacity: 1;
}

.form-check-custom label {
    font-size: 14px;
    color: var(--text-dark);
    cursor: pointer;
    margin: 0;
}
.btn-submit {
    background-color: var(--chery-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 32px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #c4000f;
    color: #fff;
    transform: translateY(-2px);
}

.btn-submit i {
    font-size: 18px;
    transform: rotate(-45deg);
}

.form-row {
    margin-bottom: 20px;
    position: relative;
}
samp.error{
    position: absolute;
    bottom: -20px;
    color: var(--chery-color);
    font-size: 12px;
}

@media (max-width: 576px) {
    .contact-form-section {
        padding: 40px 20px;
    }
}*/

/* Tabs Navigation Caractéristiques */

.nav_tabs_caracteristiques {
    max-width: 800px;
    border: 1px solid #00000014;
    border-radius: 10px;
    margin-top: 50px;
}

.nav_tabs_caracteristiques .nav-tabs {
    background-color: #f5f4f3;
    border-bottom: 1px solid #00000014;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.nav_tabs_caracteristiques .nav-link {
    font-size: 16px;
    color: var(--chery-gray);
}

.nav_tabs_caracteristiques .tab-content {
    padding: 30px 20px;
}

.nav_tabs_caracteristiques .tab-content p:last-child {
    margin-bottom: 0;
}

/* Hero Section */

.hero-section {
    padding: 3rem 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.hero-section p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Desktop Comparison Table */

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    padding-left: 1.5rem;
    width: 200px;
    color: var(--text-muted);
    font-weight: 400;
}

.comparison-table thead th {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
}

.version-header {
    padding: 1rem;
}

.version-header img {
    max-width: 180px;
    height: auto;
    margin-bottom: 1rem;
}

.version-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.version-header .price {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Section Headers */
.section-header {
    background-color: #eeeeee;
}

.section-header td {
    font-family: "mmcMedium";
    color: var(--black-color);
    font-size: 1.25rem;
    padding: 1rem 1.5rem !important;
    text-align: left !important;
}

.valeur {
    color: var(--black-color);
}

/* Check/Cross Icons */
.check-icon {
    color: var(--chery-color);
    font-size: 1.25rem;
}

.cross-icon {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Mobile Cards */
.mobile-version-card {
    border: none;
    margin-bottom: 2rem;
}

.mobile-version-card .card-header {
    background: white;
    border: none;
    text-align: center;
    padding: 2rem 1rem;
}

.mobile-version-card .card-header img {
    max-width: 200px;
    height: auto;
    margin-bottom: 1rem;
}

.mobile-version-card .card-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.mobile-version-card .card-header .price {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.mobile-section-header {
    background-color: var(--light-gray);
    padding: 0.75rem 1rem;
    font-weight: 700;
    font-size: 1.1rem;
    border-left: 3px solid var(--chery-color);
}

.mobile-spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

.mobile-spec-row .spec-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.mobile-spec-row .spec-value {
    font-weight: 500;
    text-align: right;
}

/* Responsive */
.desktop-view {
    display: block;
}

.mobile-view {
    display: none;
}

@media (max-width: 991.98px) {
    .desktop-view {
        display: none;
    }

    .mobile-view {
        display: block;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .tabs-nav .nav-link {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

/* Gallery Modèle */

.model_selected {
    padding: 50px 0 0;
    background-color: var(--white-color);
    border-bottom-left-radius: 35px;
    border-bottom-right-radius: 35px;
}

.gallery-section {
    background-color: var(--white-color);
    padding-bottom: 60px;
}

.gallery-grid {
    display: grid;
    /*grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);*/
    gap: 8px;
    margin: 0 auto;
    aspect-ratio: 21/10;
    position: relative;
}

.gallery-grid .gallery-item:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.gallery-grid .gallery-item:nth-child(2) {
    grid-column: 3;
}

.gallery-grid .gallery-item:nth-child(3) {
    grid-column: 4;
}

.gallery-grid .gallery-item:nth-child(4) {
    grid-column: 3;
    grid-row: 2 / 2;
}

.gallery-grid .gallery-item:nth-child(5) {
    grid-column: 4;
    grid-row: 2 / 2;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 10px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
    pointer-events: none;
}

.gallery-item:hover::after {
    background: rgba(0, 0, 0, 0.2);
}

.lg-outer {
    z-index: 99999;
}

.lg-backdrop {
    z-index: 9999;
}

/* Last item with button overlay */

.gallery-item.has-button {
    position: relative;
}

.view-all-btn {
    font-family: "PoppinsSemiBold";
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--chery-dark);
    border: none;
    padding: 12px 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    border-radius: 8px;
}

.view-all-btn:hover {
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.view-all-btn svg {
    width: 16px;
    height: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-grid {
        gap: 4px;
    }

    .view-all-btn {
        padding: 10px;
        font-size: 0;
        bottom: 10px;
        right: 10px;
        gap: 0;
    }
}

@media (max-width: 575px) {
    .gallery-item {
        display: none;
    }

    .gallery-grid .gallery-item:nth-child(1) {
        display: block;
    }

    .gallery-grid {
        aspect-ratio: 14 / 10;
    }
}

/* lightGallery customization */

.lg-backdrop {
    background-color: rgba(0, 0, 0, 0.95);
}

.lg-toolbar .lg-icon,
.lg-actions .lg-next,
.lg-actions .lg-prev {
    color: #fff;
}

.lg-toolbar .lg-icon:hover,
.lg-actions .lg-next:hover,
.lg-actions .lg-prev:hover {
    color: var(--chery-color);
}

.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
    border-color: var(--chery-color);
}

.lg-progress-bar .lg-progress {
    background-color: var(--chery-color);
}

/* Switcher pages */

@media (min-width: 992px) {
    .switcher {
        height: auto;
        min-height: auto;
    }

    .switcher_home .slide-content {
        justify-content: center;
        padding-bottom: 0;
        padding-top: 70px;
    }

    .switcher .slide-item {
        height: auto;
        min-height: 750px;
    }

    .switcher .slide-title {
        font-family: "PoppinsSemiBold";
        font-size: 40px;
        font-weight: 600;
        max-width: 630px;
    }
}

/*.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%),
                url('https://images.unsplash.com/photo-1544636331-e26879cd4d9b?w=1920&q=80') center center / cover no-repeat;
    color: white;
}

.hero-content {
    max-width: 650px;
    padding: 2rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-accent {
    width: 60px;
    height: 4px;
    background-color: var(--chery-color);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-hero-primary {
    background-color: white;
    color: var(--chery-dark);
    border: none;
    padding: 0.875rem 2rem;
    font-weight: 500;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    background-color: var(--chery-color);
    color: white;
    transform: translateY(-2px);
}

.btn-hero-outline {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.5);
    padding: 0.875rem 2rem;
    font-weight: 500;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
    border-color: white;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

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

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

/*  */

.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.hero-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.badge-tag {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid var(--chery-color);
    color: var(--chery-color);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 20px;
    width: fit-content;
}

.hero-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.red-line {
    width: 40px;
    height: 3px;
    background: var(--chery-color);
    margin-bottom: 20px;
}

.hero-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Feature Cards */

.feature-card {
    background: #f8f8f8;
    padding: 20px;
    margin-bottom: 12px;
    border-left: 0;
}

.feature-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--black-color);
}

.feature-card h4::before {
    content: "";
    width: 12px;
    height: 12px;
    background: var(--chery-color);
    clip-path: polygon(0 0, 100% 0%, 0 100%, 0 100%);
}

.feature-card p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* CTA Buttons */

.cta-buttons {
    display: flex;
    gap: 16px;
    margin-top: 30px;
}

.btn-reserve {
    background: #000;
    color: #fff;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-reserve:hover {
    background: #333;
    color: #fff;
}

.btn-contact {
    background: transparent;
    color: #000;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: var(--light-bg);
}

/* Grid Sections */

.grid-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.grid-image {
    min-height: 450px;
    background-size: cover;
    background-position: center;
}

.grid-image.interior-1 {
    background-image: url("https://images.unsplash.com/photo-1583121274602-3e2820c69888?w=800");
}

.grid-image.exterior-1 {
    background-image: url("https://images.unsplash.com/photo-1544636331-e26879cd4d9b?w=800");
}

.grid-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.grid-content.dark {
    background: var(--dark-bg);
    color: #fff;
}

.grid-content.dark .section-description {
    color: rgba(255, 255, 255, 0.7);
}

.grid-content.light {
    background: #000;
    color: #fff;
}

.grid-content.light .section-description {
    color: rgba(255, 255, 255, 0.7);
}

.section-description {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

@media (max-width: 991px) {

    .hero-section,
    .grid-section {
        grid-template-columns: 1fr;
    }

    .hero-content,
    .grid-content {
        padding: 40px 24px;
    }

    .hero-image,
    .grid-image {
        min-height: 300px;
    }

    .tabs-nav .nav-link {
        padding: 12px 16px;
        font-size: 13px;
    }

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

    .grid-section.reverse-mobile {
        display: flex;
        flex-direction: column-reverse;
    }
}

/* Switcher Pages without image */

/*.no_switcher{
    background-color: var(--white-color);
    padding-top: 120px;
}*/
.switcher_without_bg {
    background-color: var(--white-color);
}
.switcher_without_bg .slide-image-wrapper {
    display: none;
}
.switcher_without_bg.switcher_home .slide-overlay {
    display: none;
}

.switcher_without_bg.switcher .slide-title,
.switcher_without_bg.switcher_home .slide-description {
    color: var(--chery-dark);
}

.switcher_without_image {
    background-color: var(--white-color);
    padding: 140px 0 100px;
}

@media (max-width: 991px) {
    .switcher_without_bg.switcher_home .slide-image-wrapper {
        height: 100px;
    }

    .switcher_without_bg.switcher_home .slide-content {
        background-color: var(--white-color);
    }

    .switcher_without_image {
        padding: 120px 0 60px;
    }
}

@media (max-width: 575px) {
    .switcher_without_image {
        padding: 100px 0 40px;
    }
}

/* Slider Modèle */

.slider-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slide-item {
    position: relative;
    width: 100%;
    /* border-radius: 10px; */
    overflow: hidden;
}

.slide-image {
    width: 100% !important;
    height: 50vh;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    bottom: 80px;
    left: 50px;
    max-width: 550px;
    color: white;
    z-index: 10;
}

.slide-content::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -30px;
    right: -30px;
    bottom: -20px;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0.3) 100%);
    border-radius: 4px;
    z-index: -1;
}

.slide-text {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
}

/* .owl-nav {
    margin-top: 20px;
    display: flex;
    justify-content: end;
}

.owl-nav button.owl-prev,
.owl-nav button.owl-next {
    width: 50px;
    height: 50px;
    background: white !important;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.owl-nav button.owl-prev {
    margin-right: 10px;
}
.owl-nav button.owl-next {
    margin-left: 10px;
}
.owl-nav button.owl-prev:hover,
.owl-nav button.owl-next:hover {
    background: var(--chery-color) !important;
}

.owl-nav button.owl-prev:hover span,
.owl-nav button.owl-next:hover span {
    color: white;
}

.owl-nav button span {
    font-family: math;
    font-size: 30px;
    color: #1a1a1a;
    line-height: 1;
}
.owl-dots {
    position: absolute;
    bottom: 30px;
    left: 50px;
    display: flex;
    gap: 8px;
}

.owl-dots .owl-dot {
    width: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.4) !important;
    border: none;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.owl-dots .owl-dot.active {
    background: white !important;
}

.owl-dots .owl-dot span {
    display: none;
} */



@media (max-width: 767px) {
    .slide-item {
        display: flex;
        flex-direction: column;
    }

    .slide-image {
        height: 55vh;
        object-position: center;
    }

    .slide-content {
        position: relative;
        bottom: auto;
        left: auto;
        max-width: 100%;
        background: #c9c6bf;
        color: #1a1a1a;
        padding: 2rem 1.5rem;
        padding-bottom: 5rem;
    }

    .slide-content::before {
        display: none;
    }

    .slide-text {
        font-size: 1.125rem;
        font-weight: 500;
        line-height: 1.5;
    }

    /* .media_simple.owl-carousel .owl-stage {
        padding-left: 0 !important;
    }
    .owl-nav button.owl-prev,
    .owl-nav button.owl-next {
        width: 44px;
        height: 44px;
        background: white !important;
        border: 1px solid #e0e0e0 !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    .owl-nav button.owl-prev {
        margin-right: 6px;
    }
    .owl-nav button.owl-next {
        margin-left: 6px;
    }

    .owl-nav button span {
        font-size: 1.25rem;
        color: #1a1a1a;
    }
    .owl-dots {
        position: absolute;
        bottom: 20px;
        left: 1.5rem;
        gap: 6px;
    }

    .owl-dots .owl-dot {
        width: 30px;
        height: 3px;
        background: rgba(0, 0, 0, 0.2) !important;
    }

    .owl-dots .owl-dot.active {
        background: var(--chery-color) !important;
    } */
}

@media (max-width: 480px) {
    .slide-image {
        height: 50vh;
    }

    .slide-text {
        font-size: 1rem;
    }
}

/* blog section */

.blog-section {
    background-color: var(--white-color);
    padding: 60px 0;
}

.titre_block_pages {
    margin-bottom: 60px;
}

.titre_block_pages h2 {
    font-family: "mmcBold";
}

.blog-badge {
    font-family: "mmcMedium";
    display: inline-block;
    padding: 8px 24px;
    border: 1px solid var(--chery-color);
    border-radius: 50px;
    color: var(--chery-color);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.blog-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--chery-dark);
    margin-bottom: 16px;
    font-family: "mmcBold";
}

.blog-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--chery-color);
    margin: 20px auto 0;
}

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

.blog-card {
    background-color: #f5f4f3;
    /* border-radius: 10px; */
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease;
    border: 1px solid #00000014;
    padding: 20px;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    /* border-radius: 10px; */
}

.blog-card-body {
    padding: 0;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0;
    margin: 15px 0;
}

.blog-card-category {
    background-color: var(--chery-color);
    font-family: "PoppinsSemiBold";
    color: var(--white-color);
    padding: 8px 25px;
    font-size: 13px;
    font-weight: 500;
    position: relative;
    /* border-radius: 30px; */
}

.blog-card-category::after {
    content: "";
    position: absolute;
    background-color: var(--white-color);
}

.blog-card-time {
    font-size: 13px;
}

.blog-card-title {
    font-family: "PoppinsSemiBold";
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.blog-card-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.content_modeles .blog-card-description {
    color: var(--black-color);
}

.blog-card-link {
    font-family: "PoppinsSemiBold";
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
    border: 1px solid #00000014;
    padding: 6px 20px;
    /* border-radius: 30px; */
    background-color: var(--white-color);
    color: var(--chery-dark);
}

.blog-card-link:hover {
    color: var(--chery-color);
}

.blog-card-link i {
    font-size: 12px;
}

.btn-voir-tout {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--chery-color);
    font-family: "PoppinsSemiBold";
    color: var(--white-color);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    /* border-radius: 6px; */
}

/*.btn-voir-tout:hover {
    background-color: var(--chery-color);
    border-color: var(--chery-color);
    color: #fff;
}*/

.btn-voir-tout i {
    font-size: 12px;
}

@media (max-width: 991px) {
    .blog-title {
        font-size: 32px;
    }

    .blog-card-image {
        height: 220px;
    }
}

@media (max-width: 767px) {
    .blog-title {
        font-size: 28px;
    }

    .blog-card {
        margin-bottom: 24px;
    }

    .blog-card-title {
        font-size: 18px;
        white-space: normal;
    }
}

/* section modèles */

.section_modeles {
    padding: 60px 0;
    background-color: var(--white-color);
}

.text_item_models h4 {
    margin: 20px 0 0;
}

.text_item_models h4,
.text_item_models ul {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
}

.item_models {
    padding: 0 7px;
}

.item_models img {
    border-radius: 20px;
}

.text_item_models .nom_model {
    font-family: "PoppinsSemiBold";
    font-size: 18px;
    text-transform: uppercase;
}

.text_item_models .prix_model {
    font-family: "PoppinsMedium";
    font-size: 14px;
    color: var(--white-color);
    text-transform: uppercase;
    background-color: #b33519d9;
    border-radius: 10px;
    border-top-left-radius: 80px;
    padding: 7px 15px 7px 30px;
}

.text_item_models .prix_model samp {
    font-family: "PoppinsLight";
}

.text_item_models ul {
    margin-bottom: 25px;
}

.text_item_models ul li {
    font-family: "PoppinsRegular";
    font-size: 13px;
}

.btn_mitsubishi.btn_item_models {
    justify-content: center;
    width: 100%;
    border: 1px solid #00000080;
}

@media (max-width: 575px) {
    .text_item_models .nom_model {
        font-size: 15px;
    }

    .text_item_models .prix_model {
        font-size: 12px;
        padding: 7px 10px 7px 20px;
    }

    .text_item_models ul li {
        font-size: 11px;
    }
}

/* Pagination */

.pagination {
    width: 100%;
    justify-content: center;
    align-items: end;
    margin-top: 30px;
}

.pagination li {
    margin: 0 14px;
    line-height: 1;
    position: relative;
    top: 0;
}

.pagination li a {
    font-family: "PoppinsRegular";
    font-size: 18px;
    color: var(--black-color);
}

.pagination li a svg {
    width: 20px;
}

.pagination li.arrows_prev a svg {
    transform: rotate(180deg);
}

/*.pagination li.active {
  border-bottom: 2px solid #091235;
}*/
.pagination li.active a {
    font-family: "PoppinsSemiBold";
    color: var(--chery-color);
    pointer-events: none;
}

.pagination li a:hover {
    font-family: "PoppinsSemiBold";
}

.arrows_nav {
    top: -2px;
}

@media (max-width: 575px) {
    .pagination {
        margin-top: 0;
    }
}

/* Actualités & Conseils */

.text_item_actualites_home p {
    margin: 20px 0;
    line-height: 25px;
}

.text_item_actualites_home label {
    display: block;
    margin-bottom: 15px;
    font-family: "PoppinsSemiBold";
    font-size: 10px;
    color: var(--primary-color);
    text-transform: uppercase;
}

/* Actualité selected */

.content_actu_selected {
    padding: 60px 0;
    background-color: var(--white-color);
    border-radius: 30px;
    margin: 50px 0;
}

.section_breadcrumbs {
    margin-bottom: 50px;
}

.section_breadcrumbs ul li {
    display: inline-block;
}

.section_breadcrumbs ul li a {
    font-family: "PoppinsRegular";
    font-size: 18px;
    color: var(--light-grey);
}

.section_breadcrumbs ul li span {
    color: var(--light-grey);
    padding: 0 5px;
}

.section_breadcrumbs ul li a:hover,
.section_breadcrumbs ul li:last-child a {
    font-family: "PoppinsSemiBold";
}

.section_breadcrumbs ul li:last-child a {
    pointer-events: none;
}

.actu_selected label {
    font-family: "PoppinsSemiBold";
    font-size: 16px;
    color: var(--primary-color);
    margin: 0;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.actu_selected label img {
    margin-right: 15px;
    max-width: 30px;
}

.actu_selected h2 {
    font-family: "PoppinsSemiBold";
    font-size: 25px;
    color: var(--black-color);
    margin-bottom: 30px;
    padding: 10px 0 10px 30px;
    position: relative;
}

.actu_selected h2:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: var(--black-color);
    width: 15px;
    height: 100%;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

.img_actu_selected {
    margin: 30px 0;
}

.actu_selected p {
    margin-bottom: 25px;
}

.desc_text_actu_selected {
    margin-top: 30px;
}

@media (max-width: 991px) {
    .section_breadcrumbs ul li {
        line-height: 1;
    }

    .section_breadcrumbs ul li a {
        font-size: 15px;
    }

    .actu_selected h2 {
        font-size: 21px;
    }
}

@media (max-width: 575px) {

    .section_breadcrumbs ul li:nth-child(3) span,
    .section_breadcrumbs ul li:last-child {
        display: none;
    }

    .actu_selected h2 {
        font-size: 18px;
        padding: 6px 0 6px 20px;
    }

    .actu_selected h2:before {
        width: 10px;
    }

    .actu_selected p {
        font-size: 16px;
        line-height: 30px;
    }
}

/* List Models */

.model_card.blog-card {
    background-color: var(--white-color);
    border: 1px solid #dddddd;
}

.model_card .blog-card-category {
    background-color: var(--black-color);
    font-family: "mmcBold";
}

.model_card .blog-card-category span {
    display: block;
    font-family: "mmcRegular";
}

.model_card .blog-card-title {
    color: var(--black-color);
}

.model_card .blog-card-link {
    color: var(--black-color);
}

.model_card .blog-card-link i {
    color: var(--chery-color);
}

.model_card .blog-card-image {
    height: 350px;
    background: #f8f8f8;
}

.model_card ul {
    margin-bottom: 20px;
}

.model_card ul li {
    display: inline-block;
    padding: 6px 13px;
    border: 1px solid var(--chery-gray);
    color: var(--black-color);
    font-size: 14px;
    margin-right: 8px;
    margin-bottom: 8px;
    border-radius: 20px;
    line-height: 1;
}

/*  */

.block_cta_card {
    margin: 60px 0;
}

.cta-card {
    padding: 0;
}

.cta-card__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.cta-card__icon i {
    font-size: 42px;
    color: #000000;
    stroke-width: 1;
}

.cta-card__line {
    width: 60px;
    height: 3px;
    background-color: var(--chery-color);
    margin-bottom: 20px;
}

.cta-card__title {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    line-height: 1.4;
    margin-bottom: 12px;
}

.cta-card__description {
    font-size: 14px;
    font-weight: 400;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 16px;
}

.cta-card__link {
    font-size: 14px;
    font-weight: 600;
    color: var(--black-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

.cta-card__link:hover {
    color: var(--chery-color);
    gap: 10px;
}

.cta-card__link i {
    font-size: 12px;
    color: var(--chery-color);
}

/* Desc Modele Selected */

.price-tag {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--chery-dark);
    color: white;
    padding: 12px 30px 12px 80px;
    text-align: left;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 35% 100%);
    min-width: 200px;
}

.price-tag-label {
    font-size: 0.85rem;
    font-weight: 400;
    margin-bottom: 2px;
}

.price-tag-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.section-title {
    font-family: "PoppinsSemiBold";
    font-size: 2.5rem;
    color: var(--chery-dark);
    margin-bottom: 20px;
}

.section-description {
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 1000px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--chery-dark);
}

.feature-icon {
    color: var(--chery-color);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.specs-list li {
    font-family: "PoppinsSemiBold";
    font-size: 16px;
    color: var(--chery-dark);
    background-color: #f5f4f3;
    border: 1px solid #00000014;
    border-radius: 10px;
    padding: 10px 20px;
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 10px;
}

.specs-list li span {
    margin-right: 5px;
    width: 25px;
    display: inline-block;
}

@media (max-width: 768px) {
    .text-section {
        padding: 30px 25px;
        padding-top: 100px;
    }

    .price-tag {
        margin-bottom: 20px;
        display: inline-block;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .feature-item {
        font-size: 0.9rem;
    }
}

@media (max-width: 575px) {
    .gallery-section {
        padding-bottom: 40px;
    }

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

    .desc-price-section p {
        font-size: 14px;
    }

    .specs-list li {
        font-size: 14px;
        padding: 8px 15px;
    }

    .nav_tabs_caracteristiques .nav-link {
        font-size: 13px;
    }
}

/* Temoignages */

.temoignages {
    padding: 60px 0;
    background-color: var(--white-color);
    border-radius: 30px;
}

.temoignages .temoignages-title {
    font-size: 40px;
}

.temoignages .temoignages-content {
    font-size: 18px;
    padding: 20px 0;
}

.temoignages .owl-carousel .owl-stage {
    display: flex;
}

.temoignage {
    border: 1px solid #00000014;
    border-radius: 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #fff;
}

.temoignage-content {
    font-family: "PoppinsSemiBold";
    padding: 0 20px 30px 20px;
    flex-grow: 1;
}

.profil {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background-color: #f5f4f3;
    border-top: 1px solid #00000014;
    border-radius: 12px;
}

.profil-image {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: #ddd;
}

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

.profil-name {
    font-family: "PoppinsSemiBold";
    font-size: 15px;
    margin-bottom: 5px;
}

.profil-title {
    font-size: 14px;
    margin: 0;
    color: #666;
}

.stars {
    display: flex;
    gap: 4px;
    padding: 20px;
}

.stars svg {
    width: 20px;
    height: 20px;
}

.star-filled {
    fill: #ccaa89;
}

.star-empty {
    fill: var(--chery-gray);
}

@media (max-width: 991px) {
    .temoignages .temoignage .temoignage-content {
        font-size: 14px;
    }

    .profil-title {
        font-size: 13px;
    }

    .temoignages .profil {
        padding: 20px 0px 10px 6px;
    }

    .temoignages .profil-name {
        font-size: 14px;
    }

    .temoignages .temoignages-title {
        font-size: 36px;
    }

    .temoignages .temoignages-content {
        font-size: 16px;
    }
}

/* Owl Carousel Customization */

/* .owl-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background-color: #d1d5db;
    border-radius: 50%;
    display: block;
    transition: all 0.3s ease;
}

.owl-dots .owl-dot.active span {
    background-color: #000000;
}

.testimonial-section .owl-nav {
    display: none;
} */

/* Responsive */
@media (max-width: 768px) {
    .testimonial-section {
        padding: 40px 0;
    }

    .testimonial-quote {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .stars svg {
        width: 20px;
        height: 20px;
    }

    .testimonial-avatar {
        width: 60px;
        height: 60px;
    }
}

/* Réservez un essai */

.form_drive_test {
    background: white;
    max-width: 100%;
    width: 100%;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.step-indicator {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    text-align: center;
    color: var(--black-color);
}

.progress-bar {
    height: 4px;
    background-color: #e0e0e0;
    border-radius: 2px;
    margin-bottom: 40px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: var(--chery-color);
    transition: width 0.3s ease;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    position: relative;
}

.badge {
    width: 80px;
    height: 80px;
    border: 4px solid var(--chery-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form_drive_test .checkmark {
    width: 40px;
    height: 24px;
    border-left: 5px solid var(--chery-color);
    border-bottom: 5px solid var(--chery-color);
    transform: rotate(-45deg);
    margin-top: -8px;
}

.form_drive_test h1 {
    font-family: "PoppinsSemiBold";
    font-size: 25px;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.3;
    color: var(--chery-dark);
}

.form_drive_test p {
    text-align: center;
    color: var(--chery-dark);
    margin-bottom: 30px;
    line-height: 1.5;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
    padding: 20px 0;
}

.info-item {
    text-align: center;
}

.info-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.info-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--black-color);
}

.divider {
    width: 1px;
    background-color: #e0e0e0;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form_drive_test label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--black-color);
}

.form_drive_test input,
.form_drive_test select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s;
    background-color: white;
}

input:focus,
select:focus {
    outline: none;
    border-color: var(--chery-color);
}

.form_drive_test select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 45px;
}

.phone-input {
    display: flex;
    gap: 10px;
    position: relative;
}

.country-code {
    width: 100px !important;
    flex-shrink: 0;
}

.phone-number {
    flex: 1;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.radio-option {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.radio-option input[type="radio"] {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    margin-left: 15px;
    cursor: pointer;
    accent-color: var(--chery-color);
}

.radio-option input[type="radio"]:first-child {
    margin-left: 0;
}

.radio-option label {
    margin: 0;
    font-weight: 500;
    cursor: pointer;
    color: var(--chery-dark);
}

.button-group {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.form_drive_test button {
    flex: 1;
    padding: 16px 24px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.btn-secondary {
    background-color: #ddd;
    color: var(--chery-dark);
}

.btn-secondary:hover {
    background-color: #ccc;
}

.btn-primary {
    background-color: var(--chery-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary:hover {
    background-color: var(--chery-color);
}

.btn-full {
    width: 100%;
}

.arrow {
    font-size: 18px;
}

.footer_form {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #999;
}

.step {
    display: none;
}

.step.active {
    display: block;
}

.form-error {
    color: #e31122;
    font-size: 12px;
    display: block;
    position: absolute;
    bottom: -25px;
}

@media (max-width: 575px) {
    .form_drive_test {
        padding: 20px;
    }

    .form_drive_test h1 {
        font-size: 20px;
    }
}

/* Reseau */

.reseau-home-section {
    background: var(--white-color);
    border-radius: 30px;
    padding: 60px 0;
    margin: 60px 0;
}

.reseau-section-form {
    padding-bottom: 30px;
}

.main-title {
    font-family: "PoppinsSemiBold";
    font-size: 40px;
    max-width: 600px;
    margin: 0 auto 40px;
    color: var(--black-color);
}

.reseau-home-section #map {
    height: 500px;
}

.reseau-home-section .btn,
.reseau-home-section .form-select {
    border-radius: 6px;
    padding: 15px 10px;
    background-color: #f5f4f3;
    border: 1px solid #00000029;
    color: #909090;
}

.reseau-home-section .form-label {
    font-family: "PoppinsSemiBold";
    color: var(--black-color);
}

.custom-popup {
    background-color: var(--chery-gray);
    border-radius: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    overflow: hidden;
    padding: 0;
    position: relative;
    transition: all 0.3s ease;
}

.custom-popup .popup-title {
    color: var(--white-color);
    padding: 0 20px;
    margin: 20px 0;
}

.popup-adresse,
.popup-services,
.popup-telephone {
    padding: 0 20px;
}

.custom-popup .popup-list-marques span {
    background-color: var(--chery-color-hover) !important;
    border-radius: 0.25rem;
    color: var(--white-color);
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
}

.custom-popup .popup-list-marques a,
.popup-telephone a {
    color: var(--white);
    text-decoration: none;
}

.custom-popup .popup-adresse,
.custom-popup .popup-telephone,
.custom-popup .popup-ville {
    color: var(--white-color);
}

.custom-popup .popup-ville {
    background-color: var(--chery-color);
    color: #fff;
    padding: 8px 50px 8px 15px;
    font-size: 13px;
    font-weight: 500;
    position: relative;
    display: inline-block;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 80px;
}

.custom-popup .popup-ville img {
    margin-right: 15px;
}

.custom-popup .popup-services strong {
    display: block;
    color: var(--white-color);
}

.custom-popup .popup-services span {
    background-color: var(--chery-color-hover);
    border-radius: 0.2rem;
    color: #fff;
    display: inline-block;
    font-size: 0.65rem;
    margin-bottom: 0.2rem;
    margin-right: 0.2rem;
    padding: 0.2rem 0.4rem;
}

.gm-style-iw-chr {
    height: 0 !important;
    position: relative;
}

.gm-style-iw-chr button {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 999999;
}

.gm-style .gm-style-iw-c,
.gm-style .gm-style-iw-tc::after {
    background: #000 !important;
}

.gm-style .gm-style-iw-c {
    border-radius: 0 !important;
    padding: 0 !important;
}

.gm-ui-hover-effect>span {
    background-color: light-dark(#fff, #fff);
}

.gm-style .gm-style-iw-d {
    max-height: 100% !important;
    overflow: auto !important;
}

.content_contact .reseau-home-section {
    background: var(--white-color);
}

.content_contact .main-title {
    color: var(--black-color);
}

/*.content_contact .reseau-home-section .btn, .content_contact .reseau-home-section .form-select {
    background-color: #fff;
    color: #202123;
    border: 1px solid var(--border-color);
}
.content_contact .reseau-home-section .form-label {
    color: var(--black-color);
}*/
@media (max-width: 575px) {
    .reseau-home-section {
        margin-bottom: 60px;
    }
}

/* Loader Overlay */

.loader-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.loader-overlay.active {
    display: flex;
}

.loader-content {
    text-align: center;
}

.loader-content p {
    margin-top: 15px;
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #e0e0e0;
    border-top: 4px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Disable submit button while loading */
.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Blocks styles */

.section {
    margin: 60px 0;
}

/*.section .container {
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: var(--white-color);
    border-radius: 10px;
}*/
.block-page-contenu h3 {
    font-family: "PoppinsSemiBold";
    font-size: 40px;
    color: var(--chery-dark);
    margin-bottom: 25px;
}

.block_white_text .card-title,
.block_white_text p,
.block_white_text .card-category,
.block_white_text ul li,
.block_white_text .blog-title {
    color: var(--white-color);
}

.block_white_text .card-category {
    padding: 0;
    border: 0;
}

.block_model {
    margin: 10px 0 !important;
}

.block_model.section_block_with_img_right .vehicle-card-horizontal .card-image,
.block_model.section_block_with_img_left .vehicle-card-horizontal .card-content {
    margin-left: 4px;
}

.block_model.section_block_with_img_left .vehicle-card-horizontal .card-image,
.block_model.section_block_with_img_right .vehicle-card-horizontal .card-content {
    margin-right: 4px;
}

.content_media_without_slide {
    margin-bottom: 50px;
}

.block_model.slider-section .container {
    padding: 0;
}

.content_media_without_slide .text-center {
    width: 65%;
    margin: auto;
}

.content_media_without_slide .mitsubishi_buttons {
    justify-content: center;
}

.faq .accordion-item:first-of-type>.accordion-header .accordion-button {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.faq .accordion-item:last-of-type>.accordion-header .accordion-button.collapsed,
.accordion-item:last-of-type {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.faq .accordion-button:not(.collapsed) {
    color: #000;
    background-color: transparent;
    box-shadow: unset;
}

.faq .accordion-button {
    padding-left: 0;
    padding-right: 0;
}

.faq .accordion-item {
    border-left: 0;
    border-right: 0;
}

.faq .accordion-button {
    font-family: "PoppinsBold";
    font-size: 22px;
}

.faq .accordion-button:focus {
    box-shadow: unset;
}

.faq .accordion {
    max-width: 1000px;
    margin: auto;
}

.faq .accordion-body ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.faq .accordion-body ul li {
    list-style-type: disc;
}

@media (max-width: 991px) {
    .block-page-contenu h3 {
        font-size: 35px;
        margin-bottom: 30px;
    }

    .block_model.section_block_with_img_right .vehicle-card-horizontal .card-image,
    .block_model.section_block_with_img_left .vehicle-card-horizontal .card-content {
        margin-left: 0;
    }

    .block_model.section_block_with_img_left .vehicle-card-horizontal .card-image,
    .block_model.section_block_with_img_right .vehicle-card-horizontal .card-content {
        margin-right: 0;
    }

    .content_media_without_slide .text-center {
        width: 85%;
    }
}

@media (max-width: 575px) {
    .block-page-contenu h3 {
        font-size: 25px;
        margin-bottom: 30px;
    }

    .faq .accordion-button {
        font-size: 17px;
    }

    .content_media_without_slide .text-center {
        width: 100%;
    }
}

/* Media without slide */


.swiper_without_slide {
    position: relative;
    overflow: hidden;
}

.swiper_wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}

.item_swiper_without_slide {
    flex-shrink: 0;
    width: 33%;
    height: 100%;
    position: relative;
    transition-property: transform;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: width 0.5s ease-in-out;
    transition: width 0.5s ease-in-out;
    padding: 0 10px;
    height: 600px;
}

.item_swiper_without_slide:hover {
    width: 50%;
}

.swiper_wrapper:hover .item_swiper_without_slide:not(:hover) {
    width: 25%;
}

.item_swiper_without_slide div {
    overflow: hidden;
    position: relative;
    display: block;
    border-radius: 10px;
    height: 100%;
}

.item_swiper_without_slide div img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    backface-visibility: visible;
}

@media (max-width: 1199px) {
    .item_swiper_without_slide {
        height: 450px;
    }
}

@media (max-width: 991px) {
    .item_swiper_without_slide {
        height: 400px;
    }
}

@media (max-width: 767px) {
    .swiper_wrapper {
        flex-direction: column;
    }

    .item_swiper_without_slide {
        width: 100%;
        height: 180px;
        padding: 10px 0;
        -webkit-transition: height 0.5s ease-in-out;
        transition: height 0.5s ease-in-out;
    }

    .item_swiper_without_slide:first-child {
        height: 300px;
    }

    .swiper_wrapper:hover .item_swiper_without_slide:not(:hover) {
        width: 100%;
        height: 180px;
    }

    .item_swiper_without_slide:hover {
        width: 100%;
        height: 300px;
    }
}

/* Slider with icons */

.slider_media.owl-carousel .owl-stage-outer,
.slider_media_02.owl-carousel .owl-stage-outer {
    margin-right: -1px;
}

.media_with_icons.owl-carousel .owl-stage,
.media_with_text_img.owl-carousel .owl-stage {
    display: inline-flex;
}

.item_media_with_icons {
    position: relative;
    text-align: center;
    border-radius: 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 100%;
}

.item_media_with_icons picture {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    /* padding: 10px; */
}

.text_item_media_with_icons {
    /* padding: 30px 20px; */
    height: -webkit-fill-available;
}
.media_with_icons.owl-carousel .owl-item img{
    width: auto;
}

.item_media_with_icons h5 {
    font-family: "PoppinsSemiBold";
    font-size: 22px;
    color: var(--chery-dark);
    margin: 30px 0;
}

.item_media_with_icons P {

}

.btn_media_with_icons {
    background-color: #a4896c;
    color: #ffffff;
    padding: 10px 50px;
}

@media (max-width: 767px) {

    .slider_media.owl-carousel .owl-stage,
    .slider_media_02.owl-carousel .owl-stage {
        padding-left: 0 !important;
    }
}

@media (max-width: 575px) {
    .item_media_with_icons h5 {
        font-size: 18px;
        margin: 20px 0;
    }

    .text_item_media_with_icons {
        padding: 20px 14px;
    }
}

/* Slider with text and img */

.item_media_with_text_img {
    position: relative;
    border: 1px solid #0000000a;
    background-color: #f5f4f3;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 20px;
}

.item_media_with_text_img picture {
    overflow: hidden;
    position: relative;
    padding-bottom: 80%;
    display: block;
    border-radius: 10px;
}

.item_media_with_text_img picture img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    backface-visibility: visible;
}

.text_item_media_with_text_img {
    height: -webkit-fill-available;
}

.item_media_with_text_img h5 {
    font-family: "PoppinsSemiBold";
    font-size: 21px;
    color: var(--chery-dark);
    margin: 20px 0 25px;
}

@media (max-width: 767px) {
    .media_with_icons.owl-carousel .owl-stage {
        padding-left: 0 !important;
    }
}

@media (max-width: 575px) {
    .item_media_with_text_img h5 {
        font-size: 18px;
        margin: 20px 0;
    }

    .btn_media_with_text_img {
        width: fit-content;
    }
}

/* Tabs Histoire */

.histoire ul.nav.nav-tabs {
    border: none;
    padding-top: 35px;
}

.histoire .owl-carousel .owl-stage {
    display: flex;
    justify-content: space-evenly;
}

.histoire .owl-carousel .owl-stage-outer {
    padding-bottom: 2px;
}

.histoire .owl-carousel .owl-item {
    display: flex;
    justify-content: center;
}

.histoire .nav-tabs .nav-link {
    font-family: "PoppinsRegular";
    font-size: 18px;
    color: #b0b0b0;
    padding: 15px 30px !important;
    text-align: -webkit-center;
    min-width: 200px;
    border-radius: 45px;
}

.histoire .nav-tabs .nav-item.show .nav-link,
.histoire .nav-tabs .nav-link.active {
    font-family: "PoppinsSemiBold";
    color: #a4896c;
    background-color: #f5f4f3;
    border: 1px solid #00000014;
}

.histoire div#myTabContent {
    border: 1px solid #00000014;
    padding: 62px 27px;
    border-radius: 9px;
}

.histoire .nav-tabs .nav-link span {
    margin-bottom: 5px;
}

.histoire .owl-carousel .owl-item img {
    width: auto;
    display: inline-block;
    filter: grayscale(1);
}

.histoire .nav-tabs .nav-item.show .nav-link img,
.histoire .nav-tabs .nav-link.active img {
    filter: none;
}

/* .histoire .owl-nav {
    margin-top: 0;
}
.histoire .owl-carousel .owl-nav button.owl-next,
.histoire .owl-carousel .owl-nav button.owl-prev,
.histoire .owl-carousel button.owl-dot {
    position: absolute;
    top: 50%;
}
.histoire .owl-carousel .owl-nav button.owl-prev {
    left: -20px;
}
.histoire .owl-carousel .owl-nav button.owl-next {
    right: -20px;
}
.histoire .owl-nav button.owl-prev,
.histoire .owl-nav button.owl-next {
    width: 30px;
    height: 30px;
} */

.histoire .accordion .accordion-item span,
.histoire .nav-tabs .nav-link span {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.histoire .accordion .accordion-item span {
    margin-right: 10px;
    margin-top: -2px;
}

.histoire .accordion-item {
    margin-bottom: 20px;
    border-radius: 10px;
}

.histoire .accordion-item>.accordion-header .accordion-button {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.histoire .accordion-item>.accordion-header .accordion-button.collapsed {
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.histoire button.accordion-button.collapsed,
.accordion-button:not(.collapsed) {
    background-color: #00000014;
    font-weight: bold;
}

.histoire .accordion-button:focus {
    box-shadow: none;
}

.histoire .accordion-button,
.histoire .accordion-button:focus {
    font-family: "PoppinsSemiBold";
    color: var(--chery-dark);
}

@media (max-width: 991px) {
    .histoire .nav-tabs .nav-link {
        font-size: 15px;
        min-width: 160px;
    }
}

@media (max-width: 575px) {
    .histoire .accordion-button {
        background-color: #00000014 !important;
    }

    .histoire .accordion-item:first-of-type>.accordion-header .accordion-button {
        background-color: #00000014;
    }
}

/* Block infos */

.info-cards {
    padding-top: 80px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    border: 1px solid #00000014;
    border-radius: 14px;
    padding: 20px;
}

.icon-box {
    min-width: 55px;
    width: 55px;
    height: 55px;
    border-radius: 12px;
    border: 1px solid #00000014;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-card h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.info-card p {
    margin: 4px 0 0;
    font-size: 14px;
    color: #555;
}

@media (max-width: 1199px) {
    .info-cards {
        padding-top: 50px;
    }

    .info-card {
        margin: 10px 0;
    }
}

/* Block Models */

.reserver_model {
    position: relative;
    border-radius: 30px;
    background-color: var(--white-color);
    padding: 60px 0;
    margin: 60px 0;
}

.reserver-card {
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/*.reserver-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}*/
.reserver-content {
    padding: 35px;
    background-color: #f6f5f3;
    border-radius: 10px;
    position: relative;
    bottom: 30px;
}

.reserver-content h3 {
    font-family: "PoppinsSemiBold";
    font-size: 25px;
    color: var(--chery-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.reserver-content p {
    line-height: 1.6;
}

.reserver-actions {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.reserver-actions .btn {
    font-family: "PoppinsSemiBold";
    font-size: 14px;
    color: var(--white-color);
    padding: 12px 25px;
    border-radius: 8px;
    display: inline-block;
    text-decoration: none;
    border: 0;
}

.reserver-actions .btn svg {
    width: 17px;
    margin-left: 6px;
    margin-top: -2px;
}

.reserver-actions .btn-model {
    background-color: var(--chery-color);
}

.reserver-actions .btn-essai {
    color: var(--chery-dark);
}

@media (min-width: 992px) and (max-width: 1199px) {
    .reserver-content h3 {
        font-size: 21px;
    }

    .reserver-actions .btn {
        font-size: 13px;
    }

    .reserver-content {
        padding: 35px 15px;
    }
}

@media (max-width: 1199px) {
    .reserver-actions {
        gap: 0px;
    }
}

@media (max-width: 991px) {
    .reserver-img {
        display: none;
    }

    .reserver .row {
        display: flex;
        flex-direction: column-reverse;
    }

    .reserver-content {
        margin-top: 25px;
        bottom: 0;
    }
}

@media (max-width: 575px) {
    .reserver-content {
        padding: 35px 20px;
    }

    .reserver-content h3 {
        font-size: 20px;
    }

    .reserver-content p {
        font-size: 14px;
    }

    .reserver-actions {
        gap: 10px;
        flex-direction: column;
    }
}

/* Block text with Background */

.section_block_text_with_bg .container {
    padding-top: 0;
    padding-bottom: 0;
    background-color: transparent;
}

.section_block_text_with_bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* border-radius: 20px; */
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.55) 0%,
            rgba(0, 0, 0, 0.35) 35%,
            rgba(0, 0, 0, 0.1) 60%,
            transparent 80%);
}

.bg_block_image {
    position: relative;
}

.section_block_text_with_bg .content_media_without_slide {
    position: absolute;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 50%;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    padding-left: 80px;
}

.section_block_text_with_bg .content_media_without_slide .mitsubishi_buttons {
    justify-content: start;
}

.section_block_text_with_bg .card-title,
.section_block_text_with_bg p,
.section_block_text_with_bg .card-category {
    color: var(--white-color);
}

.section_block_text_with_bg .card-category {
    border: 1px solid var(--white-color);
}

.bg_block_image img {
    /* border-radius: 20px; */
}

@media (max-width: 1399px) {
    .section_block_text_with_bg .content_media_without_slide {
        padding-left: 60px;
    }

    .section_block_text_with_bg .card-title {
        font-size: 34px;
    }
}

@media (max-width: 1199px) {
    .section_block_text_with_bg .content_media_without_slide {
        padding-left: 40px;
    }

    .section_block_text_with_bg .card-title {
        font-size: 32px;
    }
}

@media (max-width: 991px) {
    .section_block_text_with_bg .content_media_without_slide {
        padding-left: 20px;
        position: relative;
        width: 100%;
        margin-top: 30px;
    }

    .section_block_text_with_bg .overlay {
        display: none;
    }

    .section_block_text_with_bg .card-title,
    .section_block_text_with_bg p {
        color: var(--chery-dark);
    }

    .section_block_text_with_bg .card-category {
        border: 1px solid var(--chery-color);
        color: var(--chery-color);
    }
}

@media (max-width: 575px) {
    .section_block_text_with_bg .content_media_without_slide {
        padding-left: 0;
    }

    .section_block_text_with_bg .card-title {
        font-size: 25px;
    }
}

/* Newsletter */

.input_newsletter {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    margin-bottom: 40px;
    gap: 10px;
}

.input_newsletter input {
    color: var(--chery-gray);
    border: 1px solid #00000029;
    background-color: #f5f4f3;
    height: 50px;
}

.input_newsletter button {
    background-color: var(--chery-color);
    border: 0;
    outline: none;
    font-family: "PoppinsSemiBold";
    font-size: 14px;
    color: var(--white-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    border-radius: 6px;
    padding: 14.5px 30px;
}

.input_newsletter button svg {
    width: 20px;
    margin-left: 12px;
}

@media (max-width: 575px) {
    .input_newsletter {
        flex-direction: column;
    }

    .input_newsletter button {
        width: 100%;
    }
}

/* Form search */

.search-home-section {
    margin: 60px 0;
}

.search-container {
    border: 1px solid #00000014;
    background-color: var(--white-color);
    padding: 30px 20px;
    border-radius: 10px;
    position: relative;
}

.search-home-section .main-title {
    font-size: 25px;
    max-width: 100%;
    margin: 0;
    margin-bottom: 40px;
    line-height: 1.2;
}

.search-home-section .row {
    align-items: end;
}

.search-home-section .btn-primary {
    font-family: "PoppinsSemiBold";
    width: 100%;
    height: 40px;
    font-size: 14px;
    border: 0;
}

.search-home-section .form-select {
    height: 40px;
    background-color: #f5f4f3;
    font-family: "PoppinsRegular";
    font-size: 14px;
}

.search-home-section .row_label label {
    font-family: "PoppinsSemiBold";
    font-size: 14px;
    color: #202020;
    margin-bottom: 10px;
}

.form_recherche_footer_right {
    display: flex;
    justify-content: end;
    gap: 15px;
}

.form_recherche_footer_right a {
    font-family: "PoppinsSemiBold";
    font-size: 12px;
    color: #202020;
}

.search-home-section .form-check-label {
    font-size: 14px;
}

@media (max-width: 991px) {

    .search-home-section .row_label,
    .search-home-section .form-check {
        margin-bottom: 20px;
    }
}

@media (max-width: 575px) {
    .search-home-section .main-title {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .form_recherche_footer_right {
        justify-content: center;
    }
}

/*  Popup cookies  */

.popup_leprojet_cookies {
    position: fixed;
    bottom: 0;
    left: auto;
    padding: 40px 60px 50px;
    background-color: rgba(0, 0, 0, 0.85);
    color: #fff;
    z-index: 1999;
    display: none;
    width: 100%;
}

.popup_leprojet_cookies p {
    line-height: 1.8;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}

.jaccepte_conditions {
    background: #8e2765;
    border: 2px solid transparent;
    color: #fff;
    display: inline-block;
    font-family: "MarkPro";
    font-weight: 500;
    padding: 5px 10px;
    font-size: 18px;
    margin: 5px 0;
}

.popup_leprojet_cookies .cookies-btns .btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    transition:
        color 0.15s ease-in-out,
        background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out,
        box-shadow 0.15s ease-in-out;
    margin: 20px 16px 0 0;
    font-size: 18px;
    line-height: 1;
    padding: 14px 24px 14px 24px;
    border: 1px solid #fff;
    font-weight: 400;
    color: #fff;
    border-radius: 0px;
}

.popup_leprojet_cookies .btn::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    will-change: width, background-color;
    -webkit-transition:
        background-color 0.4s ease-out,
        width 0.4s ease-out;
    transition:
        background-color 0.4s ease-out,
        width 0.4s ease-out;
}

@media (max-width: 575px) {
    .popup_leprojet_cookies {
        padding: 40px 20px;
    }
}

/* ADD BLOCK */

@keyframes slideActive {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

section .swiper-pagination {
    position: absolute;
    width: auto;
}

section .swiper-pagination .swiper-pagination-bullet {
    width: 0.6rem;
    height: 0.02rem;
    border-radius: 0;
    background-color: rgba(202, 180, 151, 0.4);
    opacity: 1;
    margin: 0 0.05rem !important;
}

section .swiper-pagination .swiper-pagination-bullet-active {
    position: relative;
}

section .swiper-pagination .swiper-pagination-bullet-active::after {
    content: "";
    display: block;
    width: 0;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #cab497;
    opacity: 1;
    animation: slideActive 4s linear;
    animation-fill-mode: forwards;
}

section .swiper-button {
    width: 100%;
    opacity: 0;
    position: absolute;
    top: 50%;
    transition: all 0.5s;
    z-index: 2;
    transform: translateY(-50%);
    padding: 0 0.7rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

section .swiper-button .l {
    cursor: pointer;
    width: 0.75rem;
    height: 0.75rem;
    background: hsla(0, 0%, 100%, 0.15);
    border-radius: 0.14rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
}

section .swiper-button .l img {
    width: 0.1rem;
}

section .swiper-button .l:hover {
    background: hsla(0, 0%, 100%, 0.6);
}

section .swiper-button .r {
    cursor: pointer;
    width: 0.75rem;
    height: 0.75rem;
    background: hsla(0, 0%, 100%, 0.15);
    border-radius: 0.14rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
}

section .swiper-button .r img {
    width: 0.1rem;
}

section .swiper-button .r:hover {
    background: hsla(0, 0%, 100%, 0.6);
}

section:hover .swiper-button {
    opacity: 1;
}

section.white-theme .swiper-button .l {
    background: hsla(0, 0%, 0%, 0.06);
}

section.white-theme .swiper-button .l:hover {
    background: hsla(0, 0%, 0%, 0.15);
}

section.white-theme .swiper-button .r {
    background: hsla(0, 0%, 0%, 0.06);
}

section.white-theme .swiper-button .r:hover {
    background: hsla(0, 0%, 0%, 0.15);
}

/* ============================================section2===================================================  */

/* ============================================
   SECTION 2
============================================ */

.section2 {
    width: 100%;
    height: 91vh;
    position: relative;
    display: flex;
    overflow: hidden;
}

/* ============================================
   TABS
============================================ */

.section2 .tabs {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 20;
}

.section2 .tabs .tab {
    width: 14.73rem;
    height: calc(100% / 3);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #b7aea5;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    cursor: pointer;
    transition: 0.3s ease;
}

.section2 .tabs .tab:last-child {
    border-bottom: 1px solid #fff;
}

.section2 .tabs .tab.active {
    background-color: #a3886b;
}

.section2 .tabs .tab img {
    width: 8rem;
    height: auto;
}

/* ============================================
   CAR BOX MAIN
============================================ */

.section2 .car_box_main {
    width: calc(100% - 14.73rem);
    position: relative;
    z-index: 1;
}

/* ============================================
   CAR BOX
============================================ */

.section2 .car_box {
    display: none;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.section2 .car_box.active {
    display: flex;
    opacity: 1;
}

.section2 .car_box.active.single-car {
    display: block;
}

/* ============================================
   CAR ITEM
============================================ */

.section2 .car_box_item {
    position: relative;
    flex: 1 0 0%;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
    transition: flex-grow 0.4s ease;
}

/* ============================================
   TWO ITEMS
============================================ */

.section2 .car_box_item.two_items {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* image container */

.section2 .car_box_item.two_items .car_box_img {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-right: 1px solid #fff;
}

/* ============================================
   DEFAULT STATE
============================================ */

/* image3 cachée */

.section2 .car_box_item.two_items .box-inner0 {
    height: 0;
    overflow: hidden;
    transition: height 0.5s ease;
}

/* image4 visible */

.section2 .car_box_item.two_items .box-inner1 {
    height: 100%;
    transition: height 0.5s ease;
}

/* ============================================
   IMAGES
============================================ */

.section2 .car_box_item.two_items .car_box_img img.img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transform: scale(1);
    transform-origin: center;

    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================
   LOGO HAUT
============================================ */

.section2 .car_box_img .logo {
    position: absolute;

    top: -155px;
    left: 50%;

    transform: translateX(-50%);
    width: 488px;

    height: auto;

    object-fit: contain;

    z-index: 2;

    transition: all .5s ease;
}

/* ============================================
   LOGO BAS
============================================ */

.section2 .car_box_img .logo2 {
    position: absolute;

    bottom: 30px;
    left: 50%;

    transform: translateX(-50%);

    max-width: 70%;
    width: auto;

    height: auto;

    object-fit: contain;

    z-index: 2;

    transition: all .5s ease;

}

/* par défaut caché */

.section2 .car_box_item.two_items .box-inner1 .logo2 {
    opacity: 0;
    visibility: hidden;
    transition: .4s ease;
}

/* afficher au hover */

.section2 .car_box_item.two_items:hover .box-inner1 .logo2 {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   HOVER
============================================ */

.section2 .car_box_img:hover .logo,
.section2 .car_box_img:hover .logo2 {
    opacity: 0;
}

/* ============================================
   OVERLAY
============================================ */

.section2 .car-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.45);

    color: #fff;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;

    padding: 30px;

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition: all 0.4s ease;

    z-index: 3;
}

/* ============================================
   BTN BOX
============================================ */

.section2 .btn-box {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(180deg,
            transparent,
            rgba(0, 0, 0, 0.7));

    opacity: 0;

    display: flex;
    align-items: flex-end;
    justify-content: center;

    padding-bottom: 1rem;

    transition: opacity 0.4s ease;

    z-index: 3;
}

.section2 .btn-box .btn {
    width: 13.96rem;
    height: 3.46rem;

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

    background: rgba(164, 137, 108, .8);
    color: #fff;

    text-decoration: none;
    letter-spacing: 1px;

    transition: 0.3s ease;
}

.section2 .btn-box .btn:hover {
    background: #a4896c;
}

/* ============================================
   HOVER DESKTOP
============================================ */

@media screen and (min-width: 768px) {

    .section2 .car_box_item.two_items:hover {
        flex-grow: 3;
        z-index: 10;
    }

    /* split 50/50 */

    .section2 .car_box_item.two_items:hover .box-inner0 {
        height: 50%;
    }

    .section2 .car_box_item.two_items:hover .box-inner1 {
        height: 50%;
    }

    /* logo */

    .section2 .car_box_item.two_items:hover .box-inner1 .logo {
        opacity: 0;
        transform: translateY(-20px);
    }

    .section2 .car_box_item.two_items:hover .box-inner1 .logo2 {
        opacity: 1;
    }

    /* image hover */

    .section2 .car_box_item.two_items .car_box_img:hover img.img {
        transform: scale(1.03);
    }

    /* overlay */

    .section2 .car_box_item.two_items .car_box_img:hover .car-overlay {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* button */

    .section2 .car_box_item.two_items .car_box_img:hover .btn-box {
        opacity: 1;
    }
}

/* ============================================
   ONE ITEM
============================================ */

.section2 .car_box_item.one_item {
    height: 100%;
}

.section2 .car_box_item.one_item .car_box_img {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.section2 .car_box_item.one_item img.img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* .section2 .car_box_item.one_item .logo2 {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: contain;

    opacity: 0;

    transition: opacity 0.5s ease;

    z-index: 2;
} */

/* .section2 .tiggo_box .car_box_img .logo {
    position: absolute;
    left: 32px;
    bottom: 532px;
    width: 70%;
    height: 57%;
    object-fit: cover;
}
.section2 .tiggo_box .car_box_img .logo2 {
    position: absolute;
    left: 32px;
    top: -19px;
    width: 78%;
    height: 92%;
    object-fit: cover;
    transition: opacity .5s linear;
    opacity: 0;
} */

@media screen and (min-width: 768px) {

    .section2 .car_box_item.one_item:hover {
        flex-grow: 1.5;
    }

    .section2 .car_box_item.one_item .car_box_img:hover img.img {
        transform: scale(1.03);
    }

    .section2 .car_box_item.one_item .car_box_img:hover .logo2 {
        opacity: 1;
    }

    .section2 .car_box_item.one_item .car_box_img:hover .car-overlay {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* ============================================
   OVERLAY CONTENT
============================================ */

.section2 .car-overlay-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #FFFFFF;
}

.section2 .car-overlay-sub {
    font-size: 14px;
    margin-bottom: 5px;
    color: #FFFFFF;
}

.section2 .car-overlay-price {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.section2 .car-overlay-btn {
    display: inline-block;

    background: #a4896c;
    color: #fff;

    padding: 12px 30px;

    text-decoration: none;
    letter-spacing: 1px;
}

/* ============================================
   MOBILE
============================================ */

.mb-pad {
    display: none !important;
}

@media (max-width: 991px) {

    .section2 .tabs .tab {
        width: 9.73rem;
    }

    .section2 .car_box_main {
        width: calc(100% - 9.73rem);
    }
}

@media (max-width: 767px) {

    .section2 {
        height: auto;
        flex-direction: column;
        overflow: visible;
    }

    .section2 .tabs {
        flex-direction: row;
        width: 100%;
    }

    .section2 .tabs .tab {
        width: calc(100% / 3);
        height: 6.2rem;
        border-right: 1px solid #fff;
    }

    .section2 .tabs .tab img {
        width: 6rem;
    }

    .section2 .car_box_main {
        width: 100%;
    }

    .section2 .car_box.active,
    .section2 .car_box.active.single-car {
        flex-direction: column;
        height: auto;
    }

    .section2 .car_box_item {
        width: 100% !important;
        height: auto !important;
        flex: unset;
    }

    .section2 .car_box_img {
        width: 100%;
        height: auto;
        border: none;
        border-bottom: 1px solid #fff;
    }

    .section2 .car_box_img img {
        width: 100%;
        height: auto;
        display: block;
    }

    /* disable split */

    .section2 .car_box_item.two_items .box-inner0 {
        height: auto !important;
    }

    .section2 .car_box_item.two_items .box-inner1 {
        height: auto !important;
    }

    /* hide pc */

    .section2 .pc-pad {
        display: none !important;
    }

    /* show mobile */

    .section2 .mb-pad {
        display: block !important;
    }

    /* disable hover */

    .section2 .car-overlay,
    .section2 .btn-box {
        display: none !important;
    }

    .section2 .car_box_item {
        transform: none !important;
        opacity: 1 !important;
    }
}

/* ===================== SECTION ===================== */
.section4 {
    background: #0e0e0e;
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

/* ===================== SWIPER ===================== */
.section4 .swiper {
    width: 100%;
    height: 100%;
}

/* ===================== SLIDE LAYOUT ===================== */
.section4 .swiper-slide {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

/* LEFT BOX : 65% */
.section4 .left-box {
    width: 65%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.section4 .left-box .top-box {
    width: 100%;
    height: 50%;
}

.section4 .left-box .bottom-box {
    width: 100%;
    height: 50%;
    display: flex;
    gap: 3px;
}

.section4 .left-box .bottom-box .img-b-1 {
    width: 20%;
}

.section4 .left-box .bottom-box .img-b-2 {
    width: 80%;
}

/* RIGHT BOX : 35% */
.section4 .right-box {
    width: 35%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.section4 .right-box .top-box {
    width: 100%;
    height: 65%;
}

.section4 .right-box .bottom-box {
    height: 35%;
    width: 100%;
    background: linear-gradient(135deg, #d4b598 0%, #c8a482 100%);
    padding: 6% 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

/* ===================== IMAGE BLOCK ===================== */
.img-b {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.img-b img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Overlay noir pour animation reveal */
.img-b .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #111;
    top: 0;
    left: 0;
    z-index: 2;
    transform-origin: left center;
}

/* ===================== TEXT PANEL ===================== */
/* .right-box .bottom-box .brand-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
    display: flex;
    align-items: flex-start;
    gap: 0px;
    margin-bottom: -22px;
    margin-top: -283px;
    margin-left: -255px;
} */
.right-box .bottom-box .brand-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
    display: flex;
    align-items: flex-start;
    gap: 0px;
    margin-bottom: 14px;
    margin-top: -31px;
    margin-left: 0px;
}
.right-box .bottom-box .brand-logo img {
    height:3vh !important;
    width: auto;
    object-fit: contain;
}

/* Fallback logo en SVG inline si pas d'image */
.logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
    font-style: italic;
    text-transform: uppercase;
}

.logo-badge {
    background: #6abf4b;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 2px 6px;
    border-radius: 2px;
    text-transform: uppercase;
}

.slide-name {
    font-size: clamp(0.75rem, 1.2vw, 1rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.2;
}

.slide-desc {
    font-size: clamp(0.6rem, 0.9vw, 0.8rem);
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 1px;
    line-height: 1.5;
}

/* ===================== PAGINATION ===================== */
.section4 .swiper-pagination {
    position: absolute;
    bottom: 20px;
    left: 82%;
    transform: translateX(-50%);
    width: auto;
    z-index: 10;
    display: flex;
    gap: 4px;
}

/* @media(max-width:767px){
            .section4 .swiper-pagination {
                display: flex;
            }
        } */

.section4 .swiper-pagination-bullet {
    width: 40px !important;
    height: 2px !important;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.3) !important;
    opacity: 1;
    position: relative;
    overflow: hidden;
}

.section4 .swiper-pagination-bullet-active {
    background: rgba(255, 255, 255, 0.3) !important;
}

.section4 .swiper-pagination-bullet-active::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: #fff !important;
    animation: bulletProgress 4s linear forwards;
}

@keyframes bulletProgress {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

/* ===================== NAV BUTTONS ===================== */
.swiper-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    left: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    padding: 0 16px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s;
}

.section4:hover .swiper-nav {
    opacity: 1;
}

.nav-btn {
    pointer-events: all;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.5);
}

.nav-btn svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: #fff;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ===================== INITIAL STATE (avant JS) ===================== */
.swiper-slide .overlay {
    width: 100%;
}

.slide-name,
.slide-desc,
.brand-logo {
    opacity: 0;
    transform: translateY(60px);
}

/* ===================== RESPONSIVE MOBILE ===================== */
@media (max-width: 768px) {
    .section4 .swiper-slide {
        flex-direction: column-reverse;
    }

    .section4 .left-box {
        width: 100%;
        height: 55%;
        flex-direction: column-reverse;
    }

    .section4 .left-box .bottom-box .img-b-1,
    .section4 .left-box .bottom-box .img-b-2 {
        width: 50%;
    }

    .section4 .right-box {
        width: 100%;
        height: 45%;
        flex-direction: column-reverse;
    }

    .section4 .right-box .top-box {
        height: 60%;
    }

    .section4 .right-box .bottom-box {
        height: 40%;
    }

    .slide-name {
        font-size: 1.2rem;
    }

    .slide-desc {
        font-size: 0.8rem;
    }

    .section4 .swiper-pagination {
        left: 50%;
        transform: translateX(-50%);
    }
}



/* ── SECTION features-block ────────────────────────────────────────────── */

/* Image */
.features-block {
    margin: 50px 0;
}

.feature-card__image {
    margin-bottom: 20px;
}

.feature-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.produit_item video{
    width: 100%;
}

/* Title */

.feature-card__title {
    font-family: "PoppinsBold";
    font-size: 22px;
    color: #756659;
    line-height: 30.2px;
    margin-bottom: 12px;
    margin-top: 23px;
}

.feature-card__title span {
    display: block;
}

.feature-card__desc {
    font-size: 14px;
    line-height: 24px;
    color: #444444;
}

.features-block .owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 16px 16px 0;
    margin-top: 0;
}

.features-block .owl-dot span {
    display: block;
    width: 218px !important;
    height: 2px !important;
    border-radius: 0 !important;
    background: #ccc !important;
    margin: 0 !important;
    transition: background 0.3s ease;
}

.features-block .owl-dot.active span {
    background: #111 !important;
}

@media (max-width: 991px) {
    .features-block .owl-dot span {
        width: 218px !important;
    }
}

@media (max-width: 767px) {
    .features-block .owl-dot span {
        width: 159px !important;
    }
}

@media (max-width: 575px) {
    .features-block .owl-dot span {
        width: 100px !important;
    }
}



/* ── BLOCK hero-block ──────────────────────────────────────────────── */
.hero-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* min-height: 480px; */
    position: relative;
    overflow: hidden;
    margin: 50px 0;
}

/* ── LEFT – car interior image ──────────────────────────── */
.hero-image {
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ── RIGHT – content panel ──────────────────────────────── */
.hero-content {
    background: #1a1a1a;
    padding: 48px 52px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

.hero-block .tag {
    font-family: "PoppinsBold";
    font-size: 16px;
    color: #ffffff;
}

.hero-block .hero-title {
    font-family: "PoppinsBold";
    font-size: 40px;
    line-height: 49px;
    color: #a4896d;
}

.hero-block .hero-title span {
    display: block;
}

.hero-block .hero-description {
    font-size: 18px;
    line-height: 34px;
    color: #ffffff;
}

/* ── CTA buttons ─────────────────────────────────────────── */
.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero .btn {
    display: inline-flex;
    align-items: center;
    padding: 11px 22px;
    font-family: "PoppinsRegular";
    font-size: 12px;
    text-transform: uppercase;
    line-height: 16.2px;
    text-decoration: none;
    cursor: pointer;
    border-radius: 0;
}

.hero .btn-outline {
    background: #343434;
    color: #ffffff;
}

.hero .btn-gold {
    background: #A4896C;
    color: #ffffff;
}

/* ── Bullet list ─────────────────────────────────────────── */
.hero-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.hero-list li {
    font-family: "PoppinsMedium";
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 16px;
    color: #ffffff;
    line-height: 30px;
    align-items: center;
}

.hero-list li::before {
    content: "";
    flex-shrink: 0;
    width: 7px;
    height: 7px;
    margin-top: 5px;
    background: #c8a96e;
    border-radius: 50%;
}

.hero p {
    color: var(--white-color);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 991px) {
    .hero-block {
        display: flex;
        flex-direction: column-reverse;
    }

    .hero-block .hero-title {
        font-size: 32px;
        line-height: 45px;
    }

    .hero-content {
        gap: 11px;
        padding: 48px 26px 52px;
    }

    .hero-block .hero-description {
        font-size: 16px;
    }

    .hero-list ul {
        margin-left: 0 !important;
    }
}

@media (max-width: 767px) {
    .hero-block .hero-title {
        font-size: 22px;
        line-height: 37px;
    }

    .hero-list li {
        font-size: 13px;
    }

    .hero-block .hero-description {
        font-size: 14px;
    }

    .hero-content {
        gap: 2px;
    }

    .hero-list {
        margin-top: 21px;
    }

    .hero-block .tag {
        font-size: 14px;
    }

    .hero-block .hero-title span {
        display: unset;
    }

    .hero-list ul {
        margin-left: 0 !important;
    }
}

@media (max-width: 575px) {
    .hero-block .hero-title {
        font-size: 20px;
        line-height: 32px;
    }

    .hero-list ul {
        margin-left: 0 !important;
    }
}


/* ── SECTION ─────────────────────────────────────────────── */
/* ── IMAGE ───────────────────────────────────────────────── */
.tech-comfort-block {
    margin: 50px 0;
}

.tech-comfort-block .tc-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
    border-radius: 3px;
    margin-bottom: 24px;
}

/* ── Tag ─────────────────────────────────────────────────── */
.tech-comfort-block .tc-tag {
    font-family: "PoppinsBold";
    font-size: 16px;
    letter-spacing: 0.1em;
    color: #444444;
    margin-bottom: 6px;
}

/* ── Title ───────────────────────────────────────────────── */
.tech-comfort-block .tc-title {
    font-family: "PoppinsBold";
    font-size: 19.2px;
    color: #756659;
    line-height: 30.2px;
    margin-bottom: 16px;
}

/* ── Description ─────────────────────────────────────────── */
.tech-comfort-block .tc-desc {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 0;
}

.tech-comfort-block .owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 16px 16px 0;
    margin-top: 0;
}

.tech-comfort-block .owl-dot span {
    display: block;
    width: 218px !important;
    height: 2px !important;
    border-radius: 0 !important;
    background: #ccc !important;
    margin: 0 !important;
    transition: background 0.3s ease;
}

.tech-comfort-block .owl-dot.active span {
    background: #111 !important;
}

@media (max-width: 991px) {
    .tech-comfort-block .owl-dot span {
        width: 218px !important;
    }
}

@media (max-width: 767px) {
    .tech-comfort-block .owl-dot span {
        width: 159px !important;
    }
}

@media (max-width: 575px) {
    .tech-comfort-block .owl-dot span {
        width: 147px !important;
    }
}



/* ── SECTION virsion ────────────────────────────────────────────── */
.version_unique {
    margin: 50px 0;
}

/* ── TITLE ──────────────────────────────────────────────── */
.version_unique h2 {
    font-family: "PoppinsBold";
    font-size: 40px;
    color: #756659;
    margin-bottom: 16px;
}

.version_unique span {
    font-family: "PoppinsBold";
    font-size: 16px;
    line-height: 52px;
}

/* ── DESCRIPTION ────────────────────────────────────────── */
.version_unique p {
    font-family: "PoppinsRegular";
    font-size: 18px;
    line-height: 33px;
    color: #343434;
    margin-bottom: 32px;
}

/* ── IMAGE ──────────────────────────────────────────────── */
.version_unique .discover-image {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.version_unique .discover-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 991px) {
    .version_unique h2 {
        font-size: 37px;
        margin-bottom: 11px;
    }

    .version_unique p {
        font-size: 17px;
        line-height: 31px;
        margin-bottom: 27px;
    }
}

@media (max-width: 767px) {
    .version_unique h2 {
        font-size: 33px;
        margin-bottom: 15px;
    }

    .version_unique p {
        font-size: 15px;
        line-height: 29px;
        margin-bottom: 21px;
    }
}

@media (max-width: 575px) {
    .version_unique h2 {
        font-size: 29px;
        margin-bottom: 15px;
    }

    .version_unique p {
        font-size: 14px;
        line-height: 27px;
        margin-bottom: 21px;
    }
}


/* ── TITLE ──────────────────────────────────────────────── */
.discover-block h2 {
    font-family: "PoppinsBold";
    font-size: 40px;
    color: #756659;
    margin-bottom: 16px;
}

/* ── DESCRIPTION ────────────────────────────────────────── */
.discover-block p {
    font-family: "PoppinsRegular";
    font-size: 18px;
    line-height: 33px;
    color: #343434;
    margin-bottom: 32px;
}

/* ── SPECS ROW ──────────────────────────────────────────── */
.specs-row {
    display: flex;
    gap: 0;
    margin-bottom: 32px;
    padding-top: 16px;
}

.spec-item {
    padding-right: 32px;
    margin-right: 32px;
    border-right: 1px solid #ddd;
}

.spec-item:last-child {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
}

.spec-label {
    font-family: "PoppinsRegular";
    font-size: 18px;
    color: #756659;
    line-height: 34px;
    margin-bottom: 4px;
}

.spec-value {
    font-family: "PoppinsRegular";
    font-size: 23px;
    color: #756659;
}

/* ── IMAGE ──────────────────────────────────────────────── */
.discover-image {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.discover-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 991px) {
    .discover-block h2 {
        font-size: 37px;
        margin-bottom: 11px;
    }

    .discover-block p {
        font-size: 17px;
        line-height: 31px;
        margin-bottom: 0px;
    }

    .spec-label {
        font-size: 17px;
        line-height: 33px;
        margin-bottom: 4px;
    }

    .spec-value {
        font-size: 17px;
    }
}

@media (max-width: 767px) {
    .discover-block h2 {
        font-size: 33px;
        margin-bottom: 15px;
    }

    .discover-block p {
        font-size: 15px;
        line-height: 29px;
        margin-bottom: 2px;
    }

    .spec-label {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .discover-block h2 {
        font-size: 29px;
        margin-bottom: 15px;
    }

    .specs-row {
        flex-wrap: wrap;
        gap: 16px;
    }

    .spec-item {
        border-right: none;
        margin-right: 0;
        padding-right: 0;
    }

    .discover-block p {
        font-size: 14px;
        line-height: 27px;
        margin-bottom: -8px;
    }
}

/* .switcher_logo {
    position: fixed;
    top: 136px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;
}

.switcher_logo .img-fluid {
    max-width: 100%;
    height: auto;
    object-fit: contain;
} */
.switcher_logo {
    position: absolute;
     top: 60px; /* espace depuis le haut du switcher */
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;

    display: flex;
    align-items: center;
    justify-content: center;
}
.switcher_logo .img-fluid {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

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

     .switcher_logo{
        top: -165px;
     }
}
@media (max-width: 767px) {
     .switcher_logo{
        top: -136px;
     }
}
@media (max-width:575px) {
    .switcher_logo{
        top: -86px;
     }
} */
/* Block contact */

.block_contact {
    background-color: #F5F4F3;
    padding: 60px 40px;
    text-align: center;
    margin-top: 50px;
    border-radius: 15px;
}

.block_contact h5 {
    font-family: "PoppinsSemiBold";
    font-size: 36px;
}

.block_contact p {
    font-size: 17px;
    padding: 14px 0;
}

.block_contact a {
    font-family: "PoppinsSemiBold";
    color: white;
    background-color: #a4896c;
    padding: 12px 30px;
    border-radius: 10px;
    display: inline-block;
}

.block_contact a img {
    padding-right: 5px;
}

@media(max-width:991px) {
    .block_contact button {
        font-size: 22px;
    }

    .block_contact h5 {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .block_contact h5 {
        font-size: 25px;
    }

    .block_contact {
        padding: 50px 20px;
    }
}

/* SECTION BACKGROUND */
.section-article {
    padding: 80px 0;
    background: #f3f3f3;
}

/* CARD */
.section-article .article-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 20px;
}

.article-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 14px;
}

/* TEXT */
.article-body {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* OVERLINE */
.section-article .overline {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #8a5f33;
    font-weight: 700;
    position: relative;
    padding-left: 55px;
    margin-bottom: 10px;
}

/* petite ligne à gauche */
.section-article .overline::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background: #8a5f33;
}

/* TITLE */
.article-body h2 {
    font-family: "PoppinsSemiBold";
    font-size: 32px;
    line-height: 35.84px;
    color: #1a2230;
    margin-bottom: 15px;
}

/* PARAGRAPH */
.article-body p {
    font-size: 15.5px;
    color: #6b7280;
    line-height: 27.13px;
}

.article-body p strong {
    color: #1a2230;
}

@media (max-width: 767px) {
    .article-body h2 {
        font-size: 28px;
    }

    .article-body p {
        font-size: 13.5px;
    }
}

@media (max-width: 575px) {
    .article-body h2 {
        font-size: 23px;
        line-height: 32.84px;
    }

    .article-body p {
        font-size: 12.5px;
        line-height: 24.13px;
    }
}

/* ── SECTION 2 : Siècle d'engagement (fond beige) ── */
/* ── SECTION 2 : Siècle d'engagement ── */

.section-engagement {
    padding: 70px 0;
    text-align: center;
}

.section_width {
    max-width: 700px;
    margin: auto;
}

/* OVERLINE */

.section-engagement .overline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #8a5f33;
    font-weight: 700;

    margin-bottom: 18px;
}

.section-engagement .overline::before {
    content: "";
    width: 40px;
    height: 2px;
    background: #8a5f33;
    position: static;
    /* supprime absolute */
    transform: none;
}

/* Titre */

.section-engagement h2 {
    font-family: "PoppinsSemiBold";
    font-size: 3rem;
    line-height: 1.2;
    color: #1a2230;
    margin: 12px auto 28px;
}

/* Texte */

.section-engagement p:not(.overline) {
    color: #6b7280;
    line-height: 1.9;
    font-size: 18px;
}

/* Trait bas */

.divider-gold {
    width: 45px;
    height: 3px;
    background: #b58a5e;
    margin: 35px auto 0;
}

/* Tablet */

@media (max-width: 991px) {
    .section_width {

    }
    .section-engagement h2 {
        font-size: 42px;
        line-height: 49.8px;
        margin: 8px auto 11px;
    }
}

/* Mobile */

@media (max-width: 767px) {
    .section-engagement {
        padding: 50px 0;
    }
    .section-engagement h2 {
        font-size: 31px;
        margin: 0px;
    }
    .section-engagement p:not(.overline) {
        font-size: 16px;
    }
    .divider-gold {
        margin: 18px auto 0;
    }
}

/* ── SECTION 3 : Vision ancrée (2 colonnes) ── */

.feature-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    border-top: 1px solid #e7e2d6;
    padding-top: 26px;
}
.feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
/*
.feature-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.8;
} */
.feature-item h5 {
    font-family: "PoppinsSemiBold";
    font-size: 19px;
    font-weight: 600;
    line-height: 28.5px;
    margin-bottom: 6px;
    color: #1a2230;
}
.feature-item p {
    font-size: 0.83rem;
    color: #888;
    line-height: 1.65;
    margin: 0;
}
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 40px;
    margin-top: 52px;
}
@media (max-width: 991px) {
    .feature-item h5 {
        font-size: 18px;
        line-height: 25.5px;
    }
    .features-grid {
        flex-direction: column;
        display: flex;
        margin-top: 20px;
    }
}
@media (max-width: 767px) {
}

/* ── SECTION 4 : Mission / Valeurs (fond sombre) ── */

.valeur-card {
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 28px 22px;
    height: 100%;
    transition: border-color 0.3s;
}
.valeur-card:hover {
    border-color: #c9a96e;
}
.valeur-card .valeur-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(201, 169, 110, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.valeur-card .valeur-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.8;
}
.valeur-card h5 {
    font-family: "PoppinsSemiBold";
    font-size: 18px;
    font-weight: 600;
    color: #1a2230;
    margin-bottom: 10px;
    line-height: 22.5px;
}
.valeur-card p {
    font-size: 0.82rem;
    color: #888;
    line-height: 1.7;
    margin: 0;
}
.mission_items a{
    font-family: "PoppinsBold";
    font-size: 13px;
    text-align: center;
    color: #1A2230;
    text-decoration: none;
    background: #FBFAF7;
    border: 1px solid #E7E2D6;
    padding: 12px 24px;
    border-radius: 50px;
    display: inline-block;
    margin-top: 20px;
}
.mission_items--financement .valeur-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
.mission_items--financement .valeur-card .valeur-icon{
    background-color: transparent;
}
@media (max-width: 991px) {
    .mission_items .row {
        display: flex;
        flex-direction: column;
    }
    .mission_items .row .col-6 {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .section-article .article-body {
        padding: 24px 0 0;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {

}

/* ---------------------------- mission_alert ------------------------------*/

.mission_alert {
    background: #1a2230;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 20px;
    border-radius: 20px;
    margin-top: 45px;
}
.mission_alert p {
    color: var(--white-color);
    margin-bottom: 0;
}
@media (max-width:991px) {
    .mission_alert p {
        font-size: 13px;
    }
}
@media (max-width:575px) {
    .mission_alert{
        align-items: start;
    }
    .alert_image {
        width: 140px;
    }
}

/* Tableau */
.warranty-table {
    background: #f5f3ef;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px #1418202e;
    border: 1px solid #e7e2d6;
}

/* Header */
.table-header {
    background: #111b2e;
    color: #fff;
    padding: 18px 30px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Ligne */
.table-row {
    padding: 20px 30px;
    border-bottom: 1px solid #e5dfd8;
    transition: 0.3s;
}

/* lignes impaires */
.table-row:nth-child(odd) {
    background: #fbfaf7;
}

/* lignes paires */
.table-row:nth-child(even) {
    background: #e7e2d6;
}

.model {
    font-family: "PoppinsSemiBold";
    font-size: 15px;
    color: #1a2230;
}

.highlight {
    color: #8a5f33;
}

.guarantee {
    font-family: "PoppinsSemiBold";
    font-size: 15px;
    text-align: right;
    font-weight: 700;
}

.table-footer {
    background: #e7e2d6;
    padding: 18px 30px;
    font-size: 12px;
    color: #888;
}

.stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}
.stat-item h2 {
    font-size: 38px;
    font-weight: 700;
    color: #B58A5E;
    line-height: 38px;
    margin-bottom: 15px;
}
.stat-item p {
    font-size: 13px;
    line-height: 19.5px;
    color: #6B7280;
    text-transform: uppercase;
}
@media(max-width:768px) {
    .stats-container {
        flex-direction: column;
        gap: 50px;
    }
    .stat-item h2 {
        font-size: 30px;
    }
    .stat-item p {
        font-size: 14px;
    }
    .table-row{
        padding: 15px 20px;
    }
}

/* ------------  card_pack ------------------ */

.card_pack {
    background: #fff;
    border: 1px solid #E7E2D6;
    border-radius: 20px;
    overflow: hidden;
}
.card_pack_header {
    padding: 20px 22px 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.pack_label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 4px;
    display: block;
}
.card_pack_header h6 {
    font-family: "PoppinsSemiBold";
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 4px;
    line-height: 1.2;
}
.card_pack_header p {
    font-size: 14px;
    margin: 0;
    color: #888;
}
.card_pack_body {
    padding: 22px;
    border-top: 1px solid #ece8e2;
}
.card_pack_body ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.card_pack_body ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #2d2d2d;
}
.card_pack_body ul li::before {
    content: "";
    background: url('/images/icons/Vector.png') no-repeat center;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
.card_pack_style_1 .card_pack_header {
    background: #FBFAF7;
}
.card_pack_style_1 .pack_label {
    color: #b09a84;
}
.card_pack_style_1 .card_pack_header h6 {
    color: #2d2d2d;
}
.card_pack_style_2 {
    border: 1.5px solid #D9B890;
}
.card_pack_style_2 .card_pack_header {
    background: #F6ECDE;
}
.card_pack_style_2 .pack_label {
    color: #c8883a;
}
.card_pack_style_2 .card_pack_header h6 {
    color: #c8883a;
}
.card_pack_style_3 .card_pack_header {
    background: #1A2230;
}
.card_pack_style_3 .pack_label {
    color: #c8883a;
}
.card_pack_style_3 .card_pack_header h6 {
    color: #fff;
}
.card_pack_style_3 .card_pack_header p {
    color: #aaa;
}
/* Footer note */
.pack_footer_note {
    text-align: center;
    font-size: 14px;
    color: #555;
    margin-top: 24px;
}

.assistance .img-wrapper {
    border-radius: 18px;
    overflow: hidden;
}
.assistance .img-wrapper img{
    width: 100%;
}

/* Service card */
.assistance .service-card {
     background: #fff;
    border-radius: 16px;
    border: 1px solid #ECE6D8;
    padding: 20px 24px 16px;
    box-shadow: 0 2px 16px rgb(0 0 0 / 16%);
}

.assistance .service-card .badge-available {
    display: flex;
    font-family: "PoppinsBold";
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 600;
    line-height: 18.75px;
    text-transform: uppercase;
    color: #8A5F33;
    margin-bottom: 14px;
}

.assistance .badge-available .dot {
    width: 7px;
    height: 7px;
    background: #8A5F33;
    border-radius: 50%;
    flex-shrink: 0;
}

.assistance .card-logo-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.assistance .logo-circle {
    width: 48px;
    height: 48px;
    background: #1a2e5a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.assistance .card-logo-row .label {
  font-family: "PoppinsSemiBold";
    font-size: 13px;
    color: #6B7280;
    margin-bottom: 6px;
    line-height: 19.5px;

}

.assistance .card-logo-row .phone {
    font-family: "PoppinsBold";
    font-size: 42px;
    line-height: 44px;
    font-weight: 700;
    color: #0F1A2A;
}

.assistance .card-footer-row {
    display: flex;
    gap: 20px;
    margin-top: 27px;
    padding-top: 20px;
    border-top: 1px solid #ECE6D8;
    flex-wrap: wrap;
}

.assistance .card-footer-row .meta-item {
   display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    line-height: 19.5px;
    color: #6B7280;
}

@media(max-width:991px){
    .assistance .service-card {
        margin-top: 0;
    }
    .assistance .card-logo-row .phone{
        font-size: 35px;
    }
    .assistance .card-footer-row{
        margin-top: 16px;
        padding-top: 20px;
    }
}
@media (max-width: 767px) {
    .assistance .card-logo-row .phone {
        font-size: 31px;
    }
    .assistance .card-footer-row {
        margin-top: 10px;
    }
}

/* ── Nos services d'assistance ── */

.services-assistance-section .section-row {
    border-top: 1px solid #e8e8e8;
    padding: 48px 0;
}

.services-assistance-section .section-row:last-child {
    border-bottom: 1px solid #e8e8e8;
}

/* ── LEFT: NUMBER + TITLE ── */
.services-assistance-section .section-number {
    font-family: "PoppinsSemiBold";
    font-size: 56px;
    font-weight: 700;
    color: #A07B52;
    line-height: 56px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.services-assistance-section .section-number::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: #A07B52;
    margin-bottom: 2px;
    flex-shrink: 0;
}

.services-assistance-section .section-title {
    font-family: "PoppinsSemiBold";
    font-size: 26px;
    line-height: 32.5px;
    font-weight: 700;
    color: #0F1A2A;
    margin-bottom: 10px;
}

.services-assistance-section .section-desc {
    font-family: "PoppinsRegular";
    font-size: 14px;
    color: #6B7280;
    line-height: 23.1px;
}

/* ── RIGHT: SERVICE CARDS GRID ── */
.services-assistance-section .cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    border-left: 1px solid #e8e8e8;
    border-top: 1px solid #e8e8e8;
}

.services-assistance-section .service-card {
    background: #fff;
    padding: 24px 22px;
    border-bottom: 1px solid #ECE6D8;
    border-right: 1px solid #ECE6D8;
}

.services-assistance-section .card-icon {
    margin-bottom: 12px;
}

.services-assistance-section .card-title {
    font-family: "PoppinsSemiBold";
    font-size: 15.5px;
    line-height: 20.15px;
    font-weight: 600;
    color: #0F1A2A;
    margin-bottom: 8px;
}

.services-assistance-section .card-text {
    font-family: "PoppinsRegular";
    font-size: 13.5px;
    color: #6B7280;
    line-height: 22.28px;
    margin: 0;
}

.services-assistance-section .card-text strong {
    color: #6B7280;
    font-weight: 600;
}

.services-assistance-section .highlight {
    background: #F4EAD9;
    color: #8A5F33;
    font-weight: 600;
    padding: 6px 5px;
    border-radius: 3px;
}

@media(max-width:767px) {
    .services-assistance-section .cards-grid {
        display: flex;
        flex-direction: column;
    }
    .services-assistance-section .section-number{
        font-size: 44px;
    }
}

.cta-card {
  background: #F5F4F3;
  border-radius: 20px;
  padding: 52px 40px 44px;
  text-align: center;
  margin-bottom: 16px;
}

/* Badge pill */
.badge-pill {
  font-family: "PoppinsSemiBold";
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #CBA887;
  border-radius: 50px;
  padding: 9px 24px;
  font-size: 12.5px;
  line-height: 18.75px;
  color: #8A5F33;
  background: #FFFFFF;
  margin-bottom: 24px;
}

.badge-pill .dot {
  width: 7px;
  height: 7px;
  background: #c8a96e;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Heading */
.cta-card h2 {
  font-family: "PoppinsSemiBold";
  font-size: 32px;
  font-weight: 600;
  color: #111;
  line-height: 40px;
  margin-bottom: 18px;
}

/* Sub text */
.cta-card .sub-text {
  font-family: "PoppinsRegular";
  font-size: 15px;
  color: #666;
  line-height: 24.75px;
  max-width: 487px;
  margin: 0 auto 32px;
}

.cta-card .sub-text strong {
  color: #222;
  font-weight: 600;
}

/* Phone button */
.btn-phone {
  font-family: "PoppinsSemiBold";
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #A07B52;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 18px 33px;
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-phone:hover {
  background: #8a6e4a;
  color: #fff;
}

.btn-phone svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* "Joignable" label next to button */
.phone-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.joignable-label {
  font-size: 13px;
  line-height: 19.5px;
  color: #6B7280;
  font-family: "PoppinsRegular";
}

/* ── NOTICE BAR ── */
.notice-bar {
  background: #fff;
  border-radius: 14px;
  padding: 23px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid #ECE6D8;
}

.notice-bar .icon-wrap {
  flex-shrink: 0;
  color: #c8a96e;
  margin-top: 1px;
}

.notice-bar .icon-wrap svg {
  width: 20px;
  height: 20px;
}

.notice-bar p {
  font-family: "PoppinsRegular";
  font-size: 14px;
  color: #1C2638;
  line-height: 21px;
  margin: 0;
}

.notice-bar p strong {
  color: #0F1A2A;
  font-weight: 600;
}

@media (max-width:991px) {
  .cta-card h2 {
    font-size: 29px;
    line-height: 33px;
  }

  .btn-phone {
    padding: 18px 39px;
    font-size: 16px;
  }
}

@media(max-width:767px) {
  .phone-wrapper {
    display: flex;
    flex-direction: column;
  }
}

/* ── TIMELINE WRAPPER ── */
.timeline {
    position: relative;
    padding: 0;
    list-style: none;
    margin: 0;
}

/* Vertical line running through the circles */
.timeline::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 46px;
    bottom: 53px;
    width: 2px;
    background: linear-gradient(#CBA887, #ECE6D8);
    transform: translateX(-50%);
    z-index: 0;
}

/* ── EACH STEP ── */
.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 20px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* Circle badge */
.step-circle {
    flex-shrink: 0;
    width: 69px;
    height: 69px;
    border-radius: 50%;
    background: #F4EAD9;
    border: 2px solid #CBA887;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #8A5F33;
    position: relative;
    z-index: 1;
}

/* Card */
.step-card {
    flex: 1;
    background: #ffffff;
    border: 1px solid #ECE6D8;
    border-radius: 14px;
    padding: 20px 24px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
}

.step-card .step-title {
    font-family: "PoppinsSemiBold";
    font-size: 18px;
    line-height: 22.5px;
    font-weight: 700;
    color: #0F1A2A;
    margin-bottom: 6px;
}

.step-card .step-text {
    font-family: "PoppinsRegular";
    font-size: 14px;
    color: #6B7280;
    line-height: 23.1px;
    margin: 0;
}

.step-card .step-text strong {
    color: #6B7280;
    font-weight: 600;
}
@media (max-width:991px){
    .timeline::before{
    bottom: 71px;
    }
}





/* ============================================
   FLATPICKR — Theme personnalisé #a4896c
   ============================================ */

:root {
    --fp-primary: #a4896c;
    --fp-primary-light: #c2a98a;
    --fp-primary-dark: #8a7058;
    --fp-primary-bg: rgba(164, 137, 108, 0.1);
}

/* Container principal */
.flatpickr-calendar {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border: none;
    font-family: inherit;
}

/* Flèche au-dessus du calendrier */
.flatpickr-calendar.arrowTop::before,
.flatpickr-calendar.arrowTop::after {
    border-bottom-color: var(--fp-primary);
}

/* Header (mois / année) */
.flatpickr-months {
    background: var(--fp-primary);
}

.flatpickr-month {
    color: #fff !important;
    fill: #fff !important;
}

.flatpickr-current-month {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    padding-top: 6px;
}

.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
    color: #fff;
    font-weight: 600;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
    background: rgba(255, 255, 255, 0.15);
}

.flatpickr-monthDropdown-month {
    background: var(--fp-primary);
    color: #fff;
}

/* Flèches navigation mois */
.flatpickr-prev-month,
.flatpickr-next-month {
    fill: #fff !important;
    color: #fff !important;
}

.flatpickr-prev-month:hover svg,
.flatpickr-next-month:hover svg {
    fill: rgba(255, 255, 255, 0.85) !important;
}

/* Jours de la semaine (L M M J V S D) */
.flatpickr-weekdays {
    background: var(--chery-color) !important;
    height: 28px;
    border-top: 1px solid #bebebe;
}

.flatpickr-weekday {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 600;
    background: var(--fp-primary) !important;
}

/* Jours du mois */
.flatpickr-day {
    border-radius: 8px;
    color: #2c2c2c;
    font-weight: 500;
    transition: all 0.15s ease;
    border: none;
}

.flatpickr-day:hover {
    background: var(--fp-primary-bg);
    color: var(--fp-primary-dark);
    border-color: transparent;
}

/* Aujourd'hui */
.flatpickr-day.today {
    border-color: var(--fp-primary);
    color: var(--fp-primary-dark);
    font-weight: 700;
}

.flatpickr-day.today:hover {
    background: var(--fp-primary);
    color: #fff;
    border-color: var(--fp-primary);
}

/* Jour sélectionné */
.flatpickr-day.selected,
.flatpickr-day.selected:hover,
.flatpickr-day.selected.today {
    background: var(--fp-primary);
    border-color: var(--fp-primary);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(164, 137, 108, 0.35);
}

/* Jours désactivés (dimanche / passé) */
.flatpickr-day.disabled,
.flatpickr-day.disabled:hover,
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
    color: #d4d4d4;
    background: transparent;
    cursor: not-allowed;
    text-decoration: line-through;
    text-decoration-color: #e8e8e8;
}

/* Jours du mois précédent/suivant */
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
    color: #c5c5c5;
}

/* ============================================
   SÉLECTEUR D'HEURE
   ============================================ */

.flatpickr-time {
    border-top: 1px solid #f0ebe5;
    background: #fafafa;
    border-radius: 0 0 12px 12px;
}

.flatpickr-time input {
    color: #2c2c2c;
    font-weight: 600;
    font-size: 1.1rem;
    background: transparent;
}

.flatpickr-time input:hover,
.flatpickr-time input:focus {
    background: var(--fp-primary-bg);
    color: var(--fp-primary-dark);
}

.flatpickr-time .flatpickr-time-separator,
.flatpickr-time .flatpickr-am-pm {
    color: var(--fp-primary);
    font-weight: 600;
}

/* Flèches haut/bas du time picker */
.flatpickr-time .numInputWrapper span.arrowUp::after {
    border-bottom-color: var(--fp-primary);
}

.flatpickr-time .numInputWrapper span.arrowDown::after {
    border-top-color: var(--fp-primary);
}

.flatpickr-time .numInputWrapper:hover {
    background: var(--fp-primary-bg);
}

/* ============================================
   INPUT du champ
   ============================================ */

.datetime-essai,
input.flatpickr-input {
    cursor: pointer;
    background-color: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input.flatpickr-input:focus,
input.flatpickr-input.active {
    border-color: var(--fp-primary);
    box-shadow: 0 0 0 3px rgba(164, 137, 108, 0.15);
    outline: none;
}
.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange, .flatpickr-day.selected.inRange, .flatpickr-day.startRange.inRange, .flatpickr-day.endRange.inRange, .flatpickr-day.selected:focus, .flatpickr-day.startRange:focus, .flatpickr-day.endRange:focus, .flatpickr-day.selected:hover, .flatpickr-day.startRange:hover, .flatpickr-day.endRange:hover, .flatpickr-day.selected.prevMonthDay, .flatpickr-day.startRange.prevMonthDay, .flatpickr-day.endRange.prevMonthDay, .flatpickr-day.selected.nextMonthDay, .flatpickr-day.startRange.nextMonthDay, .flatpickr-day.endRange.nextMonthDay {
    background: var(--chery-color) !important;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #fff;
    border-color: var(--chery-color) !important;
}
