:root {
  --bg: #f7f7f5;
  --surface: #ffffff;
  --ink: #12151c;
  --ink-soft: #5a6172;
  --ink-faint: #8992a3;
  --border: #e6e5e0;
  --accent: #ff5a1f;
  --accent-dark: #dd4a14;
  --accent-soft: #fff0e7;
  --success: #1a8f5a;
  --success-soft: #e8f7f0;
  --navy: #13161f;
  --navy-soft: #1c202c;
  --navy-border: #2a2f3d;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --shadow-xs: 0 1px 2px rgba(18, 21, 28, 0.05);
  --shadow-sm: 0 1px 3px rgba(18, 21, 28, 0.06), 0 4px 8px -4px rgba(18, 21, 28, 0.08);
  --shadow-md: 0 2px 6px rgba(18, 21, 28, 0.05), 0 16px 32px -12px rgba(18, 21, 28, 0.16);
  --shadow-lg: 0 8px 16px rgba(18, 21, 28, 0.06), 0 40px 72px -24px rgba(18, 21, 28, 0.32);
  --shadow-glow: 0 12px 28px -8px rgba(255, 90, 31, 0.45);
  --container: 1200px;
  --ff: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 116px;
}

::selection {
  background: var(--accent);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--accent);
}

body {
  font-family: var(--ff);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

ul {
  list-style: none;
}

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

input,
select {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.section-head p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.section-head.split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
  flex-wrap: wrap;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: var(--accent-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.text-accent {
  background: linear-gradient(115deg, #ff8a4c, var(--accent) 60%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 22px;
  border-radius: 999px;
  transition: transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #ff7a3d, var(--accent) 65%);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ff8a52, var(--accent-dark) 65%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  color: var(--ink);
}

.btn-ghost:hover {
  color: var(--accent-dark);
}

.btn-ghost-invert {
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.btn-ghost-invert:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1.5px solid var(--border);
  color: var(--ink);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
  background: var(--accent-soft);
  transform: translateY(-2px);
}

/* Top bar */
.top-bar {
  background: var(--navy);
  color: #9aa1b1;
  font-size: 0.8rem;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
}

.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 22px;
}

.top-bar-contact a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #c3c8d4;
  transition: color 0.15s ease;
}

.top-bar-contact a:hover {
  color: #fff;
}

.top-bar-contact svg {
  color: var(--accent);
}

.top-bar-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #c3c8d4;
  transition: background 0.15s ease, color 0.15s ease;
}

.social-dot:hover {
  background: var(--accent);
  color: #fff;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 247, 245, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 1px 0 var(--border), 0 12px 24px -16px rgba(18, 21, 28, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-logo-img {
  height: 84px;
  width: auto;
  max-width: none;
}

.footer-brand .site-logo-img {
  background: #fff;
  padding: 8px 16px;
  border-radius: 10px;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.logo-text span {
  font-weight: 600;
  font-size: 0.65rem;
  color: var(--ink-soft);
  letter-spacing: 0.12em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.main-nav a,
.nav-dropdown-trigger {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink-soft);
  transition: color 0.15s ease;
  text-decoration: none;
}

.main-nav a:hover,
.nav-dropdown-trigger:hover,
.main-nav a.active {
  color: var(--ink);
}

/* Hover Dropdown Styles */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown-head {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-dropdown-trigger {
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
  padding: 8px 0;
  text-decoration: none;
}

.nav-dropdown-chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 4px;
  margin: 0;
  color: inherit;
  cursor: pointer;
  border-radius: 4px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.nav-dropdown-menu-wide {
  min-width: 260px;
}

/* Vehicles dropdown icons */
.nav-dropdown-vehicles .nav-dropdown-menu-wide a:nth-child(1)::before { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%234b5563%27%20stroke-width%3D%272.1%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%227%22%20cy%3D%2217%22%20r%3D%221.6%22%2F%3E%3Ccircle%20cx%3D%2217%22%20cy%3D%2217%22%20r%3D%221.6%22%2F%3E%3Cpath%20d%3D%22M3%2013l1.5-4.5A2%202%200%200%201%206.4%207h11.2a2%202%200%200%201%201.9%201.5L21%2013%22%2F%3E%3Cpath%20d%3D%22M3%2013h18v3a1%201%200%200%201-1%201h-1v-1H5v1H4a1%201%200%200%201-1-1z%22%2F%3E%3C%2Fsvg%3E"); }
.nav-dropdown-vehicles .nav-dropdown-menu-wide a:hover:nth-child(1)::before { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%230284c7%27%20stroke-width%3D%272.1%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%227%22%20cy%3D%2217%22%20r%3D%221.6%22%2F%3E%3Ccircle%20cx%3D%2217%22%20cy%3D%2217%22%20r%3D%221.6%22%2F%3E%3Cpath%20d%3D%22M3%2013l1.5-4.5A2%202%200%200%201%206.4%207h11.2a2%202%200%200%201%201.9%201.5L21%2013%22%2F%3E%3Cpath%20d%3D%22M3%2013h18v3a1%201%200%200%201-1%201h-1v-1H5v1H4a1%201%200%200%201-1-1z%22%2F%3E%3C%2Fsvg%3E"); }
.nav-dropdown-vehicles .nav-dropdown-menu-wide a:nth-child(2)::before { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%234b5563%27%20stroke-width%3D%272.1%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%227%22%20cy%3D%2218%22%20r%3D%221.6%22%2F%3E%3Ccircle%20cx%3D%2217%22%20cy%3D%2218%22%20r%3D%221.6%22%2F%3E%3Cpath%20d%3D%22M3%2014l1-5a2%202%200%200%201%202-1.5h12a2%202%200%200%201%202%201.5l1%205%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%2214%22%20width%3D%2220%22%20height%3D%224.5%22%20rx%3D%221%22%2F%3E%3Cpath%20d%3D%22M6%207.5V5M18%207.5V5%22%2F%3E%3C%2Fsvg%3E"); }
.nav-dropdown-vehicles .nav-dropdown-menu-wide a:hover:nth-child(2)::before { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%230284c7%27%20stroke-width%3D%272.1%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%227%22%20cy%3D%2218%22%20r%3D%221.6%22%2F%3E%3Ccircle%20cx%3D%2217%22%20cy%3D%2218%22%20r%3D%221.6%22%2F%3E%3Cpath%20d%3D%22M3%2014l1-5a2%202%200%200%201%202-1.5h12a2%202%200%200%201%202%201.5l1%205%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%2214%22%20width%3D%2220%22%20height%3D%224.5%22%20rx%3D%221%22%2F%3E%3Cpath%20d%3D%22M6%207.5V5M18%207.5V5%22%2F%3E%3C%2Fsvg%3E"); }
.nav-dropdown-vehicles .nav-dropdown-menu-wide a:nth-child(3)::before { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%234b5563%27%20stroke-width%3D%272.1%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%226.5%22%20cy%3D%2217%22%20r%3D%221.6%22%2F%3E%3Ccircle%20cx%3D%2217%22%20cy%3D%2217%22%20r%3D%221.6%22%2F%3E%3Cpath%20d%3D%22M3%2017V9.5a1%201%200%200%201%201-1h5.5l3%204H19a1%201%200%200%201%201%201V17%22%2F%3E%3Cpath%20d%3D%22M3%2017h1M11.5%2012.5V17M19.5%2017h1%22%2F%3E%3C%2Fsvg%3E"); }
.nav-dropdown-vehicles .nav-dropdown-menu-wide a:hover:nth-child(3)::before { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%230284c7%27%20stroke-width%3D%272.1%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%226.5%22%20cy%3D%2217%22%20r%3D%221.6%22%2F%3E%3Ccircle%20cx%3D%2217%22%20cy%3D%2217%22%20r%3D%221.6%22%2F%3E%3Cpath%20d%3D%22M3%2017V9.5a1%201%200%200%201%201-1h5.5l3%204H19a1%201%200%200%201%201%201V17%22%2F%3E%3Cpath%20d%3D%22M3%2017h1M11.5%2012.5V17M19.5%2017h1%22%2F%3E%3C%2Fsvg%3E"); }
.nav-dropdown-vehicles .nav-dropdown-menu-wide a:nth-child(4)::before { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%234b5563%27%20stroke-width%3D%272.1%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%227%22%20cy%3D%2217.5%22%20r%3D%221.6%22%2F%3E%3Ccircle%20cx%3D%2217%22%20cy%3D%2217.5%22%20r%3D%221.6%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%227%22%20width%3D%2217%22%20height%3D%2210.5%22%20rx%3D%221.2%22%2F%3E%3Cpath%20d%3D%22M19%2010.5h1.5l1.5%202v5h-3%22%2F%3E%3Cpath%20d%3D%22M8%207v10.5%22%2F%3E%3C%2Fsvg%3E"); }
.nav-dropdown-vehicles .nav-dropdown-menu-wide a:hover:nth-child(4)::before { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%230284c7%27%20stroke-width%3D%272.1%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%227%22%20cy%3D%2217.5%22%20r%3D%221.6%22%2F%3E%3Ccircle%20cx%3D%2217%22%20cy%3D%2217.5%22%20r%3D%221.6%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%227%22%20width%3D%2217%22%20height%3D%2210.5%22%20rx%3D%221.2%22%2F%3E%3Cpath%20d%3D%22M19%2010.5h1.5l1.5%202v5h-3%22%2F%3E%3Cpath%20d%3D%22M8%207v10.5%22%2F%3E%3C%2Fsvg%3E"); }
.nav-dropdown-vehicles .nav-dropdown-menu-wide a:nth-child(5)::before { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%234b5563%27%20stroke-width%3D%272.1%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%226.5%22%20cy%3D%2219%22%20r%3D%221.6%22%2F%3E%3Ccircle%20cx%3D%2215.5%22%20cy%3D%2219%22%20r%3D%221.6%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%226%22%20width%3D%2218%22%20height%3D%2211%22%20rx%3D%222%22%2F%3E%3Cpath%20d%3D%22M2%2011h18%22%2F%3E%3Cpath%20d%3D%22M6%206v5M10%206v5M14%206v5%22%2F%3E%3C%2Fsvg%3E"); }
.nav-dropdown-vehicles .nav-dropdown-menu-wide a:hover:nth-child(5)::before { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%230284c7%27%20stroke-width%3D%272.1%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%226.5%22%20cy%3D%2219%22%20r%3D%221.6%22%2F%3E%3Ccircle%20cx%3D%2215.5%22%20cy%3D%2219%22%20r%3D%221.6%22%2F%3E%3Crect%20x%3D%222%22%20y%3D%226%22%20width%3D%2218%22%20height%3D%2211%22%20rx%3D%222%22%2F%3E%3Cpath%20d%3D%22M2%2011h18%22%2F%3E%3Cpath%20d%3D%22M6%206v5M10%206v5M14%206v5%22%2F%3E%3C%2Fsvg%3E"); }
.nav-dropdown-vehicles .nav-dropdown-menu-wide a:nth-child(6)::before { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%234b5563%27%20stroke-width%3D%272.1%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%225%22%20cy%3D%2218%22%20r%3D%221.8%22%2F%3E%3Ccircle%20cx%3D%2218%22%20cy%3D%2218%22%20r%3D%221.8%22%2F%3E%3Crect%20x%3D%221%22%20y%3D%227%22%20width%3D%2214%22%20height%3D%229%22%2F%3E%3Cpath%20d%3D%22M15%2010h4l3%203v4h-7%22%2F%3E%3C%2Fsvg%3E"); }
.nav-dropdown-vehicles .nav-dropdown-menu-wide a:hover:nth-child(6)::before { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%230284c7%27%20stroke-width%3D%272.1%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%225%22%20cy%3D%2218%22%20r%3D%221.8%22%2F%3E%3Ccircle%20cx%3D%2218%22%20cy%3D%2218%22%20r%3D%221.8%22%2F%3E%3Crect%20x%3D%221%22%20y%3D%227%22%20width%3D%2214%22%20height%3D%229%22%2F%3E%3Cpath%20d%3D%22M15%2010h4l3%203v4h-7%22%2F%3E%3C%2Fsvg%3E"); }
.nav-dropdown-vehicles .nav-dropdown-menu-wide a:nth-child(7)::before { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%234b5563%27%20stroke-width%3D%272.1%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%227%22%20cy%3D%2217%22%20r%3D%223%22%2F%3E%3Cpath%20d%3D%22M10%2017h7%22%2F%3E%3Cpath%20d%3D%22M13%2017V9l6-3%22%2F%3E%3Cpath%20d%3D%22M19%206l2%202-3%202%22%2F%3E%3Cpath%20d%3D%22M4%2020h16%22%2F%3E%3C%2Fsvg%3E"); }
.nav-dropdown-vehicles .nav-dropdown-menu-wide a:hover:nth-child(7)::before { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%230284c7%27%20stroke-width%3D%272.1%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%227%22%20cy%3D%2217%22%20r%3D%223%22%2F%3E%3Cpath%20d%3D%22M10%2017h7%22%2F%3E%3Cpath%20d%3D%22M13%2017V9l6-3%22%2F%3E%3Cpath%20d%3D%22M19%206l2%202-3%202%22%2F%3E%3Cpath%20d%3D%22M4%2020h16%22%2F%3E%3C%2Fsvg%3E"); }
.nav-dropdown-vehicles .nav-dropdown-menu-wide a:nth-child(8)::before { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%234b5563%27%20stroke-width%3D%272.1%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2212%22%20r%3D%223%22%2F%3E%3Cpath%20d%3D%22M19.4%2015a1.65%201.65%200%200%200%20.33%201.82l.06.06a2%202%200%201%201-2.83%202.83l-.06-.06a1.65%201.65%200%200%200-1.82-.33%201.65%201.65%200%200%200-1%201.51V21a2%202%200%200%201-4%200v-.09A1.65%201.65%200%200%200%209%2019.4a1.65%201.65%200%200%200-1.82.33l-.06.06a2%202%200%201%201-2.83-2.83l.06-.06a1.65%201.65%200%200%200%20.33-1.82%201.65%201.65%200%200%200-1.51-1H3a2%202%200%200%201%200-4h.09A1.65%201.65%200%200%200%204.6%209a1.65%201.65%200%200%200-.33-1.82l-.06-.06a2%202%200%201%201%202.83-2.83l.06.06a1.65%201.65%200%200%200%201.82.33H9.5a1.65%201.65%200%200%200%201-1.51V3a2%202%200%200%201%204%200v.09a1.65%201.65%200%200%200%201%201.51%201.65%201.65%200%200%200%201.82-.33l.06-.06a2%202%200%201%201%202.83%202.83l-.06.06a1.65%201.65%200%200%200-.33%201.82V9a1.65%201.65%200%200%200%201.51%201H21a2%202%200%200%201%200%204h-.09a1.65%201.65%200%200%200-1.51%201z%22%2F%3E%3C%2Fsvg%3E"); }
.nav-dropdown-vehicles .nav-dropdown-menu-wide a:hover:nth-child(8)::before { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%230284c7%27%20stroke-width%3D%272.1%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2212%22%20r%3D%223%22%2F%3E%3Cpath%20d%3D%22M19.4%2015a1.65%201.65%200%200%200%20.33%201.82l.06.06a2%202%200%201%201-2.83%202.83l-.06-.06a1.65%201.65%200%200%200-1.82-.33%201.65%201.65%200%200%200-1%201.51V21a2%202%200%200%201-4%200v-.09A1.65%201.65%200%200%200%209%2019.4a1.65%201.65%200%200%200-1.82.33l-.06.06a2%202%200%201%201-2.83-2.83l.06-.06a1.65%201.65%200%200%200%20.33-1.82%201.65%201.65%200%200%200-1.51-1H3a2%202%200%200%201%200-4h.09A1.65%201.65%200%200%200%204.6%209a1.65%201.65%200%200%200-.33-1.82l-.06-.06a2%202%200%201%201%202.83-2.83l.06.06a1.65%201.65%200%200%200%201.82.33H9.5a1.65%201.65%200%200%200%201-1.51V3a2%202%200%200%201%204%200v.09a1.65%201.65%200%200%200%201%201.51%201.65%201.65%200%200%200%201.82-.33l.06-.06a2%202%200%201%201%202.83%202.83l-.06.06a1.65%201.65%200%200%200-.33%201.82V9a1.65%201.65%200%200%200%201.51%201H21a2%202%200%200%201%200%204h-.09a1.65%201.65%200%200%200-1.51%201z%22%2F%3E%3C%2Fsvg%3E"); }
.nav-dropdown-vehicles .nav-dropdown-menu-wide a:nth-child(9)::before { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%234b5563%27%20stroke-width%3D%272.1%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%226%22%20cy%3D%2217%22%20r%3D%224%22%2F%3E%3Ccircle%20cx%3D%2218%22%20cy%3D%2219%22%20r%3D%222.5%22%2F%3E%3Cpath%20d%3D%22M6%2013V7h5l3%204h4v6%22%2F%3E%3Cpath%20d%3D%22M11%2013h7%22%2F%3E%3C%2Fsvg%3E"); }
.nav-dropdown-vehicles .nav-dropdown-menu-wide a:hover:nth-child(9)::before { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%230284c7%27%20stroke-width%3D%272.1%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%226%22%20cy%3D%2217%22%20r%3D%224%22%2F%3E%3Ccircle%20cx%3D%2218%22%20cy%3D%2219%22%20r%3D%222.5%22%2F%3E%3Cpath%20d%3D%22M6%2013V7h5l3%204h4v6%22%2F%3E%3Cpath%20d%3D%22M11%2013h7%22%2F%3E%3C%2Fsvg%3E"); }

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-top: 2px solid var(--accent);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.03);
  padding: 10px 0;
  min-width: 220px;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.25s;
  display: block;
}

/* Invisible padding on the trigger's own box extends its hoverable area
   down to meet the menu with zero dead zone (menu sits at top:100%, touching). */
.nav-dropdown {
  padding-bottom: 14px;
  margin-bottom: -14px;
}

.nav-dropdown.active .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.nav-dropdown-menu a {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 10px 18px !important;
  color: #334155 !important;
  font-size: 0.86rem !important;
  font-weight: 600 !important;
  text-align: left;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.nav-dropdown-menu a::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.8;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

/* Individual Icon Definitions using Href Matchers (Default color: slate/gray #4b5563) */
.nav-dropdown-menu a[href*="testimonials"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234b5563' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'%3E%3C/polygon%3E%3C/svg%3E");
}

.nav-dropdown-menu a[href*="our-team"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234b5563' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'%3E%3C/path%3E%3Ccircle cx='9' cy='7' r='4'%3E%3C/circle%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87'%3E%3C/path%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'%3E%3C/path%3E%3C/svg%3E");
}

.nav-dropdown-menu a[href*="about-us"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234b5563' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cline x1='12' y1='16' x2='12' y2='12'%3E%3C/line%3E%3Cline x1='12' y1='8' x2='12.01' y2='8'%3E%3C/line%3E%3C/svg%3E");
}

.nav-dropdown-menu a[href*="cars.html"]::before,
.nav-dropdown-menu a[href="cars.html"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234b5563' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='1' y='3' width='15' height='13'%3E%3C/rect%3E%3Cpolygon points='16 8 20 8 23 11 23 16 16 16 16 8'%3E%3C/polygon%3E%3Ccircle cx='5.5' cy='18.5' r='2.5'%3E%3C/circle%3E%3Ccircle cx='18.5' cy='18.5' r='2.5'%3E%3C/circle%3E%3C/svg%3E");
}

.nav-dropdown-menu a[href*="contact-us"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234b5563' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'%3E%3C/path%3E%3Cpolyline points='22,6 12,13 2,6'%3E%3C/polyline%3E%3C/svg%3E");
}

.nav-dropdown-menu a[href*="faq"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234b5563' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cpath d='M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3'%3E%3C/path%3E%3Cline x1='12' y1='17' x2='12.01' y2='17'%3E%3C/line%3E%3C/svg%3E");
}

.nav-dropdown-menu a[href*="claim-center"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234b5563' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'%3E%3C/path%3E%3Cline x1='12' y1='8' x2='12' y2='12'%3E%3C/line%3E%3Cline x1='12' y1='16' x2='12.01' y2='16'%3E%3C/line%3E%3C/svg%3E");
}

.nav-dropdown-menu a[href*="sitemap"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234b5563' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='7' height='7' rx='1'%3E%3C/rect%3E%3Crect x='14' y='3' width='7' height='7' rx='1'%3E%3C/rect%3E%3Crect x='14' y='14' width='7' height='7' rx='1'%3E%3C/rect%3E%3Crect x='3' y='14' width='7' height='7' rx='1'%3E%3C/rect%3E%3C/svg%3E");
}

.nav-dropdown-menu a[href*="privacy-policy"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234b5563' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='11' width='18' height='11' rx='2' ry='2'%3E%3C/rect%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'%3E%3C/path%3E%3C/svg%3E");
}

.nav-dropdown-menu a[href*="terms-conditions"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234b5563' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cline x1='16' y1='13' x2='8' y2='13'%3E%3C/line%3E%3Cline x1='16' y1='17' x2='8' y2='17'%3E%3C/line%3E%3Cpolyline points='10 9 9 9 8 9'%3E%3C/polyline%3E%3C/svg%3E");
}

.nav-dropdown-menu a[href*="category=Construction"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234b5563' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 7h11v9H2z'%3E%3C/path%3E%3Cpath d='M13 10h4l4 3v3h-8z'%3E%3C/path%3E%3Ccircle cx='6' cy='18' r='1.8'%3E%3C/circle%3E%3Ccircle cx='17' cy='18' r='1.8'%3E%3C/circle%3E%3C/svg%3E");
}

.nav-dropdown-menu a[href*="category=Heavy"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234b5563' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M13 2L3 14h9l-1 8 10-12h-9l1-8z'%3E%3C/path%3E%3C/svg%3E");
}

.nav-dropdown-menu a[href*="category=Agricultural"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234b5563' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='7' height='7' rx='1'%3E%3C/rect%3E%3Crect x='14' y='3' width='7' height='7' rx='1'%3E%3C/rect%3E%3Crect x='14' y='14' width='7' height='7' rx='1'%3E%3C/rect%3E%3Crect x='3' y='14' width='7' height='7' rx='1'%3E%3C/rect%3E%3C/svg%3E");
}

.nav-dropdown-menu a:hover {
  background: rgba(0, 240, 255, 0.04) !important;
  color: var(--accent) !important;
  padding-left: 24px !important;
  box-shadow: inset 3px 0 0 var(--accent);
}

/* Hover Icon Colors (Change to sky blue/cyan %230284c7) */
.nav-dropdown-menu a:hover[href*="testimonials"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230284c7' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'%3E%3C/polygon%3E%3C/svg%3E");
}

.nav-dropdown-menu a:hover[href*="our-team"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230284c7' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'%3E%3C/path%3E%3Ccircle cx='9' cy='7' r='4'%3E%3C/circle%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87'%3E%3C/path%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'%3E%3C/path%3E%3C/svg%3E");
}

.nav-dropdown-menu a:hover[href*="about-us"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230284c7' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cline x1='12' y1='16' x2='12' y2='12'%3E%3C/line%3E%3Cline x1='12' y1='8' x2='12.01' y2='8'%3E%3C/line%3E%3C/svg%3E");
}

.nav-dropdown-menu a:hover[href*="cars.html"]::before,
.nav-dropdown-menu a:hover[href="cars.html"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230284c7' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='1' y='3' width='15' height='13'%3E%3C/rect%3E%3Cpolygon points='16 8 20 8 23 11 23 16 16 16 16 8'%3E%3C/polygon%3E%3Ccircle cx='5.5' cy='18.5' r='2.5'%3E%3C/circle%3E%3Ccircle cx='18.5' cy='18.5' r='2.5'%3E%3C/circle%3E%3C/svg%3E");
}

.nav-dropdown-menu a:hover[href*="contact-us"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230284c7' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'%3E%3C/path%3E%3Cpolyline points='22,6 12,13 2,6'%3E%3C/polyline%3E%3C/svg%3E");
}

.nav-dropdown-menu a:hover[href*="faq"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230284c7' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cpath d='M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3'%3E%3C/path%3E%3Cline x1='12' y1='17' x2='12.01' y2='17'%3E%3C/line%3E%3C/svg%3E");
}

.nav-dropdown-menu a:hover[href*="claim-center"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230284c7' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'%3E%3C/path%3E%3Cline x1='12' y1='8' x2='12' y2='12'%3E%3C/line%3E%3Cline x1='12' y1='16' x2='12.01' y2='16'%3E%3C/line%3E%3C/svg%3E");
}

.nav-dropdown-menu a:hover[href*="sitemap"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230284c7' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='7' height='7' rx='1'%3E%3C/rect%3E%3Crect x='14' y='3' width='7' height='7' rx='1'%3E%3C/rect%3E%3Crect x='14' y='14' width='7' height='7' rx='1'%3E%3C/rect%3E%3Crect x='3' y='14' width='7' height='7' rx='1'%3E%3C/rect%3E%3C/svg%3E");
}

.nav-dropdown-menu a:hover[href*="privacy-policy"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230284c7' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='11' width='18' height='11' rx='2' ry='2'%3E%3C/rect%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'%3E%3C/path%3E%3C/svg%3E");
}

.nav-dropdown-menu a:hover[href*="terms-conditions"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230284c7' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cline x1='16' y1='13' x2='8' y2='13'%3E%3C/line%3E%3Cline x1='16' y1='17' x2='8' y2='17'%3E%3C/line%3E%3Cpolyline points='10 9 9 9 8 9'%3E%3C/polyline%3E%3C/svg%3E");
}

.nav-dropdown-menu a:hover[href*="category=Construction"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230284c7' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 7h11v9H2z'%3E%3C/path%3E%3Cpath d='M13 10h4l4 3v3h-8z'%3E%3C/path%3E%3Ccircle cx='6' cy='18' r='1.8'%3E%3C/circle%3E%3Ccircle cx='17' cy='18' r='1.8'%3E%3C/circle%3E%3C/svg%3E");
}

.nav-dropdown-menu a:hover[href*="category=Heavy"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230284c7' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M13 2L3 14h9l-1 8 10-12h-9l1-8z'%3E%3C/path%3E%3C/svg%3E");
}

.nav-dropdown-menu a:hover[href*="category=Agricultural"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230284c7' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='7' height='7' rx='1'%3E%3C/rect%3E%3Crect x='14' y='3' width='7' height='7' rx='1'%3E%3C/rect%3E%3Crect x='14' y='14' width='7' height='7' rx='1'%3E%3C/rect%3E%3Crect x='3' y='14' width='7' height='7' rx='1'%3E%3C/rect%3E%3C/svg%3E");
}

.nav-dropdown-menu a:hover::before {
  opacity: 1;
  transform: scale(1.1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  padding: 6px;
  flex-shrink: 0;
}

.mobile-cta {
  display: none;
}

/* Hero */
.hero {
  padding: 72px 0 40px;
  overflow: hidden;
}

.hero-video-banner {
  position: relative;
  padding: 110px 0 90px;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-video-banner .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(19, 22, 31, 0.94) 0%, rgba(19, 22, 31, 0.82) 40%, rgba(19, 22, 31, 0.35) 75%, rgba(19, 22, 31, 0.15) 100%);
  z-index: 1;
}

.hero-video-banner .hero-inner {
  position: relative;
  z-index: 2;
}

.hero-video-banner .hero-copy h1 {
  color: #fff;
}

.hero-video-banner .hero-sub {
  color: #c3c8d4;
}

.hero-video-banner .trusted-text span {
  color: #c3c8d4;
}

.hero-video-banner .btn-outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.hero-video-banner .btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.search-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 12px;
  align-items: end;
  margin-bottom: 40px;
}

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

.search-field label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.search-field select {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 12px;
  background: var(--bg);
  color: var(--ink);
  font-weight: 600;
  font-size: 0.9rem;
}

.search-submit {
  justify-content: center;
  padding: 13px 20px;
}

.hero-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.stat-gauge-card {
  background: linear-gradient(155deg, #1c202c 0%, #13161f 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 20px 22px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 152px;
  flex: 1;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(18, 21, 28, 0.05), 0 16px 32px -14px rgba(18, 21, 28, 0.45);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.stat-gauge-card::before {
  content: '';
  position: absolute;
  width: 130%;
  height: 130%;
  background: radial-gradient(circle, rgba(255, 90, 31, 0.16) 0%, transparent 65%);
  top: -30%;
  left: -15%;
  pointer-events: none;
}

.stat-gauge-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 90, 31, 0.4);
  box-shadow: 0 4px 10px rgba(18, 21, 28, 0.08), 0 20px 40px -14px rgba(255, 90, 31, 0.25);
}

.gauge-wrapper {
  position: relative;
  width: 108px;
  height: 62px;
  display: flex;
  justify-content: center;
}

.gauge-svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.gauge-tick {
  stroke: rgba(255, 255, 255, 0.22);
  stroke-width: 1.6;
  stroke-linecap: round;
}

.gauge-hub-ring {
  fill: #171a24;
  stroke: var(--accent);
  stroke-width: 1.4;
}

.gauge-hub-dot {
  fill: var(--accent);
}

.gauge-value {
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  text-align: center;
}

.gauge-value strong {
  font-size: 1.4rem !important;
  font-weight: 800;
  color: #ffffff;
  display: block;
  line-height: 1;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 12px rgba(255, 90, 31, 0.35);
}

.stat-gauge-card span {
  position: relative;
  color: rgba(255, 255, 255, 0.55) !important;
  font-size: 0.7rem !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  text-align: center;
}

.gauge-needle {
  stroke: var(--accent);
  stroke-width: 2.5;
  stroke-linecap: round;
  filter: drop-shadow(0 0 4px rgba(255, 90, 31, 0.6));
  transition: x2 1.6s cubic-bezier(0.16, 1, 0.3, 1), y2 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gauge-fill {
  transition: stroke-dashoffset 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.trusted-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trusted-avatars {
  display: flex;
}

.trusted-avatars .avatar {
  margin-left: -10px;
  border: 2.5px solid var(--bg);
}

.trusted-avatars .avatar:first-child {
  margin-left: 0;
}

.avatar-sm {
  width: 34px;
  height: 34px;
  font-size: 0.7rem;
}

.trusted-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.trusted-text .stars {
  display: flex;
  gap: 2px;
  color: var(--accent);
}

.trusted-text span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1.15;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-trust-panel {
  position: absolute;
  bottom: 8%;
  right: 4%;
  width: 240px;
  background: rgba(19, 22, 31, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.55);
}

.trust-panel-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}

.trust-panel-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: rgba(255, 90, 31, 0.18);
  color: var(--accent);
  flex-shrink: 0;
}

.trust-panel-icon-success {
  background: rgba(26, 143, 90, 0.2);
  color: #3ddc8a;
}

.trust-panel-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #e7e9ee;
}

.trust-panel-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.trust-panel-price-row {
  justify-content: space-between;
}

.trust-panel-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--accent);
}

/* Filter band */
.filter-band {
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.05) 1px, transparent 0),
    linear-gradient(120deg, #1c202c, #13161f);
  background-size: 22px 22px, 100% 100%;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.filter-band::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 40%;
  background-image: url('../img/sports_car_left.png');
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
  opacity: 0.65;
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 45%, transparent 100%);
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 45%, transparent 100%);
  transform: translateY(var(--car-parallax, 0px)) scale(1.06);
  z-index: 0;
}

.filter-band::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 40%;
  background-image: url('../img/sports_car_right.png');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  opacity: 0.65;
  -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 45%, transparent 100%);
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 45%, transparent 100%);
  transform: translateY(var(--car-parallax, 0px)) scale(1.06);
  z-index: 0;
}

.filter-band-inner {
  position: relative;
  z-index: 1;
}

.filter-band-head {
  max-width: 640px;
  margin-bottom: 28px;
}

.filter-band-head h2 {
  color: #fff;
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.filter-band-head p {
  color: #9aa1b1;
  font-size: 0.98rem;
}

.eyebrow-invert {
  background: rgba(255, 90, 31, 0.18);
  color: #ff8a52;
}

.filter-form {
  grid-template-columns: repeat(5, 1fr) auto;
}

/* Quick categories */
.quick-categories {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.quick-categories-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  overflow-x: auto;
  padding-top: 14px;
  padding-bottom: 14px;
  scrollbar-width: none;
}

.quick-categories-inner::-webkit-scrollbar {
  display: none;
}

.quick-categories-inner a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink-soft);
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
  flex-shrink: 0;
}

.quick-categories-inner a svg {
  color: var(--ink-faint);
  transition: color 0.15s ease;
}

.quick-categories-inner a:hover {
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.quick-categories-inner a:hover svg {
  color: var(--accent-dark);
}

/* We export / services / destinations chips */
.export-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.export-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.export-chip svg {
  color: var(--accent);
  flex-shrink: 0;
}

.export-chip:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.destination-track-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.destination-viewport {
  flex: 1;
  overflow: hidden;
  padding: 10px 0 16px;
  margin: -10px 0 -16px;
}

.destination-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.destination-card {
  flex: 0 0 calc((100% - 60px) / 4);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 28px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.destination-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.destination-flag {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px var(--border), var(--shadow-sm);
}

.destination-card span {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.destination-card-more {
  background: var(--navy);
  border-color: var(--navy);
  justify-content: center;
}

.destination-card-more span {
  color: #fff;
}

/* Trust bar */
.trust-bar {
  background: var(--navy);
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}

.trust-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
  background-size: 22px 22px;
  pointer-events: none;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}

.trust-item svg {
  color: var(--accent);
  flex-shrink: 0;
  background: rgba(255, 90, 31, 0.14);
  border-radius: 10px;
  padding: 9px;
  width: 22px;
  height: 22px;
  box-sizing: content-box;
}

.trust-item strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.trust-item span {
  color: #9aa1b1;
  font-size: 0.82rem;
}

/* Brands */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.brand-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 16px;
  text-align: center;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.brand-card .brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--bg);
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  border: 1px solid var(--border);
}

.brand-card:hover .brand-logo {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 90, 31, 0.25);
}

.brand-svg-logo {
  width: 28px;
  height: 28px;
  transition: transform 0.25s ease;
}

.brand-card:hover .brand-svg-logo {
  transform: scale(1.1);
}

.brand-logo-img {
  width: 40px;
  height: 30px;
  object-fit: contain;
  transition: transform 0.25s ease;
}

/* .brand-logo-img.wordmark {
  width: 40px;
  height: 16px;
} */

.brand-card:hover .brand-logo-img {
  transform: scale(1.1);
}

.brand-logo-placeholder {
  background: var(--accent-soft);
  color: var(--accent-dark);
  border: none;
  font-weight: 800;
  font-size: 1.15rem;
}

.brand-card .brand-initial {
  font-weight: 800;
}

.brand-card h4 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.brand-card span {
  font-size: 0.78rem;
  color: var(--ink-faint);
}

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

.listing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  perspective: 1000px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.listing-card:hover {
  transform: translateY(-6px) rotateX(4deg) rotateY(-2deg);
  border-color: rgba(0, 240, 255, 0.35);
  box-shadow: 0 22px 40px rgba(0, 240, 255, 0.08), 0 8px 20px rgba(0, 0, 0, 0.12);
}

.listing-media {
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: #eaeae6;
}

.listing-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.listing-card:hover .listing-img {
  transform: scale(1.08) rotate(-1deg);
}

.listing-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--success);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 2;
}

.listing-badge svg {
  width: 12px;
  height: 12px;
}

.listing-body {
  padding: 18px 20px 22px;
}

.listing-body h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.listing-meta {
  color: var(--ink-soft);
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.listing-specs {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.listing-specs span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--ink-soft);
  font-weight: 600;
}

.listing-specs svg {
  color: var(--ink-faint);
}

.listing-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.listing-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent-dark);
}

.listing-link {
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

.listing-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.listing-link:hover {
  color: var(--accent-dark);
}

.listing-link:hover svg {
  transform: translateX(3px);
}

/* Category strip */
.category-strip {
  padding: 0 0 96px;
}

.category-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.category-banner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 240px;
  padding: 28px;
  border-radius: var(--radius-md);
  color: #fff;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 1;
}

.category-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  transform: skewX(-25deg);
  z-index: 3;
  pointer-events: none;
}

.category-banner:hover {
  transform: translateY(-5px);
}

.category-banner:hover::before {
  left: 150%;
  transition: all 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.45) 0%, transparent 60%);
  z-index: 2;
}

.banner-bg-icon {
  position: absolute;
  right: -12%;
  bottom: -18%;
  width: 78%;
  max-width: 260px;
  color: rgba(255, 255, 255, 0.12);
  transform: rotate(-4deg);
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s ease;
  z-index: 1;
}

.category-banner:hover .banner-bg-icon {
  transform: scale(1.1) rotate(-8deg);
  color: rgba(255, 255, 255, 0.22);
}

.banner-content {
  position: relative;
  z-index: 1;
}

.banner-icon-badge {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.category-banner h4 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 5px;
}

.category-banner p {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-bottom: 18px;
  max-width: 220px;
}

.category-banner .cat-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  background: rgba(255, 255, 255, 0.95);
  color: var(--navy);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  transition: background 0.2s ease;
}

.category-banner .cat-link svg {
  transition: transform 0.2s ease;
}

.category-banner:hover .cat-link {
  background: #fff;
}

.category-banner:hover .cat-link svg {
  transform: translateX(4px);
}

.cat-cars {
  background:
    linear-gradient(45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%) 0 0 / 10px 10px,
    linear-gradient(-45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%) 0 0 / 10px 10px,
    linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.02) 75%) 0 0 / 10px 10px,
    linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.02) 75%) 0 0 / 10px 10px,
    linear-gradient(135deg, #ff5a1f, #dd4a14);
}

.cat-cars:hover {
  border-color: #ff5a1f !important;
  box-shadow: 0 12px 28px rgba(255, 90, 31, 0.35);
}

.cat-trucks {
  background:
    linear-gradient(45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%) 0 0 / 10px 10px,
    linear-gradient(-45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%) 0 0 / 10px 10px,
    linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.02) 75%) 0 0 / 10px 10px,
    linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.02) 75%) 0 0 / 10px 10px,
    linear-gradient(135deg, #1c202c, #13161f);
}

.cat-trucks:hover {
  border-color: var(--accent) !important;
  box-shadow: 0 12px 28px rgba(0, 240, 255, 0.25);
}

.cat-buses {
  background:
    linear-gradient(45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%) 0 0 / 10px 10px,
    linear-gradient(-45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%) 0 0 / 10px 10px,
    linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.02) 75%) 0 0 / 10px 10px,
    linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.02) 75%) 0 0 / 10px 10px,
    linear-gradient(135deg, #1a8f5a, #0f6a41);
}

.cat-buses:hover {
  border-color: #1a8f5a !important;
  box-shadow: 0 12px 28px rgba(26, 143, 90, 0.35);
}

/* Stock grid */
.stock-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stock-grid .listing-body {
  padding: 15px 16px 18px;
}

.stock-grid .listing-body h3 {
  font-size: 0.95rem;
}

.stock-grid .listing-price {
  font-size: 1.05rem;
}

.stock-grid .listing-specs {
  gap: 12px;
  margin-bottom: 12px;
}

/* Brand promo layout */
.brands-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 20px;
  align-items: stretch;
}

.brand-promo {
  background: linear-gradient(155deg, #1c202c, #13161f);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.brand-promo h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin: 4px 0 10px;
  position: relative;
}

.brand-promo p {
  color: #9aa1b1;
  font-size: 0.88rem;
  margin-bottom: 22px;
  position: relative;
}

.brand-promo .btn,
.brand-promo .eyebrow {
  position: relative;
}

.dark-panel-texture {
  position: relative;
  overflow: hidden;
}

.brand-promo::before,
.about-stat-card::before,
.feature-badge-card::before,
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.055) 1px, transparent 0);
  background-size: 22px 22px;
}

/* About section */
.about {
  background: var(--surface);
}

.about-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: center;
}

.about-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 14px 0 16px;
  max-width: 520px;
}

.about-copy>p {
  color: var(--ink-soft);
  font-size: 1rem;
  max-width: 520px;
  margin-bottom: 32px;
}

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

.about-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.about-feature svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.about-feature h4 {
  font-size: 0.92rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.about-feature p {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.about-stat-card {
  background: linear-gradient(155deg, #1c202c, #13161f);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  color: #fff;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.about-stat-card strong {
  display: block;
  font-size: 2.6rem;
  font-weight: 800;
  margin: 14px 0 2px;
  letter-spacing: -0.02em;
}

.about-stat-card>span {
  color: #9aa1b1;
  font-size: 0.9rem;
}

.about-stat-row {
  display: flex;
  gap: 28px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--navy-border);
}

.about-stat-row strong {
  font-size: 1.3rem;
  margin: 0 0 2px;
}

.about-stat-row span {
  font-size: 0.78rem;
  color: #9aa1b1;
}

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

.showroom-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 22px 22px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.showroom-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #ff8a52);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.showroom-card:hover::before {
  transform: scaleX(1);
}

.showroom-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.showroom-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-dark);
  background: var(--accent-soft);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.showroom-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(255, 90, 31, 0.12);
  transition: background 0.2s ease, color 0.2s ease;
}

.showroom-card:hover .showroom-icon {
  background: var(--accent);
  color: #fff;
}

.showroom-card h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.showroom-card p {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 16px;
  line-height: 1.5;
}

.showroom-contact {
  padding-top: 14px;
  border-top: 1px solid var(--border);
  margin-bottom: 14px;
}

.showroom-card a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

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

.showroom-card a svg {
  color: var(--accent);
  flex-shrink: 0;
}

.showroom-card a:hover {
  color: var(--accent-dark);
}

.showroom-directions {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.showroom-directions svg {
  color: var(--accent-dark);
  transition: transform 0.2s ease;
}

.showroom-directions:hover svg {
  transform: translateX(3px);
}

/* Footer additions */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.office-hours {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.office-hours svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.office-hours div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.82rem;
  color: #9aa1b1;
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
  margin-top: 14px;
  font-size: 0.92rem;
}

.cta-phone svg {
  color: var(--accent);
}

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 52px;
  left: 64px;
  right: 64px;
  height: 2px;
  background-image: linear-gradient(to right, var(--border) 0%, var(--border) 50%, transparent 50%);
  background-size: 16px 2px;
  z-index: 0;
}

.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.step-num {
  position: absolute;
  top: 14px;
  right: 18px;
  font-weight: 800;
  font-size: 3rem;
  line-height: 1;
  color: var(--bg);
  z-index: 0;
  transition: color 0.2s ease;
}

.step:hover .step-num {
  color: var(--accent-soft);
}

.step-icon {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background 0.2s ease, color 0.2s ease;
}

.step:hover .step-icon {
  background: var(--accent);
  color: #fff;
}

.step h3 {
  position: relative;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.step p {
  position: relative;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

/* Features */
.features {
  background: var(--surface);
}

.features-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.feature-badge-card {
  background: linear-gradient(155deg, #1c202c, #13161f);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: #fff;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.feature-badge-card svg {
  color: var(--accent);
  margin-bottom: 18px;
}

.feature-badge-card h4 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.feature-badge-card p {
  color: #9aa1b1;
  font-size: 0.92rem;
  margin-bottom: 22px;
}

.price-tag {
  display: inline-block;
  background: rgba(255, 90, 31, 0.15);
  color: var(--accent);
  font-weight: 800;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.88rem;
}

.features-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  max-width: 480px;
}

.feature-list {
  display: grid;
  gap: 22px;
}

.feature-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-row svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.feature-row h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.feature-row p {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

/* Testimonials */
.testimonial-track-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-viewport {
  flex: 1;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  flex: 0 0 calc((100% - 48px) / 3);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px;
}

.stars {
  display: flex;
  gap: 3px;
  color: var(--accent);
  margin-bottom: 14px;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--ink-faint);
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  flex-shrink: 0;
  transition: background 0.15s ease, color 0.15s ease;
}

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

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, #13161f, #22273a);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
}

.cta-inner h2 {
  color: #fff;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 800;
  margin-bottom: 8px;
}

.cta-inner p {
  color: #9aa1b1;
  max-width: 460px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: #c3c8d4;
  padding-top: 72px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 56px;
}

.footer-brand p {
  margin: 16px 0 16px;
  font-size: 0.88rem;
  color: #8f96a6;
  max-width: 300px;
}

.footer-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #8f96a6;
  margin-bottom: 8px;
}

.footer-location:last-child {
  margin-bottom: 0;
}

.footer-location svg {
  color: var(--accent);
  flex-shrink: 0;
}

.footer-contact-section {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-contact-heading {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.footer-contact-section .footer-location:last-child {
  margin-bottom: 0;
}

.footer-col h5 {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: #9aa1b1;
  margin-bottom: 12px;
  transition: color 0.15s ease;
}

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

.footer-newsletter p {
  font-size: 0.85rem;
  color: #8f96a6;
  margin-bottom: 14px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--navy-border);
  background: var(--navy-soft);
  color: #fff;
  font-size: 0.85rem;
}

.newsletter-form input::placeholder {
  color: #6b7284;
}

.newsletter-form .btn {
  padding: 11px 18px;
  font-size: 0.85rem;
}

.footer-bottom {
  border-top: 1px solid var(--navy-border);
  padding: 22px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #8f96a6;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

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

.site-footer .logo-text span {
  color: #8f96a6;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Car drop-in reveal: used for hero car, listing cards, brand & category cards */
.reveal.reveal-drop {
  opacity: 0;
  transform: translateY(-46px) scale(0.94);
  transition: opacity 0.7s ease, transform 0.75s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reveal.reveal-drop.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {

  .reveal,
  .reveal.reveal-drop {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-trust-panel {
    animation: none !important;
  }
}


@keyframes chipFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.hero-trust-panel {
  animation: chipFloat 4s ease-in-out infinite;
}

/* Top Bar Auth */
.auth-divider {
  color: #2a2f3d;
  font-weight: 400;
  margin: 0 4px;
}

.top-bar-divider {
  color: #2a2f3d;
  font-weight: 400;
}

.auth-spacing {
  color: #636b7b;
  margin: 0 4px;
}

.top-bar-link {
  color: #c3c8d4;
  font-weight: 600;
  transition: color 0.15s ease;
}

.top-bar-link:hover {
  color: var(--accent);
}

/* ── CURRENCY SELECT2 — main header pill (light) ── */
.header-currency { display: flex; align-items: center; }
.header-currency .select2-container { font-size: 0.85rem; }
.header-currency .select2-selection--single {
  background: #fff !important;
  border: 1px solid var(--border) !important;
  border-radius: 999px !important;
  height: 40px !important;
  display: flex; align-items: center;
  padding: 0 8px 0 14px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.header-currency .select2-selection--single:hover,
.header-currency.select2-container--open .select2-selection--single {
  border-color: var(--accent) !important;
}
.header-currency .select2-container--focus .select2-selection--single,
.header-currency .select2-selection--single:focus-within {
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.header-currency .select2-selection__rendered {
  color: var(--ink) !important;
  font-weight: 600;
  padding: 0 20px 0 0 !important;
  line-height: 38px !important;
}
.header-currency .select2-selection__arrow {
  height: 38px !important;
  right: 12px !important;
}
.header-currency .select2-selection__arrow b { border-color: var(--ink-soft) transparent transparent transparent !important; }

@media (max-width: 900px) {
  /* No room for the currency picker next to Contact Us + the hamburger on
     small screens — the vehicle/machinery/part detail pages already have
     their own currency selector, and the choice is site-wide anyway. */
  .header-currency { display: none; }
}

@media (max-width: 375px) {
  /* Pre-existing tight fit on very narrow phones (e.g. iPhone SE at
     320–360px): logo + Contact Us + hamburger alone don't fit. The
     hamburger menu already has its own "Contact Us" button once opened. */
  .header-actions > .btn-outline { display: none; }
}

/* ── CURRENCY SELECT2 — detail page price card (light) ── */
.detail-currency-row .select2-container { width: 100% !important; }
.detail-currency-row .select2-selection--single {
  height: 40px !important;
  border: 1px solid var(--border) !important;
  border-radius: 8px !important;
  display: flex; align-items: center;
  padding: 0 8px;
}
.detail-currency-row .select2-selection__rendered {
  padding: 0 20px 0 4px !important;
  line-height: 38px !important;
  color: var(--ink) !important;
}
.detail-currency-row .select2-selection__arrow { height: 38px !important; }

/* ── CURRENCY SELECT2 — shared dropdown look ── */
.currency-flag { margin-right: 8px; }
.select2-results__option .currency-flag { font-size: 1.05em; }
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: var(--accent) !important;
  color: #fff !important;
}
.select2-dropdown { border-color: #d8dce6 !important; z-index: 4000; }
.select2-search--dropdown .select2-search__field {
  border-radius: 6px !important; border: 1px solid #d8dce6 !important; padding: 6px 8px !important;
}

/* News & Updates */
.news-updates {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.update-card {
  background: var(--bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.update-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.update-media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.update-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.update-card:hover .update-media img {
  transform: scale(1.06);
}

.update-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--navy);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 99px;
  z-index: 2;
}

.update-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.update-date {
  font-size: 0.78rem;
  color: var(--ink-faint);
  font-weight: 600;
  margin-bottom: 8px;
}

.update-body h4 {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.update-body p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.update-link {
  margin-top: auto;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s ease;
}

.update-card:hover .update-link {
  gap: 8px;
}

/* Video Showcase */
.video-showcase {
  background: var(--bg);
}

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

.video-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.video-thumbnail {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 21, 28, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  transition: opacity 0.25s ease, background 0.25s ease;
}

.play-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.25s ease, color 0.25s ease;
}

.video-card:hover .play-overlay {
  opacity: 1;
  background: rgba(18, 21, 28, 0.25);
}

.video-card:hover .play-btn {
  transform: scale(1.12);
  background: var(--accent);
  color: #fff;
}

.video-card:hover .video-thumbnail img {
  transform: scale(1.04);
}

.video-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}

.video-info {
  padding: 12px 2px 0;
}

.video-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-meta {
  font-size: 0.78rem;
  color: var(--ink-faint);
  font-weight: 500;
}

/* Logistics Partners */
.partners-logo-row {
  background: var(--navy);
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
  padding: 32px 0;
}

.partners-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.partners-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-faint);
}

.logos-container {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.partner-logo {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #ffffff;
  opacity: 0.35;
  transition: opacity 0.25s ease, transform 0.25s ease;
  user-select: none;
}

.partner-logo:hover {
  opacity: 0.9;
  transform: scale(1.04);
}

/* Leadership & banking */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.leader-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.leader-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.leader-card h4 {
  font-size: 1.1rem;
  font-weight: 800;
  margin: 10px 0 2px;
}

.leader-role {
  font-size: 0.82rem;
  color: var(--ink-faint);
  margin-bottom: 14px;
}

.leader-card a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}

.leader-card a svg {
  color: var(--accent);
  flex-shrink: 0;
}

.leader-card a:hover {
  color: var(--accent-dark);
}

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

.bank-card {
  background: linear-gradient(155deg, #1c202c 0%, #13161f 100%);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  color: #fff;
}

.bank-card-head {
  margin-bottom: 16px;
}

.bank-card-head .showroom-tag {
  background: rgba(255, 90, 31, 0.18);
  color: #ff8a52;
}

.bank-card-head h4 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-top: 8px;
}

.bank-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bank-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--navy-border);
  font-size: 0.85rem;
}

.bank-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.bank-row span {
  color: #9aa1b1;
}

.bank-row strong {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: right;
}

@media (max-width: 760px) {
  .leadership-grid, .banking-grid {
    grid-template-columns: 1fr;
  }
}

/* Cars Listing Page Styles */
.cars-hero {
  background: linear-gradient(135deg, var(--navy) 40%, var(--navy-soft) 100%);
  color: #ffffff;
  padding: 56px 0;
  border-bottom: 1.5px solid var(--navy-border);
}

.cars-hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.cars-hero p {
  color: #8f96a6;
  font-size: 1.1rem;
  max-width: 600px;
}

.cars-page-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 32px;
  padding: 48px 24px;
}

/* Sidebar Styling */
.cars-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-widget {
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 24px;
}

.sidebar-widget h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.widget-title-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sidebar-close-btn {
  display: none;
  color: var(--ink-soft);
}

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

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}

.form-select,
.form-input {
  width: 100%;
  padding: 10px 14px;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background-color: var(--bg);
  color: var(--ink);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.form-select:focus,
.form-input:focus {
  border-color: var(--accent);
  background-color: #fff;
  outline: none;
}

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

.w-full {
  width: 100%;
}

.mt-2 {
  margin-top: 8px;
}

/* Body Types Widget */
.body-types-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.body-type-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 8px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--ink-soft);
  transition: all 0.2s ease;
}

.body-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xs);
  transition: all 0.2s ease;
}

.body-type-btn span {
  font-size: 0.8rem;
  font-weight: 700;
}

.body-type-btn:hover {
  border-color: var(--accent-dark);
  color: var(--ink);
}

.body-type-btn.active {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.body-type-btn.active .body-icon-wrap {
  background: var(--accent);
  color: #fff;
}

/* Car Brands Sidebar Widget */
.sidebar-brands-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-brands-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--bg);
  border: 1px solid var(--border);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.2s ease;
}

.sidebar-brands-list li .badge {
  font-size: 0.72rem;
  padding: 2px 8px;
  background: var(--border);
  color: var(--ink-soft);
  border-radius: 99px;
  transition: all 0.2s ease;
}

.sidebar-brands-list li:hover {
  border-color: var(--ink-faint);
  color: var(--ink);
}

.sidebar-brands-list li.active {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.sidebar-brands-list li.active .badge {
  background: var(--accent);
  color: #fff;
}

/* Most Viewed Mini Cards */
.most-viewed-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mini-car-card {
  display: flex;
  gap: 12px;
  align-items: center;
  transition: transform 0.2s ease;
}

.mini-car-card:hover {
  transform: translateX(4px);
}

.mini-car-card img {
  width: 72px;
  height: 52px;
  object-fit: contain;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  padding: 4px;
}

.mini-car-card h5 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 2px;
}

.mini-car-card span {
  display: block;
  font-size: 0.75rem;
  color: var(--ink-soft);
}

.mini-car-card .price {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent);
  margin-top: 2px;
}

/* Right Content Deck Styling */
.cars-main-deck {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.deck-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.result-summary h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
}

.deck-toolbar {
  display: flex;
  gap: 12px;
}

.mobile-filter-trigger {
  display: none;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.view-toggle-btns {
  display: flex;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--surface);
}

.view-toggle-btns .toggle-btn {
  padding: 8px 12px;
  color: var(--ink-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.view-toggle-btns .toggle-btn:hover {
  color: var(--ink);
}

.view-toggle-btns .toggle-btn.active {
  background: var(--accent-soft);
  color: var(--accent-dark);
}

/* Active Chips bar */
.active-chips-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: -8px;
}

.filter-chip {
  font-size: 0.78rem;
  background: var(--surface);
  border: 1.5px solid var(--border);
  color: var(--ink-soft);
  padding: 6px 12px;
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.filter-chip button {
  font-size: 1.05rem;
  line-height: 1;
  color: var(--ink-faint);
  transition: color 0.2s ease;
  margin-top: -1px;
}

.filter-chip button:hover {
  color: var(--accent);
}

.clear-all-chips-btn {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

/* Shipping Schedule Page Styles */
.shipping-hero {
  background: linear-gradient(135deg, var(--navy) 40%, var(--navy-soft) 100%);
  color: #ffffff;
  padding: 56px 0;
  border-bottom: 1.5px solid var(--navy-border);
}

.shipping-hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.shipping-hero p {
  color: #8f96a6;
  font-size: 1.1rem;
  max-width: 600px;
}

.shipping-page-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 32px;
  padding: 48px 24px;
}

.shipping-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.support-nav-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.support-nav-list li a {
  display: block;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
  transition: all 0.2s ease;
}

.support-nav-list li a:hover {
  border-color: var(--ink-faint);
  color: var(--ink);
}

.support-nav-list li a.active {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.carrier-track-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.carrier-card {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  text-decoration: none;
}

.carrier-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.carrier-logo {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.carrier-logo.dhl {
  color: #d32f2f;
}

.carrier-logo.fedex {
  color: #512da8;
}

.carrier-logo.maersk {
  color: #0288d1;
}

.carrier-logo.msc {
  color: #f57c00;
}

.carrier-logo.hapag {
  color: #1976d2;
}

.carrier-logo.cma {
  color: #388e3c;
}

.shipping-main-deck {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.shipping-filter-form {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: var(--radius-md);
}

.shipping-filter-form .form-group {
  flex: 1;
  min-width: 200px;
  margin-bottom: 0;
}

.filter-actions-row {
  display: flex;
  gap: 12px;
}

.table-container {
  width: 100%;
  overflow-x: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.shipping-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9rem;
}

.shipping-table th {
  background: var(--bg);
  padding: 16px;
  font-weight: 800;
  color: var(--ink-soft);
  text-transform: uppercase;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  border-bottom: 1.5px solid var(--border);
}

.shipping-table td {
  padding: 16px;
  border-bottom: 1px solid var(--border);
  color: var(--ink);
  white-space: nowrap;
}

.shipping-table tr:last-child td {
  border-bottom: none;
}

.shipping-table tr:hover td {
  background: var(--bg-hover);
}

.vessel-cell {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
}

.vessel-cell svg {
  color: var(--ink-faint);
}

.no-schedules-cell {
  padding: 48px 16px !important;
  text-align: center;
}

/* Status Badges */
.status-badge {
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.status-scheduled {
  background: var(--border);
  color: var(--ink-soft);
}

.status-transit {
  background: #fff8e1;
  color: #b78103;
}

.status-departed {
  background: #e8eaf6;
  color: #283593;
}

.status-arrived {
  background: #e0f2f1;
  color: #00695c;
}

/* Cars Listing Container Layouts */
.cars-list-container.list-view {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

/* List Card Styling */
.car-list-card {
  display: flex;
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.car-list-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.car-list-card .car-media {
  position: relative;
  width: 250px;
  flex-shrink: 0;
  aspect-ratio: 4/3;
  background: #fff;
  border-right: 1px solid var(--border);
  overflow: hidden;
}

.car-list-card .car-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
}

.inspected-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #dd2c00;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: 4px;
}

.car-info-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.car-title {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.3;
}

.car-title a:hover {
  color: var(--accent);
}

.car-ids {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.car-ids .divider {
  color: var(--border);
}

.car-property-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.prop-badge {
  font-size: 0.76rem;
  font-weight: 600;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--ink-soft);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.car-action-row {
  margin-top: auto;
}

.more-details-link {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s ease;
}

.more-details-link:hover {
  gap: 8px;
  color: var(--accent-dark);
}

.car-price-block {
  padding: 24px;
  border-left: 1px solid var(--border);
  width: 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  background: var(--bg);
}

.reg-date {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-faint);
}

.price-container {
  margin-top: auto;
}

.price-val {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.01em;
}

/* Grid Card Styling */
.car-grid-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.car-grid-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.car-grid-card .car-media {
  position: relative;
  aspect-ratio: 4/3;
  background: #fff;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.car-grid-card .car-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform 0.4s ease;
}

.car-grid-card:hover .car-media img {
  transform: scale(1.04);
}

.car-grid-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.car-grid-specs {
  display: flex;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-faint);
  margin-bottom: 8px;
}

.car-grid-specs span:not(:last-child)::after {
  content: "·";
  margin-left: 8px;
}

.car-grid-title {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 16px;
  min-height: 52px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.car-grid-title a:hover {
  color: var(--accent);
}

.car-grid-price-bar {
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Pagination Bar styling */
.pagination-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}

.pag-btn {
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1.5px solid var(--border);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink-soft);
  transition: all 0.2s ease;
}

.pag-btn:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.pag-btn.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.pag-btn.disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* No results state styling */
.no-results-msg {
  grid-column: 1 / -1;
  text-align: center;
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px dashed var(--border);
  padding: 56px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.no-results-msg h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ink);
}

.no-results-msg p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  max-width: 400px;
  margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 1179px) {
  .main-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .header-actions .btn-ghost {
    display: none;
  }

  .site-header.nav-open .main-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    position: absolute;
    top: 96px;
    left: 0;
    right: 0;
    max-height: calc(100vh - 96px);
    overflow-y: auto;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    padding: 16px 24px 24px;
  }

  .site-header.nav-open .main-nav a {
    padding: 10px 0;
    width: 100%;
    font-size: 1rem;
  }

  .site-header.nav-open .main-nav .mobile-cta {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    padding: 13px 22px;
  }

  .site-header.nav-open .main-nav a:not(.mobile-cta)+.mobile-cta {
    margin-top: 14px;
  }

  /* Vehicles / Machinery accordion — the dropdown trigger navigates as
     normal, the chevron button expands the submenu inline instead of the
     desktop hover-flyout (which doesn't work on touch). */
  .site-header.nav-open .nav-dropdown {
    display: block;
    width: 100%;
  }

  .site-header.nav-open .nav-dropdown-head {
    width: 100%;
    justify-content: space-between;
  }

  .site-header.nav-open .nav-dropdown-head .nav-dropdown-trigger {
    width: auto;
  }

  .site-header.nav-open .nav-dropdown-chevron {
    padding: 8px;
    color: var(--ink-soft);
  }

  .site-header.nav-open .nav-dropdown-chevron svg {
    transition: transform 0.2s ease;
  }

  .site-header.nav-open .nav-dropdown.mobile-expanded .nav-dropdown-chevron svg {
    transform: rotate(180deg);
  }

  .site-header.nav-open .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    display: block;
    max-height: 0;
    overflow: hidden;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
    min-width: 0;
    width: 100%;
    transition: max-height 0.25s ease;
  }

  .site-header.nav-open .nav-dropdown.mobile-expanded .nav-dropdown-menu {
    max-height: 400px;
    padding: 2px 0 8px;
  }

  .site-header.nav-open .nav-dropdown-menu a {
    padding: 8px 0 8px 16px !important;
    font-size: 0.92rem;
    color: var(--ink-soft);
  }
}

@media (max-width: 479px) {
  .header-actions .btn-primary {
    display: none;
  }
}

@media (max-width: 1024px) {
  .destination-card {
    flex: 0 0 calc((100% - 40px) / 3);
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .cars-page-layout,
  .shipping-page-layout {
    grid-template-columns: 1fr;
    padding: 32px 16px;
  }

  .cars-sidebar,
  .shipping-sidebar {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    background: var(--surface);
    z-index: 2000;
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 24px;
    gap: 20px;
  }

  .cars-sidebar.open,
  .shipping-sidebar.open {
    left: 0;
  }

  .sidebar-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    width: 32px;
    height: 32px;
    cursor: pointer;
  }

  .mobile-filter-trigger {
    display: inline-flex;
  }

  .cars-list-container.grid-view {
    grid-template-columns: 1fr 1fr;
  }

  .hero-visual {
    max-width: 480px;
    margin: 0 auto;
  }

  .filter-form {
    grid-template-columns: repeat(3, 1fr);
  }

  .filter-form .search-submit {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .brand-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .listing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stock-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .updates-grid,
  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-inner {
    grid-template-columns: 1fr;
  }

  .features-visual {
    max-width: 420px;
    margin: 0 auto;
  }

  .testimonial-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .category-strip-inner {
    grid-template-columns: 1fr;
  }

  .brands-layout {
    grid-template-columns: 1fr;
  }

  .about-inner {
    grid-template-columns: 1fr;
  }

  .about-visual {
    max-width: 440px;
    margin: 0 auto;
  }

  .showroom-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .top-bar-social span {
    display: none;
  }

  .top-bar-contact a:not(:first-child) {
    display: none;
  }

  .top-bar-divider {
    display: none;
  }

  .search-card {
    grid-template-columns: 1fr;
  }

  .car-list-card {
    flex-direction: column;
  }

  .car-list-card .car-media {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .car-price-block {
    width: 100%;
    border-left: none;
    border-top: 1px solid var(--border);
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
  }

  .cars-list-container.grid-view {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .listing-grid {
    grid-template-columns: 1fr;
  }

  .stock-grid {
    grid-template-columns: 1fr;
  }

  .updates-grid,
  .videos-grid {
    grid-template-columns: 1fr;
  }

  .partners-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .logos-container {
    gap: 20px;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .showroom-grid {
    grid-template-columns: 1fr;
  }

  .about-stat-row {
    flex-wrap: wrap;
    gap: 20px;
  }

  .section-head.split {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .testimonial-card {
    flex: 0 0 100%;
  }

  .hero-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }

  .visual-card {
    grid-column: 1 / -1;
    aspect-ratio: 1.5;
  }

  .floating-chip {
    position: static;
    margin: 0 !important;
    font-size: 0.76rem;
    padding: 8px 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-sm);
    animation: none !important;
  }

  .chip-inspect {
    grid-column: 1 / 2;
  }

  .chip-ship {
    grid-column: 2 / 3;
  }

  .chip-price {
    grid-column: 1 / -1;
    justify-self: center;
    margin-top: 4px !important;
  }
}

/* Events and Custom Blog Styling */
.events-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 32px;
  padding: 48px 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.events-main-feed {
  display: flex;
  flex-direction: column;
}

.events-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.events-tabs-bar {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
  border-bottom: 1.5px solid var(--border);
  padding-bottom: 14px;
}

.events-tabs-bar .tab-btn {
  background: var(--surface);
  border: 1.5px solid var(--border);
  color: var(--ink-soft);
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.events-tabs-bar .tab-btn:hover {
  border-color: var(--ink-faint);
  color: var(--ink);
}

.events-tabs-bar .tab-btn.active {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--accent-dark);
}

.events-feed-list {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.event-feed-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.event-feed-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.event-card-media {
  position: relative;
  aspect-ratio: 16/9;
  max-height: 380px;
  overflow: hidden;
  background: #0f141d;
}

.event-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.event-feed-card:hover .event-card-media img {
  transform: scale(1.03);
}

.event-date-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--accent);
  color: #fff;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 5;
}

.event-date-badge .day {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
}

.event-date-badge .month {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.event-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.event-meta-row {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--ink-faint);
  font-weight: 600;
  flex-wrap: wrap;
}

.event-meta-row .meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.event-meta-row .shares-btn {
  cursor: pointer;
  transition: color 0.15s ease;
}

.event-meta-row .shares-btn:hover {
  color: var(--accent);
}

.event-card-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.3;
}

.event-card-title a {
  color: inherit;
  text-decoration: none;
}

.event-card-title a:hover {
  color: var(--accent);
}

.event-card-text {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.event-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  border-top: 1.5px solid var(--border);
  padding-top: 18px;
  flex-wrap: wrap;
  gap: 12px;
}

.social-share-dots {
  display: flex;
  gap: 6px;
}

.share-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
  user-select: none;
}

.share-dot:hover {
  transform: scale(1.1);
  opacity: 0.95;
}

.share-dot.fb {
  background: #1877f2;
}

.share-dot.tw {
  background: #1da1f2;
}

.share-dot.wa {
  background: #25d366;
}

@media (max-width: 991px) {
  .events-page-layout {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 32px 16px;
  }
}

/* Part Card Specific Styles */
.part-grid-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.part-status-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px;
  background: var(--surface-light);
  border-top: 1px solid var(--border);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s ease;
  border-bottom-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
}

.part-grid-card:hover .part-status-btn {
  background: var(--accent);
  color: #fff;
  border-top-color: var(--accent);
}

.part-status-btn.reserved {
  background: rgba(168, 85, 247, 0.1);
  color: rgb(168, 85, 247);
  border-top-color: rgba(168, 85, 247, 0.2);
}

.part-grid-card:hover .part-status-btn.reserved {
  background: rgb(168, 85, 247);
  color: #fff;
  border-top-color: rgb(168, 85, 247);
}

.part-status-btn.sold {
  background: rgba(239, 68, 68, 0.1);
  color: rgb(239, 68, 68);
  border-top-color: rgba(239, 68, 68, 0.2);
}

.part-grid-card:hover .part-status-btn.sold {
  background: rgb(239, 68, 68);
  color: #fff;
  border-top-color: rgb(239, 68, 68);
}

/* Sidebar category list widget styles */
.sidebar-categories-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-categories-list li {
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}

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

.sidebar-categories-list a {
  display: flex;
  justify-content: space-between;
  color: var(--ink-light);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.sidebar-categories-list a:hover {
  color: var(--accent);
}

.sidebar-categories-list .count {
  color: var(--ink-faint);
  font-size: 0.85rem;
  font-weight: 500;
}

@media (max-width: 640px) {
  .destination-card {
    flex: 0 0 calc((100% - 16px) / 2);
  }
}

/* Vehicle detail page */
.detail-breadcrumb {
  padding: 20px 24px 0;
  font-size: 0.85rem;
  color: var(--ink-faint);
}

.detail-breadcrumb a { color: var(--ink-soft); font-weight: 600; }
.detail-breadcrumb a:hover { color: var(--accent-dark); }
.detail-breadcrumb span { margin: 0 6px; }
.detail-breadcrumb #crumbCurrent { color: var(--ink); font-weight: 600; }

.detail-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 32px;
  padding: 24px;
  align-items: start;
}

.detail-main { display: flex; flex-direction: column; gap: 28px; min-width: 0; }

.detail-gallery { display: flex; flex-direction: column; gap: 12px; }

.detail-gallery-main {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #eaeae6;
  box-shadow: var(--shadow-sm);
}

.detail-gallery-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.detail-gallery-slide { flex: 0 0 100%; }

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

.detail-gallery-badge {
  position: absolute; top: 16px; left: 16px;
  background: rgba(255,255,255,0.95);
  color: var(--success);
  font-size: 0.8rem; font-weight: 700;
  padding: 8px 14px; border-radius: 999px;
  display: flex; align-items: center; gap: 6px;
  z-index: 2;
}

.gallery-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(19, 22, 31, 0.55);
  backdrop-filter: blur(6px);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 2;
}

.gallery-nav:hover { background: var(--accent); }
.gallery-prev { left: 14px; }
.gallery-next { right: 14px; }

.gallery-counter {
  position: absolute; bottom: 14px; right: 14px;
  background: rgba(19, 22, 31, 0.6);
  color: #fff;
  font-size: 0.75rem; font-weight: 700;
  padding: 5px 12px; border-radius: 999px;
  z-index: 2;
}

.detail-gallery-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
}

.gallery-thumb {
  flex: 0 0 84px;
  aspect-ratio: 16/10;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  opacity: 0.6;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb:hover { opacity: 0.9; }
.gallery-thumb.active { opacity: 1; border-color: var(--accent); }

.detail-title-block h1 { font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 10px; }

.detail-title-meta { display: flex; flex-wrap: wrap; gap: 20px; font-size: 0.88rem; color: var(--ink-soft); }
.detail-title-meta span { display: flex; align-items: center; gap: 6px; }
.detail-title-meta svg { color: var(--accent); }
.detail-title-meta strong { color: var(--ink); }

.detail-quick-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.detail-quick-specs div {
  display: flex; align-items: center; gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 0.85rem;
  font-weight: 700;
}

.detail-quick-specs svg { color: var(--accent); flex-shrink: 0; }

.detail-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
}

.detail-block h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 14px; }
.detail-block-sub { color: var(--ink-soft); font-size: 0.88rem; margin-bottom: 18px; margin-top: -6px; }
.detail-description-text { white-space: pre-wrap; line-height: 1.75; color: var(--ink-soft); font-size: 0.95rem; }

.detail-spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 20px;
}

.detail-spec-grid > div { display: flex; flex-direction: column; gap: 3px; }
.detail-spec-grid span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink-faint); font-weight: 700; }
.detail-spec-grid strong { font-size: 0.92rem; color: var(--ink); }

.detail-inspection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.inspection-item {
  display: flex; align-items: center; gap: 8px;
  background: var(--success-soft);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 0.82rem;
  font-weight: 700;
}

.inspection-item svg { color: var(--success); flex-shrink: 0; }
.inspection-item span { flex: 1; color: var(--ink); }
.inspection-item em { font-style: normal; color: var(--success); font-size: 0.72rem; text-transform: uppercase; }

.detail-why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.detail-why-item { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; font-weight: 600; }
.detail-why-item svg { color: var(--accent); flex-shrink: 0; }

.detail-sidebar { position: sticky; top: 100px; }

.detail-price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-md);
}

.detail-price-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-faint); font-weight: 700; }
.detail-price-usd { font-size: 2rem; font-weight: 800; color: var(--accent-dark); margin: 4px 0 18px; }
.detail-price-usd small { font-size: 1rem; font-weight: 700; color: var(--ink-faint); }

.detail-currency-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 4px; }
.detail-currency-row label { font-size: 0.75rem; font-weight: 700; color: var(--ink-faint); text-transform: uppercase; letter-spacing: 0.04em; }
.detail-currency-row select {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  background: var(--bg);
  color: var(--ink);
  font-weight: 600;
  font-size: 0.88rem;
}

.detail-converted-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
  margin: 10px 0 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.detail-converted-price em { font-style: normal; font-size: 0.72rem; color: var(--ink-faint); font-weight: 600; }

.detail-cta-whatsapp { width: 100%; justify-content: center; background: linear-gradient(135deg, #34d17a, #1a8f5a); margin-bottom: 10px; }
.detail-cta-whatsapp:hover { background: linear-gradient(135deg, #3ddc8a, #1a8f5a); }
.detail-cta-call { width: 100%; justify-content: center; margin-bottom: 12px; }

.detail-cta-note { font-size: 0.76rem; color: var(--ink-faint); text-align: center; margin-bottom: 18px; }

.detail-alt-contact {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-bottom: 18px;
}

.detail-alt-contact > span {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-faint);
  margin-bottom: 8px;
}

.detail-alt-contact-row { display: flex; gap: 16px; flex-wrap: wrap; }
.detail-alt-contact-row a { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; font-weight: 700; color: var(--ink); }
.detail-alt-contact-row svg { color: var(--accent); flex-shrink: 0; }
.detail-alt-contact-row a:hover { color: var(--accent-dark); }

.detail-trust-row { display: flex; gap: 16px; padding-top: 16px; border-top: 1px solid var(--border); }
.detail-trust-row span { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; font-weight: 700; color: var(--ink-soft); }
.detail-trust-row svg { color: var(--accent); }

@media (max-width: 1024px) {
  .detail-layout { grid-template-columns: 1fr; }
  .detail-sidebar { position: static; }
  .detail-spec-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-inspection-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .detail-layout { padding: 16px; gap: 20px; }
  .detail-quick-specs { grid-template-columns: repeat(2, 1fr); }
  .detail-spec-grid { grid-template-columns: 1fr 1fr; }
  .detail-why-grid { grid-template-columns: 1fr; }
  .detail-inspection-grid { grid-template-columns: 1fr; }
}