:root {
  --bg: #f6f7fb;
  --card: #ffffff;
  --line: #e7e9f1;
  --muted: #6b7280;
  --text: #111827;
  --primary: #0077e1;
  --primary2: #06b6d4;
  --header: #000;
  --error: #d32f2f;

  --gutter-desktop: 24px;
  --gutter-mobile: 16px;
  --card-pad: 16px;
  --card-pad-tight: 12px;
  --section-gap: 16px;
  --radius-lg: 18px;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

body.body-fixed {
  position: fixed;
  overflow: hidden;
  width: 100%;
  left: 0;
  right: 0;
}

a {
  text-decoration: none;
}

a.button:active,
a.button:link,
a.button:focus {
  color: #fff;
}

ul {
  margin-bottom: 0 !important;
}

.error {
  color: var(--error) !important;
  font-size:13px;
}

.fw-500 {
  font-weight: 500;
}
.fw-600 {
  font-weight: 500;
}

.message-ticker {
  margin-bottom: 16px;
  padding: 10px 14px;
  background: #06b6d4;
  color: #f9fafb;
  font-size: 14px;
  border-radius: 4px;
}

.ticker-text {
  display: block;
  white-space: normal;
}

/* Layout */
.page {
  min-height: calc(100vh - 132px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.main {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 0;
  max-width: 1200px;
  padding: var(--gutter-desktop);
  margin: 0 auto;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.srp-main {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.vdp-main {
  display: block;
  max-width: 1200px;
  padding: var(--gutter-desktop);
  margin: 0 auto;
  width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--gutter-desktop);
}

/* Panels */
.panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  -webkit-box-shadow: 0 18px 40px rgba(17, 24, 39, 0.06);
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.06);
}

.sticky-filters {
  position: sticky;
  top: 14px;
}

/* Filters */
.filters {
  width: 280px;
  border: 1px solid #e5e7eb;
  padding: 16px;
  background: #f9fafb;
  overflow-y: auto;
}

.filters-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 16px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
}

.filters-group {
  border-top: 1px solid #e5e7eb;
  padding-top: 12px;
  margin-top: 12px;
}

.filters-group:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.filters-group-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
  margin-bottom: 8px;
}

.filters-footer {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

/* Results */
.results-area {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 16px 0px 16px 16px;
  overflow-y: auto;
}

.results-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 16px;
}

.results-count {
  font-size: 13px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.results-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 13px;
  color: #6b7280;
}

.results-controls select {
  color: #111827;
  border: 1px solid #d1d5db;
  padding: 4px 8px;
  font-size: 13px;
}

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

/* Form fields */
.field,
.form-group {
  margin-bottom: 10px;
}

.field label,
label {
  display: block;
  font-size: 12px;
  margin-bottom: 4px;
  color: #6b7280;
}

.form-group select,
.field select,
.form-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  padding: 6px 32px 6px 8px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #111827;
  font-size: 13px;
  line-height: 1.4;
  border-radius: 0;
  outline: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 16px;
}

.form-group select:focus,
.field select:focus,
.form-select:focus {
  border-color: #2563eb;
  -webkit-box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group select:hover,
.field select:hover,
.form-select:hover {
  border-color: #9ca3af;
}

.field input,
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 6px 8px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #111827;
  font-size: 13px;
  outline: none;
}

.field input:focus,
.form-group input:focus,
.form-group textarea:focus {
  border-color: #2563eb;
}

.range-row,
.form-row,
.form-actions,
.top-actions,
.price-actions,
.footer-icons,
.header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.range-row .field {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-bottom: 0;
}

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

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

/* Chips */
.chip-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip {
  border: 1px solid var(--line);
  background: #fff;
  color: #374151;
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  font-size: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: background 0.12s ease, border-color 0.12s ease;
  -o-transition: background 0.12s ease, border-color 0.12s ease;
  transition: background 0.12s ease, border-color 0.12s ease;
}

.chip:hover {
  background: #f8fafc;
}

.chip.active {
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.35);
  color: #1f3fb8;
}

/* Buttons */
.btn {
  padding: 8px 14px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #111827;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
}

.btn:hover {
  background: #f3f4f6;
}

.btn-primary {
  background: -o-linear-gradient(315deg, var(--primary), var(--primary2)) !important;
  background: linear-gradient(135deg, var(--primary), var(--primary2)) !important;
  border: none !important;
  border-radius: 0 !important;
  color: #f9fafb !important;
}

.btn-primary:hover {
  -webkit-filter: brightness(0.97);
  filter: brightness(0.97);
  background: #1d4ed8;
}

.btn-outline-secondary {
  border-color: #d7dbe8;
  color: #374151;
}

.btn-outline-secondary:hover {
  background: #f8fafc;
}

.btn-outline {
  background: transparent;
  color: white;
  padding: 14px 28px;
  -webkit-box-shadow: inset 0 0 0 1px #fff;
  box-shadow: inset 0 0 0 1px #fff;
}

.btn-outline:hover {
  background: white;
  color: #111827 !important;
}

.btn-large {
  padding: 14px 28px;
}

/* Links */
.link,
.small-link,
.small-link-vdp {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #2563eb;
  cursor: pointer;
}

.link:hover,
.small-link:hover,
.small-link-vdp:hover,
.cta-link:hover,
.footer-nav a:hover {
  color:var(--primary2)
}

/* Vehicle cards */
.vehicle-card,
.vcard {
  border: 1px solid #e5e7eb;
  background: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}

.vehicle-card {
  padding: 12px;
}

.vcard {
  padding: 12px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  -webkit-box-shadow: 0 18px 40px rgba(17, 24, 39, 0.06);
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.06);
  -webkit-transition: border-color 0.12s ease, -webkit-transform 0.12s ease, -webkit-box-shadow 0.12s ease;
  transition: border-color 0.12s ease, -webkit-transform 0.12s ease, -webkit-box-shadow 0.12s ease;
  -o-transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease, -webkit-transform 0.12s ease, -webkit-box-shadow 0.12s ease;
}

.vcard:hover {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.25);
  -webkit-box-shadow: 0 24px 56px rgba(17, 24, 39, 0.1);
  box-shadow: 0 24px 56px rgba(17, 24, 39, 0.1);
}

.vehicle-thumb,
.gallery-main,
.thumb {
  background: #f3f4f6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #9ca3af;
}

.vehicle-thumb {
  font-size: 12px;
}

.thumb {
  height: auto;
  width: 80px;
  padding: 5px;
  font-size: 11px;
}

.imgwrap {
  position: relative;
  aspect-ratio: 16/9;
  background: -o-linear-gradient(315deg, #eef2ff, #f8fbff);
  background: linear-gradient(135deg, #eef2ff, #f8fbff);
}

.imgwrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.vehicle-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  gap: 8px;
}

.vehicle-title {
  font-size: 14px;
  font-weight: 500;
}

.vehicle-price,
.price {
  font-weight: 600;
}

.vehicle-price {
  font-size: 16px;
  color: #b91c1c;
}

.price {
  font-size: 1.25rem;
  letter-spacing: 0.2px;
}

.vehicle-meta,
.meta,
.small-note,
.vehicle-footer,
.price-note,
.vehicle-subtitle,
.dealer-meta,
.dealer-location,
.dealer-meta-vdp,
.dealer-location-vdp,
.cta-sub,
.cta-sub-vdp,
.vehicle-subtitle-vdp{
  color: #6b7280;
}
.dealer-location-vdp {
  color: #6b7280;
  margin-bottom: 6px;
}
.cta-sub-vdp {
 font-size: 12px;
  color: #6b7280;
  margin-top: 4px;
}
.vehicle-meta {
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
}
.dealer-meta-vdp {
  font-size: 12px;
  color: #6b7280;
  margin-top: 6px;
}
.vehicle-tags,
.badge-row,
.badge-row-vdp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.tag,
.badge,
.badge-inline,
.badge-vdp,
.badge-inline-vdp {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  color: #6b7280 !important;
}

.tag,
.badge,
.badge-vdp {
  padding: 3px 6px;
}

.badge-inline,
.badge-inline-vdp {
  display: inline-block;
  padding: 2px 4px;
  margin-left: 4px;
}

.vehicle-footer {
  margin-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 11px;
  color: #9ca3af;
}

/* Header / nav */
.header {
  background-color: #111827;
  color: #d1d5db;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 16px var(--gutter-desktop);
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
  
/* Footer */
.site-footer {
  background-color: #020617;
  color: #9ca3af;
  padding: 16px var(--gutter-desktop);
  border-top: 1px solid #1f2937;
  font-size: 13px;
  margin-top: auto;
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.footer-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 16px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-nav ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.footer-nav a {
  color: #9ca3af;
  text-decoration: none;
}

.footer-center {
  text-align: center;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.icon-btn {
  width: 32px;
  height: 32px;
  border: 1px solid #1f2937;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #e5e7eb;
  text-decoration: none;
  font-size: 12px;
  text-transform: uppercase;
}

.icon-btn:hover {
  background-color: #111827;
}

/* Sections */
.section,
.section-vdp,
.gallery,
.cta-card-vdp,

.dealer-card-vdp {
  border: 1px solid #e5e7eb;
  background: #ffffff;
  padding: var(--card-pad);
  margin-bottom: 16px;
}

.section-terms {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 24px;
  margin-bottom: 24px;
}

.section-title,
.section-title-vdp,
.cta-title-vdp {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
  margin-bottom: 8px;
}

.section-title {
  text-align: center;
}

.section-title-terms {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e5e7eb;
}

.section-header,
.section-header-vdp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 8px;
}

.section-body,
.section-body-vdp {
  font-size: 14px;
  color: #111827;
}

.page-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #111827;
}

.page-subtitle {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 32px;
}

.content p {
  margin-bottom: 16px;
  font-size: 15px;
}

.content ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.content li {
  margin-bottom: 8px;
  font-size: 15px;
}

.highlight {
  background: #f0f9ff;
  border-left: 4px solid #2563eb;
  padding: 16px;
  margin: 16px 0;
}

.last-updated {
  font-size: 13px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
  margin-top: 24px;
}

/* VDP */
.breadcrumb {
  font-size: 12px !important;
  color: #6b7280;
  margin-bottom: 12px;
}

.breadcrumb a {
  color: #6b7280;
}

.breadcrumb span {
  margin: 0 4px;
}

.title-row,
.title-row-vdp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 12px;
}

.vehicle-title-block h1,
.vehicle-title-block-vdp h1 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 4px;
}

.price-block,
.price-block-vdp {
  text-align: right;
  min-width: 220px;
}

.price-main,
.price-main-vdp {
  font-size: 24px;
  font-weight: 600;
  color: #b91c1c;
  margin-bottom: 4px;
}

.price-note-vdp {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 6px;
}

.content-row,
.content-row-vdp {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 3fr) 24px minmax(0, 2fr);
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 24px;
  margin-top: 16px;
}

.thumb-row {
  margin-top: 8px;
}

.specs-grid,
.specs-grid-vdp {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 16px minmax(0, 1fr) 16px minmax(0, 1fr);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px 16px;
  font-size: 13px;
}

.spec-label,
.spec-label-vdp {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
  margin-bottom: 2px;
}

.spec-value,
.spec-value-vdp {
  font-size: 13px;
  color: #111827;
}

.feature-list,
.feature-list-vdp {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 16px minmax(0, 1fr);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 16px;
  font-size: 13px;
  color: #111827;
}

.feature-item::before,
.feature-item-vdp::before {
  content: "• ";
  color: #9ca3af;
}

.side-column-vdp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 80px;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.cta-row-vdp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}

.dealer-name-vdp {
  font-weight: 500;
  margin-bottom: 2px;
}

/* Contact */
.contact-info {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 24px;
}

.contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: -o-linear-gradient(315deg, var(--primary), var(--primary2)) !important;
  background: linear-gradient(135deg, var(--primary), var(--primary2)) !important;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.contact-details h3 {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 4px;
}

.contact-details p,
.contact-details a {
  font-size: 15px;
  color: #374151;
  text-decoration: none;
}

.contact-details a:hover {
  color: #2563eb;
}

/* Hero / landing */
.hero {
  background:
    -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0.4))),
    url("./images/hero.jpg");
  background:
    -o-linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("./images/hero.jpg");
  background:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("./images/hero.jpg");
  background-size: cover;
  background-position: center;
  height: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-search {
  background: -o-linear-gradient(315deg, var(--primary), var(--primary2)) !important;
  background: linear-gradient(135deg, var(--primary), var(--primary2)) !important;
  background-size: cover;
  background-position: center;
  padding:48px;

  
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  max-width: 600px;
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 32px;
  opacity: 0.95;
  max-width: 500px;
}

.hero-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.features,
.highlight-text,
.cta-section,
.brand-logos,
.car-brands {
  padding: 80px 0;
}

.features,
.cta-section {
  background: #f8fafc;
}

.highlight-text {
  background-color: #0077e1;
  color: #fff;
}

.features-grid,
.cta-grid,
.brands-grid,
.logos-grid {
  display: -ms-grid;
  display: grid;
  gap: 32px;
}

.features-grid,
.cta-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.brands-grid,
.logos-grid {
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.logo-item,
.brand-item {
  text-align: center;
}

.brand-item {
  height: 80px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.logo-brand {
  max-height: 50px;
  width: auto;
  opacity: 0.8;
  -webkit-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.logo-brand:hover {
  opacity: 1;
}

.section-title-homepage {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 48px;
  color: #111827;
}

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

.cta-item h3,
.feature-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}
.header-color{

  color:var(--primary)
}
.cta-link {
  display: inline-block;
  margin-top: 16px;
  color: #2563eb;
  font-weight: 500;
  text-decoration: none;
}

.highlight-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.highlight-content h2 {
  font-size: 36px;
  margin-bottom: 24px;
}

.feature-item {
  text-align: center;
  padding: 32px 24px;
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.cta-image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
 
  margin-bottom: 1rem;
}

/* Search */
.search-bar {
  max-width: 400px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin: 0 24px;
}

.search-bar input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #d1d5db;
  background: #f9fafb;
  color: #111827;
  outline: none;
  font-size: 14px;
}

.search-bar input:focus {
  border-color: #2563eb;
  background: #ffffff;
}

.searchbar {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  -webkit-box-shadow: 0 14px 34px rgba(17, 24, 39, 0.06);
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.06);
}

.searchbar .form-control {
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 999px;
  padding-left: 44px;
  background: transparent;
}

.searchicon {
  position: absolute;
  left: 18px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #94a3b8;
}

/* Filter toggle helpers */
.filter-button-close {
  display: none;
}

#viewresults,
#sidebar-open {
  display: none;
}

/* Number inputs in filter sidebar */
aside.filters input[type="number"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Responsive */
@media (max-width: 991.98px) {
  .sticky-filters {
    position: static;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}

@media (max-width: 960px) {
  .content-row,
  .content-row-vdp {
    -ms-grid-columns: minmax(0, 1fr);
    grid-template-columns: minmax(0, 1fr);
  }

  .side-column-vdp {
    position: static;
  }

  .price-block,
  .price-block-vdp {
    text-align: left;
  }

  .price-actions,
  .price-actions-vdp {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .filters {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
  }

  .nav-desktop,
  .header-right {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .srp-main {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
}

@media (max-width: 768px) {
  .main,
  .vdp-main {
    padding: var(--gutter-mobile);
  }
.results-area{
  padding: 16px 0 16px 0 ;}
  .container,
  .header,
  .site-footer {
    padding-left: var(--gutter-mobile);
    padding-right: var(--gutter-mobile);
  }

  .contact-row,
  .form-row {
    grid-template-columns: 1fr;
  }

  .form-actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  #viewresults,
  #sidebar-open {
    display: block !important;
  }

  .filter-menu-open {
    position: fixed;
  }

  aside.filters {
    position: fixed;
    top: 0;
    left: -100%;
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100vh;
    z-index: 9999;
    -webkit-transition: left 0.3s ease;
    -o-transition: left 0.3s ease;
    transition: left 0.3s ease;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
  }

  aside.filters .inner-wrapper {
    max-width: 80%;
    background: #fff;
    padding: 20px;
    padding-bottom: 180px;
  }

  aside.filters.filter-menu-open {
    left: 0;
  }

  .filter-menu-open #viewresults {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 80%;
    background: #0077e1;
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 13px;
    z-index: 10000;
  }

  #sidebar-open {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10001;
  }

  .body-fixed #sidebar-open {
    display: none !important;
  }

  aside.filters input[type="number"] {
    font-size: 16px;
  }

  
}
.vehicle-subtitle-vdp {
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 13px;
  color: #6b7280;
  }
@media (max-width: 640px) {
  .section,
  .section-vdp,
  .gallery,
  .cta-card-vdp,
  .dealer-card-vdp {
    padding: 14px;
  }
.results-area{
  padding: 16px 0;}

  .title-row,
  .title-row-vdp,
  .footer-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .title-row-vdp {
    gap: 8px;
  }

  .footer-center {
    text-align: left;
    width: 100%;
  }
}
.modal {
  position: fixed;
  inset: 0;
  overflow-y: auto;
  overflow-x: hidden;
  background:rgb(0, 0, 0);
  color:#fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index:10000;

}
.modal .main{
 max-width:768px !important;
 padding:24px;
 background: rgba(255,255,255,1);
 position:relative;

}
.modal .modal-close{

  position:absolute;
  top:20px;
  right:20px;
  font-size: 30px;
  color:var(--error);
  cursor: pointer;

}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid #e5e7eb;
  font-size: 13px;
}

.summary-row span:first-child {
  color: #6b7280;
}

.summary-row span:last-child {
  color: #111827;
  font-weight: 500;
  text-align: right;
}
.element-center{
  display: flex;
  align-items: center;
  justify-content:center;
}

.iframe-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}

/* Then style the iframe to fit in the container div with full height and width */
.iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
    .carousel-overlay {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%);
        width: min(90vw, 380px);
        max-width: 380px;
        z-index: 10;
        font-weight: 700;
        border: 5px solid rgba(255, 255, 255, 0.9);
        transform: translate(23%, -25%);
    }

    .overlay-content {
        background-color: rgba(255, 255, 255, 0.9);
        margin: .25rem;
        padding: 16px;
        text-align: center;
    }

    .owl-dots {
        display: none;
    }

 



    .item-image-challenged {
        background: url("./images/challenged.png") center center;
        height: 450px;
        background-repeat: no-repeat !important;
        background-size: cover !important;
    }

.item-image-leasing-1{
    background: url("./images/lease_hero.png") center center;
        height: 450px;
        background-repeat: no-repeat !important;
        background-size: cover !important;
}

.item-image-isuzu{
    background: url("./images/isuzu_leasing.jpeg") center center;
        height: 450px;
        background-repeat: no-repeat !important;
        background-size: cover !important;
}
.item-image-truck{
    background: url("./images/ford_leasing.png") center center;
        height: 450px;
        background-repeat: no-repeat !important;
        background-size: cover !important;
}
    .item-image-credit-hero {
        background: url("./images/challenged_credit_hero.png") center center;
        height: 450px;
        background-repeat: no-repeat !important;
        background-size: cover !important;
    }

    .item-image-leasing-hero {
        background: url("./images/leasing_hero.png") center center;
        height: 450px;
        background-repeat: no-repeat !important;
        background-size: cover !important;
    }

    .ymm-home-grid {
        grid-template-columns: 1fr 1fr 160px !important;
        gap: 16px !important;
    }

    .ymm-home-grid .field label {
        font-size: 14px !important;
        font-weight: 500 !important;
    }

    .ymm-home-grid .form-select {
        font-size: 16px !important;
        padding: 12px 40px 12px 16px !important;

    }


    @media only screen and (min-width:576px) and (max-width:767px) {
          .item-image-challenged ,  .item-image-credit-hero  ,  .item-image-leasing-hero,.item-image-leasing-1,.item-image-isuzu   {
            height: 350px !important;
        }
    }

    @media only screen and (min-width:992px) and (max-width:1199px) {
          .item-image-challenged ,  .item-image-credit-hero  ,  .item-image-leasing-hero,.item-image-leasing-1,.item-image-isuzu   {
            height: 400px !important;
        }
          .carousel-overlay  {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;

        transform: translate(10%, -40%);
       
      }
    }

    svg {
        color: var(--primary);
        width:20px;
        height:20px;
    }

@media only screen and (min-width:1200px) {
    .carousel-overlay {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(23%, -25%) !important;
        font-size: 1em !important;
      }

}
   .carousel-overlay  {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
 
        transform: translate(-50%, -50%);
       
      }

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

    
 
   .carousel-overlay  {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        width: 425px !important;
        height: 266px !important;
        transform: translate(-50%, -50%);
       
      }
}
    @media (max-width: 768px) {
        .ymm-home-grid {
            grid-template-columns: 1fr !important;
        }

        .form-actions {
            flex-direction: column !important;
        }

        .form-actions .btn {
            width: 100% !important;
        }
    }
    ul {
        list-style-type: none;
    }

    ul li {
        padding: 3px;
        font-size:14px;
    }



    ul.dropdown li{
        padding: unset !important;
        font-size:14px;
    }
/** STart **/
  .nav-links {
    list-style: none;
    display: flex;
    gap: 26px;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex: 1;
  }

  .nav-links a {
    padding: 8px 6px;
    color: #d1d5db;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
  }

  .has-dropdown {
    position: relative;
  }

  .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid #e7e9f1;
    border-radius: 0;
  list-style: none ;
    display: none;
    /* box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08); */
    z-index: 1000;
  }

  .dropdown li a {
    display: block;
    padding: 10px 14px;
    font-weight: 500;
    color: #111827;
    text-transform: none;
    font-size: 14px;
  }

  .dropdown li a:hover {
background:var(--line);  color:#000;

  }

  .has-dropdown:hover .dropdown {
    display: block;
  }

  .dropdown-toggle {
    position: relative;
    padding-right: 18px !important;
  }

  .dropdown-toggle::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    border-right: 2px solid #d1d5db;
    border-bottom: 2px solid #d1d5db;
    transform: translateY(-60%) rotate(45deg);
  }

  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 320px;
    background: #111827;
    color: #d1d5db;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    padding: 16px;
  }

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

  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .close-menu {
    background: none;
    border: none;
    color: #d1d5db;
    font-size: 24px;
    cursor: pointer;
  }

  .mobile-menu-overlay ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
  }

  .mobile-menu-overlay li {
    border-bottom: 1px solid #1f2937;
  }

  .mobile-menu-overlay a {
    display: block;
    padding: 12px 0;
    color: #d1d5db;
    text-decoration: none;
    margin-left:8px 

  }

  .drawer-section {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 13px;
  }

  .drawer-title {
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 14px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .mobile-menu-footer {
    margin-top: 16px;
  }

  @media (max-width: 900px) {
    .nav-desktop,
    .header-right {
      display: none;
    }

    .menu-toggle {
      display: block;
    }
  }

  @media (min-width: 901px) {
    .menu-toggle {
      display: none;
    }
  }
    /**- End**/