/* ==========================================================================
   Mogadishu Shipping & Cargo LLC
   style.css  —  main design system
   Palette is taken straight from the company seal:
   navy rope ring, ocean blue, container red/amber, and the green wave.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Brand colours */
  --navy-900: #061B39;
  --navy-800: #0B2C5E;
  --navy-700: #123C7C;
  --blue-600: #0F63C4;
  --blue-500: #1272D6;
  --blue-400: #3D93EA;
  --blue-200: #A8CCF3;
  --sky-100:  #E8F1FB;
  --paper:    #F5F8FC;

  /* Container accents (from the stacked containers in the logo) */
  --rust:  #D93B2B;
  --amber: #F0A500;
  --green: #2FA84F;

  /* Neutrals */
  --ink:   #0E1726;
  --slate: #55677F;
  --line:  #DCE6F2;
  --white: #FFFFFF;

  /* Type */
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "IBM Plex Sans", -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Shape & depth */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --shadow-sm: 0 2px 10px rgba(11, 44, 94, .07);
  --shadow-md: 0 12px 30px rgba(11, 44, 94, .10);
  --shadow-lg: 0 24px 60px rgba(6, 27, 57, .18);

  /* Rhythm */
  --section-y: 96px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* --------------------------------------------------------------------------
   2. BASE
   -------------------------------------------------------------------------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--slate);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .display-font {
  font-family: var(--font-display);
  color: var(--navy-800);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: .005em;
}

h1 { font-size: clamp(2.6rem, 5.4vw, 4.4rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.7rem); }
h4 { font-size: 1.2rem; }

p { max-width: 68ch; }

a { color: var(--blue-600); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--navy-800); }

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

.section { padding: var(--section-y) 0; }
.section-tight { padding: calc(var(--section-y) * .66) 0; }
.bg-paper { background: var(--paper); }
.bg-navy  { background: var(--navy-900); color: rgba(255,255,255,.78); }
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4 { color: #fff; }

.text-brand { color: var(--blue-600); }
.lead-text { font-size: 1.08rem; color: var(--slate); }

/* Keyboard focus — visible everywhere */
:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
  border-radius: 4px;
}

/* --------------------------------------------------------------------------
   3. SIGNATURE DEVICE — the container stripe
   Four short bars in the container colours. Used instead of a generic
   all-caps eyebrow label. It ties every section back to the logo.
   -------------------------------------------------------------------------- */
.stripe {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}
.stripe span {
  display: block;
  width: 22px;
  height: 5px;
  border-radius: 2px;
}
.stripe span:nth-child(1) { background: var(--rust); }
.stripe span:nth-child(2) { background: var(--amber); }
.stripe span:nth-child(3) { background: var(--blue-500); }
.stripe span:nth-child(4) { background: var(--green); }
.stripe.center { justify-content: center; }

.section-head { margin-bottom: 52px; }
.section-head p { color: var(--slate); }
.section-head.center { text-align: center; }
.section-head.center p { margin-left: auto; margin-right: auto; }

/* --------------------------------------------------------------------------
   4. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  border-radius: var(--r-sm);
  padding: .82rem 1.7rem;
  border: 2px solid transparent;
  transition: all .28s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}
.btn i { font-size: 1.05em; transition: transform .28s var(--ease); }

.btn-brand {
  background: var(--blue-500);
  border-color: var(--blue-500);
  color: #fff;
  box-shadow: 0 6px 18px rgba(18, 114, 214, .32);
}
.btn-brand:hover, .btn-brand:focus {
  background: var(--navy-800);
  border-color: var(--navy-800);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(11, 44, 94, .34);
}
.btn-brand:hover i { transform: translateX(3px); }

.btn-amber {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--navy-900);
}
.btn-amber:hover, .btn-amber:focus {
  background: #d89400; border-color: #d89400;
  color: var(--navy-900); transform: translateY(-2px);
}

.btn-outline-brand {
  background: transparent;
  border-color: var(--blue-400);
  color: var(--navy-800);
}
.btn-outline-brand:hover, .btn-outline-brand:focus {
  background: var(--navy-800); border-color: var(--navy-800); color: #fff;
}

.btn-ghost-light {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.45);
  color: #fff;
  backdrop-filter: blur(6px);
}
.btn-ghost-light:hover, .btn-ghost-light:focus {
  background: #fff; border-color: #fff; color: var(--navy-800);
}

.btn-lg { padding: 1rem 2.1rem; font-size: 1.02rem; }

/* --------------------------------------------------------------------------
   5. PAGE LOADER
   -------------------------------------------------------------------------- */
#loader {
  position: fixed; inset: 0; z-index: 3000;
  background: var(--navy-900);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 26px;
  transition: opacity .5s ease, visibility .5s ease;
}
#loader.done { opacity: 0; visibility: hidden; }
#loader img { width: 88px; border-radius: 50%; }
.loader-track {
  width: 190px; height: 4px; border-radius: 4px;
  background: rgba(255,255,255,.16); overflow: hidden;
}
.loader-track b {
  display: block; height: 100%; width: 40%; border-radius: 4px;
  background: linear-gradient(90deg, var(--amber), var(--blue-400), var(--green));
  animation: loaderSlide 1.1s infinite var(--ease);
}
@keyframes loaderSlide {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(340%); }
}

/* --------------------------------------------------------------------------
   6. HEADER — top bar + navbar
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--navy-900);
  color: rgba(255,255,255,.72);
  font-size: .85rem;
  padding: 9px 0;
}
.topbar a { color: rgba(255,255,255,.72); }
.topbar a:hover { color: #fff; }
.topbar i { color: var(--blue-400); margin-right: 6px; }
.topbar .social a {
  width: 28px; height: 28px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.09);
  transition: background .25s var(--ease);
}
.topbar .social a:hover { background: var(--blue-500); }
.topbar .social i { margin: 0; color: #fff; }

.site-nav {
  background: #fff;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease), padding .3s var(--ease);
}
.site-nav.scrolled {
  padding: 8px 0;
  box-shadow: 0 6px 24px rgba(11, 44, 94, .13);
  border-bottom-color: transparent;
}
.site-nav .navbar-brand { display: flex; align-items: center; gap: 12px; padding: 0; }
.site-nav .navbar-brand img { width: 54px; height: 54px; border-radius: 50%; transition: width .3s var(--ease), height .3s var(--ease); }
.site-nav.scrolled .navbar-brand img { width: 46px; height: 46px; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.32rem;
  color: var(--navy-800);
  line-height: 1.05;
  display: block;
}
.brand-tag {
  font-size: .68rem;
  letter-spacing: .16em;
  color: var(--blue-500);
  font-weight: 600;
}

.site-nav .nav-link {
  font-weight: 600;
  font-size: .95rem;
  color: var(--navy-800);
  padding: .55rem .95rem !important;
  position: relative;
}
.site-nav .nav-link::after {
  content: "";
  position: absolute;
  left: .95rem; right: .95rem; bottom: .18rem;
  height: 3px; border-radius: 3px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.site-nav .nav-link:hover::after,
.site-nav .nav-link.active::after { transform: scaleX(1); }
.site-nav .nav-link.active { color: var(--blue-600); }

.site-nav .dropdown-menu {
  border: none;
  border-top: 3px solid var(--blue-500);
  border-radius: 0 0 var(--r-md) var(--r-md);
  box-shadow: var(--shadow-md);
  padding: 10px;
  min-width: 250px;
}
.site-nav .dropdown-item {
  border-radius: var(--r-sm);
  font-size: .92rem;
  font-weight: 500;
  padding: .5rem .8rem;
  color: var(--navy-800);
}
.site-nav .dropdown-item:hover { background: var(--sky-100); color: var(--blue-600); }
.site-nav .dropdown-item i { color: var(--blue-500); margin-right: 8px; }

.navbar-toggler { border: 2px solid var(--line); padding: .4rem .6rem; }
.navbar-toggler:focus { box-shadow: none; }

@media (max-width: 991.98px) {
  .site-nav .navbar-collapse {
    margin-top: 14px;
    border-top: 1px solid var(--line);
    padding-top: 10px;
    max-height: 76vh;
    overflow-y: auto;
  }
  .site-nav .nav-link::after { display: none; }
  .site-nav .nav-item { border-bottom: 1px solid var(--paper); }
  .site-nav .nav-cta { margin-top: 12px; }
}

/* --------------------------------------------------------------------------
   7. HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 120px 0 170px;
  overflow: hidden;
  background: var(--navy-900);
}
.hero-media { position: absolute; inset: 0; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  animation: heroDrift 26s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.06) translate3d(0,0,0); }
  to   { transform: scale(1.16) translate3d(-2%, -1.5%, 0); }
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(6,27,57,.94) 0%, rgba(6,27,57,.80) 46%, rgba(11,44,94,.42) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero h1 { color: #fff; max-width: 15ch; }
.hero .slogan {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--amber);
  letter-spacing: .02em;
  margin-bottom: 10px;
}
.hero p.intro {
  color: rgba(255,255,255,.82);
  font-size: 1.1rem;
  max-width: 54ch;
  margin: 22px 0 34px;
}

/* quick track box sitting inside the hero */
.quick-track {
  margin-top: 44px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(10px);
  border-radius: var(--r-md);
  padding: 16px;
  max-width: 560px;
}
.quick-track label {
  color: rgba(255,255,255,.72);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  margin-bottom: 8px;
  display: block;
}
.quick-track .track-row { display: flex; gap: 10px; }
.quick-track .track-row input { flex: 1 1 auto; min-width: 0; }
.quick-track input {
  border: none; border-radius: var(--r-sm);
  padding: .8rem 1rem; font-size: .95rem; width: 100%;
}
.quick-track input:focus { outline: 3px solid var(--amber); }

/* wave divider at the bottom of the hero */
.hero-wave {
  position: absolute; left: 0; right: 0; bottom: -1px; z-index: 2;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 90px; display: block; }

/* --------------------------------------------------------------------------
   8. STATS BAR
   -------------------------------------------------------------------------- */
.stats-bar {
  position: relative;
  z-index: 3;
  margin-top: -78px;
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.stats-bar .stat {
  padding: 38px 24px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.stats-bar .col-6:last-child .stat,
.stats-bar .col-lg-3:last-child .stat { border-right: none; }
.stat i {
  font-size: 1.9rem;
  color: var(--blue-500);
  display: block;
  margin-bottom: 10px;
}
.stat .num {
  font-family: var(--font-display);
  font-size: 2.9rem;
  font-weight: 700;
  color: var(--navy-800);
  line-height: 1;
}
.stat .num-label { font-size: .93rem; font-weight: 500; margin-top: 6px; }

@media (max-width: 991.98px) {
  .stats-bar { margin-top: -60px; }
  .stats-bar .stat { border-right: none; border-bottom: 1px solid var(--line); }
}

/* --------------------------------------------------------------------------
   9. ABOUT PREVIEW
   -------------------------------------------------------------------------- */
.about-media { position: relative; }
.about-media .shot-main {
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.about-media .shot-sub {
  position: absolute;
  right: -22px; bottom: -30px;
  width: 55%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 8px solid #fff;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
}
.about-media .badge-years {
  position: absolute;
  left: -18px; top: 34px;
  background: var(--navy-800);
  color: #fff;
  border-radius: var(--r-md);
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-media .badge-years b {
  font-family: var(--font-display);
  font-size: 2.3rem; display: block; line-height: 1;
}
.about-media .badge-years span { font-size: .78rem; opacity: .8; }

.check-list { list-style: none; padding: 0; margin: 26px 0 32px; }
.check-list li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 9px 0; font-weight: 500; color: var(--ink);
}
.check-list i { color: var(--green); font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }

@media (max-width: 767.98px) {
  .about-media { margin-bottom: 56px; }
  .about-media .shot-sub { right: 0; bottom: -34px; width: 48%; }
  .about-media .badge-years { left: 0; }
}

/* --------------------------------------------------------------------------
   10. SERVICE CARDS
   -------------------------------------------------------------------------- */
.svc-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 34px 28px;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.svc-card::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--amber), var(--blue-500), var(--green));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .4s var(--ease);
}
.svc-card:hover, .svc-card:focus-within {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.svc-card:hover::before, .svc-card:focus-within::before { transform: scaleY(1); }

.svc-icon {
  width: 62px; height: 62px;
  border-radius: 16px;
  background: var(--sky-100);
  color: var(--blue-600);
  display: grid; place-items: center;
  font-size: 1.7rem;
  margin-bottom: 20px;
  transition: background .35s var(--ease), color .35s var(--ease), transform .35s var(--ease);
}
.svc-card:hover .svc-icon {
  background: var(--blue-500); color: #fff;
  transform: rotate(-6deg) scale(1.06);
}
.svc-card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.svc-card p { font-size: .95rem; margin-bottom: 16px; }
.svc-link { font-weight: 600; font-size: .9rem; display: inline-flex; align-items: center; gap: 6px; }
.svc-link i { transition: transform .3s var(--ease); }
.svc-card:hover .svc-link i { transform: translateX(5px); }

/* --------------------------------------------------------------------------
   11. WHY CHOOSE US (dark band)
   -------------------------------------------------------------------------- */
.why-item {
  display: flex; gap: 18px;
  padding: 24px;
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.035);
  height: 100%;
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.why-item:hover {
  background: rgba(255,255,255,.075);
  border-color: rgba(61,147,234,.5);
  transform: translateY(-5px);
}
.why-item i {
  font-size: 1.7rem; color: var(--amber); flex-shrink: 0; line-height: 1.2;
}
.why-item h4 { color: #fff; margin-bottom: 6px; font-size: 1.22rem; }
.why-item p { font-size: .93rem; color: rgba(255,255,255,.66); margin: 0; }

/* --------------------------------------------------------------------------
   12. SHIPPING PROCESS
   -------------------------------------------------------------------------- */
.process-rail { position: relative; }
.process-rail::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 40px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--blue-200) 0 10px, transparent 10px 20px);
}
.process-step { text-align: center; position: relative; padding: 0 8px; }
.process-step .dot {
  width: 80px; height: 80px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--blue-200);
  color: var(--blue-600);
  display: grid; place-items: center;
  font-size: 1.6rem;
  position: relative;
  transition: all .35s var(--ease);
}
.process-step .dot b {
  position: absolute; right: -4px; top: -4px;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--navy-800); color: #fff;
  font-family: var(--font-display); font-size: .95rem;
  display: grid; place-items: center;
}
.process-step:hover .dot {
  background: var(--blue-500); border-color: var(--blue-500); color: #fff;
  transform: translateY(-6px);
  box-shadow: 0 12px 26px rgba(18,114,214,.3);
}
.process-step h4 { font-size: 1.12rem; margin-bottom: 4px; }
.process-step p { font-size: .87rem; margin: 0; }

@media (max-width: 991.98px) { .process-rail::before { display: none; } }

/* --------------------------------------------------------------------------
   13. DESTINATION CARDS
   -------------------------------------------------------------------------- */
.dest-card {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  display: block;
  height: 300px;
  box-shadow: var(--shadow-sm);
}
.dest-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease);
}
.dest-card:hover img { transform: scale(1.1); }
.dest-card .veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,27,57,0) 34%, rgba(6,27,57,.88) 100%);
}
.dest-card .info {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 24px;
  color: #fff;
}
.dest-card .info h4 { color: #fff; margin-bottom: 2px; font-size: 1.5rem; }
.dest-card .info span { font-size: .86rem; color: var(--blue-200); }
.dest-card .info .transit {
  margin-top: 12px;
  font-size: .84rem;
  color: rgba(255,255,255,.9);
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height .4s var(--ease), opacity .4s var(--ease);
}
.dest-card:hover .info .transit, .dest-card:focus-within .info .transit {
  max-height: 60px; opacity: 1;
}
.dest-card .flag {
  position: absolute; top: 16px; left: 16px;
  background: rgba(255,255,255,.92);
  color: var(--navy-800);
  font-weight: 700; font-size: .74rem;
  padding: 5px 12px; border-radius: 40px;
}

/* --------------------------------------------------------------------------
   14. TESTIMONIALS
   -------------------------------------------------------------------------- */
.quote-card {
  background: #fff;
  border-radius: var(--r-md);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  height: 100%;
}
.quote-card .mark { font-size: 2.4rem; color: var(--blue-200); line-height: 1; }
.quote-card p { font-size: 1.02rem; color: var(--ink); font-style: normal; margin: 14px 0 22px; }
.quote-who { display: flex; align-items: center; gap: 14px; }
.quote-who .av {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--navy-800); color: #fff;
  font-family: var(--font-display); font-size: 1.25rem;
  display: grid; place-items: center; flex-shrink: 0;
}
.quote-who b { color: var(--navy-800); font-size: .98rem; display: block; }
.quote-who span { font-size: .84rem; }
.stars { color: var(--amber); font-size: .9rem; margin-bottom: 4px; }

.carousel-nav button {
  width: 46px; height: 46px; border-radius: 50%;
  border: 2px solid var(--line); background: #fff;
  color: var(--navy-800); font-size: 1.1rem;
  transition: all .28s var(--ease);
}
.carousel-nav button:hover { background: var(--navy-800); border-color: var(--navy-800); color: #fff; }

/* --------------------------------------------------------------------------
   15. CTA BAND
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--navy-800);
  border-radius: var(--r-lg);
  padding: 62px 56px;
  color: #fff;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("https://images.unsplash.com/photo-1494412574643-ff11b0a5c1c3?auto=format&fit=crop&w=1600&q=70");
  background-size: cover; background-position: center;
  opacity: .16;
}
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.8); margin: 0; }

@media (max-width: 767.98px) { .cta-band { padding: 42px 26px; } }

/* --------------------------------------------------------------------------
   16. FOOTER
   -------------------------------------------------------------------------- */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,.62); padding-top: 74px; }
.site-footer .stripe { margin-bottom: 0; }
.footer-top-stripe { display: flex; }
.footer-top-stripe span { height: 5px; flex: 1; }
.footer-top-stripe span:nth-child(1) { background: var(--rust); }
.footer-top-stripe span:nth-child(2) { background: var(--amber); }
.footer-top-stripe span:nth-child(3) { background: var(--blue-500); }
.footer-top-stripe span:nth-child(4) { background: var(--green); }

.site-footer h5 {
  color: #fff; font-size: 1.22rem; margin-bottom: 22px;
}
.site-footer a { color: rgba(255,255,255,.62); font-size: .93rem; }
.site-footer a:hover { color: var(--amber); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 11px; display: flex; gap: 9px; align-items: flex-start; }
.footer-links i { color: var(--blue-400); font-size: .85rem; margin-top: 5px; }
.footer-brand img { width: 74px; border-radius: 50%; margin-bottom: 18px; }
.footer-brand p { font-size: .93rem; }

.social-row { display: flex; gap: 10px; margin-top: 20px; }
.social-row a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: grid; place-items: center;
  color: #fff; font-size: 1rem;
  transition: all .3s var(--ease);
}
.social-row a:hover { background: var(--blue-500); color: #fff; transform: translateY(-4px); }

.newsletter input {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  border-radius: var(--r-sm);
  padding: .78rem 1rem;
  width: 100%;
  font-size: .92rem;
}
.newsletter input::placeholder { color: rgba(255,255,255,.42); }
.newsletter input:focus { outline: 2px solid var(--blue-400); }

.footer-bottom {
  margin-top: 60px;
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 22px 0;
  font-size: .88rem;
}

/* --------------------------------------------------------------------------
   17. FLOATING HELPERS
   -------------------------------------------------------------------------- */
#toTop {
  position: fixed; right: 22px; bottom: 22px; z-index: 900;
  width: 48px; height: 48px; border-radius: 50%;
  border: none; background: var(--blue-500); color: #fff;
  font-size: 1.15rem;
  box-shadow: 0 10px 24px rgba(18,114,214,.4);
  opacity: 0; visibility: hidden; transform: translateY(14px);
  transition: all .35s var(--ease);
}
#toTop.show { opacity: 1; visibility: visible; transform: none; }
#toTop:hover { background: var(--navy-800); }

/* --------------------------------------------------------------------------
   18. SCROLL REVEAL
   -------------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal="fade"] { transform: none; }
[data-reveal="left"]  { transform: translateX(-32px); }
[data-reveal="right"] { transform: translateX(32px); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* --------------------------------------------------------------------------
   19. SMALL SCREENS
   -------------------------------------------------------------------------- */
@media (max-width: 767.98px) {
  :root { --section-y: 64px; }
  .hero { min-height: auto; padding: 84px 0 130px; }
  .hero .slogan { font-size: 1.2rem; }
  .quick-track .track-row { flex-wrap: wrap; }
  .quick-track .btn { width: 100%; justify-content: center; }
  .stat { padding: 26px 16px; }
  .stat .num { font-size: 2.3rem; }
}

/* ==========================================================================
   20. INNER PAGE BANNER
   ========================================================================== */
.page-hero {
  position: relative;
  padding: 118px 0 96px;
  background: var(--navy-900);
  overflow: hidden;
}
.page-hero img.bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: .34;
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(6,27,57,.92) 0%, rgba(6,27,57,.68) 60%, rgba(11,44,94,.4) 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(2.3rem, 4.4vw, 3.6rem); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.8); max-width: 60ch; margin: 0; font-size: 1.06rem; }

.crumbs { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 20px 0 0; font-size: .9rem; }
.crumbs li { color: rgba(255,255,255,.55); }
.crumbs li + li::before { content: "/"; margin-right: 10px; color: rgba(255,255,255,.32); }
.crumbs a { color: var(--blue-200); }
.crumbs a:hover { color: #fff; }

@media (max-width: 767.98px) { .page-hero { padding: 76px 0 62px; } }

/* ==========================================================================
   21. ABOUT — mission / vision / values
   ========================================================================== */
.mv-card {
  height: 100%;
  border-radius: var(--r-md);
  padding: 38px 32px;
  border: 1px solid var(--line);
  background: #fff;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.mv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.mv-card .mv-icon {
  width: 58px; height: 58px; border-radius: 16px;
  display: grid; place-items: center; font-size: 1.6rem;
  margin-bottom: 18px;
}
.mv-card.mission .mv-icon { background: rgba(18,114,214,.12); color: var(--blue-600); }
.mv-card.vision  .mv-icon { background: rgba(47,168,79,.14); color: var(--green); }
.mv-card.promise .mv-icon { background: rgba(240,165,0,.16); color: #b57b00; }

.value-tile {
  height: 100%;
  padding: 30px 26px;
  border-radius: var(--r-md);
  background: var(--paper);
  border-bottom: 4px solid transparent;
  transition: all .35s var(--ease);
}
.value-tile:hover { background: #fff; border-bottom-color: var(--blue-500); box-shadow: var(--shadow-md); transform: translateY(-6px); }
.value-tile i { font-size: 1.9rem; color: var(--blue-600); margin-bottom: 14px; display: block; }
.value-tile h4 { font-size: 1.25rem; margin-bottom: 8px; }
.value-tile p { font-size: .94rem; margin: 0; }

/* Team */
.team-card { text-align: center; }
.team-photo {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--navy-800);
  margin-bottom: 18px;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.team-card:hover .team-photo img { transform: scale(1.07); }
.team-photo .team-social {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; justify-content: center; gap: 10px;
  padding: 16px;
  background: linear-gradient(0deg, rgba(6,27,57,.9), transparent);
  transform: translateY(100%);
  transition: transform .4s var(--ease);
}
.team-card:hover .team-social, .team-card:focus-within .team-social { transform: none; }
.team-social a {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.16); color: #fff;
  display: grid; place-items: center; font-size: .9rem;
}
.team-social a:hover { background: var(--amber); color: var(--navy-900); }
.team-card h4 { margin-bottom: 2px; }
.team-card .role { font-size: .9rem; color: var(--blue-600); font-weight: 600; }

/* ==========================================================================
   22. SERVICES PAGE
   ========================================================================== */
.svc-block { scroll-margin-top: 120px; }
.svc-block .shot {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}
.svc-block .shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.svc-block .shot:hover img { transform: scale(1.06); }
.svc-tagline {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--sky-100); color: var(--blue-600);
  font-weight: 600; font-size: .86rem;
  padding: 6px 14px; border-radius: 40px; margin-bottom: 14px;
}
.spec-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px 22px; margin: 22px 0 26px; padding: 0; list-style: none; }
.spec-grid li { display: flex; gap: 9px; font-size: .94rem; color: var(--ink); }
.spec-grid i { color: var(--green); margin-top: 5px; font-size: .85rem; }
@media (max-width: 575.98px) { .spec-grid { grid-template-columns: 1fr; } }

.mini-svc {
  height: 100%;
  display: flex; gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
  transition: all .32s var(--ease);
}
.mini-svc:hover { border-color: var(--blue-400); box-shadow: var(--shadow-sm); transform: translateY(-4px); }
.mini-svc i { font-size: 1.6rem; color: var(--blue-600); flex-shrink: 0; line-height: 1.3; }
.mini-svc h4 { font-size: 1.18rem; margin-bottom: 5px; }
.mini-svc p { font-size: .91rem; margin: 0; }

/* ==========================================================================
   23. TRACKING PAGE
   ========================================================================== */
.track-panel {
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 40px;
  margin-top: -70px;
  position: relative; z-index: 5;
}
.track-panel .track-input {
  border: 2px solid var(--line);
  border-radius: var(--r-sm);
  padding: .95rem 1.1rem;
  font-size: 1rem;
  width: 100%;
  transition: border-color .25s var(--ease);
}
.track-panel .track-input:focus { border-color: var(--blue-500); outline: none; }
.track-hint { font-size: .88rem; margin-top: 12px; }
.track-hint code {
  background: var(--sky-100); color: var(--navy-800);
  padding: 2px 8px; border-radius: 4px; font-size: .86rem; cursor: pointer;
}
.track-hint code:hover { background: var(--blue-200); }

.track-result { display: none; margin-top: 44px; }
.track-result.show { display: block; animation: fadeUp .55s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

.track-error {
  display: none;
  margin-top: 26px;
  background: #FDF3F2;
  border: 1px solid #F3C9C4;
  border-left: 4px solid var(--rust);
  border-radius: var(--r-sm);
  padding: 18px 20px;
  color: #93261a;
}
.track-error.show { display: block; }

.summary-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1px; background: var(--line); border-radius: var(--r-md); overflow: hidden; }
.summary-grid .cell { background: #fff; padding: 22px 20px; }
.summary-grid .cell span { display: block; font-size: .8rem; color: var(--slate); margin-bottom: 4px; }
.summary-grid .cell b { font-family: var(--font-display); font-size: 1.3rem; color: var(--navy-800); font-weight: 600; }
@media (max-width: 767.98px) { .summary-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }

.status-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; border-radius: 40px;
  font-weight: 600; font-size: .88rem;
}
.status-pill.moving   { background: rgba(18,114,214,.12); color: var(--blue-600); }
.status-pill.done     { background: rgba(47,168,79,.14); color: #1d7a37; }
.status-pill.hold     { background: rgba(240,165,0,.18); color: #8a5f00; }

/* Timeline */
.timeline { list-style: none; padding: 0; margin: 40px 0 0; position: relative; }
.timeline::before {
  content: ""; position: absolute; left: 23px; top: 12px; bottom: 12px;
  width: 2px; background: var(--line);
}
.timeline li { position: relative; padding: 0 0 34px 66px; }
.timeline li:last-child { padding-bottom: 0; }
.timeline .node {
  position: absolute; left: 0; top: 0;
  width: 48px; height: 48px; border-radius: 50%;
  background: #fff; border: 2px solid var(--line);
  color: var(--slate);
  display: grid; place-items: center; font-size: 1.15rem;
  z-index: 2;
}
.timeline li.is-done .node { background: var(--green); border-color: var(--green); color: #fff; }
.timeline li.is-current .node {
  background: var(--blue-500); border-color: var(--blue-500); color: #fff;
  box-shadow: 0 0 0 6px rgba(18,114,214,.16);
  animation: pulseNode 2s infinite;
}
@keyframes pulseNode {
  0%,100% { box-shadow: 0 0 0 6px rgba(18,114,214,.16); }
  50%     { box-shadow: 0 0 0 12px rgba(18,114,214,.05); }
}
.timeline li.is-done::after, .timeline li.is-current::after {
  content: ""; position: absolute; left: 23px; top: 48px; bottom: -2px;
  width: 2px; background: var(--green); z-index: 1;
}
.timeline li.is-current::after { background: linear-gradient(180deg, var(--blue-500), var(--line)); }
.timeline li:last-child::after { display: none; }
.timeline h4 { font-size: 1.22rem; margin-bottom: 2px; }
.timeline .when { font-size: .87rem; color: var(--slate); }
.timeline .where { font-size: .93rem; color: var(--ink); margin: 6px 0 0; }
.timeline li.is-pending h4, .timeline li.is-pending .where { color: var(--slate); opacity: .72; }

/* ==========================================================================
   24. DESTINATIONS PAGE
   ========================================================================== */
.route-map {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--navy-900);
  padding: 26px;
}
.route-map svg { width: 100%; height: auto; display: block; }
.map-legend { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 22px; font-size: .88rem; color: rgba(255,255,255,.7); }
.map-legend span { display: inline-flex; align-items: center; gap: 8px; }
.map-legend i.key { width: 14px; height: 14px; border-radius: 50%; display: inline-block; }

.route-table { width: 100%; border-collapse: separate; border-spacing: 0; }
.route-table thead th {
  background: var(--navy-800); color: #fff;
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem;
  padding: 15px 18px; text-align: left; white-space: nowrap;
}
.route-table thead th:first-child { border-radius: var(--r-sm) 0 0 0; }
.route-table thead th:last-child { border-radius: 0 var(--r-sm) 0 0; }
.route-table tbody td { padding: 15px 18px; border-bottom: 1px solid var(--line); font-size: .94rem; }
.route-table tbody tr { transition: background .25s var(--ease); }
.route-table tbody tr:hover { background: var(--sky-100); }
.route-table .port { font-weight: 600; color: var(--navy-800); }
.mode-tag { display: inline-block; font-size: .78rem; font-weight: 600; padding: 3px 10px; border-radius: 30px; }
.mode-tag.sea  { background: rgba(18,114,214,.13); color: var(--blue-600); }
.mode-tag.air  { background: rgba(240,165,0,.18); color: #8a5f00; }
.mode-tag.road { background: rgba(47,168,79,.15); color: #1d7a37; }
.table-scroll { overflow-x: auto; }

/* ==========================================================================
   25. FORMS (quote + contact)
   ========================================================================== */
.form-panel {
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  padding: 44px;
}
@media (max-width: 767.98px) { .form-panel, .track-panel { padding: 26px 20px; } }

.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-weight: 600; font-size: .9rem;
  color: var(--navy-800);
  margin-bottom: 7px;
}
.field label .req { color: var(--rust); }
.field .control {
  width: 100%;
  border: 2px solid var(--line);
  border-radius: var(--r-sm);
  padding: .8rem 1rem;
  font-family: var(--font-body);
  font-size: .96rem;
  color: var(--ink);
  background: #fff;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field .control:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(18,114,214,.12);
  outline: none;
}
.field textarea.control { min-height: 130px; resize: vertical; }
.field select.control { appearance: none; background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2355677F'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.field .err { display: none; font-size: .84rem; color: var(--rust); margin-top: 6px; font-weight: 500; }
.field.invalid .control { border-color: var(--rust); }
.field.invalid .err { display: block; }
.field.valid .control { border-color: var(--green); }

.form-alert {
  display: none;
  border-radius: var(--r-sm);
  padding: 18px 20px;
  margin-bottom: 26px;
  font-size: .95rem;
}
.form-alert.show { display: block; animation: fadeUp .4s var(--ease); }
.form-alert.ok { background: #EEF9F1; border: 1px solid #BEE5C8; border-left: 4px solid var(--green); color: #1d6b33; }
.form-alert.bad { background: #FDF3F2; border: 1px solid #F3C9C4; border-left: 4px solid var(--rust); color: #93261a; }

/* Contact info tiles */
.info-tile {
  height: 100%;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 34px 24px;
  transition: all .35s var(--ease);
}
.info-tile:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); border-color: transparent; }
.info-tile .ring {
  width: 64px; height: 64px; margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--sky-100); color: var(--blue-600);
  display: grid; place-items: center; font-size: 1.6rem;
  transition: all .35s var(--ease);
}
.info-tile:hover .ring { background: var(--blue-500); color: #fff; transform: scale(1.08); }
.info-tile h4 { font-size: 1.2rem; margin-bottom: 8px; }
.info-tile p, .info-tile a { font-size: .95rem; margin: 0; display: block; }

.map-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  line-height: 0;
}
.map-wrap iframe { width: 100%; height: 460px; border: 0; }

/* ==========================================================================
   26. LEGAL PAGES
   ========================================================================== */
.legal { max-width: 78ch; }
.legal h2 { font-size: 1.7rem; margin: 44px 0 14px; }
.legal h2:first-child { margin-top: 0; }
.legal p, .legal li { font-size: 1rem; }
.legal ul { padding-left: 22px; margin-bottom: 18px; }
.legal li { margin-bottom: 8px; }
.legal .updated {
  display: inline-block;
  background: var(--sky-100); color: var(--navy-800);
  font-size: .88rem; font-weight: 600;
  padding: 7px 16px; border-radius: 40px; margin-bottom: 30px;
}

/* ==========================================================================
   27. FAQ (accordion)
   ========================================================================== */
.accordion-item { border: 1px solid var(--line); border-radius: var(--r-md) !important; margin-bottom: 14px; overflow: hidden; }
.accordion-button {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 600;
  color: var(--navy-800); background: #fff; padding: 20px 24px;
}
.accordion-button:not(.collapsed) { background: var(--sky-100); color: var(--blue-600); box-shadow: none; }
.accordion-button:focus { box-shadow: none; border-color: var(--blue-400); }
.accordion-body { padding: 4px 24px 24px; font-size: .96rem; }

/* ==========================================================================
   28. LANGUAGE SWITCH (English / Somali)
   ========================================================================== */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0;
  border: 2px solid var(--line);
  border-radius: 40px;
  padding: 3px;
  background: #fff;
}
.lang-switch button {
  border: none;
  background: transparent;
  color: var(--slate);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .04em;
  padding: .34rem .82rem;
  border-radius: 40px;
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease);
  line-height: 1.4;
}
.lang-switch button:hover { color: var(--navy-800); }
.lang-switch button.is-active {
  background: var(--navy-800);
  color: #fff;
}
.site-nav.scrolled .lang-switch { border-color: var(--line); }

@media (max-width: 991.98px) {
  .nav-item.lang-switch {
    width: max-content;
    margin: 14px 0 4px;
    border-bottom: 2px solid var(--line);
  }
}

/* ==========================================================================
   29. QUOTE PAGE SIDEBAR
   One compact panel instead of three tall cards. It sticks to the top of
   the screen while the long form scrolls next to it.
   ========================================================================== */
.quote-side { position: sticky; top: 108px; }

.side-card {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--blue-500);
  border-radius: var(--r-md);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
}
.side-card h3 {
  font-size: 1.22rem;
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.side-card h3 i { color: var(--blue-500); font-size: 1.05rem; }

.side-steps {
  list-style: none;
  counter-reset: side;
  padding: 0;
  margin: 0;
}
.side-steps li {
  counter-increment: side;
  position: relative;
  padding: 0 0 10px 30px;
  font-size: .91rem;
  line-height: 1.5;
  color: var(--ink);
}
.side-steps li:last-child { padding-bottom: 0; }
.side-steps li::before {
  content: counter(side);
  position: absolute;
  left: 0; top: 1px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--sky-100);
  color: var(--blue-600);
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.side-rule {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 20px 0;
  opacity: 1;
}

.side-note {
  font-size: .89rem;
  line-height: 1.55;
  margin: 0 0 12px;
  max-width: none;
}

.side-contact {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .92rem;
  font-weight: 600;
  color: var(--navy-800);
  padding: 7px 0;
  word-break: break-word;
}
.side-contact i { color: var(--blue-500); flex-shrink: 0; }
.side-contact:hover { color: var(--blue-600); }

@media (max-width: 991.98px) {
  .quote-side { position: static; margin-top: 8px; }
}

/* Spam trap — a field robots fill in and people never see */
.msc-trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
