:root {
  --orange: #e85d04;
  --orange-hover: #d35400;
  --navy: #1a2332;
  --navy-dark: #141c28;
  --text-dark: #1a1a1a;
  --text-muted: #6b7280;
  --border-light: #e5e7eb;
  --footer-bg: #f3f4f6;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", "Segoe UI", system-ui, sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* Header */
.site-header {
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 1030;
}

.navbar-brand {
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: var(--text-dark) !important;
  max-width: 140px;
}

.navbar-nav .nav-link {
  font-weight: 500;
  font-size: 15px;
  color: var(--text-dark) !important;
  padding: 0.5rem 1rem !important;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--orange) !important;
}

.navbar-nav .dropdown-menu {
  text-transform: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0;
  min-width: 180px;
  padding: 0.35rem 0;
  margin-top: 0 !important;
  border: none;
  border-top: 3px solid var(--orange);
  border-radius: 0 0 12px 12px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.navbar-nav .dropdown-item {
  padding: 0.7rem 1.35rem;
  color: #222;
  font-weight: 500;
  background: transparent;
}

.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item:focus,
.navbar-nav .dropdown-item.active {
  color: var(--orange);
  background-color: #fff5ed;
}

@media (min-width: 992px) {
  .navbar-nav .dropdown:hover > .dropdown-menu,
  .navbar-nav .dropdown-menu:hover {
    display: block;
    margin-top: 0;
  }

  .navbar-nav .dropdown:hover > .nav-link {
    color: var(--orange) !important;
  }
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  white-space: nowrap;
}

.header-phone .phone-icon {
  width: 36px;
  height: 36px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.header-phone small {
  display: block;
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.65rem;
}

.btn-search-header {
  background: none;
  border: none;
  font-size: 1.1rem;
  color: var(--text-dark);
  padding: 0.35rem;
}

/* Hero slider */
.hero-slider {
  position: relative;
}

.hero-slide {
  position: relative;
  min-height: 624px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.35) 55%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.hero-slide .container {
  position: relative;
  z-index: 1;
}

.hero-slide h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.hero-lead {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  max-width: 480px;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.hero-control {
  width: 56px;
  opacity: 1;
  z-index: 2;
}

.hero-control .hero-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  font-size: 1.35rem;
  transition: background 0.2s, border-color 0.2s;
}

.hero-control:hover .hero-arrow {
  background: var(--orange);
  border-color: var(--orange);
}

.hero-control:focus {
  opacity: 1;
}

@media (max-width: 767.98px) {
  .hero-slide {
    min-height: 504px;
  }

  .hero-control {
    width: 44px;
  }

  .hero-control .hero-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}

.btn-orange {
  background: var(--orange);
  border: 2px solid var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.65rem 1.5rem;
  border-radius: 4px;
  transition: background 0.2s, border-color 0.2s;
}

.btn-orange:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  color: #fff;
}

.btn-outline-white {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.65rem 1.5rem;
  border-radius: 4px;
}

.btn-outline-white:hover {
  background: #fff;
  color: var(--text-dark);
}

/* Section titles */
.section-title {
  font-weight: 800;
  font-size: 1.9rem;
  margin-bottom: 1.35rem;
}

.title-underline {
  width: 48px;
  height: 3px;
  background: var(--orange);
  margin-bottom: 2rem;
}

.section-title-center {
  text-align: center;
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

/* Equipment grid */
.equipment-card {
  border: 1px solid var(--border-light);
  background: #fff;
  padding: 3.25rem 1rem;
  height: 100%;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.equipment-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-color: #d1d5db;
}

.equipment-card .eq-icon {
  color: var(--orange);
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}

.equipment-card span {
  font-weight: 700;
  font-size: 1rem;
  line-height: 2.35;
}

/* About */
.about-section {
  padding: 6rem 0;
}

.about-section .section-title {
  text-align: center;
  font-size: clamp(1.75rem, 3.6vw, 45px);
  line-height: 1.25;
  max-width: 1020px;
  margin-left: auto;
  margin-right: auto;
}

.about-text {
  color: var(--text-muted);
  font-size:19px;
  line-height: 2;
  max-width: 1020px;
  margin: 0 auto 1.5rem;
  text-align: center;
}

.about-tagline {
  text-align: center;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 0.01em;
  margin: 0 auto 2.25rem;
  max-width: 1020px;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.btn-about-cta {
  font-size: 18px;
  padding: 0.6rem 1.75rem;
}

.btn-outline-dark-custom {
  border: 2px solid var(--text-dark);
  color: var(--text-dark);
  background: #fff;
  font-weight: 700;
  font-size: 18px;
  padding: 0.6rem 1.75rem;
  border-radius: 4px;
}

.btn-outline-dark-custom:hover {
  background: var(--text-dark);
  color: #fff;
}

/* Featured inventory */

.fi-section {
  padding: 6rem 0;
}


.inventory-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.link-orange {
  color: var(--orange);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
}

.link-orange:hover {
  color: var(--orange-hover);
  text-decoration: underline;
}

.inventory-card {
  border: 1px solid var(--border-light);
  border-radius: 5px;
  background: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.inventory-card:hover {
  border-color: #e85d04;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.inventory-card .img-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e5e7eb;
  display: block;
}

.inventory-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.inventory-card:hover .img-wrap img {
  transform: scale(1.04);
}

.badge-new {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  background: #dc2626;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.25rem 0.5rem;
  letter-spacing: 0.05em;
  pointer-events: none;
}

.inventory-card .card-body-inner {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.inventory-card h3 {
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.inventory-card h3 a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.inventory-card h3 a:hover {
  color: #e85d04;
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem 0.75rem;
  font-size: 0.7rem;
  margin-bottom: 1rem;
  flex: 1;
}

.spec-grid .label {
  color: var(--text-muted);
  font-weight: 500;
}

.spec-grid .value {
  font-weight: 700;
  color: var(--text-dark);
}

.inventory-card .btn-view {
  width: 100%;
  border: 1px solid var(--text-dark);
  background: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 0.9rem;
  border-radius: 2px;
}

.inventory-card .btn-view:hover {
  background: var(--text-dark);
  color: #fff;
}

/* Financing */
.financing-section {
  background: #0b1120;
  color: #fff;
  padding: 4.5rem 0;
}

.financing-img-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}

.financing-img-wrap img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.approval-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: #e85d04;
  color: #fff;
  padding: 1rem 1.15rem;
  max-width: 240px;
  line-height: 1.35;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.approval-badge strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.approval-badge span {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.95;
}

.financing-content {
  padding: 0 0.5rem;
}

.financing-content h2 {
  font-weight: 800;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.financing-intro {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.75rem;
  max-width: 520px;
}

.financing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.financing-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.35rem;
}

.financing-list li:last-child {
  margin-bottom: 0;
}

.financing-icon {
  color: #e85d04;
  font-size: 1.35rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.financing-list li strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.financing-list li p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.55;
}

.btn-financing {
  padding: 0.75rem 1.65rem;
  font-size: 0.9rem;
  border-radius: 5px;
}

/* CTA banner */
.cta-banner {
  background: #e85d04;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  border-radius: 24px;
  padding: 3.25rem 2rem 2.75rem;
  text-align: center;
  color: #fff;
}

.cta-banner h2 {
  font-weight: 800;
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.cta-banner-text {
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.98;
  max-width: 820px;
  margin: 0 auto 1.75rem;
  line-height: 1.7;
}

.btn-cta-pill {
  display: inline-block;
  background: #fff;
  color: #e85d04;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn-cta-pill:hover {
  background: #fff7f0;
  color: #d35400;
  transform: translateY(-1px);
}

.cta-banner-meta {
  margin: 1.35rem auto 0;
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.95;
  max-width: 720px;
  line-height: 1.5;
}

@media (max-width: 767.98px) {
  .cta-banner {
    border-radius: 18px;
    padding: 2.5rem 1.25rem 2.15rem;
  }
}

/* Brands */
.brands-section {
  background: #f0f4f8;
  padding: 6rem 0;
}

.brands-header {
  margin-bottom: 2rem;
}

.brands-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b91c1c;
  margin-bottom: 0.45rem;
}

.brands-title {
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0;
}

.brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
  padding: 1.35rem 0.85rem;
  text-decoration: none;
  height: 100%;
  min-height: 140px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.brand-card img {
  width: 164px;
  height: auto;
  object-fit: contain;
}

.brand-card span {
  font-size: 0.9rem;
  font-weight: 800;
  color: #0f172a;
  text-align: center;
}

.brand-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

/* Process / dream car section */
.process-section {
  background: #fff;
}

.process-header {
  margin-bottom: 2rem;
}

.process-title {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.process-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0;
  max-width: 640px;
  line-height: 1.6;
}

.process-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.process-card:hover {
  border-color: #e85d04;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}

.process-icon {
  color: #e85d04;
  font-size: 2.25rem;
  line-height: 1;
  margin-bottom: 1.1rem;
}

.process-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.65rem;
}

.process-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.35rem;
  flex: 1;
}

.btn-process {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1.5px solid #e85d04;
  color: #e85d04;
  background: transparent;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.55rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-process:hover {
  background: #e85d04;
  color: #fff;
  border-color: #e85d04;
}

/* Footer */
.site-footer {
  background: #f5f5f7;
  color: #2d2551;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.15rem;
}

.footer-logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #e85d04;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.footer-logo-text {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}

.footer-logo-text .logo-dark {
  color: #2d2551;
}

.footer-logo-text .logo-orange {
  color: #e85d04;
}

.footer-desc {
  font-size: 0.9rem;
  color: #3d3558;
  line-height: 1.65;
  margin-bottom: 0.85rem;
  max-width: 420px;
}

.footer-desc-accent {
  font-size: 0.9rem;
  font-weight: 700;
  color: #e85d04;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  max-width: 420px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #2d2551;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.footer-contact-link i {
  color: #e85d04;
  font-size: 0.95rem;
}

.footer-contact-address {
  align-items: flex-start;
  margin-bottom: 0;
  line-height: 1.6;
}

.footer-contact-address i {
  line-height: 1.6;
}

.footer-contact-link:hover {
  color: #e85d04;
}

.footer-heading {
  font-weight: 800;
  font-size: 1rem;
  color: #2d2551;
  margin-bottom: 1rem;
  letter-spacing: 0;
}

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

.footer-links li {
  margin-bottom: 0.55rem;
}

.footer-links a {
  color: #3d3558;
  font-size: 0.9rem;
  text-decoration: none;
  font-weight: 500;
}

.footer-links a:hover {
  color: #e85d04;
}

.social-icons {
  display: flex;
  gap: 0.55rem;
}

.social-icons a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: #e85d04;
  color: #fff;
  margin-right: 0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.social-icons a:hover {
  background: #d35400;
  color: #fff;
  transform: translateY(-2px);
}

.footer-trust {
  margin: 2rem 0 0;
  text-align: right;
  font-size: 0.95rem;
  font-weight: 800;
  color: #e85d04;
}

.footer-bottom {
  background: #e85d04;
  color: #fff;
  text-align: left;
  padding: 0.95rem 0;
  font-size: 0.85rem;
  font-weight: 600;
}

.footer-bottom a {
  color: #000;
  text-decoration: underline;
  font-weight: 700;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: #fff;
}

@media (max-width: 991.98px) {
  .footer-trust {
    text-align: left;
  }
}

/* Search modal */
.search-overlay input {
  border-radius: 4px;
  padding: 0.75rem 1rem;
}

@media (max-width: 991.98px) {
  .header-phone span:not(.phone-icon) {
    display: none;
  }

  .financing-section {
    padding: 3rem 0;
  }

  .financing-content {
    padding: 0;
    margin-top: 0.5rem;
  }
}

@media (max-width: 767.98px) {
  .approval-badge {
    left: 1rem;
    transform: none;
    bottom: 1rem;
    text-align: left;
    max-width: calc(100% - 2rem);
  }
}

/* ==========================================================================
   INNER PAGES
   Shared building blocks used by about, inventory, services, contact, quote.
   ========================================================================== */

/* Page banner */
.page-hero {
  position: relative;
  padding: 5.5rem 0 4.75rem;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 15, 25, 0.88) 0%,
    rgba(10, 15, 25, 0.62) 58%,
    rgba(10, 15, 25, 0.42) 100%
  );
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 0.65rem;
}

.page-hero h1 {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.page-hero-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 0;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.85rem;
}

/* Breadcrumb */
.page-breadcrumb {
  background: #f3f4f6;
  border-bottom: 1px solid var(--border-light);
}

.page-breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0.9rem 0;
  font-size: 0.8rem;
  font-weight: 600;
}

.page-breadcrumb li + li::before {
  content: "/";
  margin: 0 0.5rem;
  color: #c3c8d0;
}

.page-breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
}

.page-breadcrumb a:hover {
  color: var(--orange);
}

.page-breadcrumb li[aria-current] {
  color: var(--orange);
}

/* Section helpers */
.section-pad {
  padding: 5rem 0;
}

.section-pad-sm {
  padding: 3.5rem 0;
}

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 0.6rem;
}

.section-heading {
  font-weight: 800;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.28;
  margin-bottom: 1rem;
}

.section-lead {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.85;
}

.section-head-center {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.pull-quote {
  border-left: 4px solid var(--orange);
  padding-left: 1.35rem;
  margin: 0 0 1.5rem;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 800;
  line-height: 1.55;
  color: var(--text-dark);
}

.pull-quote span {
  display: block;
  color: var(--orange);
}

.list-label {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1.1rem;
}

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

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #3b4252;
}

.check-list li:last-child {
  margin-bottom: 0;
}

.check-list li i {
  color: var(--orange);
  font-size: 1.05rem;
  line-height: 1.5;
  flex-shrink: 0;
}

.media-img {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.media-img img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* Feature / value cards */
.feature-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 1.85rem 1.5rem;
  height: 100%;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.feature-card:hover {
  border-color: var(--orange);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #fff5ed;
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.15rem;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.65rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 0;
}

.feature-card .link-orange {
  display: inline-block;
  margin-top: 1rem;
}

/* Numbered steps */
.step-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 2.35rem 1.5rem 1.75rem;
  height: 100%;
}

.step-num {
  position: absolute;
  top: -18px;
  left: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.05rem;
  box-shadow: 0 6px 16px rgba(232, 93, 4, 0.35);
}

.step-card h3 {
  font-size: 1rem;
  font-weight: 800;
  margin: 0.5rem 0 0.6rem;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

/* Stat strip */
.stat-strip {
  background: var(--navy);
  color: #fff;
  padding: 3rem 0;
}

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

.stat-item strong {
  display: block;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-item span {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Team */
.team-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  text-align: center;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

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

.team-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.team-card-body {
  padding: 1.25rem 1rem;
}

.team-card h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
}

.team-card span {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Timeline */
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--border-light);
}

.timeline li {
  position: relative;
  padding-left: 2.5rem;
  padding-bottom: 1.85rem;
}

.timeline li:last-child {
  padding-bottom: 0;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--orange);
}

.timeline .timeline-year {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 0.06em;
  margin-bottom: 0.3rem;
}

.timeline strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.timeline p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* Inventory listing: sidebar filters */
.filter-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 1.5rem;
}

@media (min-width: 992px) {
  .filter-card {
    position: sticky;
    top: 120px;
  }
}

.filter-card h2 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.filter-group {
  margin-bottom: 1.35rem;
}

.filter-title {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dark);
  margin-bottom: 0.55rem;
}

.filter-card .form-control,
.filter-card .form-select {
  font-size: 0.875rem;
  border-radius: 6px;
  border-color: var(--border-light);
  padding: 0.6rem 0.75rem;
}

.filter-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #3b4252;
  margin-bottom: 0.45rem;
}

.filter-check input {
  accent-color: var(--orange);
  width: 16px;
  height: 16px;
}

.btn-filter {
  width: 100%;
  background: var(--orange);
  border: 2px solid var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.7rem 1rem;
  border-radius: 6px;
}

.btn-filter:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  color: #fff;
}

.btn-filter-reset {
  width: 100%;
  background: transparent;
  border: 1.5px solid var(--border-light);
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  margin-top: 0.6rem;
}

.btn-filter-reset:hover {
  border-color: var(--text-dark);
  color: var(--text-dark);
}

.sidebar-cta {
  background: var(--navy);
  color: #fff;
  border-radius: 12px;
  padding: 1.65rem 1.5rem;
  margin-top: 1.5rem;
}

.sidebar-cta h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.sidebar-cta p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 1.15rem;
}

.inventory-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid var(--border-light);
}

.result-count {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.result-count strong {
  color: var(--text-dark);
  font-weight: 800;
}

.toolbar-select {
  max-width: 230px;
  font-size: 0.85rem;
  border-radius: 6px;
  border-color: var(--border-light);
}

.badge-new.is-used {
  background: #1d4ed8;
}

.badge-new.is-lease {
  background: #0f766e;
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.category-pills a {
  border: 1.5px solid var(--border-light);
  border-radius: 50px;
  padding: 0.5rem 1.15rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
  background: #fff;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.category-pills a:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.category-pills a.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.pagination-wrap {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 2.75rem;
  flex-wrap: wrap;
}

.pagination-wrap a,
.pagination-wrap span {
  min-width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.75rem;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  background: #fff;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
}

.pagination-wrap a:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.pagination-wrap .current {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

/* Detail page */
.detail-gallery {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.detail-gallery .carousel-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.detail-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-top: 0.75rem;
}

.detail-thumbs button {
  padding: 0;
  border: 2px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  background: none;
  line-height: 0;
}

.detail-thumbs button.active {
  border-color: var(--orange);
}

.detail-thumbs img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.detail-badge {
  display: inline-block;
  background: #dc2626;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.6rem;
  margin-bottom: 0.85rem;
}

.detail-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* Data table */
.table-panel {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
}

.table-panel table {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
}

.table-panel th {
  background: var(--navy);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.9rem 1.15rem;
  text-align: left;
}

.table-panel td {
  padding: 0.9rem 1.15rem;
  font-size: 0.9rem;
  border-top: 1px solid var(--border-light);
  color: #3b4252;
}

.table-panel td:first-child {
  font-weight: 700;
  color: var(--text-dark);
}

.table-panel tbody tr:hover {
  background: #fffaf6;
}

/* Forms */
.form-panel {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.form-panel h2 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.form-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.form-panel .form-label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.form-panel .form-control,
.form-panel .form-select {
  border-radius: 6px;
  border-color: var(--border-light);
  padding: 0.75rem 0.9rem;
  font-size: 0.9rem;
}

.form-panel .form-control:focus,
.form-panel .form-select:focus,
.filter-card .form-control:focus,
.filter-card .form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 0.2rem rgba(232, 93, 4, 0.15);
}

.form-panel .form-check-input:checked {
  background-color: var(--orange);
  border-color: var(--orange);
}

.form-required {
  color: var(--orange);
}

.form-step-title {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  padding-bottom: 0.6rem;
  border-bottom: 2px solid #fff0e6;
  margin-bottom: 1.35rem;
}

.form-success {
  display: none;
  align-items: flex-start;
  gap: 0.75rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
  border-radius: 8px;
  padding: 0.9rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 1.35rem;
}

.form-success.is-visible {
  display: flex;
}

/* Contact */
.contact-card {
  display: flex;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 1.35rem;
  height: 100%;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-card:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.contact-card .contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-card h3 {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.contact-card p,
.contact-card a {
  display: block;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
  text-decoration: none;
  line-height: 1.65;
}

.contact-card a:hover {
  color: var(--orange);
}

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

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px dashed var(--border-light);
  font-size: 0.88rem;
  color: var(--text-muted);
}

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

.hours-list li span:last-child {
  font-weight: 700;
  color: var(--text-dark);
}

.map-embed {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  line-height: 0;
}

.map-embed iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

/* FAQ */
.faq-accordion .accordion-item {
  border: 1px solid var(--border-light);
  border-radius: 10px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
  padding: 1.05rem 1.25rem;
  background: #fff;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--orange);
  background: #fff8f3;
}

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

.faq-accordion .accordion-body {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  padding-top: 0;
}

/* Dark CTA strip */
.cta-strip {
  background: var(--navy);
  color: #fff;
  padding: 3.25rem 0;
}

.cta-strip h2 {
  font-weight: 800;
  font-size: clamp(1.45rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.cta-strip p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 0;
  max-width: 640px;
}

@media (max-width: 991.98px) {
  .section-pad {
    padding: 3.25rem 0;
  }

  .page-hero {
    padding: 3.5rem 0 3rem;
  }

  .form-panel {
    padding: 1.5rem;
  }
}
