/* ==========================================================================
   DREAMS COURIER — DESIGN TOKENS
   ========================================================================== */
:root {
  /* brand colors (given) */
  --dispatch-ink: #0a0a0d;
  --dispatch-ink-soft: #101015;
  --dispatch-red: #d6262c;
  --dispatch-red-glow: rgba(214, 38, 44, 0.35);
  --dispatch-steel: #858b99;
  --dispatch-dark-line: rgba(255, 255, 255, 0.09);
  --dispatch-card-line: #e5e7ec;
  --dispatch-card-text: #14151a;
  --dispatch-card-muted: #6b7280;

  /* derived */
  --dispatch-red-dim: #a01e23;
  --dispatch-red-bright: #ff3b42;
  --dispatch-white: #f5f6f8;

  /* type */
  --font-display: "Space Grotesk", "Inter", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --nav-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--dispatch-ink);
  color: var(--dispatch-white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
}

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

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.dc-navbar {
  height: var(--nav-height);
  padding: 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
  z-index: 1000;
}
.navbar-logo-container {
  display: inline-block;
  animation: logoFloat 3s ease-in-out infinite;
  max-width: 100px;
}

@keyframes logoFloat {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-3px);
  }
  50% {
    transform: translateX(0);
  }
  75% {
    transform: translateX(3px);
  }
  100% {
    transform: translateX(0);
  }
}
.dc-navbar.dc-scrolled {
  background: rgba(10, 10, 13, 0.86);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--dispatch-dark-line);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.dc-navbar .container {
  height: var(--nav-height);
  display: flex;
  align-items: center;
}

.dc-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  color: var(--dispatch-white);
}
.dc-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--dispatch-red);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 8px 20px var(--dispatch-red-glow);
}
.dc-brand-text {
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.dc-brand-text em {
  font-style: normal;
  color: var(--dispatch-red-bright);
}

.dc-nav-links {
  gap: 0;
}
.dc-nav-links .nav-link {
  color: rgba(245, 246, 248, 0.72);
  font-size: 0.93rem;
  font-weight: 500;
  padding: 0.55rem 0.95rem !important;
  border-radius: 7px;
  position: relative;
  transition: color 0.2s ease;
}
.dc-nav-links .nav-link::after {
  content: "";
  position: absolute;
  left: 0.95rem;
  right: 0.95rem;
  bottom: 0.3rem;
  height: 2px;
  background: var(--dispatch-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.dc-nav-links .nav-link:hover {
  color: var(--dispatch-white);
}
.dc-nav-links .nav-link:hover::after {
  transform: scaleX(1);
}

.dc-nav-actions {
  gap: 0.6rem;
}

.dc-link-track {
  color: var(--dispatch-steel);
  font-size: 0.86rem;
  font-weight: 500;
  margin-right: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.dc-link-track:hover {
  color: var(--dispatch-white);
}

.btn.dc-btn-outline-sm {
  border: 1px solid var(--dispatch-dark-line);
  color: var(--dispatch-white);
  font-size: 0.86rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 7px;
  background: transparent;
  white-space: nowrap;
}
.btn.dc-btn-outline-sm:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.btn.dc-btn-red-sm {
  background: var(--dispatch-red);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 600;
  padding: 0.5rem 1.1rem;
  border-radius: 7px;
  white-space: nowrap;
  box-shadow: 0 6px 16px var(--dispatch-red-glow);
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}
.btn.dc-btn-red-sm:hover {
  background: var(--dispatch-red-bright);
  transform: translateY(-1px);
  color: #fff;
}

.dc-toggler {
  position: relative;
  width: 46px;
  height: 42px;
  border: none;
  padding: 0;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: transparent;
  color: var(--dispatch-white);
  cursor: pointer;
  transition:
    border-color 0.25s ease,
    background 0.25s ease;
}
.dc-toggler:hover {
  border-color: transparent;
  background: transparent;
}
.dc-toggler:focus {
  box-shadow: none;
  outline: 2px solid var(--dispatch-red);
}
.dc-toggler-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dispatch-red);
  border-radius: 999px;
  transition:
    transform 0.28s ease,
    opacity 0.28s ease;
}
.dc-toggler-bar + .dc-toggler-bar {
  margin-top: 5px;
}
.dc-toggler.is-open .dc-toggler-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.dc-toggler.is-open .dc-toggler-bar:nth-child(2) {
  opacity: 0;
}
.dc-toggler.is-open .dc-toggler-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 991.98px) {
  .dc-toggler {
    display: inline-flex;
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .navbar-nav .align-items-center {
    align-items: start;
  }
}
/* ==========================================================================
   HERO
   ========================================================================== */
.dc-hero {
  position: relative;
  min-height: 100vh;
  padding-top: var(--nav-height);
  overflow: hidden;
  background:
    radial-gradient(
      ellipse 60% 50% at 78% 12%,
      rgba(214, 38, 44, 0.16),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      var(--dispatch-ink) 0%,
      var(--dispatch-ink-soft) 100%
    );
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dc-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--dispatch-dark-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--dispatch-dark-line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(
    ellipse 80% 60% at 50% 30%,
    #000 10%,
    transparent 75%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 80% 60% at 50% 30%,
    #000 10%,
    transparent 75%
  );
  opacity: 0.55;
  pointer-events: none;
}

.dc-hero-glow {
  position: absolute;
  top: -10%;
  right: -8%;
  width: 620px;
  height: 620px;
  background: radial-gradient(
    circle,
    var(--dispatch-red-glow) 0%,
    transparent 70%
  );
  filter: blur(10px);
  pointer-events: none;
}

.stat-count-container {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.dc-hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.dc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dispatch-steel);
  border: 1px solid var(--dispatch-dark-line);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.6rem;
}
.dc-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--dispatch-red);
  box-shadow: 0 0 0 4px var(--dispatch-red-glow);
  flex: none;
}

.dc-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 4.6vw, 3.85rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 1.4rem;
  color: var(--dispatch-white);
}
.dc-headline-outline {
  background: linear-gradient(
    100deg,
    var(--dispatch-red-bright) 0%,
    var(--dispatch-red) 38%,
    var(--dispatch-white) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.dc-subtext {
  color: var(--dispatch-steel);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 2rem;
}

.dc-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2.8rem;
}

.btn.dc-btn-red {
  background: var(--dispatch-red);
  color: #fff;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.85rem 1.6rem;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 10px 24px var(--dispatch-red-glow);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}
.btn.dc-btn-red:hover {
  background: var(--dispatch-red-bright);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px var(--dispatch-red-glow);
  color: #fff;
}

.btn.dc-btn-ghost {
  border: 1px solid var(--dispatch-dark-line);
  color: var(--dispatch-white);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.85rem 1.6rem;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}
.btn.dc-btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.dc-stats-row {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}
.dc-stat {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.dc-stat-num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--dispatch-white);
  display: inline;
}
.dc-stat-suffix {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--dispatch-red-bright);
}
.dc-stat-label {
  font-size: 0.78rem;
  color: var(--dispatch-steel);
  margin-top: 0.25rem;
}
.dc-stat-sep {
  width: 1px;
  height: 34px;
  background: var(--dispatch-dark-line);
}

/* ---------- Manifest card (signature element) ---------- */
.dc-manifest {
  background: var(--dispatch-white);
  color: var(--dispatch-card-text);
  border-radius: 16px;
  padding: 1.6rem 1.6rem 1.4rem;
  max-width: 440px;
  margin-left: auto;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  position: relative;
}
.dc-manifest::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 17px;
  padding: 1px;
  background: linear-gradient(135deg, var(--dispatch-red) 0%, transparent 40%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.5;
  pointer-events: none;
}

.dc-manifest-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px dashed var(--dispatch-card-line);
}
.dc-manifest-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dispatch-card-muted);
}
.dc-manifest-id {
  display: block;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 1.15rem;
  margin-top: 0.15rem;
}
.dc-manifest-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--dispatch-red);
  background: rgba(214, 38, 44, 0.09);
  padding: 0.32rem 0.65rem;
  border-radius: 999px;
}
.dc-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--dispatch-red);
}

.dc-manifest-route {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.3rem;
}

.dc-route-city {
  display: flex;
  flex-direction: column;
}
.dc-route-name {
  font-weight: 700;
  font-size: 0.98rem;
}
.dc-route-tag {
  font-size: 0.68rem;
  color: var(--dispatch-card-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.dc-route-line {
  flex: 1;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--dispatch-card-line) 0 6px,
    transparent 6px 11px
  );
  position: relative;
}
/* .dc-route-plane {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translate(-50%, -50%);
  width: 26px;
  height: 26px;
  background: var(--dispatch-red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  box-shadow: 0 4px 12px var(--dispatch-red-glow);
} */

.dc-manifest-checkpoints {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  margin-bottom: 1.3rem;
}
.dc-checkpoint {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  opacity: 0.4;
}
.dc-checkpoint.is-done,
.dc-checkpoint.is-active {
  opacity: 1;
}
.dc-checkpoint-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--dispatch-card-line);
  margin-top: 3px;
  flex: none;
}
.dc-checkpoint.is-done .dc-checkpoint-dot {
  background: var(--dispatch-card-text);
  border-color: var(--dispatch-card-text);
}
.dc-checkpoint.is-active .dc-checkpoint-dot {
  background: var(--dispatch-red);
  border-color: var(--dispatch-red);
  box-shadow: 0 0 0 4px rgba(214, 38, 44, 0.18);
}
.dc-checkpoint-title {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
}
.dc-checkpoint-time {
  margin: 0;
  font-size: 0.76rem;
  color: var(--dispatch-card-muted);
  font-family: var(--font-mono);
}

.dc-manifest-barcode {
  border-top: 1px dashed var(--dispatch-card-line);
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.dc-barcode-bars {
  width: 100%;
  height: 34px;
  background: repeating-linear-gradient(
    90deg,
    var(--dispatch-card-text) 0 2px,
    transparent 2px 5px,
    var(--dispatch-card-text) 5px 6px,
    transparent 6px 10px
  );
  opacity: 0.85;
}
.dc-barcode-num {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  color: var(--dispatch-card-muted);
}

.dc-route-line {
  flex: 1;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--dispatch-card-line) 0 6px,
    transparent 6px 11px
  );
  position: relative;
  overflow: visible;
}

.dc-route-plane {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 26px;
  height: 26px;
  background: var(--dispatch-red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  box-shadow: 0 4px 12px var(--dispatch-red-glow);

  animation: dcTruckMove 6s linear infinite;
}

@keyframes dcTruckMove {
  0% {
    left: 0%;
    opacity: 0;
  }

  5% {
    opacity: 1;
  }

  95% {
    left: 100%;
    opacity: 1;
  }

  100% {
    left: 100%;
    opacity: 0;
  }
}

/* ---------- Marquee strip ---------- */
.dc-hero-marquee {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--dispatch-dark-line);
  overflow: hidden;
  padding: 1.1rem 0;
  background: rgba(255, 255, 255, 0.015);
}
.dc-marquee-track {
  display: flex;
  gap: 2.2rem;
  white-space: nowrap;
  width: max-content;
  animation: dc-marquee 26s linear infinite;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--dispatch-steel);
}
/* Pulse Effect for the red dots  */
.dc-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--dispatch-red);
  box-shadow: 0 0 0 4px var(--dispatch-red-glow);
  flex: none;
  position: relative;
}

.dc-pulse-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--dispatch-red);
  opacity: 0.55;
  animation: dc-pulse 1.8s ease-out infinite;
}

@keyframes dc-pulse {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }
  70% {
    transform: scale(2.4);
    opacity: 0;
  }
  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dc-eyebrow-dot::after {
    animation: none;
    display: none;
  }
}
.dc-marquee-track span:nth-child(2n) {
  color: var(--dispatch-red);
}
@keyframes dc-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .dc-marquee-track {
    animation: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 991.98px) {
  .dc-nav-links {
    margin: 1rem 0;
    align-items: flex-start;
  }
  .dc-nav-links .nav-link::after {
    display: none;
  }
  .dc-nav-actions {
    flex-direction: column;
    align-items: start !important;
    gap: 0.6rem;
    padding-bottom: 1rem;
    padding-inline-start: 0.95rem;
  }
  .dc-link-track {
    margin-right: 0;
    padding: 0.4rem 0;
  }

  .navbar-collapse {
    background: rgba(10, 10, 13, 1);
    border-radius: 12px;
    padding: 0 1rem 0.5rem;
    margin-top: 1rem;
    border: 1px solid var(--dispatch-dark-line);
    backdrop-filter: blur(18px) saturate(140%) !important;
    -webkit-backdrop-filter: blur(18px) saturate(140%) !important;
  }
  .dc-manifest {
    margin-left: 0;
    max-width: 100%;
  }
}

@media (max-width: 575.98px) {
  .dc-hero {
    padding-top: calc(var(--nav-height) - 10px);
  }
  .dc-stats-row {
    gap: 1rem;
  }
  .dc-stat-sep {
    display: none;
  }
  .dc-manifest {
    padding: 1.3rem 1.1rem;
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.dc-footer {
  position: relative;
  background: var(--dispatch-ink-soft);
  border-top: 1px solid var(--dispatch-dark-line);
  overflow: hidden;
}
.dc-footer-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--dispatch-dark-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--dispatch-dark-line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(
    ellipse 70% 60% at 15% 0%,
    #000 10%,
    transparent 70%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 70% 60% at 15% 0%,
    #000 10%,
    transparent 70%
  );
  opacity: 0.4;
  pointer-events: none;
}

.dc-footer-top {
  position: relative;
  z-index: 2;
  padding: 4.5rem 0 3rem;
}

.dc-footer-brand {
  margin-bottom: 1.1rem;
}

.dc-footer-about {
  color: var(--dispatch-steel);
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: 340px;
  margin-block: 1.4rem;
}

.dc-footer-social {
  display: flex;
  gap: 0.6rem;
}
.dc-footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--dispatch-dark-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dispatch-white);
  font-size: 0.92rem;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}
.dc-footer-social a:hover {
  border-color: var(--dispatch-red);
  background: rgba(214, 38, 44, 0.12);
  color: var(--dispatch-red-bright);
}

.dc-footer-heading {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dispatch-white);
  margin-bottom: 1.1rem;
}

.dc-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.dc-footer-links a {
  color: var(--dispatch-steel);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}
.dc-footer-links a:hover {
  color: var(--dispatch-white);
}

.dc-footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.dc-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--dispatch-steel);
  font-size: 0.9rem;
}
.dc-footer-contact li a {
  color: var(--dispatch-steel);
  transition: 0.3s ease-in-out;
}
.dc-footer-contact li a:hover {
  color: var(--dispatch-white);
}
.dc-footer-contact i {
  color: var(--dispatch-red);
  margin-top: 0.15rem;
}

.dc-footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--dispatch-dark-line);
  padding: 1.3rem 0;
}
.dc-footer-bottom strong {
  color: var(--dispatch-red);
}
.dc-footer-bottom a {
  color: var(--dispatch-steel);
  transition: 0.2s ease-in-out;
}
.dc-footer-bottom a:hover {
  color: var(--dispatch-white);
}
.dc-footer-bottom p {
  color: var(--dispatch-steel);
  font-size: 0.82rem;
}
.dc-footer-legal {
  display: flex;
  gap: 1.4rem;
}
.dc-footer-legal a {
  color: var(--dispatch-steel);
  font-size: 0.82rem;
  transition: color 0.2s ease;
}
.dc-footer-legal a:hover {
  color: var(--dispatch-white);
}

@media (max-width: 767.98px) {
  .dc-footer-top {
    padding: 3.2rem 0 2rem;
    text-align: left;
  }
  .dc-footer-bottom .container {
    text-align: center;
  }
}

/* ==========================================================================
   SERVICES (Section 2)
   ========================================================================== */
.dc-services {
  background: var(--dispatch-white);
  color: var(--dispatch-card-text);
  padding: 6rem 0;
}

.dc-eyebrow-light {
  color: var(--dispatch-card-muted);
  border-color: var(--dispatch-card-line);
}

.dc-services-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  line-height: 1.14;
  letter-spacing: -0.01em;
  color: var(--dispatch-card-text);
  margin: 1.2rem 0 0;
}

.dc-services-sub {
  color: var(--dispatch-card-muted);
  font-size: 1.02rem;
  line-height: 1.65;
  margin: 0 0 0.4rem;
}

.dc-services-grid {
  margin-top: 3rem;
}

.dc-service-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--dispatch-card-line);
  border-radius: 14px;
  padding: 1.9rem 1.7rem;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
  position: relative;
  overflow: hidden;
  min-height: 260px;
}
.dc-service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--dispatch-red);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
}
.dc-service-card:hover {
  border-color: rgba(214, 38, 44, 0.35);
  box-shadow: 0 18px 40px rgba(20, 21, 26, 0.08);
  transform: translateY(-4px);
}
.dc-service-card:hover::before {
  transform: scaleY(1);
}

.dc-service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(214, 38, 44, 0.08);
  color: var(--dispatch-red);
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}

.dc-service-title {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--dispatch-card-text);
  margin-bottom: 0.55rem;
}

.dc-service-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--dispatch-card-muted);
  margin: 0;
}

@media (max-width: 991.98px) {
  .dc-services {
    padding: 4.5rem 0;
  }
  .dc-services-sub {
    margin-top: 1.2rem;
  }
}

.dc-coverage {
  position: relative;
  background: var(--dispatch-ink-soft);
  padding: 6rem 0;
  overflow: hidden;
}
.dc-coverage-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--dispatch-dark-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--dispatch-dark-line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(
    ellipse 70% 60% at 85% 15%,
    #000 10%,
    transparent 70%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 70% 60% at 85% 15%,
    #000 10%,
    transparent 70%
  );
  opacity: 0.4;
  pointer-events: none;
}
.dc-coverage-head {
  position: relative;
  z-index: 2;
  margin-bottom: 3rem;
}
.dc-coverage-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  line-height: 1.14;
  letter-spacing: -0.01em;
  margin: 1.2rem 0 0;
  color: var(--dispatch-white);
}
.dc-coverage-sub {
  color: var(--dispatch-steel);
  font-size: 1.02rem;
  line-height: 1.65;
  margin: 0;
}
.dc-coverage-stats {
  position: relative;
  z-index: 2;
  margin-bottom: 3rem;
}
.dc-coverage-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--dispatch-dark-line);
  border-radius: 14px;
  padding: 1.6rem 1.4rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}
.dc-coverage-card:hover {
  border-color: rgba(214, 38, 44, 0.4);
  background: rgba(214, 38, 44, 0.06);
  transform: translateY(-3px);
}
.dc-coverage-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(214, 38, 44, 0.14);
  color: var(--dispatch-red-bright);
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}
/* mimics a lordicon "loop-on-hover" trigger, driven purely by CSS on card hover */
.dc-coverage-card:hover .dc-coverage-icon {
  animation: dc-icon-pop 1.1s ease-in-out infinite;
}
@keyframes dc-icon-pop {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.15) rotate(-6deg);
  }
}
.dc-coverage-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dispatch-white);
}
.dc-coverage-label {
  font-size: 0.8rem;
  color: var(--dispatch-steel);
}
.dc-coverage-cities {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.dc-city-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  color: var(--dispatch-steel);
  border: 1px solid var(--dispatch-dark-line);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  transition:
    border-color 0.2s ease,
    color 0.2s ease;
}
.dc-city-chip i {
  color: var(--dispatch-red);
  font-size: 0.7rem;
}
.dc-city-chip:hover {
  border-color: rgba(214, 38, 44, 0.4);
  color: var(--dispatch-white);
}
.dc-mobile-services-slider {
  display: none;
}
@media (prefers-reduced-motion: reduce) {
  .dc-coverage-card:hover .dc-coverage-icon {
    animation: none;
  }
}

.d-show {
  display: flex;
}
@media (max-width: 991.98px) {
  .dc-coverage {
    padding: 4.5rem 0;
  }
  .dc-mobile-services-slider {
    display: block;
  }
  .d-show {
    display: none;
  }
}

.dc-mobile-services-slider {
  padding-bottom: 50px;
}

.dc-mobile-services-slider .swiper-slide {
  height: auto;
}
.padination-and-arrows-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.dc-mobile-prev,
.dc-mobile-next {
  position: relative;
  width: 38px;
  height: 38px;
  background: var(--dispatch-red);
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  font-size: 25px;
  margin-top: 20px;
}

.dc-mobile-pagination {
  width: fit-content;
  max-width: fit-content;
}

.dc-mobile-pagination span {
  background-color: var(--dispatch-red);
}

.dc-mobile-pagination {
  text-align: center;
  margin-top: 20px;
}

.dc-mobile-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
}

.dc-mobile-pagination .swiper-pagination-bullet-active {
  width: 25px;
  border-radius: 20px;
}

/* ==========================================================================
   LIVE DISPATCH (Section 4 — scroll-driven)
   ========================================================================== */
.dc-dispatch {
  position: relative;
  background: var(--dispatch-ink-soft);
  overflow: hidden;
  padding: 5rem 0 6rem;
}

.dc-dispatch-head {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 2;
}
.dc-dispatch-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--dispatch-white);
  margin: 1.2rem 0 0;
}
.dc-dispatch-title span {
  color: var(--dispatch-red-bright);
}

.dc-dispatch-stage {
  position: relative;
  height: 220px;
  max-width: 900px;
  margin: 0 auto;
}

.dc-dispatch-steps {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dispatch-steel);
}
.dc-dispatch-step {
  opacity: 0.35;
  transition:
    opacity 0.3s ease,
    color 0.3s ease;
}
.dc-dispatch-step.is-active {
  opacity: 1;
  color: var(--dispatch-red-bright);
}

.dc-dispatch-route {
  position: absolute;
  left: 5%;
  right: 5%;
  bottom: 46px;
  height: 2px;
  background: var(--dispatch-dark-line);
  overflow: hidden;
}
.dc-dispatch-route-fill {
  position: absolute;
  inset: 0;
  width: 0%;
  background: var(--dispatch-red);
  box-shadow: 0 0 10px var(--dispatch-red-glow);
}

.dc-dispatch-truck {
  position: absolute;
  bottom: 30px;
  left: -20%;
  width: 150px;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.4));
}

.dc-dispatch-bag {
  position: absolute;
  bottom: 100px;
  left: 48%;
  transform: translateX(-50%) scale(0.4);
  opacity: 0;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--dispatch-red);
  color: #fff;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px var(--dispatch-red-glow);
}

@media (max-width: 767.98px) {
  .dc-dispatch {
    padding: 4rem 0 4.5rem;
  }
  .dc-dispatch-stage {
    height: 190px;
  }
  .dc-dispatch-truck {
    width: 110px;
  }
  .dc-dispatch-steps {
    font-size: 0.62rem;
    display: flex;
    align-items: start;
    gap: 12px;
    flex-direction: column;
  }
  .dc-dispatch-route {
    bottom: 40px;
  }
  .dc-dispatch-bag {
    bottom: 82px;
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dc-dispatch-truck {
    left: 46%;
  }
  .dc-dispatch-bag {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
  .dc-dispatch-route-fill {
    width: 46%;
  }
}

.dc-tracking {
  position: relative;
  background: var(--dispatch-ink);
  padding: 6rem 0;
}
.dc-tracking-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3rem;
}
.dc-tracking-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  line-height: 1.16;
  letter-spacing: -0.01em;
  color: var(--dispatch-white);
  margin: 1.2rem 0 0.9rem;
}
.dc-tracking-heading span {
  color: var(--dispatch-red-bright);
}
.dc-tracking-sub {
  color: var(--dispatch-steel);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}
.dc-tracking-panel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.dc-tracking-search-box {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--dispatch-white);
  border-radius: 999px;
  padding: 0.5rem 0.5rem 0.5rem 1.1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  max-width: 480px;
  margin: 0 auto -26px;
}
.dc-tracking-search-icon {
  color: var(--dispatch-card-muted);
  font-size: 1.1rem;
  flex: none;
}
.dc-tracking-search-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-mono);
  font-size: 0.88rem;
  color: var(--dispatch-card-text);
  min-width: 0;
}
.dc-tracking-search-input::placeholder {
  color: var(--dispatch-card-muted);
}
.dc-tracking-search-btn {
  flex: none;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: var(--dispatch-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}
.dc-tracking-search-btn:hover {
  background: var(--dispatch-red-bright);
  transform: scale(1.05);
}
.dc-tracking-search-btn:disabled {
  opacity: 0.6;
  transform: none;
}

.dc-tracking-map {
  position: relative;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 15% 85%,
      rgba(214, 38, 44, 0.14),
      transparent 45%
    ),
    radial-gradient(
      circle at 88% 20%,
      rgba(214, 38, 44, 0.14),
      transparent 45%
    ),
    var(--dispatch-ink-soft);
  border: 1px solid var(--dispatch-dark-line);
  padding-top: 26px;
}
.dc-tracking-map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--dispatch-dark-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--dispatch-dark-line) 1px, transparent 1px);
  background-size: 34px 34px;
  animation: dc-map-drift 18s linear infinite;
}
@keyframes dc-map-drift {
  from {
    background-position:
      0 0,
      0 0;
  }
  to {
    background-position:
      34px 34px,
      34px 34px;
  }
}

.dc-tracking-map-route {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.dc-tracking-map-route path {
  fill: none;
  stroke: var(--dispatch-red);
  stroke-width: 2;
  stroke-dasharray: 6 8;
  opacity: 0.8;
  animation: dc-route-dash 2s linear infinite;
}
@keyframes dc-route-dash {
  to {
    stroke-dashoffset: -28;
  }
}

.dc-tracking-pin {
  position: absolute;
  transform: translate(-50%, -100%);
  color: var(--dispatch-red-bright);
  font-size: 1.3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}
.dc-tracking-pin-ring {
  position: absolute;
  bottom: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--dispatch-red);
  opacity: 0.5;
  animation: dc-icon-ring-pulse 2s ease-out infinite;
}
.dc-tracking-pin-label {
  position: absolute;
  top: -22px;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  color: var(--dispatch-white);
  background: rgba(0, 0, 0, 0.55);
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  white-space: nowrap;
}

.dc-tracking-mover {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  background: var(--dispatch-red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  box-shadow: 0 6px 16px var(--dispatch-red-glow);
  z-index: 3;
  left: 10%;
  top: 85%;
}

.dc-tracking-result {
  margin-top: 1.5rem;
  background: var(--dispatch-white);
  border-radius: 16px;
  padding: 1.6rem 1.8rem;
  color: var(--dispatch-card-text);
  min-height: 84px;
  display: flex;
  align-items: center;
}
.dc-tracking-result-empty {
  margin: 0;
  color: var(--dispatch-card-muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.dc-tracking-result-empty i {
  color: var(--dispatch-red);
}
.dc-tracking-result-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 0.9rem;
}
.dc-tracking-result-id {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 1.05rem;
}
.dc-tracking-result-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--dispatch-red);
  background: rgba(214, 38, 44, 0.09);
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
}
.dc-tracking-result-meta {
  font-size: 0.84rem;
  color: var(--dispatch-card-muted);
  margin: 0;
}
.dc-tracking-result-error {
  color: var(--dispatch-red);
  font-weight: 500;
  margin: 0;
}

@media (max-width: 767.98px) {
  .dc-tracking {
    padding: 4.5rem 0;
  }
  .dc-tracking-map {
    height: 260px;
  }
  .dc-tracking-search-box {
    margin: 0 1rem 20px;
    max-width: none;
  }
  .dc-footer {
    padding: 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .dc-tracking-map-grid {
    animation: none;
  }
  .dc-tracking-map-route path {
    animation: none;
  }
  .dc-tracking-pin-ring {
    animation: none;
  }
}

.dc-cta {
  position: relative;
  background: var(--dispatch-ink-soft);
  overflow: hidden;
  padding: 7rem 0;
  text-align: center;
}
.dc-cta-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    var(--dispatch-red-glow) 0%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.dc-cta-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--dispatch-dark-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--dispatch-dark-line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(
    ellipse 70% 70% at 50% 50%,
    #000 10%,
    transparent 75%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 70% 70% at 50% 50%,
    #000 10%,
    transparent 75%
  );
  opacity: 0.35;
  pointer-events: none;
}
.dc-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}
.dc-cta-eyebrow {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
.dc-cta-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--dispatch-white);
  margin: 1.2rem 0 1rem;
}
.dc-cta-heading span {
  color: var(--dispatch-red-bright);
}
.dc-cta-sub {
  color: var(--dispatch-steel);
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 460px;
  margin: 0 auto 2.2rem;
}
.dc-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
}
.dc-cta-btn {
  min-width: 200px;
  justify-content: center;
}
@media (max-width: 575.98px) {
  .dc-cta {
    padding: 5rem 0;
  }
  .dc-cta-btn {
    min-width: 0;
    width: 100%;
  }
}

/* Reviews  */

.dc-reviews {
  background: var(--dispatch-dark-line);
  color: var(--dispatch-card-text);
  padding: 2rem 0;
  overflow: hidden;
}
.dc-reviews-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3rem;
}
.dc-reviews-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  line-height: 1.16;
  letter-spacing: -0.01em;
  color: var(--dispatch-white);
  margin: 1.2rem 0 0;
}
.dc-reviews-swiper {
  padding: 0.5rem 0.25rem 1rem;
  overflow: visible;
}
.dc-review-card {
  background: #fff;
  border: 1px solid var(--dispatch-card-line);
  border-radius: 16px;
  padding: 1.9rem 1.7rem;
  height: 100%;
  box-shadow: 0 14px 34px rgba(20, 21, 26, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.dc-review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(20, 21, 26, 0.1);
}
.dc-review-stars {
  color: var(--dispatch-red);
  font-size: 0.82rem;
  letter-spacing: 0.15rem;
  margin-bottom: 1.1rem;
}
.dc-review-text {
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--dispatch-card-text);
  margin-bottom: 1.6rem;
  min-height: 96px;
}
.dc-review-client {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.dc-review-client span {
  background-color: var(--dispatch-red-bright);
  height: 44px;
  width: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
}
.dc-review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--dispatch-card-line);
  flex: none;
  background: var(--dispatch-card-line);
}
.dc-review-name {
  font-weight: 600;
  font-size: 0.9rem;
  margin: 0;
  color: var(--dispatch-card-text);
}
.dc-review-role {
  font-size: 0.78rem;
  color: var(--dispatch-card-muted);
  margin: 0;
}
.dc-reviews-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 1.5rem;
}
.dc-reviews-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--dispatch-card-line);
  background: var(--dispatch-white);
  color: var(--dispatch-card-text);
  display: flex;
  color: var(--dispatch-red);
  font-weight: 700;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}
.dc-reviews-arrow:hover {
  border-color: var(--dispatch-red);
  background: var(--dispatch-red);
  color: #fff;
}
.dc-reviews-pagination {
  position: static !important;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  width: auto !important;
}
.dc-reviews-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: var(--dispatch-card-line);
  opacity: 1;
  margin: 0 !important;
  transition:
    background 0.2s ease,
    width 0.2s ease;
}
.dc-reviews-pagination .swiper-pagination-bullet-active {
  background: var(--dispatch-red);
  width: 22px;
  border-radius: 4px;
}
@media (max-width: 767.98px) {
  .dc-reviews {
    padding: 4.5rem 0;
  }
  .dc-review-text {
    min-height: 0;
  }
}

.dc-reviews-swiper {
  overflow: hidden;
  width: 100%;
}

.dc-reviews-swiper .swiper-wrapper {
  align-items: stretch;
}

.dc-reviews-swiper .swiper-slide {
  height: auto;
}

.dc-review-card {
  height: 100%;
}

.dc-review-stars {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #f4b400;
}

.dc-review-rating {
  font-size: 14px;
  font-weight: 600;
  color: #6b7280;
}

/* ==========================================================================
   CONTACT PAGE — form section
   ========================================================================== */
.dc-contact-page {
  background: var(--dispatch-ink);
  padding-bottom: 6rem;
}

.dc-contact-shell {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}

/* ---------- left info panel ---------- */
.dc-contact-info {
  position: relative;
  background: linear-gradient(
    160deg,
    var(--dispatch-ink-soft),
    var(--dispatch-ink)
  );
  padding: 3rem 2.5rem;
  min-height: 100%;
  overflow: hidden;
}
.dc-contact-info-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--dispatch-dark-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--dispatch-dark-line) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.4;
  pointer-events: none;
}
.dc-contact-info-glow {
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    var(--dispatch-red-glow) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.dc-contact-info-inner {
  position: relative;
  z-index: 2;
}

.dc-contact-info-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--dispatch-white);
  margin-bottom: 0.7rem;
}
.dc-contact-info-sub {
  color: var(--dispatch-steel);
  font-size: 0.94rem;
  line-height: 1.6;
  margin-bottom: 2.2rem;
  max-width: 340px;
}

.dc-contact-info-list {
  list-style: none;
  margin: 0 0 2.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.dc-contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}
.dc-contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(214, 38, 44, 0.14);
  color: var(--dispatch-red-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex: none;
}
.dc-contact-info-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dispatch-steel);
  margin: 0 0 0.15rem;
}
.dc-contact-info-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dispatch-white);
  margin: 0;
}

.dc-contact-info-social {
  display: flex;
  gap: 0.6rem;
}
.dc-contact-info-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--dispatch-dark-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dispatch-white);
  font-size: 0.9rem;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}
.dc-contact-info-social a:hover {
  border-color: var(--dispatch-red);
  background: rgba(214, 38, 44, 0.12);
  color: var(--dispatch-red-bright);
}

/* ---------- right form panel ---------- */
.dc-contact-form-panel {
  background-image:
    linear-gradient(var(--dispatch-dark-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--dispatch-dark-line) 1px, transparent 1px);
  padding: 3rem 2.5rem;
}

.dc-form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dispatch-white);
  margin-bottom: 0.4rem;
}
.dc-form-label span {
  color: var(--dispatch-red);
}

.dc-form-control {
  border: 1.5px solid var(--dispatch-card-line);
  border-radius: 10px;
  padding: 0.65rem 0.9rem;
  font-size: 0.92rem;
  color: var(--dispatch-card-text);
  background: #fff;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.dc-form-control:focus {
  border-color: var(--dispatch-red);
  box-shadow: 0 0 0 4px rgba(214, 38, 44, 0.1);
  outline: none;
}
.dc-form-control.is-invalid {
  border-color: var(--dispatch-red);
}
.dc-form-control.is-invalid:focus {
  box-shadow: 0 0 0 4px rgba(214, 38, 44, 0.14);
}

/* ---------- services interested: pill-style radio ---------- */
.dc-service-radio-group {
  display: flex;
  gap: 0.7rem;
}
.dc-service-radio-input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}
.dc-service-radio-label {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.9rem 0.6rem;
  border: 1.5px solid var(--dispatch-card-line);
  border-radius: 12px;
  cursor: pointer;
  color: var(--dispatch-card-muted);
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}
.dc-service-radio-label i {
  font-size: 1.15rem;
  color: var(--dispatch-card-muted);
  transition: color 0.2s ease;
}
.dc-service-radio-input:checked + .dc-service-radio-label {
  border-color: var(--dispatch-red);
  background: rgba(214, 38, 44, 0.06);
  color: var(--dispatch-white);
}
.dc-service-radio-input:checked + .dc-service-radio-label i {
  color: var(--dispatch-red);
}
.dc-service-radio-input:focus-visible + .dc-service-radio-label {
  outline: 2px solid var(--dispatch-red);
  outline-offset: 2px;
}

/* ---------- consent checkbox ---------- */
.dc-form-check {
  position: relative;
  padding-left: 1.9rem;
}
.dc-form-check .form-check-input {
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 1.05rem;
  height: 1.05rem;
  border: 1.5px solid var(--dispatch-card-line);
}
.dc-form-check .form-check-input:checked {
  background-color: var(--dispatch-red);
  border-color: var(--dispatch-red);
}
.dc-form-check .form-check-label {
  font-size: 0.84rem;
  color: var(--dispatch-card-muted);
  line-height: 1.5;
}
.dc-form-check .form-check-label span {
  color: var(--dispatch-red);
}
.dc-form-check .invalid-feedback {
  margin-left: 0;
}

/* ---------- submit button + status ---------- */
.dc-contact-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.dc-form-status {
  margin-top: 1rem;
  font-size: 0.88rem;
  font-weight: 500;
}
.dc-form-status.is-success {
  color: #1a9c5c;
}
.dc-form-status.is-error {
  color: var(--dispatch-red);
}
.dc-page-hero {
  display: block;
  position: relative;
  margin-bottom: 3rem;
  padding-top: calc(var(--nav-height) + 3.5rem);
  padding-bottom: 4rem;
}
@media (max-width: 991.98px) {
  .dc-contact-info {
    padding: 2.5rem 2rem;
  }
  .dc-contact-form-panel {
    padding: 2.5rem 1.75rem;
  }
}
@media (max-width: 575.98px) {
  .dc-page-hero {
    padding-top: calc(var(--nav-height) + 2.5rem);
    padding-bottom: 3rem;
  }
  .dc-service-radio-group {
    flex-direction: column;
  }
}

.dc-hero {
  transform-origin: center top;
  overflow: hidden;
}

.dc-hero-grid,
.dc-hero-glow,
#heroLeft,
#heroRight {
  will-change: transform;
}

.dc-dispatch-truck {
  transform-origin: center center;
  animation: truckIdle 0.6s infinite alternate;
}

@keyframes truckIdle {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-4px);
  }
}

/* CEO Section Styling */

/* ==========================================
   CEO SECTION
========================================== */

/* .dc-ceo {
  position: relative;
  padding: 140px 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(214, 38, 44, 0.16), transparent 28%),
    linear-gradient(135deg, #030611 0%, #0b1224 45%, #050816 100%);
  overflow: hidden;
  z-index: 1;
}

.dc-ceo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 40%, rgba(255, 255, 255, 0.04));
  pointer-events: none;
  opacity: 0.7;
}

.dc-ceo-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.3;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 100%);
}

.dc-ceo-glow {
  width: 680px;
  height: 680px;
  position: absolute;
  right: -260px;
  top: -280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 38, 44, 0.55), rgba(214, 38, 44, 0));
  filter: blur(140px);
  opacity: 0.32;
  animation: glowDrift 8s ease-in-out infinite alternate;
}

.dc-ceo-orb {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(24px);
  pointer-events: none;
}

.dc-ceo-orb.orb-left {
  width: 220px;
  height: 220px;
  left: -90px;
  bottom: -80px;
  background: rgba(214, 38, 44, 0.14);
}

.dc-ceo-orb.orb-right {
  width: 180px;
  height: 180px;
  right: calc(0px - 70px);
  bottom: calc(0px - 70px);
  background: rgba(255, 255, 255, 0.06);
}


.dc-ceo .dc-eyebrow {
  color: #fff;
  margin-bottom: 18px;
}

.dc-ceo-heading {
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 28px;
  letter-spacing: -0.03em;
}

.dc-ceo-heading span {
  color: #ff656a;
  text-shadow: 0 0 24px rgba(255, 101, 106, 0.28);
}

.dc-ceo-quote {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
  padding: 32px 34px;
  border-radius: 24px;
  color: #d8dfea;
  line-height: 1.85;
  margin-bottom: 28px;
  transform: translateZ(0);
}

.dc-ceo-quote::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(214, 38, 44, 0.22);
  pointer-events: none;
}

.dc-quote-icon {
  width: 46px;
  color: #ff6d73;
  margin-bottom: 14px;
  filter: drop-shadow(0 0 12px rgba(255, 109, 115, 0.25));
}



.dc-ceo-sign {
  display: flex;
  align-items: center;
  gap: 16px;
}

.dc-ceo-sign-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #d6262c, #ff6d73);
  box-shadow: 0 14px 30px rgba(214, 38, 44, 0.25);
}

.dc-ceo-signature {
  margin-bottom: 6px;
}

.dc-ceo-signature svg {
  width: 180px;
  height: 44px;
  fill: none;
  stroke: #ff8a8e;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 12px rgba(255, 138, 142, 0.25));
}

.dc-ceo-sign h5 {
  margin: 0;
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.dc-ceo-sign span {
  color: #98a2b3;
  font-size: 15px;
}


.dc-ceo-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(450px, 100%);
  height: min(450px, 100%);
  margin: 0 auto;
  padding: 16px;
  overflow: hidden;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
  transform-style: preserve-3d;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  will-change: transform;
}

.dc-ceo-image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 55%);
  pointer-events: none;
}

.dc-ceo-circle {
  position: absolute;
  inset: 14px;
  border-radius: 32px;
  background: radial-gradient(circle at 30% 20%, #ff7074 0%, #d6262c 32%, #7d1014 100%);
  filter: blur(1px);
  animation: ceoPulse 5s ease-in-out infinite;
}

.dc-ceo-ring {
  position: absolute;
  inset: -18px;
  border-radius: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  pointer-events: none;
}

.dc-ceo-image {
  position: relative;
  z-index: 5;
  max-width: 100%;
  border-radius: 24px;
  transform: translate3d(var(--tx, 0px), var(--ty, 0px), 0) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) scale(1.03);
  transition: transform 0.28s ease-out;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

.dc-ceo-image-wrap.is-tilting .dc-ceo-image {
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.55);
}



.dc-ceo-card {
  position: absolute;
  z-index: 10;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px 18px;
  border-radius: 18px;
  color: #fff;
  width: 176px;
  animation: floatCard 4.4s ease-in-out infinite;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.dc-ceo-card span {
  display: block;
  font-size: 30px;
  color: #ff787d;
  font-weight: 700;
}

.dc-ceo-card small {
  color: #dfe6ef;
  line-height: 1.45;
  display: inline-block;
  margin-top: 3px;
}

.dc-ceo-card {
  top: 8%;
  left: -16px;
}

.card-two {
  right: -12px;
  bottom: 12px;
  top: auto;
  left: auto;
  animation-delay: 2.2s;
  height: 120px;
}


.dc-ceo-stat {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 28px 18px;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.dc-ceo-stat:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 109, 115, 0.55);
  box-shadow: 0 20px 40px rgba(214, 38, 44, 0.18);
}

.dc-ceo-stat h3 {
  color: #fff;
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 8px;
}

.dc-ceo-stat p {
  color: #98a2b3;
  margin: 0;
}


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

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

@keyframes ceoPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.86;
  }

  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}

@keyframes glowDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(0.95);
  }
  100% {
    transform: translate3d(-24px, 28px, 0) scale(1.04);
  }
}


@media (max-width: 991px) {
  .dc-ceo {
    padding: 90px 0;
  }

  .dc-ceo-heading {
    font-size: 42px;
  }

  .dc-ceo-image-wrap {
    max-width: 360px;
    height: 360px;
  }

  .dc-ceo-image {
    width: 280px;
    margin-top: 20px;
  }

  .dc-ceo-card {
    display: none;
  }

  .dc-ceo-stat {
    margin-bottom: 16px;
  }
} */

/* ==========================================================================
   CEO PAGE
   ========================================================================== */
.dc-ceo-hero {
  position: relative;
  background: var(--dispatch-ink);
  padding-top: calc(var(--nav-height) + 3.5rem);
  padding-bottom: 5rem;
  overflow: hidden;
}
.dc-ceo-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--dispatch-dark-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--dispatch-dark-line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(
    ellipse 70% 60% at 30% 20%,
    #000 10%,
    transparent 75%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 70% 60% at 30% 20%,
    #000 10%,
    transparent 75%
  );
  opacity: 0.4;
  pointer-events: none;
}
.dc-ceo-hero-inner {
  position: relative;
  z-index: 2;
}

.dc-ceo-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.14;
  letter-spacing: -0.01em;
  color: var(--dispatch-white);
  margin: 1.1rem 0 1.4rem;
}
.dc-ceo-heading span {
  color: var(--dispatch-red-bright);
}

.dc-ceo-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dispatch-white);
  margin: 0 0 0.2rem;
}
.dc-ceo-title {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--dispatch-red-bright);
  margin: 0 0 1.4rem;
}
.dc-ceo-bio {
  color: var(--dispatch-steel);
  font-size: 0.96rem;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 0 1.1rem;
}
.dc-ceo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

/* ---------- 3D tilt visual ---------- */
.dc-ceo-visual {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
  perspective: 1200px;
}
.dc-ceo-visual-glow {
  position: absolute;
  inset: -15%;
  background: radial-gradient(
    circle,
    var(--dispatch-red-glow) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.dc-ceo-card {
  position: relative;
  z-index: 2;
  border-radius: 22px;
  overflow: hidden;
  transform-style: preserve-3d;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.55);
  will-change: transform;
}
.dc-ceo-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  background: var(--dispatch-ink-soft);
}

.dc-ceo-float {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(16, 16, 21, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--dispatch-dark-line);
  border-radius: 12px;
  padding: 0.6rem 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--dispatch-white);
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
  will-change: transform;
}
.dc-ceo-float i {
  color: var(--dispatch-red-bright);
  font-size: 1rem;
}

.dc-ceo-float-1 {
  top: 8%;
  left: -8%;
}
.dc-ceo-float-2 {
  bottom: 14%;
  right: -10%;
}
.dc-ceo-float-3 {
  bottom: -4%;
  left: 10%;
}

/* Gentle idle bob for touch devices (no mouse to tilt with) */
@media (hover: none) {
  .dc-ceo-float-1 {
    animation: dc-ceo-bob 4s ease-in-out infinite;
  }
  .dc-ceo-float-2 {
    animation: dc-ceo-bob 4.5s ease-in-out infinite 0.5s;
  }
  .dc-ceo-float-3 {
    animation: dc-ceo-bob 5s ease-in-out infinite 1s;
  }
}
@keyframes dc-ceo-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* ---------- Quote section ---------- */
.dc-ceo-quote {
  background: var(--dispatch-ink-soft);
  padding: 5rem 0;
  text-align: center;
}
.dc-ceo-quote-icon {
  font-size: 2.2rem;
  color: var(--dispatch-red);
  margin-bottom: 1rem;
  display: inline-block;
}
.dc-ceo-quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  font-weight: 600;
  line-height: 1.5;
  color: var(--dispatch-white);
  max-width: 780px;
  margin: 0 auto 1.2rem;
}
.dc-ceo-quote-author {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--dispatch-steel);
  margin: 0;
}

/* ---------- Milestones ---------- */
.dc-ceo-milestones {
  background: var(--dispatch-ink);
  padding: 6rem 0;
}
.dc-ceo-milestones-head {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 3rem;
}
.dc-ceo-milestones-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--dispatch-white);
  margin: 1.1rem 0 0;
}
.dc-ceo-milestone {
  border-top: 2px solid var(--dispatch-red);
  padding-top: 1rem;
}
.dc-ceo-milestone-year {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--dispatch-red-bright);
  margin: 0 0 0.5rem;
}
.dc-ceo-milestone-text {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--dispatch-steel);
  margin: 0;
}

@media (max-width: 991.98px) {
  .dc-ceo-float-1 {
    left: 0;
  }
  .dc-ceo-float-2 {
    right: 0;
  }
}
@media (max-width: 575.98px) {
  .dc-ceo-hero {
    padding-top: calc(var(--nav-height) + 2rem);
    padding-bottom: 3.5rem;
  }
  .dc-ceo-float {
    font-size: 0.66rem;
    padding: 0.5rem 0.7rem;
  }
  .dc-ceo-float-1 {
    top: 4%;
  }
  .dc-ceo-float-3 {
    bottom: -6%;
  }
  .dc-ceo-quote {
    padding: 3.5rem 0;
  }
  .dc-ceo-milestones {
    padding: 4.5rem 0;
  }
}


/* About US  */

.dc-about {
  background: var(--dispatch-ink);
  padding: 6rem 0;
}
.dc-about-intro {
  margin-bottom: 4.5rem;
}

.dc-about-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  line-height: 1.14;
  letter-spacing: -0.01em;
  color: var(--dispatch-white);
  margin: 1.2rem 0 1.3rem;
}
.dc-about-heading span {
  color: var(--dispatch-red-bright);
}

.dc-about-text {
  color: var(--dispatch-steel);
  font-size: 0.96rem;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 0 1.1rem;
}

.dc-about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.dc-about-stat {
  background: var(--dispatch-ink-soft);
  border: 1px solid var(--dispatch-dark-line);
  border-radius: 14px;
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
}
.dc-about-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--dispatch-white);
  display: inline;
}
.dc-about-stat-suffix {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--dispatch-red-bright);
}
.dc-about-stat-label {
  font-size: 0.78rem;
  color: var(--dispatch-steel);
  margin-top: 0.4rem;
}

.dc-value-card {
  background: var(--dispatch-ink-soft);
  border: 1px solid var(--dispatch-dark-line);
  border-radius: 14px;
  padding: 1.8rem 1.6rem;
  height: 100%;
  transition:
    border-color 0.25s ease,
    transform 0.25s ease;
}
.dc-value-card:hover {
  border-color: rgba(214, 38, 44, 0.4);
  transform: translateY(-4px);
}
.dc-value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(214, 38, 44, 0.12);
  color: var(--dispatch-red-bright);
  font-size: 1.15rem;
  margin-bottom: 1.1rem;
}
.dc-value-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dispatch-white);
  margin-bottom: 0.5rem;
}
.dc-value-desc {
  font-size: 0.87rem;
  line-height: 1.6;
  color: var(--dispatch-steel);
  margin: 0;
}

@media (max-width: 575.98px) {
  .dc-about {
    padding: 4.5rem 0;
  }
  .dc-about-stats {
    grid-template-columns: 1fr;
  }
}

/* .get-in-touch-container {
  background-color: var(--dispatch-card-muted);
} */

/* =========================================
   INFINITE LOGO MARQUEE
========================================= */
.dc-marquee-section {
  background: var(--dispatch-white);
  padding: 4rem 0;
}
.dc-marquee-section .dc-eyebrow {
  border: 1px solid var(--dispatch-steel);
}
.dc-marquee-section h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  line-height: 1.14;
  letter-spacing: -0.01em;
  color: var(--dispatch-ink);
  margin: 1.2rem 0 3rem 0;
  
}
.dc-marquee-logos {
  width: 100%;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  isolation: isolate;
  padding-bottom: 3rem;
}

/* Soft fade on both edges */
.dc-marquee-logos::before,
.dc-marquee-logos::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 5;
  pointer-events: none;
}

/* .dc-marquee-logos::before {
  left: 0;
  background: linear-gradient(
    to right,
    #e2e2e2a9,
    var(--dispatch-white) 20%,
  );
} */

/* .dc-marquee-logos::after {
  right: 0;
  background: linear-gradient(
    to left,
    var(--bg, #050816),
    transparent
  );
} */

/* Moving track */
.dc-marquee-logos .dc-marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: dcInfiniteMarquee 40s linear infinite;
  will-change: transform;
}

/* Each complete group */
.dc-marquee-logos .dc-marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Logo wrapper */
.dc-marquee-logos .dc-marquee-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-inline: 3rem;
}

/* Logo */
.dc-marquee-logos .dc-marquee-logo img {
  display: block;
  width: auto;
  height: 45px;
  object-fit: contain;
}

/* Separator */
.dc-marquee-logos .dc-marquee-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin: 0 28px;

  color: rgba(255, 255, 255, 0.35);
  font-size: 24px;
  line-height: 1;
}

/* =========================================
   SEAMLESS LOOP
========================================= */

@keyframes dcInfiniteMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

/* =========================================
   HOVER
========================================= */

.dc-marquee-logos:hover .dc-marquee-track {
  animation-play-state: paused;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {
  .dc-marquee-logos::before,
  .dc-marquee-logos::after {
    width: 50px;
  }

  .dc-marquee-logos .dc-marquee-logo img {
    width: 80px;
    height: 38px;
  }

  .dc-marquee-logos .dc-marquee-dot {
    margin: 0 18px;
    font-size: 20px;
  }

  .dc-marquee-logos .dc-marquee-track {
    animation-duration: 50s;
  }
  .dc-marquee-logos .dc-marquee-logo {
    margin-inline: 2rem;
  }
}



/* =========================================
   MERCHANT SUPPORT
========================================= */

.dc-merchant-support {
  position: relative;
  padding: 120px 0;
  background: #050816;
  overflow: hidden;
  isolation: isolate;
}


/* =========================================
   BACKGROUND
========================================= */

.dc-support-grid {
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(
      rgba(255,255,255,.035) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,.035) 1px,
      transparent 1px
    );

  background-size: 60px 60px;

  opacity: .45;

  pointer-events: none;
}


.dc-support-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;

  filter: blur(150px);

  pointer-events: none;

  z-index: -1;
}


.dc-support-glow-1 {
  top: -250px;
  left: -200px;

  background: rgba(214,38,44,.20);
}


.dc-support-glow-2 {
  right: -250px;
  bottom: -300px;

  background: rgba(214,38,44,.12);
}


/* =========================================
   MAIN BOX
========================================= */

.dc-support-box {
  position: relative;

  padding: 75px;

  border-radius: 36px;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,.075),
      rgba(255,255,255,.025)
    );

  border: 1px solid rgba(255,255,255,.10);

  box-shadow:
    0 40px 100px rgba(0,0,0,.35);

  overflow: hidden;
}


.dc-support-line {
  position: absolute;

  top: 0;
  left: 8%;

  width: 84%;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(214,38,44,.8),
      transparent
    );
}


/* =========================================
   EYEBROW
========================================= */

.dc-support-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  margin-bottom: 22px;

  padding: 8px 14px;

  border-radius: 100px;

  border: 1px solid rgba(255,255,255,.10);

  background: rgba(255,255,255,.035);

  color: #aeb5c2;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 2px;
  text-transform: uppercase;
}


.dc-support-status {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #d6262c;

  box-shadow:
    0 0 0 5px rgba(214,38,44,.12),
    0 0 15px rgba(214,38,44,.7);

  animation: dcSupportPulse 2s infinite;
}


/* =========================================
   HEADING
========================================= */

.dc-support-heading {
  max-width: 650px;

  margin: 0 0 24px;

  color: #fff;

  font-size: clamp(44px, 5vw, 72px);

  line-height: .98;

  font-weight: 700;

  letter-spacing: -2.5px;
}


.dc-support-heading span {
  display: block;

  color: #d6262c;
}


/* =========================================
   DESCRIPTION
========================================= */

.dc-support-description {
  max-width: 650px;

  margin-bottom: 42px;

  color: #9da6b5;

  font-size: 17px;

  line-height: 1.8;
}


/* =========================================
   SUPPORT FEATURES
========================================= */

.dc-support-features {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 15px;
}


.dc-support-feature {
  padding: 20px;

  border-radius: 18px;

  background: rgba(255,255,255,.035);

  border: 1px solid rgba(255,255,255,.07);

  transition:
    transform .35s ease,
    border-color .35s ease,
    background .35s ease;
}


.dc-support-feature:hover {
  transform: translateY(-7px);

  background: rgba(214,38,44,.07);

  border-color:
    rgba(214,38,44,.35);
}


.dc-support-feature-icon {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;

  margin-bottom: 18px;

  border-radius: 12px;

  color: #f04449;

  background:
    rgba(214,38,44,.12);

  font-size: 18px;
}


.dc-support-feature h4 {
  margin: 0 0 8px;

  color: #fff;

  font-size: 15px;
  font-weight: 650;
}


.dc-support-feature p {
  margin: 0;

  color: #858e9e;

  font-size: 12px;

  line-height: 1.65;
}


/* =========================================
   VISUAL
========================================= */

.dc-support-visual {
  position: relative;

  min-height: 550px;

  display: flex;

  align-items: center;
  justify-content: center;
}


/* =========================================
   ORBITS
========================================= */

.dc-support-orbit {
  position: absolute;

  border: 1px solid
    rgba(214,38,44,.16);

  border-radius: 50%;

  pointer-events: none;
}


.orbit-one {
  width: 500px;
  height: 500px;

  animation:
    dcOrbitRotate 20s linear infinite;
}


.orbit-two {
  width: 390px;
  height: 390px;

  border-color:
    rgba(255,255,255,.07);

  animation:
    dcOrbitRotate 14s linear infinite reverse;
}


/* =========================================
   MAIN CHAT CARD
========================================= */

.dc-support-main-card {
  position: relative;

  width: min(100%, 390px);

  border-radius: 26px;

  background:
    rgba(13,17,32,.88);

  border: 1px solid
    rgba(255,255,255,.12);

  backdrop-filter: blur(20px);

  box-shadow:
    0 35px 80px rgba(0,0,0,.45);

  overflow: hidden;

  z-index: 5;
}


/* =========================================
   CARD TOP
========================================= */

.dc-support-card-top {
  display: flex;

  align-items: center;

  gap: 12px;

  padding: 20px;

  border-bottom:
    1px solid rgba(255,255,255,.08);
}


.dc-support-avatar {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;

  flex-shrink: 0;

  border-radius: 13px;

  color: #fff;

  background:
    linear-gradient(
      135deg,
      #e3343a,
      #9d1419
    );

  font-size: 19px;
}


.dc-support-card-top > div:nth-child(2) {
  display: flex;

  flex-direction: column;

  gap: 3px;
}


.dc-support-card-label {
  color: #7f8898;

  font-size: 10px;
}


.dc-support-card-top strong {
  color: #fff;

  font-size: 13px;
}


.dc-support-online {
  margin-left: auto;

  display: flex;

  align-items: center;

  gap: 5px;

  color: #7fd89a;

  font-size: 10px;
}


.dc-support-online span {
  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: #43d477;

  box-shadow:
    0 0 10px #43d477;
}


/* =========================================
   CHAT
========================================= */

.dc-support-chat {
  padding: 25px 20px;
}


.dc-chat-message {
  width: fit-content;
  max-width: 88%;

  padding: 13px 15px;

  margin-bottom: 13px;

  border-radius: 15px;

  font-size: 12px;

  line-height: 1.55;
}


.dc-chat-message p {
  margin: 0;
}


.dc-chat-team {
  background:
    rgba(255,255,255,.055);

  color: #cbd1dc;

  border-bottom-left-radius: 5px;
}


.dc-chat-user {
  margin-left: auto;

  color: #fff;

  background:
    #d6262c;

  border-bottom-right-radius: 5px;
}


.dc-chat-name {
  display: block;

  margin-bottom: 5px;

  color: #f04449;

  font-size: 9px;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: .7px;
}


.dc-chat-team small {
  display: block;

  margin-top: 5px;

  color: #747e90;

  font-size: 10px;
}


/* =========================================
   CARD BOTTOM
========================================= */

.dc-support-card-bottom {
  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 16px 20px;

  border-top:
    1px solid rgba(255,255,255,.07);

  color: #8e97a6;

  font-size: 10px;
}


.dc-support-card-bottom span {
  display: flex;

  align-items: center;

  gap: 7px;
}


.dc-support-card-bottom i {
  color: #43d477;
}


/* =========================================
   FLOATING CARDS
========================================= */

.dc-support-floating {
  position: absolute;

  z-index: 10;

  display: flex;

  align-items: center;

  gap: 10px;

  border-radius: 15px;

  background:
    rgba(20,24,39,.88);

  border: 1px solid
    rgba(255,255,255,.11);

  backdrop-filter: blur(15px);

  box-shadow:
    0 20px 45px rgba(0,0,0,.35);
}


/* Update */

.dc-support-update {
  top: 65px;
  right: -5px;

  padding: 12px 15px;

  animation:
    dcFloat 4s ease-in-out infinite;
}


.dc-floating-icon {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 34px;
  height: 34px;

  border-radius: 10px;

  color: #f04449;

  background:
    rgba(214,38,44,.12);
}


.dc-support-update strong,
.dc-support-update span {
  display: block;
}


.dc-support-update strong {
  color: #fff;

  font-size: 11px;
}


.dc-support-update span {
  margin-top: 2px;

  color: #747e90;

  font-size: 9px;
}


/* Help */

.dc-support-help {
  left: -15px;
  bottom: 80px;

  padding: 13px 16px;

  color: #fff;

  animation:
    dcFloat 4s ease-in-out 1.5s infinite;
}


.dc-support-help i {
  color: #f04449;
}


/* =========================================
   BOTTOM MESSAGE
========================================= */

.dc-support-bottom {
  position: relative;

  display: flex;

  align-items: center;

  gap: 18px;

  margin-top: 65px;

  padding: 22px 25px;

  border-radius: 20px;

  background:
    rgba(255,255,255,.035);

  border: 1px solid
    rgba(255,255,255,.07);
}


.dc-support-bottom-icon {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 48px;
  height: 48px;

  flex-shrink: 0;

  border-radius: 14px;

  color: #f04449;

  background:
    rgba(214,38,44,.10);

  font-size: 20px;
}


.dc-support-bottom div:nth-child(2) {
  display: flex;

  flex-direction: column;

  gap: 5px;
}


.dc-support-bottom strong {
  color: #fff;

  font-size: 14px;
}


.dc-support-bottom span {
  color: #7f8898;

  font-size: 12px;
}


.dc-support-arrow {
  margin-left: auto;

  display: flex;

  align-items: center;
  justify-content: center;

  width: 40px;
  height: 40px;

  border-radius: 50%;

  color: #fff;

  background: #d6262c;

  font-size: 16px;
}


/* =========================================
   ANIMATIONS
========================================= */

@keyframes dcSupportPulse {

  0%,
  100% {
    box-shadow:
      0 0 0 5px rgba(214,38,44,.12),
      0 0 15px rgba(214,38,44,.7);
  }

  50% {
    box-shadow:
      0 0 0 9px rgba(214,38,44,.04),
      0 0 25px rgba(214,38,44,.9);
  }

}


@keyframes dcFloat {

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

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

}


@keyframes dcOrbitRotate {

  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 991px) {

  .dc-merchant-support {
    padding: 80px 0;
  }

  .dc-support-box {
    padding: 45px 30px;
  }

  .dc-support-heading {
    font-size: 48px;
  }

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

  .dc-support-visual {
    min-height: 500px;
    margin-top: 20px;
  }

}


@media (max-width: 575px) {

  .dc-merchant-support {
    padding: 60px 0;
  }

  .dc-support-box {
    padding: 35px 20px;

    border-radius: 25px;
  }

  .dc-support-heading {
    font-size: 40px;
    letter-spacing: -1.5px;
  }

  .dc-support-description {
    font-size: 15px;
  }

  .dc-support-visual {
    min-height: 450px;
  }

  .dc-support-main-card {
    width: 100%;
  }

  .dc-support-orbit {
    display: none;
  }

  .dc-support-update {
    top: 30px;
    right: -5px;
  }

  .dc-support-help {
    left: -5px;
    bottom: 30px;
  }

  .dc-support-bottom {
    align-items: flex-start;

    padding: 18px;

    margin-top: 45px;
  }

  .dc-support-bottom strong {
    font-size: 12px;
  }

  .dc-support-bottom span {
    font-size: 10px;
  }

  .dc-support-arrow {
    display: none;
  }

}

/* ==========================================================================
   LEGAL PAGES (Privacy Policy, Terms, etc.)
   ========================================================================== */
.dc-legal{
  background: var(--dispatch-ink);
  padding-bottom: 6rem;
}

/* ---------- sticky table of contents ---------- */
.dc-legal-toc{
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
  display: flex;
  flex-direction: column;
  gap: .55rem;
  border-left: 1px solid var(--dispatch-dark-line);
  padding-left: 1.2rem;
}
.dc-legal-toc-title{
  font-family: var(--font-mono);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--dispatch-steel);
  margin: 0 0 .4rem;
}
.dc-legal-toc a{
  font-size: .85rem;
  color: var(--dispatch-steel);
  transition: color .2s ease;
}
.dc-legal-toc a:hover{ color: var(--dispatch-red-bright); }

/* ---------- policy document ---------- */
.dc-legal-doc{
  background: var(--dispatch-white);
  border-radius: 18px;
  padding: 2.5rem 2.75rem;
  color: var(--dispatch-card-text);
}

.dc-legal-section{
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--dispatch-card-line);
  scroll-margin-top: calc(var(--nav-height) + 1.5rem);
}
.dc-legal-section:last-child{
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.dc-legal-doc h2{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--dispatch-card-text);
  margin-bottom: 1rem;
}
.dc-legal-doc h3{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--dispatch-card-text);
  margin: 1.3rem 0 .6rem;
}
.dc-legal-doc p{
  font-size: .93rem;
  line-height: 1.75;
  color: var(--dispatch-card-muted);
  margin-bottom: 1rem;
}
.dc-legal-doc ul{
  margin: 0 0 1rem;
  padding-left: 1.3rem;
}
.dc-legal-doc li{
  font-size: .93rem;
  line-height: 1.7;
  color: var(--dispatch-card-muted);
  margin-bottom: .4rem;
}
.dc-legal-doc strong{ color: var(--dispatch-card-text); }
.dc-legal-doc code{
  font-family: var(--font-mono);
  font-size: .82rem;
  background: rgba(214,38,44,0.08);
  color: var(--dispatch-red);
  padding: .1rem .4rem;
  border-radius: 4px;
}

.dc-legal-contact-list{
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.dc-legal-contact-list li{
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--dispatch-card-text);
  font-weight: 500;
}
.dc-legal-contact-list i{ color: var(--dispatch-red); }

@media (max-width: 991.98px){
  .dc-legal-toc{
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: .6rem 1.2rem;
    border-left: none;
    border-bottom: 1px solid var(--dispatch-dark-line);
    padding-left: 0;
    padding-bottom: 1.5rem;
    margin-bottom: 1rem;
  }
  .dc-legal-toc-title{ width: 100%; }
}

@media (max-width: 575.98px){
  .dc-legal-doc{ padding: 1.75rem 1.4rem; }
}