/* =========================================================
         ROOT TOKENS — single source of truth for color, type,
         spacing and sizing. Every rule below reads from these.
         ========================================================= */
:root {
  /* Colors */
  --color-dark: rgb(32, 32, 32);
  --color-navy-deep: #0e3a3f;
  --color-navy-mid: #13565c;
  --color-red: #f37321;
  --color-white: #ffffff;
  --color-muted: #c9d2d3;

  --color-text: #101317; /* primary dark text on light bg */
  --color-text-soft: #4b5258; /* secondary/desc text on light bg */
  --color-bg-light: #ffffff;
  --color-bg-soft: #f1f1f5;
  --color-bg-card: #faf6f6;
  --color-pill-bg: #f3f6fb;
  --color-border-soft: #cdd3d6;

  /* Fonts */
  --font-base: "Outfit", sans-serif;

  /* Type scale */
  --fs-eyebrow: 0.85rem;
  --fs-h1: 3.4rem;
  --fs-h1-md: 2.7rem;
  --fs-h1-sm: 2.3rem;
  --fs-h1-xs: 1.85rem;
  --fs-h1-xxs: 1.5rem;

  --fs-h2: 2.6rem;
  --fs-h2-md: 2.2rem;
  --fs-h2-sm: 1.9rem;

  --fs-h3: 1.3rem;
  --fs-body: 1rem;
  --fs-desc: 1.02rem;
  --fs-small: 0.9rem;

  /* Spacing scale */
  --space-2xs: 0.4rem;
  --space-xs: 0.6rem;
  --space-sm: 1rem;
  --space-md: 1.6rem;
  --space-lg: 2.2rem;
  --space-xl: 3rem;

  /* Section rhythm */
  --section-py: 6rem;
  --section-py-tight: 5rem;
  --section-py-mobile: 3.5rem;
  --section-py-mobile-tight: 3rem;

  /* Shape */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 18px;

  /* Misc sizing */
  --icon-box-sm: 44px;
  --icon-box-md: 50px;
  --icon-box-lg: 56px;
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-base);
  margin: 0;
  color: var(--color-white);
}

a {
  text-decoration: none;
}

/* =========================================================
         SHARED / DRY UTILITY CLASSES
         Reused across Hero, About, Stats, Control, Apps, Freight
         Features, Brand-Apps, Services, Testimonials, App Showcase
         and FAQ sections instead of redeclaring the same
         heading/eyebrow/desc/section rules per-section.
         ========================================================= */

/* Section vertical rhythm */
.u-section {
  padding: var(--section-py) 0;
}
.u-section--tight {
  padding: var(--section-py-tight) 0;
}

/* Eyebrow label (small uppercase tag above a heading) */
.u-eyebrow {
  color: var(--color-red);
  font-size: var(--fs-eyebrow);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
  display: block;
}
.u-eyebrow--inline {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
}
.u-eyebrow--pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--color-pill-bg);
  color: var(--color-red);
  text-transform: none;
  letter-spacing: 0;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  margin-bottom: var(--space-md);
}
.u-eyebrow--pill i {
  font-size: 0.6rem;
}

/* Section headings (h2-level) on light backgrounds */
.u-heading {
  font-size: var(--fs-h2);
  line-height: 1.2;
  color: var(--color-text);
  margin: 0 0 var(--space-md) 0;
}
.u-heading--on-dark {
  color: var(--color-white);
}

/* Section description / lede paragraph */
.u-desc {
  font-size: var(--fs-desc);
  line-height: 1.7;
  color: var(--color-text-soft);
  margin-left: auto;
  margin-right: auto;
}
.u-desc--on-dark {
  color: var(--color-muted);
}

/* Generic icon box used by app-card / feature-card */
.u-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-red);
  color: #fff;
  border-radius: var(--radius-lg);
  flex-shrink: 0;
}
.u-icon-box--sm {
  width: var(--icon-box-sm);
  height: var(--icon-box-sm);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
}
.u-icon-box--md {
  width: var(--icon-box-md);
  height: var(--icon-box-md);
  font-size: 1.3rem;
  margin-bottom: var(--space-lg);
}
.u-icon-box--lg {
  width: var(--icon-box-lg);
  height: var(--icon-box-lg);
  border-radius: var(--radius-lg);
  font-size: 1.6rem;
  margin-bottom: var(--space-md);
}

/* Pill/round button-icon used inside CTA buttons */
.u-btn-icon-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--color-red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* Generic card surface used by app-card */
.u-card {
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  height: 100%;
}
.u-card--outline-dark {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-2xl);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}
.u-card--outline-dark:hover {
  transform: translateY(-6px);
  border-color: var(--color-red);
}

/* Pill-style CTA button shared by "Download" buttons */
.u-btn-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  border-radius: var(--radius-md);
  font-size: var(--fs-small);
  white-space: nowrap;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.15s ease;
}

/* Responsive heading/section step-down — one place to manage
         the breakpoint behavior for every section that uses
         .u-heading / .u-section */
@media (max-width: 991.98px) {
  .u-heading {
    font-size: var(--fs-h2-md);
  }
}

@media (max-width: 767.98px) {
  .u-section {
    padding: var(--section-py-mobile) 0;
  }
  .u-section--tight {
    padding: var(--section-py-mobile-tight) 0;
  }
  .u-heading {
    font-size: var(--fs-h2-sm);
  }
}

/* ---------- TOP INFO BAR ---------- */
.topbar {
  background: var(--color-red);
  font-size: 0.85rem;
  padding: 0.55rem 0;
}

.topbar .topbar-item {
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  white-space: nowrap;
}

.topbar .topbar-item i {
  color: var(--color-white);
  font-size: 1rem;
}

.topbar .divider {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  height: 14px;
  margin: 0 1.1rem;
}

.topbar .social-icons a {
  color: var(--color-white);
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  margin-left: var(--space-2xs);
  border-radius: 50%;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.topbar .social-icons a:hover {
  background: var(--color-white);
  color: var(--color-dark);
}

.topbar .follow-label {
  color: var(--color-white);
}

/* ---------- HERO SECTION ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("/assets/images/hero-bg1.png") bottom/cover no-repeat;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
   background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.075) 0%,
    rgba(0, 0, 0, 0.096) 40%,
    rgba(0, 0, 0, 0.151) 70%,
    rgba(0, 0, 0, 0.05) 100%
  ); 
}

/* ---------- NAVBAR ---------- */
.main-nav {
  position: relative;
  z-index: 5;
  padding: 1.1rem 0;
}

.main-nav .container {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 1.65rem;
  color: var(--color-text);
  letter-spacing: 0.5px;
}

.brand img {
  width: 150px;
  transform: translateY(5px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links .nav-link {
  color: var(--color-text);
  font-size: var(--fs-body);
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.2s ease;
}

.nav-links .nav-link.active {
  color: var(--color-red);
}

.nav-links .nav-link:hover {
  color: var(--color-red);
}

.nav-cta-group {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
/* start dropdown */

/* ---------- NAV DROPDOWN (User Service) — Desktop ---------- */
.nav-item-dropdown {
  position: relative;
  z-index: 20;
}

.nav-link--dropdown {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-link--dropdown i {
  font-size: 0.7rem;
  transition: transform 0.2s ease;
}

.nav-item-dropdown.show .nav-link--dropdown i,
.nav-link--dropdown[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 30px -14px rgba(0, 0, 0, 0.18);
  padding: var(--space-2xs);
  margin-top: var(--space-sm);
  min-width: 200px;
  z-index: 30;
}

.nav-dropdown-item {
  color: var(--color-text);
  font-size: var(--fs-body);
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius-sm);
  display: block;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.nav-dropdown-item:hover,
.nav-dropdown-item:focus {
  background: var(--color-pill-bg);
  color: var(--color-red);
}

/* ---------- NAV SUBMENU — Mobile (inside offcanvas) ---------- */
.mobile-submenu-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}

.mobile-submenu-toggle i {
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}

.mobile-submenu-toggle[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.mobile-submenu {
  list-style: none;
  padding-left: var(--space-md);
  margin: 0;
}

.mobile-submenu-link {
  font-size: 0.92rem;
  color: var(--color-muted) !important;
  border-bottom: none !important;
  padding: 0.55rem 0 !important;
}

.mobile-submenu-link:hover {
  color: var(--color-red) !important;
}

.offcanvas.offcanvas-end {
  width: 100%;
}

/* end dropdown */
.phone-icon-circle {
  width: var(--icon-box-md);
  height: var(--icon-box-md);
  border: 1px solid var(--color-text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.phone-icon-circle i {
  font-size: 1.15rem;
  color: var(--color-red);
}

.emergency-text {
  line-height: 1.3;
}

.emergency-text small {
  display: block;
  color: var(--color-text-soft);
  font-size: 0.78rem;
}

.emergency-text strong {
  display: block;
  font-size: 1.05rem;
  color: var(--color-text);
}

.btn-quote {
  background: var(--color-red);
  color: var(--color-white);
  font-size: 0.85rem;
  letter-spacing: 0.4px;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  border: 1px solid transparent;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.15s ease;
}

.btn-quote:hover {
  background: var(--color-dark);
  color: var(--color-red);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.282);
}

/* ---------- HERO CONTENT ---------- */
.hero-content {
  position: relative;

  flex: 1;
  display: flex;
  align-items: center;
  padding: 4rem 0 5rem;
}

.hero-content h1 {
  font-size: var(--fs-h1);
  line-height: 1.12;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}

.hero-content p.lead-text {
  font-size: 1.02rem;
  color: var(--color-text-soft);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: var(--space-lg);
}

.btn-explore {
  border: 1.5px solid var(--color-red);
  color: var(--color-text);
  font-size: 0.95rem;
  padding: 0.95rem 1.8rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.btn-explore:hover {
  background: var(--color-white);
  color: var(--color-navy-deep);
}

.hero-tags {
  list-style: none;
  margin: var(--space-lg) 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.hero-tags li {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-text-soft);
  font-size: 0.95rem;
}

.hero-tags li i {
  color: var(--color-red);
  font-size: 1.05rem;
}

.play-store {
  width: 180px;
}

/* ---------- MOBILE NAV OFFCANVAS ---------- */
.navbar-toggler-custom {
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: var(--radius-sm);
  width: 46px;
  height: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  background: transparent;
  font-size: 1.3rem;
}

.offcanvas-custom {
  background: var(--color-dark);
  color: var(--color-white);
  width: 280px;
}

.offcanvas-custom .nav-link {
  color: var(--color-white);
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.offcanvas-custom .nav-link.active {
  color: var(--color-red);
}

/* ---------- RESPONSIVE: HERO/NAV ---------- */
@media (max-width: 1199.98px) {
  .nav-links {
    gap: 1.3rem;
  }
  .hero-content h1 {
    font-size: var(--fs-h1-md);
  }
}

@media (max-width: 991.98px) {
  .nav-links,
  .emergency-text,
  .phone-icon-circle {
    display: none;
  }
  .navbar-toggler-custom {
    display: flex;
  }
  .hero-content h1 {
    font-size: var(--fs-h1-sm);
  }
  .topbar .follow-label,
  .topbar .social-icons {
    display: none !important;
  }
  .hero-bg {
    background: url("/assets/images/services/truck-highway.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(2px);
    transform: scale(1.1); /* Prevents blurred edges from showing */
  }
  .hero-content * {
    color: var(--color-white) !important;
  }
}

@media (max-width: 767.98px) {
  .main-nav {
    background: var(--color-white);
  }

  .main-nav .container {
    border: none;
  }
  .hero-bg {
    background-position: 90% !important;
  }
  .hero-bg::after {
    background: linear-gradient(135deg, #f35d21b2, #f36421ab) !important;
  }
  .topbar .topbar-item span {
    font-size: 0.78rem;
  }
  .topbar .divider:nth-of-type(2) {
    display: none;
  }
  .hero-content h1 {
    font-size: var(--fs-h1-xs);
  }
  .hero-content p.lead-text {
    font-size: 0.92rem;
  }
  .btn-quote {
    padding: 0.7rem 1.1rem;
    font-size: 0.78rem;
  }
}

@media (max-width: 575.98px) {
  .topbar-item.time-item {
    display: none;
  }
  .hero-content h1 {
    font-size: var(--fs-h1-xxs);
  }
  .hero {
    min-height: auto;
  }
  .hero-content {
    padding: 3rem 1rem;
  }
  .brand {
    font-size: 1.35rem;
  }
}

/* =========================================================
         ABOUT / PLATFORM SECTION
         ========================================================= */
.about-section {
  background: var(--color-bg-light);
  position: relative;
  overflow: hidden;
}

/* =========================================================
         STATS BAR SECTION
         ========================================================= */
.stats-bar-section {
  background: var(--color-red);
  padding: var(--space-xl) 0;
}

.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  position: relative;
  padding-left: var(--space-xl);
}

.stat-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1rem;
  bottom: 0.1rem;
  width: 1px;
  background: var(--color-border-soft);
}

.stat-item:last-child::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0.1rem;
  bottom: 0.1rem;
  width: 1px;
  background: var(--color-border-soft);
}

.stat-number {
  font-size: 2.6rem;
  color: var(--color-bg-light);
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--color-white);
  font-weight: 600;
}

@media (max-width: 767.98px) {
  .stats-bar-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: var(--space-lg);
  }
  .stat-number {
    font-size: 2.1rem;
  }
}

@media (max-width: 575.98px) {
  .stat-item::before {
    display: none;
  }
  .stat-item {
    padding-left: var(--space-md);
    border-left: none;
  }
}

.control-section {
  background: var(--color-bg-light);
}

.control-intro {
  text-align: left;
  margin-bottom: var(--space-xl);
  text-align: center;
}

.control-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.control-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: var(--color-bg-light);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  text-align: left;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.control-item:hover {
  transform: translateY(-4px);
  border-color: var(--color-red);
  box-shadow: 0 16px 30px -18px rgba(0, 0, 0, 0.18);
}

.control-icon {
  width: 90px;
  height: 70px;
  flex-shrink: 0;
}

.control-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.control-item h3 {
  font-size: 1.05rem;
  color: var(--color-text);
  margin: 0 0 0.3rem;
}

.control-number {
  font-size: 0.85rem;
  color: var(--color-text-soft);
  line-height: 1.3;
  margin: 0 0 0.2rem;
}

.control-text {
  font-size: 0.8rem;
  color: var(--color-text-soft);
  line-height: 1.5;
  margin: 0;
  max-width: none;
}

@media (max-width: 991.98px) {
  .control-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767.98px) {
  .control-intro {
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .control-grid {
    grid-template-columns: 1fr;
  }
  .control-item {
    flex-direction: column;
    text-align: center;
  }
  .control-icon {
    width: 130px;
    height: 100px;
  }
}

/* =========================================================
         APPS SECTION
         ========================================================= */
.apps-section {
  position: relative;
  /* min-height: 100vh; */
  overflow: hidden;
  color: white;
}

/* blurred background image */
.apps-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/assets/images/mobile-mockup1.png") bottom/contain no-repeat;
  filter: blur(1px);
  transform: scale(1.1);
  z-index: 0;
}

/* dark overlay */
.apps-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.863);
  z-index: 1;
}

/* content stays above */
.apps-section > * {
  position: relative;
  z-index: 2;
}

.app-card h3 {
  font-size: 1.4rem;
  color: var(--color-white);
  margin-bottom: 0.6rem;
}

.app-card p {
  color: var(--color-muted);
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

/* Tag bar (insurance/booking callout) used inside .apps-section */
.tag-bar {
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.tag-bar h4 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: var(--color-text);
}

.tag-bar p {
  max-width: 620px;
  line-height: 1.7;
  color: var(--color-text-soft);
}

.tag-bar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.tag-bar ul li {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.95rem;
  color: var(--color-text);
}

.tag-bar ul li i {
  color: var(--color-red);
}

/* Dark-context override (used inside .apps-section) */
.tag-bar--on-dark {
  border-top-color: rgba(255, 255, 255, 0.1);
}
.tag-bar--on-dark h4,
.tag-bar--on-dark ul li {
  color: var(--color-white);
}
.tag-bar--on-dark p {
  color: var(--color-muted);
}

/* =========================================================
         FREIGHT FEATURES SECTION
         ========================================================= */
.freight-features-section {
  background: var(--color-bg-soft);
  text-align: center;
}

.freight-features-section .u-heading {
  text-align: center;
  margin-bottom: var(--space-2xs);
}

.freight-features-section .u-desc {
  text-align: center;
  margin: 0 auto var(--space-xl);
  max-width: 480px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.feature-card {
  background: var(--color-bg-light);
  border-radius: var(--radius-xl);
  padding: var(--space-lg) var(--space-md);
  text-align: left;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  border: 1px solid transparent;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px -12px rgba(0, 0, 0, 0.12);
  border-color: var(--color-red);
}

.feature-card .u-icon-box--md {
  background: var(--color-red);
  margin-bottom: var(--space-md);
}

.feature-card h3 {
  font-size: 1.1rem;
  color: var(--color-text);
  margin-bottom: 0.6rem;
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--color-text-soft);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 991.98px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
         ONE BRAND, TWO APPS SECTION
         ========================================================= */
.brand-apps-section {
  background: var(--color-dark);
  text-align: center;
}

.brand-apps-heading {
  margin: 0 auto var(--space-md);
  max-width: 760px;
}

.brand-apps-desc {
  margin: 0 auto var(--space-xl);
  max-width: 680px;
}

.brand-apps-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

.btn-brand-app {
  background: var(--color-red);
  color: #fff;
  padding: 0.9rem 1.6rem;
  font-size: var(--fs-body);
}

.btn-brand-app:hover {
  background: var(--color-white);
  color: var(--color-dark);
}

.btn-brand-app--outline {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: var(--color-red);
}

.btn-brand-app--outline:hover {
  background: var(--color-red);
  border-color: var(--color-red);
  color: #fff;
}

@media (max-width: 575.98px) {
  .brand-apps-buttons {
    flex-direction: column;
    /* align-items: center; */
  }
  .btn-brand-app {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* =========================================================
         SERVICES (IMAGE CARDS) SECTION
         ========================================================= */
.services-image-section {
  background: var(--color-bg-light);
}

.services-overview-heading {
  text-align: center;
  margin: 0 auto var(--space-xl);
  max-width: 760px;
}

.text-accent {
  color: var(--color-red);
}

.services-image-grid {
  text-align: left;
}

.service-image-thumb {
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: var(--space-md);
  aspect-ratio: 4 / 3;
}

.service-image-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  display: block;
  transition: transform 0.3s ease;
}

.service-image-card:hover .service-image-thumb img {
  transform: scale(1.05);
}

.service-image-title {
  font-size: 1.2rem;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.service-image-text {
  font-size: 0.95rem;
  color: var(--color-text-soft);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

@media (max-width: 767.98px) {
  .services-overview-heading {
    text-align: center;
  }
  .service-image-card {
    margin-bottom: var(--space-lg);
  }
}

/* =========================================================
         TESTIMONIAL SECTION
         ========================================================= */
.testimonial-section {
  background: var(--color-bg-soft);
}

.testimonial-heading {
  margin: 0 auto var(--space-xl);
  max-width: 640px;
}

.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto var(--space-lg);
  border: 2px solid var(--color-bg-soft);
  background:var( --color-red);
  padding-top:12px;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position:center;
  display: block;

}

.testimonial-quote-wrap {
  position: relative;
  max-width: 760px;
  margin: 0 auto var(--space-lg);
}

.testimonial-quote-mark {
  position: absolute;
  top: -2.2rem;
  left: 21%;
  transform: translateX(-220px);
  font-size: 7rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
  z-index: 0;
  font-family: Georgia, serif;
}

.testimonial-text {
  position: relative;
  z-index: 1;
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--color-text);
  margin: 0;
}

.testimonial-name {
  font-size: 1.05rem;
  color: var(--color-text);
  margin: 0 0 0.2rem;
}

.testimonial-role {
  font-size: 0.9rem;
  color: var(--color-text-soft);
  margin: 0 0 var(--space-md);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.testimonial-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-border-soft);
  cursor: pointer;
  transition: background 0.2s ease;
}

.testimonial-dot--active {
  background: var(--color-dark);
}

@media (max-width: 575.98px) {
  .testimonial-quote-mark {
    display: none;
  }
  .testimonial-text {
    font-size: 1.05rem;
  }
}

.testimonial-fade {
  transition: opacity 0.25s ease;
}
.testimonial-fade.is-hidden {
  opacity: 0;
}

/* =========================================================
         APP SHOWCASE / QR SECTION
         ========================================================= */
.app-showcase-section {
  background: var(--color-bg-soft);
  overflow: hidden;
  position: relative;
  padding-bottom: 0;
}

.app-showcase-section::after {
  content: "";
  width: 100%;
  height: 300px;
  background: url(/assets/images/cloud.webp) center/cover no-repeat;
  position: absolute;
  bottom: -150px;
  left: 0;
  z-index: 2;
}

.app-showcase-grid {
  text-align: center;
}

.app-showcase-col--left,
.app-showcase-col--right {
  text-align: left;
}

.app-showcase-heading {
  font-size: var(--fs-h2-sm);
  margin-bottom: var(--space-sm);
}

.app-showcase-desc {
  margin-bottom: var(--space-lg);
}

/* Store buttons */
.app-showcase-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  z-index: 5;
  position: relative;
}

/* Phone mockup */
.app-phone-mockup {
  max-width: 420px;
  margin: 0 auto;
}

.app-phone-mockup img {
  width: 100%;
  display: block;
}

/* QR box */
.app-qr-box {
  border: 5px solid var(--color-text);
  background: var(--color-bg-light);
  border-radius: var(--radius-xl);
  padding: var(--space-2xs);
  width: 180px;
  box-shadow: 0 16px 30px -14px rgba(0, 0, 0, 0.18);
  position: relative;
  z-index: 5;
}

.app-qr-box img {
  width: 100%;
  display: block;
  border-radius: var(--radius-xl);
}

@media (max-width: 991.98px) {
  .app-showcase-col--left,
  .app-showcase-col--right {
    text-align: center;
  }
  .app-showcase-buttons {
    align-items: center;
  }
  .app-qr-box {
    margin: 0 auto;
  }
}

@media (max-width: 767.98px) {
  .app-phone-mockup {
    display: none;
  }

  .app-showcase-section {
    padding: var(--section-py-mobile) 0;
  }
}

/* =========================================================
         FAQ SECTION
         ========================================================= */
.faq-section {
  background: var(--color-bg-light);
}

.faq-heading {
  margin-bottom: var(--space-xl);
}

.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq-item {
  background: var(--color-bg-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text);
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  cursor: pointer;
}

.faq-toggle {
  flex-shrink: 0;
  color: var(--color-red);
  font-size: 1.3rem;
  display: inline-flex;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
  padding: 0 1.5rem;
}

.faq-answer p {
  color: var(--color-text-soft);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

.faq-item.is-open .faq-answer {
  padding: 0 1.5rem 1.3rem;
}

.faq-footer-note {
  margin-top: var(--space-xl);
  color: var(--color-text-soft);
  font-size: 0.95rem;
}

.faq-footer-note a {
  color: var(--color-red);
  text-decoration: underline;
}

@media (max-width: 575.98px) {
  .faq-question {
    font-size: 0.95rem;
    padding: 1rem 1.1rem;
  }
}

/* about us */

/* =========================================================
     BREADCRUMB SECTION
     Reuses existing tokens (--color-dark, --color-red,
     --color-white, --color-muted, --space-*, --radius-*)
     and existing utility classes (.u-eyebrow--pill) instead
     of redeclaring new ones — keeps the DRY system intact.
     ========================================================= */
.breadcrumb-section {
  position: relative;
  background: var(--color-dark);
  padding: var(--space-xl) 0;
  overflow: hidden;
}

.breadcrumb-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ff6106 0%, #c94b02 100%);
  z-index: 0;
}

.breadcrumb-section > .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.breadcrumb-content {
  flex: 1;
}

.breadcrumb-mockup {
  flex-shrink: 0;
  max-width: 350px;
}

.breadcrumb-mockup img {
  width: 100%;
  height: 400px;
  display: block;
}

@media (max-width: 767.98px) {
  .breadcrumb-mockup {
    display: none;
  }
}

.breadcrumb-title {
  font-size: var(--fs-h2);
  color: var(--color-white);
  margin: 0 0 var(--space-sm) 0;
}

.breadcrumb-trail {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: 0;
  padding: 0;
}

.breadcrumb-trail li {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--fs-small);
  color: var(--color-muted);
}

.breadcrumb-trail li a {
  color: var(--color-muted);
  transition: color 0.2s ease;
}

.breadcrumb-trail li a:hover {
  color: var(--color-text);
}

.breadcrumb-trail li i {
  font-size: 0.7rem;
  color: var(--color-red);
}

.breadcrumb-trail li.active {
  color: var(--color-white);
  font-weight: 600;
}

@media (max-width: 767.98px) {
  .breadcrumb-section {
    padding: var(--section-py-mobile-tight) 0;
  }
  .breadcrumb-title {
    font-size: var(--fs-h2-sm);
  }
}

/* =========================================================
     FEATURE SHOWCASE SECTION
     Reuses existing tokens (--color-text, --color-text-soft,
     --space-*, --radius-*) and existing utility classes
     (.u-eyebrow, .u-heading, .u-desc, .u-icon-box) instead of
     redeclaring new ones — keeps the DRY system intact.
     ========================================================= */
.feature-showcase-section {
  background: var(--color-bg-soft);

  position: relative;
  overflow: hidden;
  text-align: center;
}

.feature-showcase-heading {
  margin: 0 auto var(--space-xl);
  max-width: 640px;
}

/* big faded watermark word behind the grid */
.feature-showcase-watermark {
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 13rem;
  font-weight: 700;
  color: var(--color-bg-soft);
  white-space: nowrap;
  z-index: 0;
  user-select: none;
  line-height: 1;
}

.feature-showcase-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: var(--space-lg);
}

.feature-showcase-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

/* re-use .u-icon-box as the base, just resize/recolor here */
.feature-showcase-icon {
  width: var(--icon-box-md);
  height: var(--icon-box-md);
  border-radius: var(--radius-md);
  background: var(--color-red);
  margin: 0 auto var(--space-sm);
  font-size: 1.4rem;
}

.feature-showcase-col--left .feature-showcase-item,
.feature-showcase-col--right .feature-showcase-item {
  text-align: center;
}

.feature-showcase-item h3 {
  font-size: 1.15rem;
  color: var(--color-text);
  margin: 0 0 0.5rem;
}

.feature-showcase-item p {
  font-size: 0.92rem;
  color: var(--color-text-soft);
  line-height: 1.65;
  margin: 0;
  max-width: 320px;
  margin-inline: auto;
}

.feature-showcase-mockup {
  max-width: 340px;
  margin: 0 auto;
}

.feature-showcase-mockup img {
  width: 100%;
  display: block;
}

@media (max-width: 991.98px) {
  .feature-showcase-grid {
    grid-template-columns: 1fr;
  }
  .feature-showcase-col {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-lg);
  }
  .feature-showcase-item {
    max-width: 280px;
  }
  .feature-showcase-mockup {
    order: -1;
    margin-bottom: var(--space-lg);
  }
  .feature-showcase-watermark {
    font-size: 8rem;
  }
}

@media (max-width: 575.98px) {
  .feature-showcase-watermark {
    display: none;
  }
}

/* =========================================================
     INDUSTRIES SECTION
     Reuses existing tokens (--space-*, --radius-*, --color-*)
     and existing utility classes (.u-eyebrow, .u-heading,
     .u-desc) instead of redeclaring new heading/desc rules.
     ========================================================= */
.industries-section {
  background: var(--color-bg-light);
}

.industries-heading {
  margin: 0 auto var(--space-xl);
  max-width: 640px;
  text-align: center;
}

/* ---------- Swiper wrapper ---------- */
.industries-swiper {
  overflow: hidden;
  padding-bottom: var(--space-xl);
}

.industries-swiper .swiper-slide {
  height: auto;
}

/* ---------- Card ---------- */
.industry-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  display: block;
}

.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.industry-card:hover img {
  transform: scale(1.06);
}

/* dark overlay */
.industry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 40%,
    rgba(0, 0, 0, 0.75) 100%
  );
  z-index: 1;
}

/* ✅ NEW: content wrapper */
/* ---------- Content wrapper on hover ---------- */
.industry-card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: var(--space-md);
  color: var(--color-white);
}

.industry-card-title {
  font-size: 1.05rem;
  margin: 0 0 4px;
  color: var(--color-white);
  transition: transform 0.3s ease;
}

/* description hidden by default */
.industry-card p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(8px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    max-height 0.3s ease;
}

/* reveal description + shift title up on hover */
.industry-card:hover .industry-card-title {
  transform: translateY(-4px);
}

.industry-card:hover p {
  opacity: 0.9;
  max-height: 60px;
  transform: translateY(0);
}

/* ---------- Nav arrows (reuse .u-btn-icon-circle pattern) ---------- */
.industries-nav {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.industries-nav .swiper-button-prev,
.industries-nav .swiper-button-next {
  position: static;
  width: 44px;
  height: 44px;
  margin: 0;
  border-radius: 50%;
  border: 1px solid var(--color-border-soft);
  color: var(--color-text);
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.industries-nav .swiper-button-prev::after,
.industries-nav .swiper-button-next::after {
  font-size: 1rem;
}

.industries-nav .swiper-button-prev:hover,
.industries-nav .swiper-button-next:hover {
  background: var(--color-red);
  border-color: var(--color-red);
  color: var(--color-white);
}

.industries-nav .swiper-button-disabled {
  opacity: 0.35;
}

/* ---------- Pagination ---------- */
.industries-swiper .swiper-pagination-bullet {
  background: var(--color-border-soft);
  opacity: 1;
}

.industries-swiper .swiper-pagination-bullet-active {
  background: var(--color-red);
}

/* delivery for business */

.brand-apps-buttons {
  display: flex;
  flex-wrap: nowrap;
  justify-content: start;
  gap: var(--space-md);
}

.about-mini-features {
  list-style: none;
  margin: var(--space-lg) 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.about-mini-features li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-xs);
  font-size: var(--fs-small);
  color: var(--color-text-soft);
  font-weight: 500;
}

.about-mini-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  font-size: 1.2rem;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    background 0.2s ease;
}

.about-mini-features li:hover .about-mini-icon {
  border-color: var(--color-red);
  color: var(--color-red);
  background: var(--color-pill-bg);
}

@media (max-width: 575.98px) {
  .about-mini-features {
    gap: var(--space-md);
  }
}

/* personal use */
.icon-card-section {
  background: var(--color-bg-soft);
}

.icon-card-section .u-heading,
.icon-card-section .u-desc {
  text-align: center;
}

.icon-card-heading {
  margin: 0 auto var(--space-xl);
  max-width: 640px;
  text-align: center;
}

.icon-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.icon-card {
  background: var(--color-red);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-md);
  text-align: center;
  transition: transform 0.2s ease;
}

.icon-card:hover {
  transform: translateY(-6px);
}

.icon-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-card-icon img,
.icon-card-icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.icon-card h3 {
  font-size: 1.05rem;
  line-height: 1.4;
  color: var(--color-bg-light);
  margin: 0;
}

@media (max-width: 991.98px) {
  .icon-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .icon-card-grid {
    grid-template-columns: 1fr;
  }
}

/* driver partner */
/* ---------- ONBOARDING STEPS ---------- */
.driver-onboard-section {
  background: var(--color-bg-soft);
  text-align: center;
}

.driver-onboard-heading {
  margin: 0 auto var(--space-xl);
  max-width: 640px;
}

.driver-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.driver-step-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-lg) var(--space-md);
  text-align: left;
  position: relative;
}

.driver-step-number {
  font-size: 2.4rem;
  font-weight: 700;
  color: rgba(255, 97, 6, 0.15);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.driver-step-card h3 {
  font-size: 1.05rem;
  color: var(--color-text);
  margin: 0 0 0.5rem;
}

.driver-step-card p {
  font-size: 0.9rem;
  color: var(--color-text-soft);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 991.98px) {
  .driver-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .driver-steps-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- REQUIREMENTS ---------- */

.driver-requirements-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-xl);
}

.driver-requirements-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.driver-requirements-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  background: var(--color-bg-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-sm) var(--space-md);
  font-size: 0.95rem;
  color: var(--color-text);
}

.driver-requirements-list li i {
  color: var(--color-red);
  font-size: 1.1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.driver-requirements-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.driver-requirements-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 991.98px) {
  .driver-requirements-grid {
    grid-template-columns: 1fr;
  }

  .driver-requirements-image {
    order: -1;
  }
}

/* ---------- WHY BECOME A DRIVER (benefits grid) ---------- */
.driver-benefits-section {
  background: var(--color-bg-soft);
  text-align: center;
}

.driver-benefits-heading {
  margin: 0 auto var(--space-xl);
  max-width: 640px;
}

.driver-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.driver-benefit-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-lg) var(--space-md);
  text-align: left;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
  border: 1px solid transparent;
}

.driver-benefit-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-red);
}

.driver-benefit-card h3 {
  font-size: 1rem;
  color: var(--color-text);
  margin: 0;
  line-height: 1.45;
}

@media (max-width: 991.98px) {
  .driver-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .driver-benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* new index cta */
/* =========================================================
   APP DOWNLOAD CTA BAR
   Same solid-red banner treatment as .stats-bar-section
   ========================================================= */
.app-cta-bar-section {
  background: var(--color-red);
  padding: var(--space-xl) 0;
}

.app-cta-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.app-cta-bar-text h3 {
  font-size: 1.6rem;
  color: var(--color-white);
  margin: 0 0 0.3rem;
}

.app-cta-bar-text p {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  max-width: 480px;
}

.app-cta-bar-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.btn-app-cta {
  background: var(--color-white);
  color: var(--color-red);
  padding: 0.7rem 1.4rem;
  font-size: var(--fs-body);
  border: 1.5px solid var(--color-white);
  gap: var(--space-sm);
}

.btn-app-cta:hover {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-app-cta--outline {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  color: var(--color-white);
  gap: var(--space-sm);
      padding: 0.7rem 1.4rem;
}

.btn-app-cta--outline:hover {
  background: var(--color-white);
  color: var(--color-red);
}

.btn-app-cta img,
.btn-app-cta--outline img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}

/* outline variant sits on red bg, so the badge icon needs to invert to read white */
.btn-app-cta--outline img {
  filter: brightness(0) invert(1);
}

@media (max-width: 767.98px) {
  .app-cta-bar-inner {
    flex-direction: column;
    text-align: center;
  }
  .app-cta-bar-buttons {
    justify-content: center;
    width: 100%;
  }
  .btn-app-cta,
  .btn-app-cta--outline {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

.faq-hidden {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
  transform: translateY(-10px);
  transition:
    max-height 0.5s ease,
    opacity 0.4s ease,
    transform 0.4s ease,
    margin 0.4s ease;
}

.faq-hidden.show {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
  margin-bottom: 20px;
}
