:root {
  --red: #d91520;
  --red-dark: #a70f18;
  --ink: #18202b;
  --muted: #667085;
  --soft: #f5f7fa;
  --line: #e4e7ec;
  --white: #fff;
  --dark: #101820;
  --shadow: 0 18px 50px rgba(16, 24, 40, 0.1);
  --radius: 22px;
  --radius-sm: 14px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  font-family:
    Inter,
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  background: #fff;
  line-height: 1.65;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
main {
  min-height: 60vh;
}
.container {
  max-width: 1200px;
}
.btn {
  border-radius: 10px;
  font-weight: 700;
  padding: 0.72rem 1.15rem;
}
.btn-brand {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.btn-brand:hover,
.btn-brand:focus {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: #fff;
}
.text-link {
  font-weight: 800;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.text-link:hover {
  color: var(--red-dark);
}
.topbar {
  background: var(--dark);
  color: #fff;
  font-size: 0.88rem;
}
.topbar a {
  color: #fff;
}
.topbar-whatsapp {
  background: #198754;
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-weight: 700;
}
.site-nav {
  border-bottom: 1px solid rgba(16, 24, 40, 0.08);
  box-shadow: 0 5px 18px rgba(16, 24, 40, 0.04);
}
.brand-logo {
  width: 58px;
  height: 52px;
  object-fit: contain;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.navbar-brand span {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.navbar-brand strong {
  font-size: 1.05rem;
  letter-spacing: 0.05em;
}
.navbar-brand small {
  font-size: 0.57rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-top: 0.35rem;
}
.navbar-nav .nav-link {
  font-weight: 700;
  color: #344054;
  padding: 0.8rem 0.7rem;
}
.navbar-nav .nav-link:hover {
  color: var(--red);
}
.nav-shop {
  color: var(--red) !important;
}
.nav-actions {
  align-items: center;
}
.basket-link {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.basket-link span {
  position: absolute;
  right: -4px;
  top: -5px;
  min-width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 0.7rem;
  display: grid;
  place-items: center;
}
.dropdown-menu {
  border-radius: 14px;
  padding: 0.5rem;
}
.dropdown-item {
  border-radius: 8px;
  padding: 0.6rem 0.8rem;
}
.dropdown-item:hover {
  background: #fff2f3;
  color: var(--red);
}
.message-wrap {
  position: relative;
  z-index: 20;
  margin-top: 1rem;
}
.alert {
  border: 0;
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.home-hero {
  position: relative;
  color: #fff;
  background-image:
    linear-gradient(
      90deg,
      rgba(8, 14, 22, 0.92) 0%,
      rgba(8, 14, 22, 0.72) 50%,
      rgba(8, 14, 22, 0.22) 100%
    ),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  min-height: 690px;
  display: flex;
  align-items: center;
}
.home-hero:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 80px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.28));
}
.hero-content {
  position: relative;
  z-index: 1;
}
.min-vh-70 {
  min-height: 680px;
}
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--red);
  font-weight: 800;
  font-size: 0.75rem;
  margin-bottom: 0.8rem;
}
.eyebrow.light {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
}
.home-hero h1 {
  font-size: clamp(2.7rem, 6vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 850;
  max-width: 900px;
}
.home-hero p {
  font-size: 1.18rem;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
  margin: 1.5rem 0 2rem;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 2rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.86);
}
.hero-trust span {
  display: flex;
  gap: 0.45rem;
  align-items: center;
}
.hero-trust i {
  color: #64d89b;
}
.trust-strip {
  background: #fff;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 30px rgba(16, 24, 40, 0.08);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-grid div {
  padding: 1.4rem 1rem;
  text-align: center;
  border-right: 1px solid var(--line);
}
.trust-grid div:last-child {
  border-right: 0;
}
.trust-grid strong {
  display: block;
  font-size: 1.35rem;
  color: var(--ink);
}
.trust-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}
.section {
  padding: 6rem 0;
}
.section-soft {
  background: var(--soft);
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.2rem;
}
.section-heading.centered {
  text-align: center;
  display: block;
  max-width: 750px;
  margin: 0 auto 2.6rem;
}
.section-heading h2,
.display-title {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
  font-weight: 820;
  margin: 0;
}
.section-heading p {
  color: var(--muted);
  max-width: 650px;
  margin: 0.8rem auto 0;
}
.lead-copy {
  font-size: 1.08rem;
  color: #475467;
}
.rounded-media {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.vehicle-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: 0.25s;
  min-width: 0;
}
.vehicle-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.vehicle-image-wrap {
  height: 235px;
  position: relative;
  background: #eef1f4;
  overflow: hidden;
}
.vehicle-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.vehicle-card:hover img {
  transform: scale(1.035);
}
.vehicle-type {
  position: absolute;
  left: 14px;
  top: 14px;
  color: #fff;
  border-radius: 999px;
  padding: 0.38rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 800;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}
.type-sale {
  background: var(--red);
}
.type-rent {
  background: #175cd3;
}
.type-haulage {
  background: #7a5af8;
}
.vehicle-card-body {
  padding: 1.25rem;
}
.vehicle-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 800;
}
.vehicle-card h3 {
  font-size: 1.25rem;
  margin: 0.6rem 0;
}
.vehicle-card h3 a:hover {
  color: var(--red);
}
.vehicle-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
  min-height: 4.3em;
}
.vehicle-card-bottom {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.vehicle-card-bottom strong {
  font-size: 0.92rem;
}
.vehicle-card-bottom a {
  color: var(--red);
  font-size: 0.83rem;
  font-weight: 800;
  white-space: nowrap;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}
.service-grid.large {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 26px rgba(16, 24, 40, 0.07);
  transition: 0.25s;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.service-card > img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.service-card > div {
  padding: 1.3rem;
  position: relative;
}
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  margin-top: -38px;
  position: relative;
  border: 4px solid #fff;
}
.service-card h2,
.service-card h3 {
  font-size: 1.25rem;
  margin: 1rem 0 0.55rem;
}
.service-card p {
  color: var(--muted);
  font-size: 0.9rem;
  min-height: 4.2em;
}
.learn-more {
  color: var(--red);
  font-size: 0.84rem;
  font-weight: 800;
}
.image-stack {
  position: relative;
  padding: 0 55px 55px 0;
}
.image-main {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.image-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  border: 7px solid #fff;
  box-shadow: var(--shadow);
}
.feature-list {
  margin-top: 1.7rem;
  display: grid;
  gap: 1rem;
}
.feature-list > div {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.feature-list i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #fff2f3;
  color: var(--red);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-size: 1.15rem;
}
.feature-list span {
  display: flex;
  flex-direction: column;
}
.feature-list small {
  color: var(--muted);
  margin-top: 0.2rem;
}
.gallery-preview {
  background: #111923;
  color: #fff;
}
.gallery-preview .eyebrow {
  color: #ff9ea4;
}
.gallery-preview .text-link {
  color: #fff;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}
.home-gallery a {
  height: 260px;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}
.home-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-gallery span {
  position: absolute;
  inset: auto 0 0;
  padding: 2.5rem 1rem 1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.82));
  font-weight: 800;
}
.cta-band {
  background: linear-gradient(120deg, var(--red-dark), var(--red));
  color: #fff;
  padding: 4.5rem 0;
}
.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.cta-band h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 760px;
  line-height: 1.12;
}
.cta-band .container > div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: flex-end;
}
.page-hero,
.service-hero,
.catalog-hero {
  background: linear-gradient(125deg, #101820, #263342);
  color: #fff;
}
.page-hero.compact {
  padding: 6.2rem 0;
}
.page-hero.mini {
  padding: 4.5rem 0;
}
.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05;
  max-width: 900px;
  font-weight: 840;
  letter-spacing: -0.04em;
}
.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.08rem;
}
.fact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.7rem 0;
}
.fact-grid div {
  background: var(--soft);
  border-radius: 14px;
  padding: 1rem;
}
.fact-grid strong,
.fact-grid span {
  display: block;
}
.fact-grid strong {
  font-size: 1.05rem;
}
.fact-grid span {
  font-size: 0.78rem;
  color: var(--muted);
}
.value-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
}
.section-soft .value-panel {
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.05);
}
.value-panel > span {
  color: var(--red);
  font-weight: 900;
}
.value-panel h3 {
  font-size: 1.45rem;
  margin: 0.7rem 0;
}
.value-panel p {
  color: var(--muted);
  margin: 0;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.3rem;
}
.team-grid.full {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.team-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.team-card img,
.team-placeholder {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center top;
}
.team-placeholder {
  display: grid;
  place-items: center;
  background: #e9edf2;
  font-size: 4rem;
  color: #98a2b3;
}
.team-card > div {
  padding: 1.2rem;
}
.team-card span {
  color: var(--red);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}
.team-card h3 {
  font-size: 1.15rem;
  margin: 0.35rem 0;
}
.team-card p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}
.team-card small {
  display: block;
  color: #667085;
  margin-top: 0.7rem;
  border-top: 1px solid var(--line);
  padding-top: 0.7rem;
}
.gallery-item {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.gallery-item figcaption {
  padding: 1.2rem;
}
.gallery-item figcaption span {
  color: var(--red);
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 800;
}
.gallery-item h3 {
  font-size: 1.15rem;
  margin: 0.35rem 0;
}
.gallery-item p {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0;
}
.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.filter-pills a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  font-weight: 700;
  font-size: 0.85rem;
}
.filter-pills a.active,
.filter-pills a:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}
.process-grid article {
  padding: 1.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.process-grid article > span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--red);
  color: #fff;
  font-weight: 900;
}
.process-grid h3 {
  font-size: 1.2rem;
  margin: 1rem 0 0.5rem;
}
.process-grid p {
  color: var(--muted);
  margin: 0;
}
.notice-box {
  display: flex;
  gap: 1.2rem;
  background: #fff6f6;
  border: 1px solid #ffd7da;
  border-radius: var(--radius);
  padding: 1.7rem;
}
.notice-box > i {
  font-size: 2rem;
  color: var(--red);
}
.notice-box h3 {
  font-size: 1.25rem;
}
.notice-box p {
  color: var(--muted);
  margin: 0;
}
.notice-box.compact {
  height: 100%;
}
.prose {
  max-width: 850px;
}
.prose h2 {
  margin-top: 2rem;
  font-size: 1.5rem;
}
.prose p,
.prose li {
  color: #475467;
}
.catalog-hero {
  padding: 5.3rem 0;
}
.catalog-hero .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 3rem;
}
.catalog-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 840;
  line-height: 1.04;
  letter-spacing: -0.04em;
  max-width: 820px;
}
.catalog-hero p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 740px;
}
.catalog-actions {
  display: grid;
  gap: 0.7rem;
  min-width: 280px;
}
.catalog-actions a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 0.85rem;
}
.catalog-actions i {
  font-size: 1.3rem;
}
.catalog-actions span {
  display: flex;
  flex-direction: column;
}
.catalog-actions small {
  color: rgba(255, 255, 255, 0.65);
}
.catalog-filter {
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr) auto auto;
  gap: 0.7rem;
  background: var(--soft);
  border-radius: 18px;
  padding: 1rem;
  margin-bottom: 1.4rem;
}
.catalog-filter input,
.catalog-filter select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.72rem;
  background: #fff;
}
.filter-search {
  position: relative;
}
.filter-search i {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
}
.filter-search input {
  padding-left: 2.5rem;
}
.catalog-count {
  color: var(--muted);
  margin-bottom: 1.3rem;
}
.detail-section {
  padding: 3rem 0 5rem;
}
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}
.breadcrumb-nav a:hover {
  color: var(--red);
}
.detail-image {
  position: relative;
  background: #eef1f4;
  border-radius: var(--radius);
  overflow: hidden;
}
.detail-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.detail-media {
  display: grid;
  gap: 0.95rem;
}
.detail-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}
.detail-gallery-item {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #eef1f4;
}
.detail-gallery-item img {
  width: 100%;
  height: 155px;
  object-fit: cover;
  display: block;
}
.illustration-note {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.82rem;
}
.detail-section h1 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 840;
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.detail-lead {
  font-size: 1.05rem;
  color: var(--muted);
}
.price-panel {
  background: var(--soft);
  border-radius: 16px;
  padding: 1rem 1.2rem;
  margin: 1.2rem 0;
}
.price-panel span,
.price-panel strong,
.price-panel small {
  display: block;
}
.price-panel strong {
  font-size: 1.5rem;
  color: var(--red);
  margin: 0.15rem 0;
}
.price-panel small {
  color: var(--muted);
}
.spec-list {
  border-top: 1px solid var(--line);
}
.spec-list div,
.data-table div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}
.spec-list span,
.data-table span {
  color: var(--muted);
}
.add-form {
  display: flex;
  gap: 0.7rem;
  align-items: end;
  margin-top: 1.4rem;
}
.add-form label {
  font-size: 0.8rem;
  font-weight: 700;
}
.add-form input {
  display: block;
  width: 75px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.77rem;
  margin-top: 0.25rem;
}
.whatsapp-detail {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.8rem;
  color: #14804a;
  font-weight: 800;
}
.capability-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.capability-grid div {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  background: var(--soft);
  border-radius: 12px;
  padding: 0.9rem;
}
.capability-grid i {
  color: var(--red);
}
.process-panel,
.quote-help {
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  position: sticky;
  top: 110px;
}
.process-panel ol {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 1.5rem;
}
.process-panel li {
  display: flex;
  gap: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.8rem 0;
}
.process-panel li > span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  font-weight: 800;
  flex: 0 0 auto;
}
.process-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.related-grid a {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  padding: 1.2rem;
  border-radius: 16px;
  border: 1px solid var(--line);
}
.related-grid > a > i:first-child {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff2f3;
  color: var(--red);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.related-grid h3 {
  font-size: 1rem;
  margin: 0;
}
.related-grid p {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
}
.related-grid > a > i:last-child {
  margin-left: auto;
}
.basket-list {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.basket-list article {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
}
.basket-image img {
  width: 150px;
  height: 110px;
  object-fit: cover;
  border-radius: 12px;
}
.basket-details > span {
  color: var(--red);
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 800;
}
.basket-details h2 {
  font-size: 1.15rem;
  margin: 0.25rem 0;
}
.basket-details p {
  margin: 0;
  color: var(--muted);
}
.remove-button {
  border: 0;
  background: transparent;
  color: var(--muted);
}
.basket-summary {
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius);
  padding: 1.6rem;
  position: sticky;
  top: 110px;
}
.basket-summary h2 {
  font-size: 1.3rem;
}
.basket-summary > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  padding: 0.8rem 0;
}
.basket-summary p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.86rem;
}
.basket-summary small {
  display: block;
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.8rem;
}
.checkout-item {
  display: block !important;
}
.checkout-item span,
.checkout-item strong {
  display: block;
}
.checkout-item strong {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.15rem;
}
.empty-state {
  text-align: center;
  grid-column: 1/-1;
  padding: 5rem 1rem;
  background: var(--soft);
  border-radius: var(--radius);
}
.empty-state > i {
  font-size: 3rem;
  color: var(--red);
}
.professional-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  background: #fff;
  box-shadow: 0 10px 35px rgba(16, 24, 40, 0.06);
}
.professional-form h2 {
  font-size: 1.5rem;
  margin-bottom: 1.3rem;
}
.professional-form label {
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
}
.professional-form .form-control,
.professional-form .form-select {
  border-radius: 10px;
  border-color: #d0d5dd;
  padding: 0.75rem;
}
.professional-form textarea {
  min-height: 130px;
}
.professional-form input[type="file"] {
  padding: 0.55rem;
}
.success-section {
  background: var(--soft);
  min-height: 70vh;
  display: flex;
  align-items: center;
}
.success-card {
  max-width: 760px;
  margin: auto;
  text-align: center;
  background: #fff;
  border-radius: var(--radius);
  padding: 3rem;
  box-shadow: var(--shadow);
}
.success-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #e9fbf1;
  color: #14804a;
  display: grid;
  place-items: center;
  font-size: 2.3rem;
  margin: 0 auto 1rem;
}
.success-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin: 1.7rem 0;
}
.success-details div {
  background: var(--soft);
  border-radius: 12px;
  padding: 0.9rem;
}
.success-details span,
.success-details strong {
  display: block;
}
.success-details span {
  font-size: 0.73rem;
  color: var(--muted);
}
.success-details strong {
  font-size: 0.86rem;
}
.contact-cards {
  display: grid;
  gap: 0.8rem;
  margin: 1.5rem 0;
}
.contact-cards > a,
.contact-cards > div {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
}
.contact-cards i {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #fff2f3;
  color: var(--red);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.contact-cards span {
  display: flex;
  flex-direction: column;
}
.contact-cards small {
  color: var(--muted);
}
.office-hours {
  background: var(--soft);
  padding: 1.3rem;
  border-radius: 16px;
}
.office-hours h3 {
  font-size: 1.1rem;
}
.contact-map {
  padding: 0 0 6rem;
}
.map-placeholder {
  min-height: 330px;
  border-radius: var(--radius);
  background: linear-gradient(110deg, #19232d, #2f4354);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  text-align: left;
}
.map-placeholder > i {
  font-size: 4rem;
  color: #ff6d76;
}
.quote-help > i {
  font-size: 2rem;
  color: #ff8d94;
}
.quote-help ul {
  color: rgba(255, 255, 255, 0.72);
  padding-left: 1.2rem;
}
.quote-help a {
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
}
.site-footer {
  background: #0d141c;
  color: #fff;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.footer-brand img {
  width: 60px;
  background: #fff;
  border-radius: 10px;
  padding: 0.3rem;
}
.footer-brand div {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.footer-brand strong {
  letter-spacing: 0.08em;
}
.footer-brand small {
  font-size: 0.58rem;
  letter-spacing: 0.13em;
  margin-top: 0.3rem;
}
.site-footer h3 {
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ff9da3;
}
.site-footer p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}
.site-footer .col-6 a,
.site-footer .col-lg-2 a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  margin: 0.45rem 0;
}
.site-footer a:hover {
  color: #fff;
}
.site-footer hr {
  border-color: rgba(255, 255, 255, 0.14);
  margin: 2rem 0;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
}
.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #1fa463;
  color: #fff;
  font-size: 1.55rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
  z-index: 100;
}
.floating-whatsapp:hover {
  color: #fff;
  transform: translateY(-2px);
}
@media (max-width: 1199px) {
  .navbar-collapse {
    padding: 1rem 0;
  }
  .nav-actions {
    margin-top: 0.8rem;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .catalog-filter {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .filter-search {
    grid-column: 1/-1;
  }
  .catalog-filter .btn {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .home-hero,
  .min-vh-70 {
    min-height: 620px;
  }
  .home-hero {
    background-position: 65% center;
  }
  .home-hero h1 {
    font-size: 3.3rem;
  }
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trust-grid div:nth-child(2) {
    border-right: 0;
  }
  .trust-grid div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .vehicle-grid,
  .team-grid.full {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-band .container,
  .catalog-hero .container {
    display: block;
  }
  .cta-band .container > div:last-child {
    justify-content: flex-start;
    margin-top: 1.5rem;
  }
  .catalog-actions {
    margin-top: 1.5rem;
    max-width: 520px;
  }
  .rounded-media {
    height: 420px;
  }
  .process-panel,
  .basket-summary,
  .quote-help {
    position: static;
  }
  .detail-image img {
    height: 440px;
  }
}
@media (max-width: 767px) {
  .topbar .container {
    justify-content: center !important;
  }
  .topbar .small {
    display: none !important;
  }
  .section {
    padding: 4.2rem 0;
  }
  .page-hero.compact {
    padding: 4.5rem 0;
  }
  .page-hero h1,
  .catalog-hero h1 {
    font-size: 2.6rem;
  }
  .home-hero h1 {
    font-size: 2.75rem;
  }
  .home-hero p {
    font-size: 1rem;
  }
  .hero-trust {
    display: grid;
    gap: 0.6rem;
  }
  .section-heading {
    display: block;
  }
  .section-heading .text-link {
    margin-top: 1rem;
  }
  .vehicle-grid,
  .service-grid,
  .service-grid.large,
  .team-grid,
  .team-grid.full,
  .gallery-grid,
  .process-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }
  .vehicle-image-wrap {
    height: 250px;
  }
  .gallery-item img {
    height: 350px;
  }
  .capability-grid {
    grid-template-columns: 1fr;
  }
  .catalog-filter {
    grid-template-columns: 1fr;
  }
  .filter-search {
    grid-column: auto;
  }
  .detail-image img {
    height: 340px;
  }
  .add-form {
    align-items: stretch;
    flex-direction: column;
  }
  .add-form label {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .basket-list article {
    grid-template-columns: 100px 1fr auto;
  }
  .basket-image img {
    width: 100px;
    height: 90px;
  }
  .success-details {
    grid-template-columns: 1fr;
  }
  .image-stack {
    padding: 0;
  }
  .image-main {
    height: 380px;
  }
  .image-small {
    display: none;
  }
  .trust-grid strong {
    font-size: 1.1rem;
  }
  .catalog-hero {
    padding: 4rem 0;
  }
  .professional-form {
    padding: 1.3rem;
  }
  .map-placeholder {
    padding: 2rem;
    display: block;
    text-align: center;
  }
  .map-placeholder > i {
    display: block;
    margin-bottom: 1rem;
  }
}
@media (max-width: 480px) {
  .navbar-brand span {
    display: none;
  }
  .brand-logo {
    width: 52px;
  }
  .home-hero h1 {
    font-size: 2.35rem;
  }
  .hero-buttons .btn {
    width: 100%;
  }
  .trust-grid span {
    font-size: 0.72rem;
  }
  .vehicle-image-wrap {
    height: 220px;
  }
  .basket-list article {
    grid-template-columns: 1fr;
  }
  .basket-image img {
    width: 100%;
    height: 180px;
  }
  .remove-button {
    position: absolute;
  }
  .gallery-item img {
    height: 300px;
  }
}

/* SEO landing pages */
.page-hero--compact {
  padding: 4.5rem 0;
}
.page-hero__image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.content-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 10px 35px rgba(16, 24, 40, 0.05);
}
.rich-copy p {
  color: #475467;
}
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tag-chip {
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: var(--soft);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}
.contact-card {
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius);
  padding: 2rem;
}
.contact-card p {
  color: rgba(255, 255, 255, 0.72);
}

/* -------------------------------------------------------------------------
   Accessibility and navigation improvements
   ------------------------------------------------------------------------- */
.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 2000;
  background: #fff;
  color: var(--ink);
  padding: 0.7rem 1rem;
  border-radius: 0 0 10px 10px;
  box-shadow: var(--shadow);
}

.skip-link:focus {
  top: 0;
}

.topbar-location {
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 0.82rem;
}

.navbar-nav .nav-link.active {
  color: var(--red);
}

.navbar-nav .nav-link.active::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  margin: 0.2rem auto 0;
  background: var(--red);
}

/* -------------------------------------------------------------------------
   Homepage quick actions and dark credibility section
   ------------------------------------------------------------------------- */
.action-section {
  padding-bottom: 4.5rem;
}

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

.action-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.action-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.action-card > i:first-child {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 15px;
  color: #fff;
  background: var(--red);
  font-size: 1.35rem;
}

.action-card > i:last-child {
  color: var(--red);
}

.action-card span {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.action-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.2rem;
}

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

.browse-section {
  position: relative;
  overflow: hidden;
}

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

.browse-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: start;
  padding: 1.2rem 1.25rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 8px 22px rgba(16, 24, 40, 0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.browse-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.browse-card i:first-child {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--red);
  font-size: 1.2rem;
  flex: 0 0 auto;
}

.browse-card.sale i:first-child {
  background: var(--red);
}

.browse-card.rent i:first-child {
  background: #175cd3;
}

.browse-card.haulage i:first-child {
  background: #7a5af8;
}

.browse-card.all i:first-child {
  background: #0f766e;
}

.browse-card h3 {
  margin: 0 0 0.3rem;
  font-size: 1.05rem;
}

.browse-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.browse-card span {
  align-self: center;
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-dark {
  color: #fff;
  background: linear-gradient(135deg, #101820, #22303d);
}

.section-dark .display-title,
.section-dark strong {
  color: #fff;
}

.light-copy,
.light-list small {
  color: rgba(255, 255, 255, 0.72) !important;
}

.light-list i {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.12) !important;
}

/* -------------------------------------------------------------------------
   Marketplace category navigation, toolbar and pagination
   ------------------------------------------------------------------------- */
.catalog-category-strip {
  position: relative;
  z-index: 2;
  margin-top: -1px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 25px rgba(16, 24, 40, 0.05);
}

.category-scroll {
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  padding: 1rem 0;
  scrollbar-width: thin;
}

.category-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex: 0 0 auto;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 0.82rem;
  font-weight: 750;
}

.category-chip small {
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 0.35rem;
  border-radius: 999px;
  color: var(--muted);
  background: var(--soft);
}

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

.category-chip.active small,
.category-chip:hover small {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
}

.catalog-section {
  padding-top: 4rem;
}

.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.3rem;
  color: var(--muted);
}

.catalog-toolbar p {
  margin: 0;
}

.catalog-toolbar span {
  font-size: 0.8rem;
}

.catalog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.catalog-pagination a,
.catalog-pagination span {
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font-size: 0.84rem;
  font-weight: 750;
}

.catalog-pagination a:hover {
  color: #fff;
  border-color: var(--red);
  background: var(--red);
}

.catalog-help {
  color: #fff;
  background: linear-gradient(120deg, var(--red-dark), var(--red));
  padding: 4rem 0;
}

.catalog-help .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.catalog-help h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.12;
}

/* -------------------------------------------------------------------------
   Forms, confirmation page and map
   ------------------------------------------------------------------------- */
.form-text {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.76rem;
}

.form-assurance {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.form-assurance i {
  color: var(--red);
}

.success-reference {
  margin: 1.4rem auto 0;
  max-width: 420px;
  padding: 1rem;
  border: 1px dashed #98a2b3;
  border-radius: 14px;
  background: var(--soft);
}

.success-reference span,
.success-reference strong {
  display: block;
}

.success-reference span {
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.success-reference strong {
  margin-top: 0.2rem;
  color: var(--red);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
}

.map-card {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  min-height: 390px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--dark);
  box-shadow: var(--shadow);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 390px;
  border: 0;
}

.map-card-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem;
  color: #fff;
}

.map-card-info p {
  color: rgba(255, 255, 255, 0.72);
}

/* -------------------------------------------------------------------------
   Footer newsletter and heading consistency
   ------------------------------------------------------------------------- */
.site-footer h2,
.site-footer h3 {
  color: #ff9da3;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-newsletter {
  margin-top: 1.2rem;
}

.footer-newsletter label {
  display: block;
  margin-bottom: 0.4rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8rem;
  font-weight: 750;
}

.footer-newsletter > div {
  display: flex;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

.footer-newsletter input {
  flex: 1;
  min-width: 0;
  color: #fff;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0.7rem 0.8rem;
}

.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter button {
  width: 46px;
  color: #fff;
  border: 0;
  background: var(--red);
}

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

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

  .catalog-help .container {
    display: block;
  }

  .catalog-help .btn {
    margin-top: 1.2rem;
  }

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

  .map-card iframe {
    min-height: 330px;
  }

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

@media (max-width: 767px) {
  .navbar-nav .nav-link.active::after {
    margin-left: 0;
  }

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

  .action-card > i:last-child {
    display: none;
  }

  .catalog-toolbar {
    display: block;
  }

  .catalog-toolbar span {
    display: block;
    margin-top: 0.2rem;
  }

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

  .catalog-pagination {
    justify-content: space-between;
  }

  .catalog-pagination span {
    display: none;
  }

  .map-card-info {
    padding: 2rem;
  }

  .detail-gallery {
    grid-template-columns: 1fr;
  }
}

/* Basket quantity controls */
.basket-quantity-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.7rem;
}

.basket-quantity-form label {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.basket-quantity-form input {
  width: 4.5rem;
  min-height: 2.35rem;
  border: 1px solid var(--line);
  border-radius: 0.55rem;
  padding: 0.35rem 0.55rem;
}

.basket-quantity-form button {
  min-height: 2.35rem;
  border: 1px solid var(--ink);
  border-radius: 0.55rem;
  background: transparent;
  color: var(--ink);
  padding: 0.35rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 800;
}

.basket-quantity-form button:hover,
.basket-quantity-form button:focus-visible {
  background: var(--ink);
  color: #fff;
}
