/* =========================================================
   New Dubai Tyre Traders — Design System
   ========================================================= */

:root {
  --primary-navy: #061C4C;
  --primary-blue: #0B318F;
  --deep-blue: #071B3D;
  --gold: #F5B800;
  --gold-hover: #D99C00;
  --navy: #061C4C;
  --blue: #0B318F;
  --royal: #0B318F;
  --red: #F5B800; /* legacy accent alias → gold */
  --accent: #F5B800;
  --white: #FFFFFF;
  --light: #F5F7FA;
  --light-bg: #F5F7FA;
  --dark: #071421;
  --text: #1a2433;
  --muted: #5c6778;
  --border: #e4e8ef;
  --shadow: 0 8px 24px rgba(6, 28, 76, 0.08);
  --shadow-lg: 0 16px 40px rgba(6, 28, 76, 0.14);
  --radius: 6px;
  --radius-lg: 10px;
  --container: 1180px;
  --header-offset: 0px;
  --transition: 0.45s ease;
  --font-display: "Oswald", "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "DM Sans", "Segoe UI", sans-serif;
  --font-urdu: "Noto Nastaliq Urdu", "Jameel Noori Nastaleeq", "Urdu Typesetting", serif;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  text-align: center;
  margin-bottom: 2rem;
}

.section-title .accent {
  color: var(--red);
}

.section-title.lined {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
}

.section-title.lined::before,
.section-title.lined::after {
  content: "";
  width: clamp(2rem, 8vw, 4.5rem);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}

.section-title.lined::before {
  background: linear-gradient(90deg, transparent, var(--blue));
}

.section-title.lined::after {
  background: linear-gradient(90deg, var(--blue), transparent);
}

.section-title .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

.urdu {
  font-family: var(--font-urdu);
  direction: rtl;
  unicode-bidi: embed;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 46px;
  padding: 0.7rem 1.35rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.btn img,
.btn svg {
  width: 18px;
  height: 18px;
}

.btn-primary {
  background: var(--red);
  color: var(--navy);
  border-color: var(--red);
  font-weight: 700;
}

.btn-primary:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(245, 184, 0, 0.35);
}

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

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

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

.btn-navy:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-2px);
}

.btn-call {
  background: var(--red);
  color: var(--navy);
  border-color: var(--red);
  white-space: nowrap;
  font-weight: 700;
}

.btn-whatsapp {
  background: #128C7E;
  border-color: #128C7E;
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #0e7368;
  border-color: #0e7368;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(18, 140, 126, 0.28);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge-fresh {
  background: rgba(245, 184, 0, 0.1);
  color: var(--red);
}

.badge-warranty {
  background: rgba(11, 49, 143, 0.1);
  color: var(--blue);
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.reveal {
  opacity: 1;
  transform: none;
}

/* Keep animation hooks for JS, but never leave content invisible by default */
.reveal:not(.visible):not(.is-visible) {
  opacity: 1;
  transform: none;
}

.reveal.visible,
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy);
  color: var(--white);
  font-size: 0.85rem;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 38px;
  flex-wrap: wrap;
  padding: 0.4rem 0;
}

.topbar-left {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.topbar-item svg,
.topbar-item img {
  width: 14px;
  height: 14px;
  color: var(--red);
  flex-shrink: 0;
}

.topbar-item .icon-phone {
  color: var(--white);
}

.topbar-urdu {
  font-size: 0.95rem;
  white-space: nowrap;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.site-header.is-stuck {
  box-shadow: 0 6px 20px rgba(6, 29, 61, 0.1);
  border-bottom-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  width: clamp(58px, 8vw, 72px);
  height: clamp(58px, 8vw, 72px);
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav-menu a {
  position: relative;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.98rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 0.35rem 0;
  transition: color 0.3s ease;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--red);
}

.nav-menu a.active::after,
.nav-menu a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

.nav-close {
  display: none;
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--light);
  color: var(--navy);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

.nav-close svg {
  width: 22px;
  height: 22px;
}

.nav-close:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--navy);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 20, 33, 0.45);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.nav-open {
  overflow: hidden;
  touch-action: none;
}

/* Keep header + drawer above dim overlay (menu lives inside header stacking context) */
body.nav-open .site-header {
  z-index: 1002;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
  overflow: hidden;
  background: #061d3d;
}

.hero--banner {
  min-height: 0;
  padding: 0;
}

.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #061d3d;
}

.hero-slides {
  position: relative;
  width: 100%;
}

.hero-slide {
  display: none;
  width: 100%;
  animation: heroFade 0.7s ease both;
}

.hero-slide.is-active {
  display: block;
}

.hero-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  vertical-align: middle;
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(6, 29, 61, 0.55);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.hero-nav:hover {
  background: var(--red);
}

.hero-nav--prev { left: 0.75rem; }
.hero-nav--next { right: 0.75rem; }

.hero-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.85rem;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 0.45rem;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.hero-dot.is-active {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.1);
}

@keyframes heroFade {
  from { opacity: 0.35; }
  to { opacity: 1; }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: 2.75rem 0 1.25rem;
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.hero-bottom-line {
  position: relative;
  z-index: 1;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.5vw, 1.05rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  padding: 0.85rem 1rem 1.5rem;
}

.vehicles-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 2.4vw, 1.65rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  text-align: center;
  margin-bottom: 0.75rem;
}

.vehicles-wholesale {
  text-align: center;
  color: var(--navy);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.8;
  margin: 0 auto 1.5rem;
  max-width: 40rem;
}

.hero-deco-line {
  width: 72px;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--white));
  margin-bottom: 1.1rem;
}

.hero-heading {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  letter-spacing: 0.02em;
}

.hero-heading .line-red {
  color: var(--red);
  display: block;
}

.hero-tag {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 1rem 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.4vw, 1.05rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.hero-tag::before,
.hero-tag::after {
  content: "";
  width: 36px;
  height: 1px;
  background: rgba(255, 255, 255, 0.55);
  flex-shrink: 0;
}

.hero-urdu {
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  margin-bottom: 1.5rem;
  color: var(--white);
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.6rem;
}

.trust-badge {
  border: 1px solid rgba(120, 160, 220, 0.45);
  border-radius: var(--radius);
  padding: 0.75rem 0.55rem;
  text-align: center;
  background: rgba(11, 49, 143, 0.28);
  backdrop-filter: blur(4px);
}

.trust-badge svg {
  width: 22px;
  height: 22px;
  color: #7eb0ff;
  margin: 0 auto 0.4rem;
}

.trust-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(0.68rem, 1.1vw, 0.82rem);
  letter-spacing: 0.04em;
  line-height: 1.25;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: min(88%, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(40, 110, 200, 0.35), transparent 68%);
  filter: blur(8px);
}

.hero-visual img {
  position: relative;
  width: min(100%, 480px);
  object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.45));
  animation: tyreFloat 5.5s ease-in-out infinite;
}

.hero-content.is-ready .hero-deco-line,
.hero-content.is-ready .hero-heading,
.hero-content.is-ready .hero-tag,
.hero-content.is-ready .hero-urdu,
.hero-content.is-ready .trust-badges,
.hero-content.is-ready .hero-actions {
  animation: fadeUp 0.7s ease both;
}

.hero-content.is-ready .hero-heading { animation-delay: 0.08s; }
.hero-content.is-ready .hero-tag { animation-delay: 0.18s; }
.hero-content.is-ready .hero-urdu { animation-delay: 0.28s; }
.hero-content.is-ready .trust-badges { animation-delay: 0.38s; }
.hero-content.is-ready .hero-actions { animation-delay: 0.55s; }

.hero-visual.is-ready img {
  animation: fadeScale 0.85s ease both, tyreFloat 5.5s ease-in-out 0.85s infinite;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}

@keyframes fadeScale {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes tyreFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------- Vehicle cards ---------- */
.vehicles {
  background: var(--white);
  padding: clamp(1.75rem, 4vw, 2.75rem) 0;
  border-bottom: 1px solid var(--border);
}

.vehicle-carousel {
  width: 100%;
}

.vehicle-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1rem;
}

.vehicle-card.is-clone {
  display: none;
}

.vehicle-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

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

.vehicle-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 0.75rem 0.35rem;
}

.vehicle-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.5s ease;
}

.vehicle-card:hover .vehicle-media img {
  transform: translateY(-8px) scale(1.03);
}

.vehicle-card h3 {
  font-family: var(--font-display);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  color: var(--navy);
  padding: 0.55rem 0.5rem 1rem;
  position: relative;
  line-height: 1.25;
  min-height: 2.6em;
}

.vehicle-card h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.55rem;
  width: 0;
  height: 2px;
  background: var(--red);
  transform: translateX(-50%);
  transition: width 0.35s ease;
}

.vehicle-card:hover h3::after {
  width: 42px;
}

/* ---------- Vehicle offers (after vehicles) ---------- */
.vehicle-offers {
  background:
    linear-gradient(120deg, #040f20, #061d3d 55%, #0a2a55);
  padding: clamp(1.35rem, 3.2vw, 2rem) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.vehicle-offers-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.vehicle-offer {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(245, 184, 0, 0.35);
  border-radius: var(--radius-lg);
  padding: 1.15rem 1.25rem;
  text-align: center;
}

.vehicle-offer--gold {
  background: rgba(245, 184, 0, 0.12);
  border-color: rgba(245, 184, 0, 0.55);
}

.vehicle-offer-kicker {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
}

.vehicle-offer-text {
  margin: 0;
  color: var(--white);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  line-height: 1.85;
}

/* ---------- Promo strip banner (after vehicles) ---------- */
.promo-strip-banner {
  background: var(--white);
  padding: clamp(1.25rem, 3vw, 2rem) 0;
  border-bottom: 1px solid var(--border);
}

.promo-strip-banner-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  object-fit: contain;
  background: var(--white);
}

/* ---------- Promo strip (legacy layout helpers) ---------- */
.promo-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: clamp(1.75rem, 4vw, 2.75rem) 0;
}

.promo-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 0;
  align-items: center;
}

.promo-block {
  padding: 1.25rem 1.35rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 170px;
}

.promo-block + .promo-block {
  border-left: 2px solid rgba(245, 184, 0, 0.4);
}

.promo-block img {
  width: 130px;
  height: 130px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 10px 18px rgba(6, 29, 61, 0.14));
}

.promo-label {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
}

.promo-kicker {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--red);
  line-height: 0.95;
  letter-spacing: 0.02em;
  font-weight: 700;
}

.promo-block p {
  color: var(--navy);
  font-weight: 700;
  margin-top: 0.35rem;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.warranty-badge {
  width: 100%;
  max-width: 168px;
  margin: 0 auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #0e3d7a, var(--navy) 70%);
  border: 5px solid #1a3f7a;
  outline: 3px solid #c9a227;
  outline-offset: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 0.85rem;
  box-shadow: 0 10px 24px rgba(6, 29, 61, 0.18);
}

.warranty-badge svg {
  width: 26px;
  height: 26px;
  color: #7eb0ff;
  margin-bottom: 0.35rem;
}

.warranty-badge strong {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  line-height: 1.25;
}

.promo-discount .promo-kicker {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
}

.promo-discount .sub {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* ---------- Brands ---------- */
.brands {
  background: var(--light);
}

.brands-featured-label {
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  color: var(--red);
  margin: -0.5rem 0 1rem;
}

.brand-featured {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.brand-card--featured {
  position: relative;
  flex-direction: column;
  gap: 0.45rem;
  min-height: 180px;
  padding: 1.5rem 1.25rem 1.25rem;
  border: 2px solid rgba(245, 184, 0, 0.35);
  background:
    linear-gradient(180deg, #fff 0%, #fff8f8 100%);
  box-shadow: 0 12px 28px rgba(245, 184, 0, 0.1);
}

.brand-card--featured img {
  max-height: 88px;
  max-width: 220px;
  width: auto;
  height: auto;
  object-fit: contain;
}

@media (max-width: 1200px) {
  .brand-featured {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.brand-featured-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--red);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.brand-card--featured-mini {
  border: 2px solid rgba(245, 184, 0, 0.35);
  background: #fff8f8;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.brand-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.25rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.brand-card img {
  max-width: 100%;
  max-height: 58px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.brand-marquee {
  display: none;
  overflow: hidden;
  margin-top: 0.25rem;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.brand-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: brandMarquee 28s linear infinite;
}

.brand-track .brand-card {
  width: 160px;
  min-height: 96px;
  flex-shrink: 0;
}

.brand-marquee:hover .brand-track,
.brand-marquee:focus-within .brand-track {
  animation-play-state: paused;
}

@keyframes brandMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .brand-track {
    animation: none;
  }
}

/* ---------- Why Choose Us ---------- */
.why {
  position: relative;
  background:
    radial-gradient(circle at 20% 20%, rgba(14, 61, 122, 0.35), transparent 40%),
    linear-gradient(160deg, #071421 0%, #061d3d 55%, #040d18 100%);
  color: var(--white);
  overflow: hidden;
}

.why::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.5;
  pointer-events: none;
}

.why .section-title {
  color: var(--white);
  position: relative;
}

.why-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.why-card {
  text-align: center;
  padding: 1.5rem 1rem;
}

.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  border: 2px solid rgba(126, 176, 255, 0.45);
  display: grid;
  place-items: center;
  background: rgba(11, 49, 143, 0.45);
}

.why-icon svg {
  width: 28px;
  height: 28px;
  color: #8fbaff;
}

.why-card h3 {
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  margin-bottom: 0.55rem;
  font-size: 1.05rem;
}

.why-card p {
  color: rgba(220, 228, 240, 0.78);
  font-size: 0.92rem;
}

/* ---------- About teaser / about page ---------- */
.about-teaser-grid,
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.about-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 320px;
  background: var(--light);
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  max-height: 520px;
  object-fit: cover;
  object-position: center top;
}

.about-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--navy);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.about-copy h2 .accent {
  color: var(--red);
}

.about-copy h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background: var(--red);
  margin-top: 0.65rem;
}

.about-copy p {
  color: var(--muted);
  margin-bottom: 1.4rem;
  max-width: 48ch;
}

.home-products-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.video-section {
  background: var(--white);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, min(380px, 100%)));
  gap: 1.25rem;
  justify-content: center;
  align-items: start;
}

.video-frame {
  max-width: 920px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  background: #0b1220;
  width: 100%;
}

.video-frame--vertical {
  max-width: min(380px, 100%);
  aspect-ratio: 9 / 16;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.video-frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #000;
}

@media (max-width: 700px) {
  .video-grid {
    grid-template-columns: minmax(0, min(380px, 100%));
  }
}

/* ---------- CTA strip ---------- */
.cta-strip {
  background: linear-gradient(90deg, var(--blue), var(--royal));
  color: var(--white);
  padding: 1.75rem 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.cta-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cta-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.25);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.cta-icon svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

.cta-info span {
  display: block;
  font-size: 0.95rem;
  opacity: 0.9;
}

.cta-info strong {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: 0.04em;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark);
  color: rgba(230, 236, 245, 0.88);
  padding-top: 3.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer-brand img {
  width: 84px;
  height: 84px;
  object-fit: contain;
  margin-bottom: 0.85rem;
}

.footer-brand p {
  font-size: 0.92rem;
  color: rgba(210, 220, 235, 0.72);
  max-width: 28ch;
}

.footer-col h4 {
  font-family: var(--font-display);
  color: var(--white);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-col a {
  display: block;
  padding: 0.28rem 0;
  color: rgba(210, 220, 235, 0.75);
  transition: color 0.3s ease, padding-left 0.3s ease;
  font-size: 0.92rem;
}

.footer-col a:hover {
  color: var(--red);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  margin-bottom: 0.7rem;
  font-size: 0.92rem;
}

.footer-contact svg {
  width: 16px;
  height: 16px;
  color: var(--red);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(200, 210, 225, 0.65);
}

.footer-credit a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.25s ease;
}

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

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(14, 61, 122, 0.45), transparent 50%),
    linear-gradient(120deg, #040f20, #061d3d 60%, #0a2a55);
  color: var(--white);
  padding: clamp(3rem, 7vw, 4.5rem) 0;
  overflow: hidden;
}

.page-hero--shop {
  background:
    linear-gradient(105deg, rgba(4, 12, 24, 0.9) 0%, rgba(6, 29, 61, 0.82) 55%, rgba(4, 15, 32, 0.75) 100%),
    url("../assets/images/shop-front.png") center / cover no-repeat;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), transparent);
}

.breadcrumb {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.85rem;
}

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

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.page-hero p {
  max-width: 48ch;
  color: rgba(230, 236, 245, 0.8);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.page-hero-visual img {
  max-width: 360px;
  margin-inline: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.4));
}

/* ---------- Commitment / feature cards ---------- */
.commitment-grid,
.serve-grid,
.choose-grid {
  display: grid;
  gap: 1rem;
}

.commitment-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.serve-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.choose-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.1rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-card .icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 0.85rem;
  border-radius: 50%;
  background: rgba(11, 49, 143, 0.08);
  display: grid;
  place-items: center;
  color: var(--blue);
}

.feature-card .icon svg {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  font-family: var(--font-display);
  color: var(--navy);
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.serve-pill {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 0.75rem;
  text-align: center;
  font-family: var(--font-display);
  color: var(--navy);
  letter-spacing: 0.04em;
  box-shadow: var(--shadow);
}

.bg-light { background: var(--light); }

.cta-banner {
  background: linear-gradient(115deg, var(--navy), var(--blue));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}

.cta-banner p {
  opacity: 0.85;
}

/* ---------- Products ---------- */
.filters-bar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.1rem;
  box-shadow: var(--shadow);
  margin-bottom: 1.75rem;
}

.category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.chip {
  border: 1px solid var(--border);
  background: var(--light);
  color: var(--navy);
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.chip:hover,
.chip.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.filter-controls {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.filter-controls label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.filter-controls select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.55rem 0.75rem;
  background: var(--white);
  color: var(--navy);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

@media (min-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245, 184, 0, 0.45);
}

.product-media {
  aspect-ratio: 1 / 1;
  background: #ffffff;
  display: grid;
  place-items: center;
  padding: 1.1rem;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.product-media img {
  width: 82%;
  height: 82%;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  transition: transform 0.5s ease;
}

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

.product-body {
  padding: 1rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}

.product-brand {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}

.product-body h3 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.15rem;
  letter-spacing: 0.03em;
}

.product-meta {
  font-size: 0.9rem;
  color: var(--muted);
}

.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.2rem 0 0.4rem;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: auto;
}

.product-actions .btn {
  min-height: 42px;
  padding: 0.55rem 0.5rem;
  font-size: 0.78rem;
}

.product-actions .btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.product-actions .btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

.products-empty {
  display: none;
  text-align: center;
  padding: 2rem;
  color: var(--muted);
  grid-column: 1 / -1;
}

.products-empty.is-visible {
  display: block;
}

/* Product modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 29, 61, 0.55);
}

.modal-dialog {
  position: relative;
  width: min(100%, 560px);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
  transform: translateY(16px);
  transition: transform 0.35s ease;
}

.modal.is-open .modal-dialog {
  transform: none;
}

.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--light);
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.modal-close svg {
  width: 18px;
  height: 18px;
}

.modal-dialog h3 {
  font-family: var(--font-display);
  color: var(--navy);
  margin-bottom: 0.5rem;
  padding-right: 2rem;
}

.modal-dialog p {
  color: var(--muted);
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.contact-info-card,
.contact-form-card,
.location-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: clamp(1.35rem, 3vw, 2rem);
}

.contact-info-card h2,
.contact-form-card h2,
.location-card h2 {
  font-family: var(--font-display);
  color: var(--navy);
  letter-spacing: 0.04em;
  margin-bottom: 1.1rem;
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.contact-list .icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(11, 49, 143, 0.08);
  display: grid;
  place-items: center;
  color: var(--blue);
  flex-shrink: 0;
}

.contact-list .icon svg {
  width: 18px;
  height: 18px;
}

.contact-list strong {
  display: block;
  color: var(--navy);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-list span,
.contact-list a {
  color: var(--muted);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.form-group {
  margin-bottom: 0.95rem;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 0.85rem;
  background: var(--light);
  color: var(--text);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(11, 49, 143, 0.12);
  background: var(--white);
}

.form-group.is-invalid input,
.form-group.is-invalid select,
.form-group.is-invalid textarea {
  border-color: var(--red);
}

.form-error {
  display: none;
  color: var(--red);
  font-size: 0.8rem;
  margin-top: 0.3rem;
}

.form-group.is-invalid .form-error {
  display: block;
}

.location-card {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25rem;
  align-items: center;
}

.location-map-placeholder {
  min-height: 220px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(11, 49, 143, 0.08), rgba(245, 184, 0, 0.06)),
    repeating-linear-gradient(45deg, #eef2f7 0, #eef2f7 12px, #e6ebf2 12px, #e6ebf2 24px);
  border: 1px dashed rgba(11, 49, 143, 0.25);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.25rem;
  color: var(--navy);
}

.location-map-placeholder strong {
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.35rem;
}

.location-map-placeholder p {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 28ch;
}

/* ---------- WhatsApp floating widget ---------- */
.whatsapp-float {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45);
  z-index: 950;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: visible;
}

.whatsapp-float img {
  width: 34px;
  height: 34px;
  display: block;
  pointer-events: none;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.55);
  background: #1ebe57;
}

.whatsapp-float::after {
  content: "Chat on WhatsApp";
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--navy);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.7rem;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.whatsapp-float:hover::after {
  opacity: 1;
}

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 5.4rem;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 1.15rem;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(245, 184, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
  z-index: 900;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.back-to-top:hover {
  background: #D99C00;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .serve-grid,
  .choose-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .vehicle-track {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

@media (max-width: 900px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-header {
    overflow: visible;
  }

  .nav-inner {
    min-width: 0;
    max-width: 100%;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(300px, 86vw);
    max-width: 100vw;
    height: 100vh;
    height: 100dvh;
    max-height: 100dvh;
    margin: 0;
    background: #ffffff;
    color: var(--navy);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 4.75rem 1.25rem 1.5rem;
    box-sizing: border-box;
    box-shadow: -12px 0 30px rgba(6, 28, 76, 0.18);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.35s ease, visibility 0.35s ease;
    z-index: 3;
  }

  .nav-menu.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .nav-menu a {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0.85rem 0.15rem;
    font-size: 1.05rem;
    line-height: 1.3;
    white-space: normal;
    word-break: normal;
    overflow-wrap: anywhere;
    border-bottom: 1px solid var(--border);
  }

  .nav-menu a::after {
    display: none;
  }

  .nav-close {
    display: inline-flex;
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    flex-shrink: 0;
    background: var(--light);
    border-color: var(--border);
    color: var(--navy);
  }

  .menu-toggle {
    display: inline-flex;
    flex-shrink: 0;
  }

  /* Menu open: hide hamburger — only drawer close (X) remains */
  body.nav-open .menu-toggle {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }

  .menu-toggle.is-open {
    background: var(--red);
    border-color: var(--red);
    color: var(--navy);
  }

  .nav-actions .btn-call {
    display: none;
  }

  .nav-overlay {
    z-index: 1001;
  }

  body.nav-open .site-header {
    z-index: 1002;
  }

  .hero-inner,
  .about-teaser-grid,
  .about-story-grid,
  .contact-grid,
  .page-hero-grid,
  .location-card {
    grid-template-columns: 1fr;
  }

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

  .promo-block + .promo-block {
    border-left: none;
    border-top: 2px solid rgba(245, 184, 0, 0.35);
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    order: 2;
  }

  .hero-visual img {
    width: min(100%, 360px);
  }

  .hero-bottom-line {
    letter-spacing: 0.1em;
    padding-bottom: 1.25rem;
  }

  .hero-nav {
    width: 36px;
    height: 36px;
    font-size: 1.35rem;
  }

  .hero-nav--prev { left: 0.4rem; }
  .hero-nav--next { right: 0.4rem; }

  .whatsapp-float {
    right: 0.9rem;
    bottom: 0.9rem;
    width: 56px;
    height: 56px;
  }

  .whatsapp-float img {
    width: 30px;
    height: 30px;
  }

  .back-to-top {
    right: 1rem;
    bottom: 4.9rem;
  }

  .whatsapp-float::after {
    display: none;
  }

  .vehicle-card h3 {
    font-size: 0.8rem;
  }

  .brand-grid {
    display: none;
  }

  .brand-marquee {
    display: block;
    margin-inline: -1rem;
    padding-inline: 1rem;
  }

  .brand-featured {
    margin-bottom: 1rem;
    grid-template-columns: 1fr;
  }

  .topbar {
    display: none;
  }

  .vehicle-carousel {
    overflow: hidden;
    margin-inline: -1rem;
    padding-inline: 1rem;
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  }

  .vehicle-track {
    display: flex;
    width: max-content;
    gap: 0.85rem;
    animation: vehicleMarquee 52s linear infinite;
  }

  .vehicle-carousel:hover .vehicle-track,
  .vehicle-carousel:focus-within .vehicle-track {
    animation-play-state: paused;
  }

  .vehicle-card {
    flex: 0 0 210px;
    width: 210px;
    min-width: 210px;
  }

  .vehicle-card.is-clone {
    display: block;
  }

  .vehicle-offers-grid {
    grid-template-columns: 1fr;
  }

  .vehicles-wholesale {
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    padding-inline: 0.25rem;
  }
}

@keyframes vehicleMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 700px) {
  .topbar {
    display: none;
  }

  .brand-featured {
    grid-template-columns: 1fr;
  }

  .brand-card--featured {
    min-height: 150px;
  }

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

  .why-grid,
  .commitment-grid,
  .serve-grid,
  .choose-grid,
  .filter-controls,
  .product-grid,
  .footer-grid,
  .product-actions {
    grid-template-columns: 1fr;
  }

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

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

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

  .hero-heading {
    font-size: clamp(2.2rem, 11vw, 3rem);
  }

  .topbar-left {
    gap: 0.65rem;
  }

  .topbar-item span {
    font-size: 0.78rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .vehicle-track {
    animation: none !important;
    overflow-x: auto;
  }
}
