/*---------------------------
    Sen Automobile Theme
    Light theme inspired by senautomobile.com
----------------------------*/

/* 1. Variables & General Styles */
:root {
    --primary-color: #3A3A3A;
    --secondary-color: #F5C518;
    --accent-color: #F5C518;
    --text-color: #333333;
    --text-muted: #777777;
    --light-bg: #f5f5f5;
    --white: #ffffff;
    --body-bg: #ffffff;
    --card-bg: #ffffff;
    --border-color: #d0d0d0;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --danger-color: #c0392b;
    --box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    --box-shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --box-shadow-hover: 0 10px 40px rgba(0, 0, 0, 0.15);
    --card-radius: 8px;
    --btn-radius: 5px;
    --transition: all 0.3s ease;
    --font-family: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.7;
    background-color: var(--body-bg);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
    color: var(--primary-color);
}

h1 { font-size: 42px; font-weight: 700; }
h2 { font-size: 34px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

p { margin-bottom: 15px; }
img { max-width: 100%; height: auto; }

section {
    padding: 60px 0;
    position: relative;
}

.section-header {
    margin-bottom: 40px;
    text-align: center;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 3px;
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 16px;
}

.text-accent {
    color: var(--secondary-color);
}

/* 2. Buttons */
.btn-sen-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: #fff;
    padding: 12px 30px;
    border-radius: var(--btn-radius);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    text-transform: uppercase;
}

.btn-sen-primary:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.btn-sen-primary i { margin-right: 8px; }

.btn-sen-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: var(--btn-radius);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: 2px solid var(--secondary-color);
    text-transform: uppercase;
}

.btn-sen-secondary:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.btn-sen-secondary i { margin-right: 8px; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: var(--btn-radius);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
}

.btn:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.btn i { margin-right: 8px; }
.btn-sm { padding: 8px 20px; font-size: 12px; }
.btn-lg { padding: 14px 36px; font-size: 16px; }

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

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

/* 3. Forms */
.form-control {
    height: 48px;
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--btn-radius);
    padding: 10px 15px;
    width: 100%;
    margin-bottom: 15px;
    font-family: var(--font-family);
    transition: var(--transition);
    color: var(--text-color);
    font-size: 14px;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.15);
}

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

textarea.form-control {
    height: 150px;
    resize: vertical;
}

.form-group label {
    color: var(--text-color);
    margin-bottom: 8px;
    display: block;
    font-weight: 500;
    font-size: 14px;
}

.help-block.with-errors {
    color: var(--danger-color);
    font-size: 13px;
    margin-top: 5px;
}

select.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23777' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px 16px;
    padding-right: 40px;
}

/* 4. Preloader - supprimé */

/* 5. Header */
.header {
    width: 100%;
    position: relative;
    z-index: 999;
}

/* Top bar - yellow accent band */
.top-bar {
    background-color: var(--secondary-color);
    height: 6px;
}

/* Main header - sticky */
.main-header {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: var(--box-shadow-sm);
    position: relative;
    transition: all 0.3s ease;
    z-index: 998;
}

.main-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    box-shadow: 0 2px 20px rgba(0,0,0,0.12);
    padding: 10px 0;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

/* Add body padding when header is sticky */
body.header-sticky {
    padding-top: 90px;
}

.logo img {
    max-height: 90px;
    transition: var(--transition);
}

.logo img:hover { transform: scale(1.03); }

.logo h2 {
    margin: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 28px;
}

.navigation-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.navigation-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navigation-menu li { margin-left: 25px; position: relative; }

.navigation-menu li a {
    color: var(--text-color);
    font-weight: 500;
    padding: 10px 0;
    position: relative;
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navigation-menu li a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.navigation-menu li a:hover::after,
.navigation-menu li.active a::after {
    width: 100%;
}

.navigation-menu li.active a,
.navigation-menu li a:hover {
    color: var(--secondary-color);
}

/* Dropdown Menu */
.has-dropdown { position: relative; }

.has-dropdown .dropdown-arrow {
    font-size: 10px;
    margin-left: 4px;
    transition: var(--transition);
}

.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-radius: 0 0 var(--card-radius) var(--card-radius);
    list-style: none;
    padding: 8px 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 1000;
    border-top: 3px solid var(--secondary-color);
}

.has-dropdown:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu-custom li {
    margin: 0 !important;
    padding: 0 !important;
    border-bottom: none !important;
}

.dropdown-menu-custom li a {
    display: block;
    padding: 10px 20px !important;
    color: var(--text-color);
    font-size: 13px;
    font-weight: 400;
    transition: var(--transition);
}

.dropdown-menu-custom li a::after {
    display: none !important;
}

.dropdown-menu-custom li a:hover {
    background: var(--light-bg);
    color: var(--secondary-color);
    padding-left: 25px !important;
}

/* Mobile Dropdown */
.mobile-dropdown-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    padding-left: 15px;
}

.mobile-dropdown.open .mobile-dropdown-menu {
    display: block;
}

.mobile-dropdown-toggle .fas.fa-chevron-down {
    transition: var(--transition);
    font-size: 10px;
    margin-left: 5px;
}

.mobile-dropdown.open .mobile-dropdown-toggle .fas.fa-chevron-down {
    transform: rotate(180deg);
}

.mobile-dropdown-menu li {
    border-bottom: none !important;
    padding: 8px 0 !important;
}

.mobile-dropdown-menu li a {
    font-size: 13px;
    color: var(--text-muted);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    width: 30px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    height: 3px;
    width: 100%;
    background-color: var(--primary-color);
    margin-bottom: 5px;
    border-radius: 3px;
    transition: var(--transition);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: #fff;
    z-index: 999;
    padding: 20px;
    box-shadow: -5px 0 30px rgba(0,0,0,0.15);
    transition: var(--transition);
    overflow-y: auto;
}

.mobile-menu.active { right: 0; }

.mobile-menu .navigation-menu {
    flex-direction: column;
    margin-top: 50px;
}

.mobile-menu .navigation-menu li {
    margin: 0;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    font-size: 24px;
    color: var(--primary-color);
    transition: var(--transition);
}

.mobile-menu-close:hover {
    color: var(--secondary-color);
}

/* 6. Hero Slider */
.hero-slider-section {
    position: relative;
    padding: 0;
}

.hero-slider {
    width: 100%;
}

.hero-slide {
    position: relative;
    overflow: hidden;
    line-height: 0;
}

.hero-slide-bg {
    width: 100%;
    height: auto;
    display: block;
}

/* Slick Slider Arrows & Dots */
.hero-slider .slick-prev,
.hero-slider .slick-next {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    z-index: 10;
    transition: var(--transition);
}

.hero-slider .slick-prev { left: 30px; }
.hero-slider .slick-next { right: 30px; }

.hero-slider .slick-prev:hover,
.hero-slider .slick-next:hover {
    background: var(--secondary-color);
}

.hero-slider .slick-prev::before,
.hero-slider .slick-next::before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 18px;
    color: #fff;
}

.hero-slider .slick-prev::before { content: '\f053'; }
.hero-slider .slick-next::before { content: '\f054'; }

.hero-slider .slick-dots {
    bottom: 15px;
    z-index: 10;
}

.hero-slider .slick-dots li button::before {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.4);
}

.hero-slider .slick-dots li.slick-active button::before {
    color: var(--secondary-color);
}

/* 7. Search Box */
.search-card {
    background-color: var(--light-bg);
    border-radius: var(--card-radius);
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.search-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: flex-end;
}

.search-form .form-group {
    flex: 1 0 18%;
    min-width: 160px;
    margin-bottom: 0;
}

.search-form .form-control {
    margin-bottom: 0;
    height: 45px;
}

.search-form .search-btn {
    height: 45px;
}

.search-card-title {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.search-section {
    padding: 40px 0 0;
    background-color: #fff;
}

/* 8. Vehicles Section */
.vehicles-section {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.vehicles-sort {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    gap: 10px;
}

.vehicles-sort label {
    font-weight: 500;
    color: var(--text-muted);
    white-space: nowrap;
    margin-bottom: 0;
}

.vehicles-sort select {
    max-width: 250px;
    height: 40px;
    margin-bottom: 0;
}

.vehicles-container {
    position: relative;
    min-height: 200px;
}

/* Vehicle Cards - Like senautomobile.com */
.vehicle-card {
    background-color: #fff;
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow-sm);
    margin-bottom: 30px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.vehicle-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.vehicle-card-link:hover {
    color: inherit;
}

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

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.vehicle-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--secondary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 1;
}

.vehicle-tag.reserved {
    background: var(--accent-color);
}

.vehicle-price-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 8px 18px;
    font-size: 16px;
    font-weight: 700;
    z-index: 1;
    border-top-left-radius: var(--card-radius);
}

.vehicle-content {
    padding: 18px;
    text-align: center;
}

.vehicle-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1.4;
}

.vehicle-price-text {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

.vehicle-version {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vehicle-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.vehicle-meta span {
    font-size: 12px;
    color: var(--text-muted);
    background: var(--light-bg);
    padding: 3px 8px;
    border-radius: 3px;
}

.vehicle-meta span i {
    color: var(--secondary-color);
    margin-right: 4px;
    font-size: 11px;
}

.vehicle-tag.new-tag {
    background: var(--success-color);
    top: 10px;
    right: 10px;
    left: auto;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.pagination ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    border-radius: var(--btn-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow-sm);
    border: 1px solid var(--border-color);
}

.pagination ul li {
    margin: 0;
    border-right: 1px solid var(--border-color);
}

.pagination ul li:last-child { border-right: none; }

.pagination ul li a {
    display: block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    background-color: #fff;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
}

.pagination ul li a:hover,
.pagination ul li a.active {
    background-color: var(--primary-color);
    color: white;
}

/* 9. About Section */
.about-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.about-image {
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

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

.about-content {
    padding: 20px 0 20px 30px;
}

.about-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-quote {
    background: var(--light-bg);
    border-left: 4px solid var(--secondary-color);
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 0 var(--btn-radius) var(--btn-radius) 0;
    font-style: italic;
    color: var(--text-muted);
}

.about-quote p {
    margin: 0;
    font-size: 16px;
}

/* 10. Services Section (numbered blocks) */
.services-section {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.service-card {
    background: #fff;
    border-radius: var(--card-radius);
    padding: 30px 25px;
    text-align: center;
    box-shadow: var(--box-shadow-sm);
    margin-bottom: 30px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-hover);
    border-color: var(--secondary-color);
}

.service-number {
    font-size: 60px;
    font-weight: 800;
    color: rgba(245, 197, 24, 0.2);
    line-height: 1;
    margin-bottom: 15px;
    position: relative;
}

.service-card:hover .service-number {
    color: rgba(245, 197, 24, 0.35);
}

.service-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.service-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* 11. CTA Section - Redesigned with shapes */
.cta-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.cta-card {
    position: relative;
    border-radius: 16px;
    padding: 50px 40px 50px 120px;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.cta-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* Card shapes */
.cta-card-shape {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    opacity: 0.15;
    transition: all 0.4s ease;
}

.cta-card:hover .cta-card-shape {
    transform: scale(1.15);
}

.cta-card-shape-2 {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    opacity: 0.08;
    transition: all 0.4s ease;
}

.cta-card:hover .cta-card-shape-2 {
    transform: scale(1.2);
}

/* Sell CTA */
.cta-sell {
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
    color: #fff;
}

.cta-sell .cta-card-shape {
    background: var(--secondary-color);
}

.cta-sell .cta-card-shape-2 {
    background: #fff;
}

.cta-sell h3 { color: #fff; }
.cta-sell p { color: rgba(255,255,255,0.85); }

/* Buy CTA */
.cta-buy {
    background: linear-gradient(135deg, #555555 0%, var(--primary-color) 100%);
    color: #fff;
}

.cta-buy .cta-card-shape {
    background: #fff;
}

.cta-buy .cta-card-shape-2 {
    background: var(--primary-color);
}

.cta-buy h3 { color: #fff; }
.cta-buy p { color: rgba(255,255,255,0.85); }

/* CTA icon */
.cta-card-icon {
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    transition: all 0.4s ease;
}

.cta-card:hover .cta-card-icon {
    background: rgba(255,255,255,0.25);
    transform: translateY(-50%) scale(1.1);
}

.cta-card-body {
    position: relative;
    z-index: 2;
}

.cta-card-body h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.cta-highlight {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: rgba(255,255,255,0.95) !important;
}

.cta-card-body p {
    margin-bottom: 20px;
    font-size: 15px;
}

/* CTA buttons */
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.btn-cta:hover {
    background: #fff;
    border-color: #fff;
    transform: translateX(5px);
}

.btn-cta-sell:hover { color: var(--primary-color); }
.btn-cta-buy:hover { color: var(--secondary-color); }

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

.btn-cta:hover i {
    transform: translateX(4px);
}

/* 12. Testimonials */
.testimonials-section {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.testimonial-item {
    background: #fff;
    border-radius: var(--card-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow-sm);
    margin: 10px;
    border: 1px solid var(--border-color);
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 15px;
}

.testimonial-author h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
    font-size: 16px;
}

/* 13. Breadcrumb */
.breadcrumb-section {
    background-color: var(--primary-color);
    padding: 80px 0 50px;
    position: relative;
    overflow: hidden;
}

.breadcrumb-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    filter: brightness(0.5);
}

.breadcrumb-content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
}

.breadcrumb-content h1 {
    color: white;
    margin-bottom: 15px;
    font-size: 36px;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
}

.breadcrumb-list li {
    position: relative;
    padding-right: 25px;
    margin-right: 15px;
    color: rgba(255,255,255,0.7);
}

.breadcrumb-list li::after {
    content: '/';
    position: absolute;
    right: 0;
    top: 0;
}

.breadcrumb-list li:last-child {
    padding-right: 0;
    margin-right: 0;
    color: var(--secondary-color);
}

.breadcrumb-list li:last-child::after { display: none; }

.breadcrumb-list li a {
    color: rgba(255,255,255,0.85);
}

.breadcrumb-list li a:hover {
    color: #fff;
}

/* 14. Footer - Wave Design */
.footer-wave {
    position: relative;
    margin-top: 60px;
}

.footer-wave-shape {
    position: relative;
    line-height: 0;
    margin-bottom: -1px;
}

.footer-wave-shape svg {
    width: 100%;
    height: 80px;
    display: block;
}

.footer-wave-content {
    background-color: #3A3A3A;
    padding: 30px 0 40px;
}

.footer-wave-line1 {
    margin: 0 0 5px;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.5px;
}

.footer-wave-line2 {
    margin: 0;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.5px;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* 15. Vehicle Details Page */
.vehicle-details-section {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.vehicle-gallery { margin-bottom: 30px; }

.vehicle-gallery-main img,
.vehicle-gallery-main .video-wrapper {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--card-radius);
    box-shadow: var(--box-shadow-sm);
}

.vehicle-gallery-main .slick-slide { padding: 5px; }

.vehicle-gallery-thumbs {
    margin-top: 10px;
    margin-left: -5px;
    margin-right: -5px;
}

.vehicle-gallery-thumb { padding: 5px; }

.vehicle-gallery-thumb img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: var(--btn-radius);
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition);
    border: 2px solid transparent;
}

.vehicle-gallery-thumb img:hover,
.vehicle-gallery-thumb.slick-current img {
    opacity: 1;
    border-color: var(--secondary-color);
}

.vehicle-details-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    background-color: #fff;
    padding: 20px;
    border-radius: var(--card-radius);
    box-shadow: var(--box-shadow-sm);
    border: 1px solid var(--border-color);
}

.vehicle-details-title h2 {
    margin: 0;
    font-size: 26px;
    color: var(--primary-color);
}

.vehicle-details-title p {
    margin: 5px 0 0;
    color: var(--text-muted);
}

.vehicle-details-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    padding: 10px 20px;
    background-color: rgba(245, 197, 24, 0.15);
    border-radius: var(--btn-radius);
    text-align: center;
}

.vehicle-details-price.reserved {
    color: var(--accent-color);
    background-color: rgba(52, 152, 219, 0.08);
}

.vehicle-details-price.reserved::after {
    content: 'Réservé';
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--accent-color);
}

.vehicle-details-tabs {
    margin-top: 30px;
    background-color: #fff;
    border-radius: var(--card-radius);
    box-shadow: var(--box-shadow-sm);
    border: 1px solid var(--border-color);
    padding: 25px;
}

.nav-tabs {
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 20px;
    display: flex;
    gap: 5px;
}

.nav-tabs .nav-link {
    border: none;
    padding: 10px 25px;
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    background-color: transparent;
    border-radius: var(--btn-radius) var(--btn-radius) 0 0;
    transition: var(--transition);
}

.nav-tabs .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-tabs .nav-link:hover { background-color: var(--light-bg); }

.nav-tabs .nav-link:hover::after,
.nav-tabs .nav-link.active::after { width: 100%; }

.nav-tabs .nav-link.active {
    color: var(--primary-color);
    background-color: rgba(245, 197, 24, 0.12);
}

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

.vehicle-specifications { margin-bottom: 25px; }

.vehicle-specifications h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.vehicle-specifications h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
}

.specs-list {
    display: flex;
    flex-wrap: wrap;
    background-color: var(--light-bg);
    border-radius: var(--btn-radius);
    padding: 15px;
}

.specs-item {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 10px 12px;
    margin-bottom: 10px;
    color: var(--text-color);
    font-size: 14px;
}

.specs-item i {
    color: var(--secondary-color);
    margin-right: 8px;
    font-size: 14px;
}

.vehicle-equipment { margin-bottom: 25px; }

.vehicle-equipment h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.vehicle-equipment h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
}

.equipment-list {
    columns: 3;
    column-gap: 25px;
    list-style: none;
    padding: 15px;
    margin: 0;
    background-color: var(--light-bg);
    border-radius: var(--btn-radius);
}

.equipment-list li {
    margin-bottom: 10px;
    padding-left: 22px;
    position: relative;
    color: var(--text-color);
    break-inside: avoid;
    font-size: 14px;
}

.equipment-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--success-color);
    font-size: 12px;
}

.vehicle-reservation {
    text-align: center;
    margin-top: 30px;
}

.contact-form-box {
    background-color: #fff;
    border-radius: var(--card-radius);
    padding: 30px;
    box-shadow: var(--box-shadow-sm);
    border: 1px solid var(--border-color);
    margin-top: 40px;
}

.contact-form-box h3 {
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.contact-form-box h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
    margin: 0 auto;
}

.vehicle-sidebar {
    background-color: #fff;
    border-radius: var(--card-radius);
    padding: 25px;
    box-shadow: var(--box-shadow-sm);
    border: 1px solid var(--border-color);
}

.sidebar-widget { margin-bottom: 25px; }
.sidebar-widget:last-child { margin-bottom: 0; }

.sidebar-widget h4 {
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
    color: var(--primary-color);
}

.vehicle-details-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vehicle-details-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.vehicle-details-list li:last-child { border-bottom: none; }

.vehicle-details-list li span:first-child { color: var(--text-muted); }
.vehicle-details-list li span:last-child { color: var(--text-color); font-weight: 500; }

.contact-sidebar {
    background-color: #fff;
    border-radius: var(--card-radius);
    padding: 25px;
    box-shadow: var(--box-shadow-sm);
    border: 1px solid var(--border-color);
    margin-top: 25px;
}

.contact-sidebar h4 {
    margin-bottom: 18px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.contact-sidebar h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
}

.sidebar-contact-info p {
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 14px;
}

.sidebar-contact-info p i {
    color: var(--secondary-color);
    margin-right: 8px;
    width: 18px;
    text-align: center;
}

.sidebar-contact-info a { color: var(--text-color); }
.sidebar-contact-info a:hover { color: var(--secondary-color); }

.sidebar-social h5 { margin: 15px 0 10px; color: var(--primary-color); }

.sidebar-social .social-links { margin-top: 8px; display: flex; }

.sidebar-social .social-links a {
    width: 35px;
    height: 35px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    border-radius: 50%;
    margin-right: 6px;
    color: var(--text-muted);
    transition: var(--transition);
}

.sidebar-social .social-links a:hover {
    background: var(--secondary-color);
    color: #fff;
}

/* 16. Contact Page */
.contact-section {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.contact-info-box {
    background-color: #fff;
    border-radius: var(--card-radius);
    padding: 25px;
    box-shadow: var(--box-shadow-sm);
    margin-bottom: 25px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    transition: var(--transition);
}

.contact-info-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
    border-color: var(--secondary-color);
}

.contact-info-icon {
    font-size: 35px;
    color: var(--secondary-color);
    margin-right: 18px;
    margin-top: 3px;
}

.contact-info-content { flex: 1; }

.contact-info-content h4 {
    margin-bottom: 10px;
    color: var(--primary-color);
    font-size: 18px;
}

.contact-info-content p {
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
}

.contact-info-content a { color: var(--text-color); }
.contact-info-content a:hover { color: var(--secondary-color); }

.map-section {
    height: 400px;
    margin-top: 60px;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--card-radius);
    box-shadow: var(--box-shadow-sm);
}

/* 17. Success & Cancel Pages */
.success-section,
.cancel-section {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.success-card,
.cancel-card {
    background-color: #fff;
    border-radius: var(--card-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    text-align: center;
    border: 1px solid var(--border-color);
}

.success-icon, .cancel-icon {
    font-size: 70px;
    margin-bottom: 25px;
}

.success-icon { color: var(--success-color); }
.cancel-icon { color: var(--danger-color); }

.success-content h2 { color: var(--success-color); }
.cancel-content h2 { color: var(--danger-color); }

.vehicle-info {
    margin: 25px 0;
    background-color: var(--light-bg);
    border-radius: var(--btn-radius);
    padding: 20px;
}

.next-steps, .possible-reasons, .contact-info {
    text-align: left;
    margin-top: 25px;
}

.next-steps h3, .possible-reasons h3, .contact-info h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.next-steps h3::after, .possible-reasons h3::after, .contact-info h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
}

.next-steps ol, .possible-reasons ul { padding-left: 22px; }

.next-steps li, .possible-reasons li {
    margin-bottom: 10px;
    color: var(--text-muted);
}

.contact-info ul { list-style: none; padding: 0; }

.contact-info li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.contact-info li i {
    margin-right: 12px;
    color: var(--secondary-color);
    width: 18px;
    text-align: center;
}

.actions { margin-top: 30px; }

/* 18. Reservation Page */
.reservation-section {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.reservation-vehicle-details {
    background-color: #fff;
    border-radius: var(--card-radius);
    padding: 25px;
    box-shadow: var(--box-shadow-sm);
    border: 1px solid var(--border-color);
}

.reservation-vehicle-details .vehicle-image img {
    border-radius: var(--btn-radius);
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.price {
    font-size: 22px;
    color: var(--primary-color);
    font-weight: 700;
}

.alert-info {
    background-color: rgba(52, 152, 219, 0.08);
    border: 1px solid rgba(52, 152, 219, 0.2);
    color: var(--text-color);
    border-radius: var(--btn-radius);
    padding: 15px 18px;
}

.alert-info i {
    color: var(--accent-color);
    margin-right: 8px;
}

/* 19. Reprise Section */
.reprise-section {
    padding: 60px 0;
    background-color: var(--light-bg);
}

/* 20. Quote Section */
.quote-section {
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    opacity: 0.85;
}

.blockquote {
    position: relative;
    z-index: 1;
    padding: 25px;
    color: white;
    font-size: 18px;
    font-style: italic;
}

.blockquote::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 0;
    left: -15px;
    font-size: 25px;
    color: var(--secondary-color);
    opacity: 0.5;
}

/* 21. Loading Overlay */
.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
    border-radius: var(--card-radius);
}

.hidden { display: none; }

/* 21b. Gallery Image Popup click style */
.vehicle-gallery-main .image-popup {
    display: block;
    cursor: zoom-in;
    position: relative;
}

.vehicle-gallery-main .image-popup::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 5;
}

.vehicle-gallery-main .slick-slide:hover .image-popup::after {
    opacity: 1;
}

/* 22a. Financement Page Styles */
.page-content-section {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.content-box {
    background: #fff;
    border-radius: var(--card-radius);
    padding: 35px;
    box-shadow: var(--box-shadow-sm);
    border: 1px solid var(--border-color);
}

.content-box h2 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.content-box h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 3px;
}

.alert-warning-custom {
    background-color: rgba(243, 156, 18, 0.1);
    border: 1px solid rgba(243, 156, 18, 0.3);
    color: var(--text-color);
    border-radius: var(--btn-radius);
    padding: 15px 20px;
    font-size: 14px;
}

.alert-warning-custom i {
    color: var(--warning-color);
    margin-right: 8px;
}

.finance-feature-box {
    background: var(--light-bg);
    border-radius: var(--card-radius);
    padding: 30px 25px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    height: 100%;
}

.finance-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
    border-color: var(--secondary-color);
}

.finance-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}

.finance-feature-box:hover .finance-icon {
    background: var(--secondary-color);
}

/* Steps */
.steps-list {
    margin-top: 25px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.step-item:last-child {
    border-bottom: none;
}

.step-number {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin-right: 20px;
}

.step-content h5 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.step-content p {
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
}

/* Solution cards */
.solution-card {
    background: var(--light-bg);
    border-radius: var(--card-radius);
    padding: 30px;
    height: 100%;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
    border-color: var(--accent-color);
}

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

.solution-header i {
    font-size: 30px;
    color: var(--accent-color);
}

.solution-header h4 {
    margin: 0;
    font-size: 16px;
}

.solution-card ul {
    padding-left: 20px;
    margin: 0;
}

.solution-card ul li {
    margin-bottom: 6px;
    font-size: 13px;
    color: var(--text-muted);
}

/* Option cards */
.option-card {
    background: var(--light-bg);
    border-radius: var(--card-radius);
    padding: 25px;
    text-align: center;
    height: 100%;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.option-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.option-card i {
    font-size: 35px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.option-card h5 {
    font-size: 15px;
    margin-bottom: 10px;
}

.option-card p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

/* Documents table */
.docs-table {
    background: var(--light-bg);
    border-radius: var(--card-radius);
    padding: 25px;
    height: 100%;
    border: 1px solid var(--border-color);
}

.docs-table h5 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.docs-table h5 i {
    margin-right: 8px;
    color: var(--secondary-color);
}

.docs-table ul {
    padding-left: 20px;
    margin: 0;
}

.docs-table ul li {
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-muted);
}

/* 22b. Service Pages - SIV, Garantie, SAV */
.styled-list {
    padding-left: 0;
    counter-reset: styled-counter;
    list-style: none;
}

.styled-list li {
    counter-increment: styled-counter;
    padding: 15px 15px 15px 60px;
    margin-bottom: 10px;
    background: var(--light-bg);
    border-radius: var(--btn-radius);
    border: 1px solid var(--border-color);
    position: relative;
    font-size: 14px;
}

.styled-list li::before {
    content: counter(styled-counter);
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

/* Accordion styles */
.accordion-item {
    border: 1px solid var(--border-color) !important;
    border-radius: var(--btn-radius) !important;
    margin-bottom: 10px;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 15px;
    background-color: var(--light-bg);
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--border-color);
}

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

.accordion-body ul li {
    margin-bottom: 8px;
    color: var(--text-muted);
    font-size: 14px;
}

/* Guarantee page */
.guarantee-highlight {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--light-bg);
    border-radius: var(--card-radius);
    border-left: 4px solid var(--accent-color);
}

.guarantee-icon {
    font-size: 40px;
    color: var(--accent-color);
    min-width: 50px;
    text-align: center;
}

.guarantee-content h4 {
    margin-bottom: 8px;
}

.guarantee-content p {
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
}

.guarantee-stat {
    padding: 20px;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
}

/* SAV features */
.sav-feature {
    padding: 25px;
    background: var(--light-bg);
    border-radius: var(--card-radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
}

.sav-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
    border-color: var(--secondary-color);
}

.sav-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 15px;
}

.sav-feature:hover .sav-icon {
    background: var(--secondary-color);
}

.spinner.inline {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s linear infinite;
    margin-right: 8px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* 21b. Page Featured Images & Partner Logos */
.page-featured-image {
    border-radius: var(--card-radius);
    overflow: hidden;
}

.page-featured-image img {
    transition: transform 0.5s ease;
}

.page-featured-image:hover img {
    transform: scale(1.03);
}

.partner-logos {
    padding: 15px 0;
}

.partner-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
    padding: 5px 8px;
    background: #fff;
    border-radius: 6px;
    box-shadow: var(--box-shadow-sm);
    transition: var(--transition);
}

.partner-logo:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

/* 22a-bis. Homepage Service Info Cards */
.info-cards-section {
    padding: 60px 0;
    background-color: #fff;
}

.info-card {
    background: #fff;
    border-radius: var(--card-radius);
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--box-shadow-sm);
    margin-bottom: 30px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary-color);
}

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

.info-card-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.info-card:hover .info-card-icon {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: scale(1.1);
}

.info-card-picto {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-card-picto img {
    max-width: 100%;
    max-height: 90px;
    object-fit: contain;
    transition: var(--transition);
}

.info-card:hover .info-card-picto img {
    transform: scale(1.1);
}

.info-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Social links - logo only style */
.social-icons-only {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-icons-only a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    font-size: 18px;
    transition: var(--transition);
}

.social-icons-only a:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Breadcrumb yellow top band */
.breadcrumb-top-band {
    background-color: var(--secondary-color);
    height: 6px;
}

/* Guarantee partners section */
.partner-card {
    background: #fff;
    border-radius: var(--card-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow-sm);
    border: 1px solid var(--border-color);
    height: 100%;
    transition: var(--transition);
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.partner-card img {
    max-height: 60px;
    margin-bottom: 15px;
}

.partner-card h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

/* Guarantee coverage cards */
.coverage-card {
    background: var(--light-bg);
    border-radius: var(--card-radius);
    padding: 25px;
    text-align: center;
    height: 100%;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.coverage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
    border-color: var(--secondary-color);
}

.coverage-card i {
    font-size: 35px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.coverage-card h5 {
    font-size: 15px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.coverage-card p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

/* Legal mentions styling */
.legal-mention {
    background: rgba(245, 197, 24, 0.1);
    border: 1px solid rgba(245, 197, 24, 0.3);
    border-radius: var(--btn-radius);
    padding: 20px;
    font-size: 13px;
    color: var(--text-color);
    margin-top: 30px;
}

.legal-mention i {
    color: var(--secondary-color);
    margin-right: 8px;
}

.legal-mention strong {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

/* Vehicle tag updated */
.vehicle-tag {
    background: var(--primary-color);
}

/* 22. Responsive */
@media (max-width: 1199px) {
    .container { max-width: 100%; }
    h1 { font-size: 36px; }
    h2 { font-size: 28px; }
    /* slider responsive - images only */
    .equipment-list { columns: 2; }
}

@media (max-width: 991px) {
    section { padding: 50px 0; }
    
    .mobile-menu-toggle { display: flex; }
    .main-nav { display: none; }
    
    /* slider responsive - images auto height */
    
    .search-form .form-group { flex: 1 0 45%; }
    
    .specs-item { flex: 0 0 50%; max-width: 50%; }
    .equipment-list { columns: 2; }
    .vehicle-sidebar { margin-top: 30px; }
    
    .vehicle-details-header { flex-direction: column; }
    .vehicle-details-price { margin-top: 12px; }
    
    .about-content { padding: 20px 0 0 0; }
}

@media (max-width: 767px) {
    section { padding: 40px 0; }
    h1 { font-size: 28px; }
    h2 { font-size: 24px; }
    .section-header { margin-bottom: 25px; }
    
    .top-bar .contact-info a {
        margin-right: 8px;
        font-size: 0;
    }
    .top-bar .contact-info a i { font-size: 14px; margin-right: 0; }
    
    /* slider responsive - images auto height */
    
    .search-form .form-group {
        flex: 1 0 100%;
        min-width: 100%;
    }
    
    .vehicles-sort { flex-direction: column; align-items: flex-start; }
    .vehicles-sort select { max-width: 100%; }
    
    .specs-item { flex: 0 0 100%; max-width: 100%; }
    .equipment-list { columns: 1; }
    
    .vehicle-gallery-main img,
    .vehicle-gallery-main .video-wrapper { height: 280px; }
    
    .about-image img { height: 250px; }
    
    .cta-card {
        padding: 30px 20px 30px 100px;
        min-height: 240px;
    }
    
    .cta-card-body h3 { font-size: 20px; }
    .cta-highlight { font-size: 16px; }
}

@media (max-width: 575px) {
    .top-bar { display: none; }
    
    /* slider responsive - images auto height */
    
    .btn, .btn-sen-primary, .btn-sen-secondary {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .vehicle-gallery-thumb img { height: 55px; }
    
    .nav-tabs .nav-link {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .success-card, .cancel-card,
    .contact-form-box, .vehicle-details-tabs { padding: 18px; }
    
    .service-number { font-size: 45px; }
    
    .cta-card {
        padding: 25px 20px;
        padding-left: 20px;
        text-align: center;
    }
    
    .cta-card-icon {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 0 auto 20px;
    }
    
    .cta-card-body h3 { font-size: 18px; }
    .cta-highlight { font-size: 15px; }
    
    .content-box { padding: 20px; }
    .finance-feature-box { padding: 20px 15px; }
    .guarantee-highlight { flex-direction: column; text-align: center; }
}
