/* ==========================================================================
   DVO - Style Mecanicus Dark
   Clean, elegant, minimal - Dark theme
   ========================================================================== */

/* Variables */
:root {
  --black: #000000;
  --dark: #0a0a0a;
  --gray-900: #111111;
  --gray-800: #1a1a1a;
  --gray-700: #262626;
  --gray-600: #404040;
  --gray-500: #525252;
  --gray-400: #737373;
  --gray-300: #a3a3a3;
  --gray-200: #d4d4d4;
  --gray-100: #f5f5f5;
  --white: #ffffff;
  
  --font: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 800px;
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-800);
  height: 72px;
}

.nav__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo img {
  height: 40px;
  border-radius: 6px;
}

.nav__links {
  display: none;
  align-items: center;
  gap: 40px;
}

.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-400);
  transition: var(--transition);
}

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

.nav__phone {
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  padding: 10px 20px;
  background: var(--white);
  border-radius: 8px;
  transition: var(--transition);
}

.nav__phone:hover {
  background: var(--gray-200);
}

.nav__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 32px;
  padding: 4px;
}

.nav__burger span {
  width: 100%;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.nav__burger.active span:first-child {
  transform: rotate(45deg) translate(3px, 3px);
}

.nav__burger.active span:last-child {
  transform: rotate(-45deg) translate(3px, -3px);
}

@media (min-width: 1024px) {
  .nav__links { display: flex; }
  .nav__phone { display: flex; }
  .nav__burger { display: none; }
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: var(--black);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateX(100%);
  transition: var(--transition);
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu a {
  display: block;
  padding: 16px;
  font-size: 18px;
  font-weight: 500;
  color: var(--gray-300);
  border-bottom: 1px solid var(--gray-800);
}

.mobile-menu__phone {
  margin-top: auto;
  text-align: center;
  background: var(--white);
  color: var(--black) !important;
  border-radius: 12px;
  border: none !important;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  padding-top: 72px;
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100vh;
  background: var(--black);
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 24px;
  order: 1;
}

.hero__tagline {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray-500);
  margin-bottom: 16px;
}

.hero__title {
  font-size: clamp(36px, 8vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--white);
}

.hero__title span {
  color: var(--gray-500);
}

.hero__subtitle {
  font-size: 18px;
  color: var(--gray-300);
  max-width: 500px;
  margin-bottom: 32px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero__image {
  order: 2;
  height: 300px;
  overflow: hidden;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  filter: blur(0.3px);
}

@media (min-width: 1024px) {
  .hero {
    grid-template-columns: 1fr 1fr;
  }

  .hero__content {
    padding: 80px 64px;
  }

  .hero__image {
    height: auto;
  }
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  transition: var(--transition);
  cursor: pointer;
}

.btn--primary {
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--white);
}

.btn--primary:hover {
  background: var(--gray-200);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--gray-600);
}

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

.btn--block {
  width: 100%;
}

.btn--lg {
  padding: 18px 32px;
  font-size: 16px;
}

/* ==========================================================================
   Trust Bar - Icon based
   ========================================================================== */

.trust-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--gray-800);
  border-bottom: 1px solid var(--gray-800);
  background: var(--gray-900);
}

.trust-bar__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px 16px;
  text-align: center;
  border-right: 1px solid var(--gray-800);
  border-bottom: 1px solid var(--gray-800);
}

.trust-bar__item:nth-child(2n) {
  border-right: none;
}

.trust-bar__item:nth-child(n+3) {
  border-bottom: none;
}

.trust-bar__item svg {
  flex-shrink: 0;
  color: var(--white);
}

.trust-bar__item span {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-200);
}

@media (min-width: 768px) {
  .trust-bar {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .trust-bar__item {
    padding: 28px 24px;
    border-bottom: none;
  }
  
  .trust-bar__item:nth-child(2n) {
    border-right: 1px solid var(--gray-800);
  }
  
  .trust-bar__item:last-child {
    border-right: none;
  }
}

/* ==========================================================================
   Sections
   ========================================================================== */

.section {
  padding: 80px 0;
  background: var(--black);
}

.section--alt {
  background: var(--dark);
}

.section__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 24px;
}

.section__header--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section__header h2 {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 700;
  color: var(--white);
}

.section__header p {
  color: var(--gray-500);
  margin-top: 8px;
}

.section__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-500);
  transition: var(--transition);
  white-space: nowrap;
}

.section__link:hover {
  color: var(--white);
}

/* ==========================================================================
   Vehicle Cards
   ========================================================================== */

.filters-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filters-bar select {
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid var(--gray-700);
  background: var(--gray-800);
  color: var(--white);
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  min-width: 150px;
  flex: 1;
}

.filters-bar select:focus {
  outline: none;
  border-color: var(--white);
}

#resetBtn {
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid var(--gray-600);
  background: transparent;
  color: var(--gray-400);
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
}

#resetBtn:hover {
  border-color: var(--white);
  color: var(--white);
}

.vehicles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .vehicles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .vehicles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


.vehicle-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.vehicle-card__spec {
  font-size: 12px;
  color: var(--gray-400);
  background: var(--gray-800);
  padding: 4px 10px;
  border-radius: 4px;
}

.vehicle-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--gray-800);
}

.vehicle-card__price {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}

.vehicle-card__link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-500);
  transition: var(--transition);
}

.vehicle-card:hover .vehicle-card__link {
  color: var(--white);
}



/* ==========================================================================
   Forms
   ========================================================================== */

.search-form-card,
.contact-form-card {
  background: var(--gray-900);
  border: 1px solid var(--gray-800);
  border-radius: 16px;
  padding: 32px;
}

.search-form-card h3,
.contact-form-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--white);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  color: var(--white);
  border: 1px solid var(--gray-700);
  border-radius: 8px;
  transition: var(--transition);
  background: var(--gray-800);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-500);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group select {
  cursor: pointer;
}

.form-note {
  text-align: center;
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 16px;
}

/* ==========================================================================
   Services
   ========================================================================== */

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

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--gray-900);
  border: 1px solid var(--gray-800);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--gray-600);
  transform: translateY(-2px);
}

.service-card__icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}

.service-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--white);
}

.service-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ==========================================================================
   Reviews
   ========================================================================== */

.reviews-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.reviews-stars {
  color: #f59e0b;
  font-size: 18px;
  letter-spacing: 2px;
}

.reviews-rating span:last-child {
  font-size: 14px;
  color: var(--gray-500);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background: var(--gray-900);
  border: 1px solid var(--gray-800);
  border-radius: 12px;
  padding: 24px;
}

.review-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.review-card__author {
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--white);
}

.review-card__date {
  font-size: 13px;
  color: var(--gray-500);
}

.review-card__stars {
  color: #f59e0b;
  font-size: 14px;
}

.review-card__text {
  font-size: 15px;
  color: var(--gray-400);
  line-height: 1.6;
}

/* ==========================================================================
   Contact
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.contact-info h2 {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--white);
}

.contact-info > p {
  font-size: 18px;
  color: var(--gray-400);
  margin-bottom: 32px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--gray-900);
  border: 1px solid var(--gray-800);
  border-radius: 12px;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--gray-600);
}

.contact-card__icon {
  font-size: 24px;
}

.contact-card div {
  flex: 1;
}

.contact-card strong {
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
  color: var(--white);
}

.contact-card span {
  font-size: 13px;
  color: var(--gray-500);
}

.contact-card svg {
  color: var(--gray-600);
}

.contact-address {
  padding-top: 32px;
  border-top: 1px solid var(--gray-800);
}

.contact-address h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--white);
}

.contact-address > p {
  font-size: 15px;
  margin-bottom: 16px;
  color: var(--gray-300);
}

.contact-hours {
  margin-bottom: 24px;
}

.contact-hours p {
  font-size: 14px;
  color: var(--gray-500);
  margin: 4px 0;
}


/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background: var(--dark);
  color: var(--white);
  padding: 64px 0 32px;
  border-top: 1px solid var(--gray-800);
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--gray-800);
}

@media (min-width: 768px) {
  .footer__top {
    grid-template-columns: 1.5fr 2fr;
  }
}

.footer__logo {
  height: 48px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.footer__brand p {
  font-size: 14px;
  color: var(--gray-500);
  max-width: 280px;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer__col h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: var(--gray-500);
}

.footer__col a,
.footer__col span {
  display: block;
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 8px;
  transition: var(--transition);
}

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

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-size: 13px;
  color: var(--gray-600);
}

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

/* ==========================================================================
   Why Section (Pourquoi nous)
   ========================================================================== */

.section--dark {
  background: var(--gray-900);
}

.why-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-300);
  margin-bottom: 16px;
}

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

.why-card {
  background: var(--gray-800);
  border: 1px solid var(--gray-700);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: left;
  transition: var(--transition);
}

.why-card:hover {
  border-color: var(--gray-600);
  transform: translateY(-4px);
}

.why-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-700);
  border-radius: 12px;
  margin-bottom: 20px;
  color: var(--white);
}

.why-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 767px) {
  .why-card {
    padding: 24px 20px;
  }
}

/* ==========================================================================
   Services Grid
   ========================================================================== */

.section__header--center {
  text-align: center;
  display: block;
}

.section__header--center h2 {
  margin-bottom: 8px;
}

.section__subtitle {
  font-size: 16px;
  color: var(--gray-400);
  margin-bottom: 48px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--gray-900);
  border: 1px solid var(--gray-800);
  border-radius: 16px;
  padding: 32px;
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--gray-700);
}

.service-card__icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-card > p {
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-card__list {
  list-style: none;
  margin-bottom: 24px;
}

.service-card__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-300);
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-800);
}

.service-card__list li:last-child {
  border-bottom: none;
}

.service-card__list li::before {
  content: "✓";
  color: var(--white);
  font-weight: 600;
}

@media (max-width: 1023px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Contact Section
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.contact-form-wrapper h2 {
  font-size: clamp(28px, 5vw, 36px);
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-intro {
  font-size: 16px;
  color: var(--gray-400);
  margin-bottom: 32px;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  background: var(--gray-800);
  border: 1px solid var(--gray-700);
  border-radius: 10px;
  color: var(--white);
  transition: var(--transition);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--gray-500);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--white);
}

.contact-form select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a3a3a3' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
}

.contact-info__item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info__item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--white);
}

.contact-info__item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-info__item p {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.6;
}

.contact-info__item a {
  color: var(--gray-300);
  transition: var(--transition);
}

.contact-info__item a:hover {
  color: var(--white);
}

.contact-map {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--gray-700);
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

@media (max-width: 640px) {
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Footer - New Design
   ========================================================================== */

.footer {
  background: var(--black);
  border-top: 1px solid var(--gray-800);
  padding: 64px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__logo {
  width: 80px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 16px;
}

.footer__brand p {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.6;
}

.footer__links h4,
.footer__contact h4 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: var(--gray-300);
}

.footer__links a {
  display: block;
  font-size: 14px;
  color: var(--gray-400);
  padding: 6px 0;
  transition: var(--transition);
}

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

.footer__contact p {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.8;
}

.footer__contact a {
  color: var(--gray-300);
  transition: var(--transition);
}

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

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--gray-800);
  font-size: 13px;
  color: var(--gray-500);
}

.footer__bottom a {
  color: var(--gray-400);
  transition: var(--transition);
}

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

@media (max-width: 1023px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ==========================================================================
   Floating Buttons
   ========================================================================== */

.floating-buttons {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: var(--transition);
}

.floating-btn span {
  display: none;
}

.floating-btn--phone {
  background: var(--white);
  color: var(--black);
}

.floating-btn--phone:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(0,0,0,0.4);
}

.floating-btn--email {
  background: var(--gray-800);
  color: var(--white);
  border: 1px solid var(--gray-700);
}

.floating-btn--email:hover {
  background: var(--gray-700);
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(0,0,0,0.4);
}

@media (min-width: 768px) {
  .floating-btn span {
    display: inline;
  }
}

@media (max-width: 767px) {
  .floating-buttons {
    bottom: 16px;
    right: 16px;
  }
  
  .floating-btn {
    width: 56px;
    height: 56px;
    padding: 0;
    justify-content: center;
  }
}

/* ==========================================================================
   Responsive adjustments
   ========================================================================== */

@media (max-width: 640px) {
  .section {
    padding: 64px 0;
  }
  
  .section__header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .footer__links {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* ==========================================================================
   BADGES & MONTHLY PRICE - Intégration subtile
   ========================================================================== */

/* Badge générique (utilise le style existant) */
.vehicle-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  background: var(--white);
  color: var(--black);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

/* Badge Vendu - Rouge */
.vehicle-card__badge--sold {
  background: #dc2626;
  color: var(--white);
}


/* ==========================================================================
   RECHERCHE PERSONNALISÉE - Formulaire avec autocomplétion
   ========================================================================== */

.search-section {
  padding: 80px 0;
  background: var(--black);
}

.search-box {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
  background: var(--gray-900);
  border: 1px solid var(--gray-800);
  border-radius: 16px;
}

.search-box__header {
  text-align: center;
  margin-bottom: 32px;
}

.search-box__title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}

.search-box__subtitle {
  font-size: 14px;
  color: var(--gray-400);
}

/* Form Grid */
.search-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.search-form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.search-form__group--full {
  grid-column: 1 / -1;
}

.search-form__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-300);
}

.search-form__input,
.search-form__select,
.search-form__textarea {
  padding: 14px 16px;
  background: var(--black);
  border: 1px solid var(--gray-700);
  border-radius: 8px;
  font-size: 14px;
  color: var(--white);
  font-family: inherit;
  transition: border-color 0.2s ease;
}

.search-form__input::placeholder,
.search-form__textarea::placeholder {
  color: var(--gray-500);
}

.search-form__input:focus,
.search-form__select:focus,
.search-form__textarea:focus {
  outline: none;
  border-color: var(--gray-500);
}

.search-form__input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.search-form__textarea {
  resize: vertical;
  min-height: 100px;
}

.search-form__submit {
  margin-top: 24px;
  text-align: center;
}

/* Autocomplete Dropdown */
.autocomplete-wrapper {
  position: relative;
}

.autocomplete-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--gray-800);
  border: 1px solid var(--gray-700);
  border-radius: 8px;
  margin-top: 4px;
  max-height: 240px;
  overflow-y: auto;
  z-index: 100;
  display: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.autocomplete-list.active {
  display: block;
}

.autocomplete-item {
  padding: 12px 16px;
  font-size: 14px;
  color: var(--gray-200);
  cursor: pointer;
  transition: background 0.15s ease;
  border-bottom: 1px solid var(--gray-700);
}

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

.autocomplete-item:hover,
.autocomplete-item.selected {
  background: var(--gray-700);
  color: var(--white);
}

/* Responsive */
@media (max-width: 640px) {
  .search-form__grid {
    grid-template-columns: 1fr;
  }
  
  .search-box {
    padding: 24px;
    margin: 0 16px;
  }
}

/* ==========================================================================
   AVIS GOOGLE
   ========================================================================== */

.reviews-rating {
  color: #fbbf24;
  font-size: 18px;
  letter-spacing: 2px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.review-card {
  background: var(--gray-900);
  border: 1px solid var(--gray-800);
  border-radius: 12px;
  padding: 24px;
}

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

.review-card__avatar {
  width: 44px;
  height: 44px;
  background: var(--gray-700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
}

.review-card__author {
  font-weight: 600;
  font-size: 15px;
}

.review-card__date {
  font-size: 13px;
  color: var(--gray-400);
}

.review-card__stars {
  margin-left: auto;
  color: #fbbf24;
  font-size: 14px;
  letter-spacing: 1px;
}

.review-card__text {
  font-size: 14px;
  color: var(--gray-300);
  line-height: 1.7;
}

.reviews-cta {
  text-align: center;
}

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

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--gray-900);
  border: 1px solid var(--gray-800);
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: var(--gray-800);
}

.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--gray-400);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--gray-300);
  line-height: 1.7;
}

/* ==========================================================================
   COOKIE BANNER
   ========================================================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gray-900);
  border-top: 1px solid var(--gray-700);
  padding: 16px 24px;
  z-index: 9999;
  display: none;
}

.cookie-banner.active {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-content p {
  font-size: 14px;
  color: var(--gray-300);
  margin: 0;
}

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

.btn--sm {
  padding: 10px 20px;
  font-size: 13px;
}

@media (max-width: 640px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

/* Ajustement pour mobile avec cookie banner + floating buttons */
@media (max-width: 768px) {
  .cookie-banner {
    bottom: 76px;
  }
}

/* ==========================================================================
   VEHICLE CARDS — Premium Redesign v2
   ========================================================================== */

.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

@media (max-width: 640px) {
  .vehicles-grid { grid-template-columns: 1fr; gap: 16px; }
}

.vc {
  background: var(--gray-900);
  border: 1px solid var(--gray-800);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(.4,0,.2,1), box-shadow 0.25s, border-color 0.25s;
  display: flex;
  flex-direction: column;
}

.vc:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.5);
  border-color: var(--gray-600);
}

.vc--sold { opacity: 0.65; }
.vc--sold:hover { transform: none; box-shadow: none; }

.vc__img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--gray-800);
}

.vc__img-wrap img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(.4,0,.2,1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  filter: blur(0.3px);
}

.vc:hover .vc__img-wrap img { transform: translateZ(0) scale(1.06); }

/* Price pill on image */
.vc__price-pill {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  letter-spacing: -0.3px;
  z-index: 2;
}


/* Sold veil */
.vc__sold-veil {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.vc__sold-veil span {
  background: #dc2626;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 24px;
  border-radius: 6px;
}

/* Body */
.vc__body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.vc__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.vc__marque {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gray-400);
}

.vc__edition {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: 4px;
  line-height: 1.4;
}

.vc__year {
  margin-left: auto;
  font-size: 12px;
  color: var(--gray-600);
  font-weight: 500;
}

.vc__name {
  font-size: 21px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.15;
  letter-spacing: -0.3px;
}

.vc__version {
  font-size: 12px;
  color: var(--gray-500);
  margin-bottom: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-height: 18px;
}

.vc__specs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.vc__spec {
  font-size: 11px;
  color: var(--gray-400);
  background: var(--gray-800);
  border: 1px solid var(--gray-700);
  padding: 4px 10px;
  border-radius: 100px;
  font-weight: 500;
}

.vc__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--gray-800);
  margin-top: auto;
}

.vc__financing { display: flex; align-items: baseline; gap: 2px; }

.vc__mo {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.vc__mo-label {
  font-size: 11px;
  color: var(--gray-500);
  font-weight: 400;
}

.vc__cta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-500);
  transition: color 0.2s, gap 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vc:hover .vc__cta {
  color: var(--white);
  gap: 10px;
}

.vc-empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px 20px;
  color: var(--gray-500);
  font-size: 15px;
}

/* ==========================================================================
   FILTERS — Premium Redesign v2
   ========================================================================== */

.filters-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  align-items: center;
}

.filters-bar select {
  appearance: none;
  -webkit-appearance: none;
  background-color: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 10px 36px 10px 18px;
  color: var(--gray-300);
  font-size: 13px;
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23737373' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  min-width: 0;
  flex: 1;
  min-width: 130px;
}

.filters-bar select:hover {
  border-color: rgba(255,255,255,0.25);
  background-color: rgba(255,255,255,0.07);
  color: var(--white);
}

.filters-bar select:focus {
  outline: none;
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
}

.filters-bar select option {
  background: #111;
  color: #fff;
}

#resetBtn {
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(220,38,38,0.1);
  color: #ef4444;
  font-size: 12px;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.3px;
}

#resetBtn:hover {
  background: rgba(220,38,38,0.2);
  border-color: #ef4444;
}

#toggleVenduLabel {
  padding: 10px 18px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s;
  background: rgba(255,255,255,0.03);
}

#toggleVenduLabel:hover {
  border-color: rgba(255,255,255,0.25);
  color: var(--white) !important;
}

/* ==========================================================================
   ENGAGEMENTS STATS BAR
   ========================================================================== */

.engagements-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gray-700);
  border: 1px solid var(--gray-700);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 64px;
}

.stat-item {
  background: var(--gray-800);
  padding: 32px 24px;
  text-align: center;
}

.stat-item__number {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.stat-item__label {
  font-size: 13px;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .engagements-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================================================
   En 3 étapes
   ========================================================================== */

.steps-section {
  background: var(--gray-900);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  counter-reset: steps;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-card {
  background: var(--gray-800);
  border: 1px solid var(--gray-700);
  border-radius: 16px;
  padding: 36px 28px;
  position: relative;
}

.step-card__number {
  font-size: 48px;
  font-weight: 700;
  color: var(--gray-700);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -2px;
}

.step-card__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--white);
}

.step-card__text {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.7;
}

/* ==========================================================================
   Badge Histovec
   ========================================================================== */

.vc__histovec {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.75);
  color: #4ade80;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.3px;
  pointer-events: none;
}
