/* ==========================================================================
   MOKIM FREIGHT LINK - Global Stylesheet
   Theme: Corporate navy + azure. Font Awesome 5 (local) used for icons only.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design Tokens
   -------------------------------------------------------------------------- */
:root {
  --blue-900: #062a52;
  --blue-800: #0a3a6b;
  --blue-700: #0b4f9e;
  --blue-600: #1263bc;
  --blue-500: #2a7cd6;
  --blue-200: #c2daf5;
  --blue-100: #eaf2fb;
  --blue-50: #f5f9fe;

  --accent: #f58220;
  /* Hover goes lighter, not darker: a deeper orange would drop the contrast
     against --accent-ink below the WCAG AA 4.5:1 minimum. */
  --accent-hover: #f98c2a;
  /* Text and icon colour for anything sitting on an --accent fill.
     Deep navy on orange = 5.5:1, where white would only reach 2.6:1. */
  --accent-ink: #062a52;

  --ink: #16202b;
  --ink-soft: #33465c;
  --muted: #5a6b7d;
  --line: #dde6f0;
  --white: #fff;

  --grad-blue: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-500) 100%);
  --grad-navy: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 100%);

  --shadow-sm: 0 2px 6px rgba(6, 42, 82, 0.07);
  --shadow: 0 6px 22px rgba(6, 42, 82, 0.1);
  --shadow-lg: 0 18px 48px rgba(6, 42, 82, 0.18);

  --r-sm: 6px;
  --r: 10px;
  --r-lg: 16px;
  --r-pill: 999px;

  --wrap: 1200px;
  --header-h: 78px;

  --font: "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* --------------------------------------------------------------------------
   2. Reset & Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16.5px;
  line-height: 1.68;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

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

h1,
h2,
h3,
h4,
h5 {
  margin: 0 0 0.6em;
  line-height: 1.2;
  font-weight: 700;
  color: var(--blue-900);
  letter-spacing: -0.015em;
}

h1 {
  font-size: clamp(2rem, 4.4vw, 3.15rem);
}
h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}
h3 {
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
}
h4 {
  font-size: 1.05rem;
}

p {
  margin: 0 0 1.1em;
}

p:last-child,
ul:last-child {
  margin-bottom: 0;
}

a {
  color: var(--blue-700);
  text-decoration: none;
  transition: color 0.18s var(--ease);
}

a:hover {
  color: var(--blue-600);
}

ul {
  margin: 0 0 1.1em;
  padding-left: 1.15rem;
}

li {
  margin-bottom: 0.45rem;
}

strong {
  color: var(--blue-900);
}

hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 2.5rem 0;
}

/* Accessible focus ring on every interactive element */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 3px;
}

.skip-link {
  position: absolute;
  left: 50%;
  top: -100px;
  transform: translateX(-50%);
  z-index: 2000;
  background: var(--blue-700);
  color: #fff;
  padding: 0.75rem 1.4rem;
  border-radius: 0 0 var(--r) var(--r);
  font-weight: 600;
  transition: top 0.2s var(--ease);
}

.skip-link:focus {
  top: 0;
  color: #fff;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   3. Layout Helpers
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.section--tint {
  background: var(--blue-50);
}

.section--blue-tint {
  background: var(--blue-100);
}

.section-head {
  max-width: 720px;
  margin: 0 auto clamp(2.2rem, 4vw, 3.4rem);
  text-align: center;
}

.section-head--left {
  margin-inline: 0;
  text-align: left;
}

.section-head p {
  color: var(--muted);
  font-size: 1.06rem;
  margin-bottom: 0;
}

.eyebrow {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 0.85rem;
}

.eyebrow--light {
  color: var(--blue-200);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

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

.lead {
  font-size: 1.12rem;
  color: var(--ink-soft);
}

.text-center {
  text-align: center;
}

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.75rem;
  font-family: inherit;
  font-size: 0.97rem;
  font-weight: 700;
  line-height: 1.2;
  border: 2px solid transparent;
  border-radius: var(--r-pill);
  cursor: pointer;
  text-align: center;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease),
    background-color 0.18s var(--ease), color 0.18s var(--ease),
    border-color 0.18s var(--ease);
}

.btn i {
  font-size: 0.95em;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--blue-700);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
  background: var(--blue-600);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn--accent {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: var(--shadow-sm);
}

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

.btn--accent:hover {
  background: var(--accent-hover);
  color: var(--accent-ink);
  box-shadow: var(--shadow);
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.btn--ghost:hover {
  background: #fff;
  color: var(--blue-900);
  border-color: #fff;
}

.btn--outline {
  background: transparent;
  color: var(--blue-700);
  border-color: var(--blue-700);
}

.btn--outline:hover {
  background: var(--blue-700);
  color: #fff;
}

.btn--block {
  width: 100%;
}

.btn--sm {
  padding: 0.65rem 1.25rem;
  font-size: 0.88rem;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--blue-700);
}

.link-arrow i {
  transition: transform 0.18s var(--ease);
}

.link-arrow:hover i {
  transform: translateX(4px);
}

/* Inline text link with a leading chevron */
.link-chevron {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
}

.link-chevron i {
  font-size: 0.8em;
  color: var(--blue-500);
}

/* --------------------------------------------------------------------------
   5. Top Bar
   Removed: the contact strip was only ever visible at <=960px, which is
   backwards for a utility bar. Contact details live in the header (CTA),
   the footer and the contact page instead.
   -------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------
   6. Header / Navigation
   -------------------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.2s var(--ease);
}

.header.is-stuck {
  box-shadow: var(--shadow);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
}

.brand__mark {
  height: 52px;
  width: 52px;
  object-fit: contain;
  border-radius: var(--r-sm);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand__name {
  font-size: 1.16rem;
  font-weight: 800;
  color: var(--blue-900);
  letter-spacing: -0.01em;
}

.brand__tag {
  font-size: 0.71rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--blue-600);
}

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

.nav__link {
  position: relative;
  padding: 0.6rem 0.95rem;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink);
  border-radius: var(--r-sm);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0.95rem;
  right: 0.95rem;
  bottom: 0.3rem;
  height: 3px;
  border-radius: var(--r-pill);
  background: var(--blue-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s var(--ease);
}

.nav__link:hover {
  color: var(--blue-700);
}

.nav__link:hover::after,
.nav__link[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav__link[aria-current="page"] {
  color: var(--blue-700);
}

.header__cta {
  display: none;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: var(--blue-50);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  color: var(--blue-900);
  font-size: 1.15rem;
  cursor: pointer;
}

.nav-toggle:hover {
  background: var(--blue-100);
}

/* --------------------------------------------------------------------------
   7. Hero (home)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  isolation: isolate;
  background: var(--blue-900);
  color: #fff;
  padding: clamp(3.75rem, 8vw, 6.5rem) 0 0;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
      100deg,
      rgba(6, 42, 82, 0.96) 0%,
      rgba(6, 42, 82, 0.88) 45%,
      rgba(11, 79, 158, 0.62) 100%
    ),
    var(--grad-navy);
  background-blend-mode: normal;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.hero__content {
  min-width: 0;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
  padding: 0.42rem 1rem;
  border-radius: var(--r-pill);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.4rem;
}

.hero__badge i {
  color: var(--blue-200);
}

.hero h1 {
  color: #fff;
  margin-bottom: 1rem;
}

.hero h1 .hl {
  color: var(--blue-200);
}

.hero__sub {
  font-size: clamp(1.02rem, 1.5vw, 1.16rem);
  color: #d8e6f7;
  max-width: 34rem;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2.2rem;
}

/* Hero side card */
.hero__card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--r-lg);
  padding: 1.9rem;
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}

.hero__card h2 {
  font-size: 1.28rem;
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hero__card h2 i {
  color: var(--blue-600);
}

.hero__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.3rem;
  display: grid;
  gap: 0.75rem;
}

.hero__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin: 0;
  font-size: 0.96rem;
  color: var(--ink-soft);
}

.hero__list i {
  color: var(--blue-600);
  margin-top: 0.28rem;
  flex-shrink: 0;
}

.hero__routes {
  border-top: 1px dashed var(--line);
  padding-top: 1.1rem;
}

.hero__routes-label {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.7rem;
}

.hero__route {
  display: none;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--blue-800);
}

.hero__route.is-active {
  display: flex;
  animation: routeIn 0.5s var(--ease) both;
}

.hero__route i {
  color: var(--accent);
}

.hero__dots {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.9rem;
}

.hero__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--blue-200);
  cursor: pointer;
  transition: width 0.2s var(--ease), background-color 0.2s var(--ease);
}

.hero__dot.is-active {
  width: 26px;
  border-radius: var(--r-pill);
  background: var(--blue-600);
}

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

/* --------------------------------------------------------------------------
   8. Stat Strip
   -------------------------------------------------------------------------- */
.stats {
  background: var(--grad-navy);
  color: #fff;
  padding: 2.4rem 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat {
  padding: 0.4rem 0.5rem;
}

.stat + .stat {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.stat__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--blue-200);
  font-size: 1.15rem;
  margin-bottom: 0.7rem;
}

.stat__value {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
}

.stat__label {
  font-size: 0.87rem;
  color: var(--blue-200);
  letter-spacing: 0.02em;
}

/* --------------------------------------------------------------------------
   9. Cards
   -------------------------------------------------------------------------- */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.9rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease),
    border-color 0.2s var(--ease);
  height: 100%;
}

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

.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--r);
  background: var(--blue-100);
  color: var(--blue-700);
  font-size: 1.45rem;
  margin-bottom: 1.1rem;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease);
}

.card--hover:hover .card__icon {
  background: var(--blue-700);
  color: #fff;
}

.card h3 {
  margin-bottom: 0.5rem;
}

.card h2 {
  font-size: 1.18rem;
  margin-bottom: 0.5rem;
}

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

/* Card used as a link (services summary grid) */
.card--link {
  display: block;
  color: inherit;
}

.card--link:hover {
  color: inherit;
}

/* Summary grid above the detailed service rows */
.services-summary {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* Numbered value card */
.value-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue-600);
  border-radius: var(--r);
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  height: 100%;
}

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

.value-card__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
}

.value-card__head i {
  color: var(--blue-700);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.value-card h3 {
  font-size: 1.08rem;
  margin: 0;
}

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

/* Filled variant used for the closing call-to-action tile */
.value-card--cta {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--grad-blue);
  border-color: transparent;
}

.value-card--cta:hover {
  transform: none;
  box-shadow: none;
}

/* Vision / Mission feature card */
.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--grad-blue);
}

.feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--grad-blue);
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}

.feature-card h2 {
  font-size: 1.4rem;
}

.feature-card p {
  color: var(--ink-soft);
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   10. About split (image + text)
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.split--reverse .split__media {
  order: 2;
}

.split__media {
  position: relative;
}

.split__media img {
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.split__media--square img {
  aspect-ratio: 1 / 1;
}

.split__badge {
  position: absolute;
  left: -18px;
  bottom: -22px;
  background: var(--grad-blue);
  color: #fff;
  border-radius: var(--r);
  padding: 1.05rem 1.4rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
  line-height: 1.1;
}

.split__badge strong {
  display: block;
  font-size: 1.7rem;
  color: #fff;
  font-weight: 800;
}

.split__badge span {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-200);
  font-weight: 600;
}

/* Checklist */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 1.6rem;
  display: grid;
  gap: 0.7rem;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin: 0;
  color: var(--ink-soft);
}

.checklist i {
  color: var(--blue-600);
  margin-top: 0.32rem;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   11. Services carousel (home)
   -------------------------------------------------------------------------- */
.carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  background: var(--white);
  touch-action: pan-y;
}

.carousel__track {
  display: flex;
  transition: transform 0.55s var(--ease);
}

.carousel.is-dragging .carousel__track {
  transition: none;
}

.slide {
  flex: 0 0 100%;
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--white);
}

.slide__media {
  position: relative;
  min-height: 380px;
  background: var(--blue-900);
}

.slide__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.slide__body {
  padding: clamp(1.75rem, 3.5vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slide__tag {
  display: inline-block;
  align-self: flex-start;
  background: var(--blue-100);
  color: var(--blue-700);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: var(--r-pill);
  margin-bottom: 1rem;
}

.slide__body h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  margin-bottom: 1.2rem;
}

.slide__service {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.9rem 0;
  border-top: 1px solid var(--line);
}

.slide__service:last-of-type {
  border-bottom: 1px solid var(--line);
}

.slide__service i {
  color: var(--blue-600);
  font-size: 1.15rem;
  margin-top: 0.28rem;
  flex-shrink: 0;
}

.slide__service h4 {
  margin: 0 0 0.2rem;
  color: var(--blue-800);
  font-size: 1.02rem;
}

.slide__service p {
  margin: 0;
  font-size: 0.93rem;
  color: var(--muted);
}

.slide__cta {
  margin-top: 1.5rem;
}

/* Carousel controls */
.carousel__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
}

.carousel__arrows {
  display: flex;
  gap: 0.6rem;
}

.carousel__arrow {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--blue-700);
  font-size: 1.05rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background-color 0.18s var(--ease), color 0.18s var(--ease),
    border-color 0.18s var(--ease), transform 0.18s var(--ease);
}

.carousel__arrow:hover {
  background: var(--blue-700);
  border-color: var(--blue-700);
  color: #fff;
  transform: translateY(-2px);
}

.carousel__dots {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.carousel__dots li {
  margin: 0;
}

.carousel__dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: var(--r-pill);
  background: var(--blue-200);
  cursor: pointer;
  transition: width 0.25s var(--ease), background-color 0.25s var(--ease);
}

.carousel__dot.is-active {
  width: 32px;
  background: var(--blue-700);
}

/* --------------------------------------------------------------------------
   12. Cross-border corridors
   -------------------------------------------------------------------------- */
.route-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  overflow: hidden;
  height: 100%;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.route-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-blue);
}

.route-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.route-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--blue-700);
  font-size: 1.4rem;
  margin-bottom: 1.1rem;
}

.route-card h3 {
  font-size: 1.08rem;
  margin-bottom: 0.8rem;
}

.route-card__path {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.3rem;
  font-weight: 700;
  color: var(--blue-800);
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
}

.route-card__path span {
  padding: 0.2rem 0.55rem;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--r-sm);
  white-space: nowrap;
}

.route-card__path i {
  color: var(--blue-500);
  font-size: 0.75rem;
}

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

/* --------------------------------------------------------------------------
   13. Page banner (inner pages)
   -------------------------------------------------------------------------- */
.page-banner {
  position: relative;
  isolation: isolate;
  background: var(--grad-navy);
  color: #fff;
  padding: clamp(3rem, 6vw, 4.75rem) 0;
  overflow: hidden;
}

.page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(
      circle at 88% 18%,
      rgba(42, 124, 214, 0.42) 0%,
      transparent 46%
    ),
    radial-gradient(
      circle at 8% 92%,
      rgba(42, 124, 214, 0.3) 0%,
      transparent 42%
    );
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.06;
  background-image: linear-gradient(
      45deg,
      #fff 25%,
      transparent 25%,
      transparent 75%,
      #fff 75%
    ),
    linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%);
  background-size: 34px 34px;
  background-position: 0 0, 17px 17px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  font-size: 0.88rem;
}

.breadcrumb li {
  margin: 0;
  color: var(--blue-200);
}

.breadcrumb i {
  font-size: 0.72rem;
  opacity: 0.7;
}

.breadcrumb a {
  color: var(--blue-200);
}

.breadcrumb a:hover {
  color: #fff;
  text-decoration: underline;
}

.breadcrumb [aria-current="page"] {
  color: #fff;
  font-weight: 600;
}

.page-banner h1 {
  color: #fff;
  margin-bottom: 0.7rem;
}

.page-banner__lead {
  color: #cfdff3;
  max-width: 44rem;
  font-size: 1.1rem;
  margin: 0;
}

/* --------------------------------------------------------------------------
   14. Service detail rows (services page)
   -------------------------------------------------------------------------- */
.service-row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: clamp(1.25rem, 3vw, 2.25rem);
  padding: clamp(1.75rem, 3vw, 2.5rem) 0;
  border-top: 1px solid var(--line);
  align-items: start;
}

.service-row:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.service-row__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: var(--r);
  background: var(--grad-blue);
  color: #fff;
  font-size: 2.1rem;
  box-shadow: var(--shadow-sm);
}

.service-row h3 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 0.7rem;
}

.service-row__num {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--blue-500);
  background: var(--blue-100);
  padding: 0.2rem 0.6rem;
  border-radius: var(--r-pill);
}

.service-row p {
  color: var(--ink-soft);
  max-width: 46rem;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0.9rem 0 0;
}

.pill-list li {
  margin: 0;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--blue-800);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  padding: 0.32rem 0.8rem;
  border-radius: var(--r-pill);
}

/* Inline corridor list */
.corridor-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.6rem;
}

.corridor-list li {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--r);
  padding: 0.7rem 1rem;
  font-weight: 600;
  color: var(--blue-800);
}

.corridor-list i {
  color: var(--blue-600);
}

/* Process steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}

.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2rem 1.5rem 1.6rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  height: 100%;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.step__num {
  counter-increment: step;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--blue-700);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease);
}

.step__num::before {
  content: counter(step, decimal-leading-zero);
}

.step:hover .step__num {
  background: var(--blue-700);
  color: #fff;
}

.step__icon {
  color: var(--blue-500);
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  display: block;
}

.step h3 {
  font-size: 1.04rem;
  margin-bottom: 0.4rem;
}

.step p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}

/* --------------------------------------------------------------------------
   15. Data table (corporate info)
   -------------------------------------------------------------------------- */
.info-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.info-table caption {
  text-align: left;
  padding: 1.3rem 1.6rem;
  background: var(--grad-blue);
  color: #fff;
  font-weight: 700;
  font-size: 1.08rem;
}

.info-table th,
.info-table td {
  text-align: left;
  padding: 0.95rem 1.6rem;
  border-top: 1px solid var(--line);
  vertical-align: top;
}

.info-table tbody tr:nth-child(odd) {
  background: var(--blue-50);
}

.info-table th {
  width: 38%;
  font-weight: 700;
  color: var(--blue-900);
  font-size: 0.93rem;
  letter-spacing: 0.01em;
}

.info-table td {
  color: var(--ink-soft);
}

.info-table a {
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   16. Contact page
   -------------------------------------------------------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(1.75rem, 3.5vw, 3rem);
  align-items: start;
}

.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.panel__head {
  background: var(--grad-blue);
  color: #fff;
  padding: 1.4rem 1.75rem;
}

.panel__head h2 {
  color: #fff;
  font-size: 1.22rem;
  margin: 0;
}

.panel__head p {
  margin: 0.35rem 0 0;
  font-size: 0.92rem;
  color: #dbe9fa;
}

.panel__body {
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

/* Form */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--blue-900);
}

.field label .req {
  color: #c0392b;
  margin-left: 0.15rem;
}

.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 0.97rem;
  color: var(--ink);
  background: var(--blue-50);
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  padding: 0.75rem 0.95rem;
  transition: border-color 0.18s var(--ease), background-color 0.18s var(--ease),
    box-shadow 0.18s var(--ease);
  width: 100%;
}

.field textarea {
  resize: vertical;
  min-height: 130px;
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%230b4f9e' d='M8 11.5 2.5 6h11z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 14px;
  padding-right: 2.4rem;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: var(--blue-200);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(18, 99, 188, 0.13);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #93a3b5;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: #c0392b;
  background: #fdf1ef;
}

.field__error {
  display: none;
  font-size: 0.82rem;
  color: #c0392b;
  font-weight: 600;
}

.field.has-error .field__error {
  display: block;
}

.form-note {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin: 1.25rem 0 0;
  padding: 0.85rem 1rem;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--r);
  font-size: 0.87rem;
  color: var(--ink-soft);
}

.form-note i {
  color: var(--blue-600);
  margin-top: 0.22rem;
}

/* Contact detail cards */
.info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
}

.info-card:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.info-card:first-child {
  padding-top: 0;
}

.info-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: var(--r);
  background: var(--blue-100);
  color: var(--blue-700);
  font-size: 1.1rem;
}

.info-card__body h3 {
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.info-card__body p,
.info-card__body a {
  margin: 0;
  color: var(--blue-800);
  font-size: 1rem;
  line-height: 1.5;
}

.info-card__body a {
  font-weight: 600;
  word-break: break-word;
}

.info-card__body a:hover {
  text-decoration: underline;
}

.info-card__body small {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 0.15rem;
}

/* Stacked button group (contact sidebar) */
.button-stack {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

/* Centred paragraph beneath a block (e.g. the map link) */
.center-cta {
  margin: 1.5rem 0 0;
}

/* WhatsApp accent */
.btn--whatsapp {
  background: #25d366;
  color: #05391a;
}

.btn--whatsapp:hover {
  background: #1eb759;
  color: #05391a;
}

/* Map */
.map-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  background: var(--blue-50);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}

/* --------------------------------------------------------------------------
   17. CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  isolation: isolate;
  background: var(--grad-navy);
  color: #fff;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  overflow: hidden;
  text-align: center;
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(
      circle at 15% 25%,
      rgba(42, 124, 214, 0.4) 0%,
      transparent 45%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(42, 124, 214, 0.32) 0%,
      transparent 48%
    );
}

.cta-band h2 {
  color: #fff;
  margin-bottom: 0.7rem;
}

.cta-band p {
  color: #cfdff3;
  max-width: 42rem;
  margin: 0 auto 1.9rem;
  font-size: 1.08rem;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
}

.cta-band__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  justify-content: center;
  margin-top: 2.2rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.92rem;
  color: var(--blue-200);
}

.cta-band__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-band__meta i {
  color: var(--blue-500);
}

/* --------------------------------------------------------------------------
   18. Footer
   -------------------------------------------------------------------------- */
.footer {
  background: var(--blue-900);
  color: #b8cce6;
  padding: clamp(3rem, 6vw, 4.5rem) 0 0;
  font-size: 0.95rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer .brand__name {
  color: #fff;
}

.footer .brand__tag {
  color: var(--blue-500);
}

.footer__about {
  margin: 1.1rem 0 1.3rem;
  max-width: 26rem;
  color: #a8bfdc;
  font-size: 0.93rem;
}

.footer h3 {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.footer__list li {
  margin: 0;
}

/* Footer links. Scoped with :not(.btn) because these rules are more specific
   than the .btn classes and would otherwise repaint button text and icons. */
.footer a:not(.btn) {
  color: #b8cce6;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.footer a:not(.btn):hover {
  color: #fff;
}

.footer a:not(.btn) i {
  color: var(--blue-500);
  width: 16px;
  flex-shrink: 0;
}

.footer__contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

.footer__contact li {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: #b8cce6;
}

.footer__contact i {
  color: var(--blue-500);
  margin-top: 0.35rem;
  flex-shrink: 0;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.4rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  font-size: 0.87rem;
  color: #8fa9c9;
}

.footer__copy {
  margin: 0;
}

.footer__credit-sep {
  margin: 0 0.5rem;
  opacity: 0.6;
}

.footer__credit a {
  color: var(--blue-200);
  font-weight: 600;
}

.footer__credit a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
}

.footer__legal span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.footer__legal i {
  color: var(--blue-500);
}

/* --------------------------------------------------------------------------
   19. Scroll reveal
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

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

.reveal-d1 {
  transition-delay: 0.08s;
}
.reveal-d2 {
  transition-delay: 0.16s;
}
.reveal-d3 {
  transition-delay: 0.24s;
}

/* --------------------------------------------------------------------------
   20. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 960px) {
  /* --- Mobile navigation --- */
  .nav-toggle {
    display: inline-flex;
  }

  .header__inner {
    min-height: 68px;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: block;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 24px 1.25rem;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transition: max-height 0.32s var(--ease), opacity 0.24s var(--ease),
      visibility 0.32s var(--ease);
  }

  .nav.is-open {
    max-height: 460px;
    overflow-y: auto;
    visibility: visible;
    opacity: 1;
  }

  .nav__link {
    display: block;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
    border-radius: 0;
  }

  .nav__link::after {
    display: none;
  }

  .nav__link[aria-current="page"] {
    color: var(--blue-700);
  }

  .header__cta {
    display: inline-flex;
    margin-top: 1rem;
  }

  .nav .header__cta {
    display: inline-flex;
    width: 100%;
  }

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

  .hero__sub {
    max-width: none;
  }

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

  .split--reverse .split__media {
    order: 0;
  }

  .split__media {
    max-width: 560px;
  }

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

  .slide__media {
    min-height: 260px;
  }

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

  .service-row {
    grid-template-columns: 72px 1fr;
  }

  .service-row__icon {
    width: 72px;
    height: 72px;
    font-size: 1.7rem;
  }
}

@media (max-width: 768px) {
  .grid--3,
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem 1rem;
  }

  .stat:nth-child(3) {
    border-left: 0;
  }

  .stat {
    border-left: 0;
  }

  .stat:nth-child(even) {
    border-left: 1px solid rgba(255, 255, 255, 0.16);
  }

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

  .info-table th {
    width: 44%;
  }

  .brand__mark {
    height: 44px;
    width: 44px;
  }

  .brand__name {
    font-size: 1.02rem;
  }

  .brand__tag {
    font-size: 0.64rem;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }

  .wrap {
    padding-inline: 18px;
  }

  .grid--2,
  .grid--3,
  .grid--4,
  .steps {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3rem 0;
  }

  .card,
  .feature-card {
    padding: 1.5rem;
  }

  .hero__card {
    padding: 1.5rem;
  }

  .hero__actions .btn {
    width: 100%;
  }

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

  .stat + .stat {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .stat:nth-child(even) {
    border-left: 0;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom {
    justify-content: center;
    text-align: center;
  }

  .info-table th,
  .info-table td {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }

  /* Stack the table label above its value on very small screens */
  .info-table,
  .info-table tbody,
  .info-table tr,
  .info-table th,
  .info-table td {
    display: block;
  }

  .info-table tr {
    border-top: 1px solid var(--line);
    padding: 0.35rem 0;
  }

  .info-table th {
    width: auto;
    border: 0;
    padding-bottom: 0.15rem;
  }

  .info-table td {
    border: 0;
    padding-top: 0;
  }

  .split__badge {
    left: 12px;
    bottom: -14px;
    padding: 0.8rem 1.1rem;
  }

  .split__badge strong {
    font-size: 1.35rem;
  }

  .cta-band__actions .btn {
    width: 100%;
  }

  .carousel__nav {
    flex-direction: column-reverse;
    align-items: center;
  }
}

/* --------------------------------------------------------------------------
   21. Motion & Print Preferences
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

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

@media print {
  .header,
  .footer,
  .cta-band,
  .nav-toggle,
  .carousel__nav,
  .map-frame {
    display: none !important;
  }

  body {
    color: #000;
  }

  .section {
    padding: 1.5rem 0;
  }
}
