@font-face {
    font-family: 'mmcBold';
    src: url("../fonts/MMC-Bold-muRYiiV.woff") format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'mmcRegular';
    src: url("../fonts/MMC-Regular-UGlvwhu.woff") format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'mmcMedium';
    src: url("../fonts/MMC-Medium-33KI7h7.woff") format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

:root {
    --black-color: #000000;
    --white-color: #ffffff;
    --mitsubishi-red: #ED0000;
    --footer-text-muted: #9ca3af;
    --mitsubishi-red-hover: #CC0010;
    --mitsubishi-dark: #1a1a1a;
    --mitsubishi-gray: #404040;
    --text-dark: #1a1a1a;
    --text-muted: #6c757d;
    --border-color: #dee2e6;
    --bg-light: #f8f9fa;
}
body{
    font-family: 'mmcRegular';
    font-size: 16px;
    color: var(--mitsubishi-gray);
}  
*{
    margin: 0px;
    padding: 0px;
}
p{ 
    font-family: 'mmcRegular';
    font-size: 16px;
    color: var(--black-color);
    margin-bottom: 20px;
}

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;
}



/* Header */

.navbar {
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 0;
    background-color: var(--black-color);
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}
.navbar-nav li{
    margin-left: 30px;
}
.nav-link {
    color: var(--white-color) !important;
    font-weight: 500;
    font-size: 14px;
    padding: 0 !important;
    transition: color 0.3s;
    display: inline-block;
}
.nav-link i{
    margin-right: 4px;
}

.nav-link:hover {
    color: var(--mitsubishi-red);
}

.dropdown-menu {
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.dropdown-menu li{
    margin-left: 0;
}
.dropdown-item {
    font-size: 14px;
    padding: 0.5rem 1rem;
    transition: all 0.3s;
}

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

.btn-mitsubishi, .btn-mitsubishi-outline {
    background-color: var(--mitsubishi-red);
    border: 2px solid var(--mitsubishi-red);
    color: var(--white-color);
    padding: 14px 25px !important;
    font-weight: 500;
    font-size: 14px;
    transition: background-color 0.3s;
}

.btn-mitsubishi:hover {
    background-color: var(--mitsubishi-red-hover);
    color: white;
}

.btn-mitsubishi-outline {
    background-color: transparent;
}

.btn-mitsubishi-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(--mitsubishi-red);
}

.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-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--black-color);
}

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

@media (max-width: 1399px) {
    .navbar-nav li {
        margin-left: 20px;
    }
}
@media (max-width: 1199px) {
    .navbar-toggler svg{
        color: var(--white-color);
    }
    .navbar-nav li{
        margin-left: 0;
        margin-top: 20px;
    }
    .navbar-collapse{
        padding: 20px 0;
    }
    .dropdown-menu li{
        margin-top: 0;
    }
}
@media (max-width: 575px) {
    .btn-mitsubishi, .btn-mitsubishi-outline{
        padding: 8px 15px !important;
        font-size: 12px;
    }
}

/* Mitsubishi Buttons */

.mitsubishi_buttons{
    display: flex;
    gap: 15px;
}
.btn_mitsubishi{
    color: var(--white-color);
    padding: 15px 30px;
    border: 2px solid transparent;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    width: fit-content;
}
.btn_mitsubishi img{
    margin-right: 15px;
    width: auto !important;
}
.btn_mitsubishi svg{
    width: 20px;
    margin-left: 12px;
}
.no_border{
    border: 0 !important;
}
.text-red{
    color: var(--mitsubishi-red);
}
.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;
    }
}


/* Switcher Home */

.switcher_home .slide-content::before {
    display: none;
}
/* ==================== 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_home .slide-content {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        z-index: 10;
    }

    .switcher_home .nav-arrows {
        position: absolute;
        top: -60px;
        left: 0;
        display: flex;
        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-family: 'mmcBold';
        font-size: 54px;
        font-weight: 700;
        color: #fff;
        line-height: 1.08;
        margin-bottom: 24px;
        max-width: 520px;
    }
    .switcher_home .title-underline {
        display: none;
    }
    .switcher .title-underline {
        width: 55px;
        height: 3px;
        background: var(--mitsubishi-red);
        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: 500px;
    }

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

    .btn-reserve {
        background: var(--mitsubishi-red);
        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: flex;
        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(--mitsubishi-red);
    }
}

/* ==================== 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 .slide-content {
        background: var(--black-color);
        padding: 30px 24px 44px;
        position: unset;
        max-width: 100%;
    }

    .switcher_home .nav-arrows {
        display: flex;
        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(--mitsubishi-red);
        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(--mitsubishi-red);
        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: flex;
        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(--mitsubishi-red);
    }
}

/* Switcher Pages */

.switcher{

}



/* Footer */

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

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

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

.footer-column-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 12px;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background-color: var(--mitsubishi-red);
}

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

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

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

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

.footer-bottom {
    border-top: 1px solid var(--mitsubishi-gray);
    padding: 20px 0;
}

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

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

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

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

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

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

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

@media (max-width: 991px) {
    .footer {
        padding: 40px 0 0 0;
    }

    .footer-logo-section {
        margin-bottom: 30px;
    }

    .footer-column {
        margin-bottom: 30px;
    }

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

    .footer-social {
        justify-content: start;
    }
}

/* Card Horizontal - Large */
        
.vehicle-card-horizontal {
    display: flex;
    color: white;
    overflow: hidden;
    margin: 0 -12px;
}

.vehicle-card-horizontal .card-content {
    flex: 0 0 50%;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
figure {
    margin: 0;
}
.vehicle-card-horizontal .card-image {
    flex: 0 0 50%;
    position: relative;
    /*min-height: 450px;*/
}

.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(--mitsubishi-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(--mitsubishi-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: 'mmcMedium';
    text-transform: capitalize;
    display: inline-block;
    padding: 8px 24px;
    border: 1px solid var(--mitsubishi-red);
    border-radius: 50px;
    color: var(--mitsubishi-red);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    width: fit-content;
}

.card-title {
    font-family: 'mmcBold';
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

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

.card-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background-color: var(--mitsubishi-red);
    margin-top: 1rem;
}

.card-description {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 30px;
}
.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(--mitsubishi-red);
    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(--mitsubishi-red);
    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(--mitsubishi-dark);
}

/* Responsive */
@media (max-width: 991px) {
    .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;
    }
}

/* Section Contact */

.content_contact{
    padding-top: 100px;
}
.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(--mitsubishi-red);
    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(--mitsubishi-red);
    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(--mitsubishi-red);
    border-color: var(--mitsubishi-red);
}

.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(--mitsubishi-red);
    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(--mitsubishi-red);
    font-size: 12px;
}

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

/* Tabs Navigation */

.tabs-nav {
    border-bottom: 1px solid var(--border-color);
    padding: 0;
    justify-content: start;
    min-width: 600px;
}

.tabs-nav .nav-link {
    color: var(--black-color) !important;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 1rem 1.5rem;
    font-weight: 500;
    border-radius: 0;
    transition: all 0.3s ease;
}
.tabs-nav .nav-item {
    width: 23%;
}

.tabs-nav .nav-link:hover {
    color: var(--text-dark);
    border-bottom-color: var(--border-color);
}

.tabs-nav .nav-link.active {
    color: var(--mitsubishi-red);
    border-bottom-color: var(--mitsubishi-red);
    background: transparent;
}

/* 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(--mitsubishi-red);
    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(--mitsubishi-red);
}

.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 */

.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-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.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);
}

/* Last item with button overlay */
.gallery-item.has-button {
    position: relative;
}

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

.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;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
}

/* 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(--mitsubishi-red);
}

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

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

/* Switcher pages */

.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(--mitsubishi-red);
    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(--mitsubishi-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(--mitsubishi-red);
    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(--mitsubishi-red);
    color: var(--mitsubishi-red);
    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(--mitsubishi-red);
    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(--mitsubishi-red);
    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);
}

.hero-image {
    background: url('https://images.unsplash.com/photo-1559416523-140ddc3d238c?w=800') center/cover;
    min-height: 400px;
}

/* 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-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    font-family: 'mmcBold';
}

.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,
    .section-title {
        font-size: 24px;
    }

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


/* Slider Modèle */

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

.slide-image {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}
.slider_media .slide-image{
    height: auto;
}
.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 {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    pointer-events: none;
}

.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:hover,
.owl-nav button.owl-next:hover {
    background: var(--mitsubishi-red) !important;
}

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

.owl-nav button span {
    font-family: sans-serif;
    font-size: 1.5rem;
    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: 768px) {
    .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: #f5f5f5;
        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;
    }
    .owl-nav {
        position: absolute;
        top: auto;
        bottom: 70px;
        left: 1.5rem;
        right: auto;
        transform: none;
        justify-content: flex-start;
        gap: 0.75rem;
        padding: 0;
    }

    .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 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(--mitsubishi-red) !important;
    }
}
@media (max-width: 480px) {
    .slide-image {
        height: 50vh;
    }

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

/* blog section */

.content_actualites{
    padding: 70px 0 100px;
}
.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(--mitsubishi-red);
    border-radius: 50px;
    color: var(--mitsubishi-red);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

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

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

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

.blog-card {
    background-color: var(--mitsubishi-dark);
    border-radius: 0;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease;
}

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

.blog-card-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

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

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

.blog-card-category {
    background-color: var(--mitsubishi-red);
    color: #fff;
    padding: 8px 50px 8px 15px;
    font-size: 13px;
    font-weight: 500;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 70% 100%, 0 100%);
}
.blog-card-category::after{
    content: '';
    position: absolute;
    background-color: var(--white-color);
}

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

.blog-card-content {
    padding: 20px 24px 24px;
}

.blog-card-title {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.blog-card-description {
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}
.content_modeles .blog-card-description {
    color: var(--black-color);
}
.blog-card-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

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

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

.btn-voir-tout {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border: 1px solid #333;
    background: transparent;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

/*.btn-voir-tout:hover {
    background-color: var(--mitsubishi-red);
    border-color: var(--mitsubishi-red);
    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;
    }
}

/* 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: 'mmcRegular';
  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: 'mmcBold';
  color: var(--mitsubishi-red);
  pointer-events: none;
}
.pagination li a:hover {
  font-family: 'mmcBold';
}
.arrows_nav{
  top: -2px;
}
@media (max-width: 575px){
  .pagination {
    margin-top: 0;
  }
}


/* Actualités & Conseils */

.content_actualites{
    padding-bottom: 50px;
}
.text_item_actualites_home p{
    margin: 20px 0;
    line-height: 25px;
}
.text_item_actualites_home label{
    display: block;
    margin-bottom: 15px;
    font-family: 'MarkMedium';
    font-size: 10px;
    color: var(--primary-color);
    text-transform: uppercase;
}

/* Actualité selected */

.section_breadcrumbs {
    margin-bottom: 50px;
}
.section_breadcrumbs ul li {
    display: inline-block;
}
.section_breadcrumbs ul li a {
    font-family: 'mmcRegular';
    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: 'mmcBold';
}
.section_breadcrumbs ul li:last-child a {
    pointer-events: none;
}
.actu_selected label{
    font-family: 'mmcMedium';
    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: 'mmcBold';
    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 */

.content_modeles{
    padding: 70px 0 100px;
    background-color: #F8F8F8;
}
.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(--mitsubishi-red);
}
.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(--mitsubishi-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(--mitsubishi-red);
    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(--mitsubishi-red);
    gap: 10px;
}
.cta-card__link i {
    font-size: 12px;
    color: var(--mitsubishi-red);
}

/* Desc Modele Selected */

.desc-price-section {
    background-color: white;
    border: 1px solid #e0e0e0;
    position: relative;
    padding: 50px 60px;
    margin: 0 auto;
}

.price-tag {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--mitsubishi-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-size: 2.5rem;
    font-weight: 700;
    color: var(--mitsubishi-dark);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 700px;
}

.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(--mitsubishi-dark);
}

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

.specs-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--mitsubishi-dark);
    margin-bottom: 8px;
    display: inline-block;
    position: relative;
}

.specs-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--mitsubishi-red);
}

.specs-list {
    font-size: 0.95rem;
    color: #555;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .text-section {
        padding: 30px 25px;
        padding-top: 100px;
    }
    .desc-price-section {
        padding: 100px 20px;
    }
    .price-tag {
        margin-bottom: 20px;
        display: inline-block;
    }

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

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


/* Testimonial */

.testimonial-section {
    padding: 50px 0;
    background-color: #ffffff;
}

.testimonial-item {
    text-align: center;
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 30px;
}

.stars svg {
    width: 24px;
    height: 24px;
    fill: #000000;
}

.testimonial-quote {
    font-family: 'mmcMedium';
    font-size: 24px;
    font-weight: 500;
    color: #000000;
    line-height: 1.5;
    margin-bottom: 40px;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    overflow: hidden;
}

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

.testimonial-name {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 4px;
}

.testimonial-title {
    font-size: 14px;
    color: #6b7280;
}

/* 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: #000;
    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 #e60000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.form_drive_test h1 {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.3;
    color: var(--black-color);
}

.form_drive_test p {
    text-align: center;
    color: #666;
    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);
}

input[type="text"],
input[type="tel"],
input[type="date"],
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: #e60000;
}

.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;
    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: 12px;
    cursor: pointer;
    accent-color: #e60000;
}

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

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

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

.btn-secondary {
    background-color: #ddd;
    color: #666;
}

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

.btn-primary {
    background-color: #e60000;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary:hover {
    background-color: #cc0000;
}

.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: var(--mitsubishi-red);
    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(--black-color);
    border-radius: 0;
    padding: 60px 0;
    margin-bottom: 80px;
}
.reseau-section-form{
    background-color: #202123;
    padding: 50px;
}
.main-title{
    font-family: 'mmcBold';
    max-width: 600px;
    margin: 0 auto 40px;
    color: var(--white-color);
}
.reseau-home-section #map {
    height: 500px;
}
.reseau-home-section .btn,
.reseau-home-section .form-select {
    border-radius: 0;
    padding: 15px 10px;
    background-color: #43494D;
    border: 0;
    color: #fff;
}
.reseau-home-section .form-label{
    color: var(--white-color);
}
.custom-popup {
    background-color: var(--black-color);
    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{
    padding: 0 20px;
}
.custom-popup .popup-list-marques span {
    background-color: var(--mitsubishi-red-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 {
    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(--mitsubishi-red);
    color: #fff;
    padding: 8px 50px 8px 15px;
    font-size: 13px;
    font-weight: 500;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 70% 100%, 0 100%);
    display: inline-block;
}
.custom-popup .popup-ville img{
    margin-right: 15px;
}
.custom-popup .popup-services strong {
    display: block;
}
.custom-popup .popup-services span {
    background-color: var(--mitsubishi-red-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{
    margin-bottom: 0 !important;
    background: var(--white-color);
}
.content_contact .main-title{
    color: var(--black-color);
}
.content_contact .reseau-section-form{
    background: var(--white-color);
    border: 2px solid #dddddd;
}
.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: 70px 0;
}
.block-page-contenu h3{
    font-size: 45px;
    font-family: 'mmcBold';
    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;
}
.block_model.slider-section .container{
    padding: 0;
}
.faq .text__inner{
    text-align: center;
    margin-bottom: 50px;
}
.text__inner h2{
    font-family: 'mmcBold';
    font-size: 50px;
    margin-bottom: 40px;
}
.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 {
    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-item {
    border-left: 0;
    border-right: 0;
}
.faq .accordion-button{
    font-family: 'mmcBold';
    font-size: 25px;
}
.faq .accordion-button:focus {
    box-shadow: unset;
}
.faq .accordion{
    max-width: 1000px;
    margin: auto;
}

@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;
    }
}
@media (max-width: 575px){
    .block-page-contenu h3{
        font-size: 25px;
        margin-bottom: 30px;
    }
    .faq .accordion-button{
        font-size: 20px;
    }
}









