/* =========================================================
   SHIP FAST MOVERS — Design System
   Tokens: Navy / Orange / Warm Cream — "The Route Line" signature
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root{
  /* Colors */
  --navy-900:#0B2545;
  --navy-800:#0F2E56;
  --navy-700:#123A64;
  --navy-500:#1D4E8F;
  --navy-300:#5C7CA8;

  --orange-600:#E36F0A;
  --orange-500:#F5821F;
  --orange-400:#FF9C42;
  --orange-100:#FFE8D2;

  --cream-50:#FFF9F2;
  --cream-100:#FDF6EE;
  --cream-200:#F7ECDD;

  --white:#FFFFFF;
  --ink:#16213A;
  --ink-soft:#4A5670;
  --green-600:#2E9E5B;

  --line:#E9DFCE;

  /* Type */
  --font-display:'Sora', sans-serif;
  --font-body:'Inter', sans-serif;
  --font-mono:'JetBrains Mono', monospace;

  /* Shape */
  --radius-sm:10px;
  --radius-md:16px;
  --radius-lg:24px;
  --radius-pill:999px;

  /* Shadow */
  --shadow-soft: 0 10px 30px -12px rgba(11,37,69,0.18);
  --shadow-lift: 0 20px 45px -15px rgba(11,37,69,0.28);
  --shadow-dark: 0 20px 50px -10px rgba(0,0,0,0.45);

  --ease: cubic-bezier(.22,.9,.3,1);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; overflow-x:hidden; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--cream-50);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family:inherit; cursor:pointer; }
h1,h2,h3,h4{ font-family:var(--font-display); color:var(--navy-900); margin:0; line-height:1.1; }
p{ margin:0; }

.container{
  width:100%;
  max-width:1240px;
  margin:0 auto;
  padding:0 24px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important; }
}

/* =========================================================
   Utility / Eyebrow labels
   ========================================================= */
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:var(--font-mono);
  font-size:12.5px;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--orange-600);
  font-weight:700;
  margin-bottom:16px;
}
.eyebrow::before{
  content:"";
  width:22px;
  height:2px;
  background:var(--orange-500);
  display:inline-block;
}
.eyebrow.on-dark{ color:var(--orange-400); }

.section{ padding:110px 0; position:relative; }
.section--tight{ padding:80px 0; }
.section--dark{ background:var(--navy-900); color:var(--cream-50); }
.section--dark h2, .section--dark h3{ color:var(--white); }
.section--dark .body-muted{ color:#AEC0DA; }
.section--panel{ background:var(--cream-100); }

.section-head{
  max-width:640px;
  margin-bottom:56px;
}
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size:clamp(30px,4vw,44px); font-weight:800; letter-spacing:-0.02em; }
.section-head p{ margin-top:16px; font-size:17px; color:var(--ink-soft); line-height:1.6; }
.section--dark .section-head p{ color:#AEC0DA; }

.body-muted{ color:var(--ink-soft); }

/* =========================================================
   Buttons
   ========================================================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:15px 28px;
  border-radius:var(--radius-pill);
  font-weight:700;
  font-size:15px;
  font-family:var(--font-body);
  border:2px solid transparent;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), background .3s ease, color .3s ease, border-color .3s ease;
  white-space:nowrap;
}
.btn svg{ width:18px; height:18px; flex-shrink:0; }
.btn-primary{
  background:linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color:var(--white);
  box-shadow:0 12px 24px -8px rgba(227,111,10,0.55);
}
.btn-primary:hover{ transform:translateY(-3px); box-shadow:0 18px 30px -8px rgba(227,111,10,0.6); }

.btn-ghost-light{
  background:transparent;
  color:var(--white);
  border-color:rgba(255,255,255,0.55);
}
.btn-ghost-light:hover{ background:rgba(255,255,255,0.12); border-color:var(--white); transform:translateY(-3px); }

.btn-ghost-dark{
  background:transparent;
  color:var(--navy-900);
  border-color:var(--navy-900);
}
.btn-ghost-dark:hover{ background:var(--navy-900); color:var(--white); transform:translateY(-3px); }

.btn-block{ width:100%; }
.btn-sm{ padding:11px 20px; font-size:13.5px; }

/* =========================================================
   Header / Nav
   ========================================================= */
.topbar{
  background:var(--navy-900);
  color:#CBD9EC;
  font-size:13px;
  font-family:var(--font-mono);
}
.topbar .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-top:9px;
  padding-bottom:9px;
}
.topbar-left{ display:flex; gap:26px; }
.topbar-left span{ display:inline-flex; align-items:center; gap:7px; }
.topbar-left svg, .topbar-right svg{ width:14px; height:14px; }
.topbar-right{ display:flex; align-items:center; gap:8px; color:var(--orange-400); font-weight:600; letter-spacing:.04em;}

.site-header{
  position:sticky;
  top:0;
  z-index:200;
  background:rgba(255,249,242,0.85);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
  transition:box-shadow .3s ease;
}
.site-header.scrolled{ box-shadow:0 8px 24px -12px rgba(11,37,69,0.2); }
.nav-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
}
.brand{ display:flex; align-items:center; gap:10px; }
.brand img{ height:44px; width:auto; }

.main-nav{ display:flex; align-items:center; gap:2px; }
.main-nav a{
  padding:10px 16px;
  border-radius:var(--radius-pill);
  font-weight:600;
  font-size:14.5px;
  color:var(--navy-800);
  transition:background .25s ease, color .25s ease;
}
.main-nav a:hover{ background:var(--orange-100); color:var(--orange-600); }
.main-nav a.active{ background:var(--navy-900); color:var(--white); }

.nav-actions{ display:flex; align-items:center; gap:14px; }
.nav-tel{ font-family:var(--font-mono); font-weight:700; font-size:14px; color:var(--navy-900); display:flex; align-items:center; gap:8px;}
.nav-tel svg{ width:17px; height:17px; color:var(--orange-500); }

.burger{
  display:none;
  width:44px; height:44px;
  border-radius:var(--radius-sm);
  border:1px solid var(--line);
  background:var(--white);
  align-items:center; justify-content:center;
  flex-direction:column; gap:5px;
}
.burger span{ width:20px; height:2px; background:var(--navy-900); border-radius:2px; transition:transform .3s ease, opacity .3s ease; }
.burger.is-open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2){ opacity:0; }
.burger.is-open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

.mobile-drawer{
  position:fixed; inset:0 0 0 auto;
  width:min(320px,86vw); height:100%;
  background:var(--navy-900);
  transform:translateX(100%);
  transition:transform .4s var(--ease);
  z-index:300;
  padding:26px 24px;
  overflow-y:auto;
}
.mobile-drawer.open{ transform:translateX(0); }
.mobile-drawer-head{ display:flex; justify-content:space-between; align-items:center; margin-bottom:30px; }
.mobile-drawer a{
  display:block; padding:14px 4px; color:var(--cream-50); font-weight:600; font-size:17px;
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.drawer-close{ background:none; border:none; color:var(--white); font-size:26px; }
.scrim{ position:fixed; inset:0; background:rgba(11,37,69,0.5); opacity:0; pointer-events:none; transition:opacity .3s ease; z-index:250; }
.scrim.show{ opacity:1; pointer-events:auto; }

/* =========================================================
   HERO — image slider with route line + centered animated text
   ========================================================= */
.hero{
  position:relative;
  min-height:92vh;
  display:flex;
  flex-direction:column;
  overflow:hidden;
  background:var(--navy-900);
}
.hero-slides{ position:absolute; inset:0; }
.hero-slide{
  position:absolute; inset:0;
  opacity:0;
  transform:scale(1.12);
  transition:opacity 1.6s var(--ease), transform 7s linear;
  background-size:cover;
  background-position:center;
}
.hero-slide.active{ opacity:1; transform:scale(1); z-index:1; }
.hero-slide::after{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(9,26,51,0.75) 0%, rgba(9,26,51,0.55) 45%, rgba(9,26,51,0.92) 100%);
}

/* slide art (CSS/SVG based "photography") */
.slide-sea{ background:
  radial-gradient(ellipse at 20% 20%, rgba(245,130,31,0.25), transparent 55%),
  linear-gradient(200deg,#0B2545 0%, #123A64 45%, #1D4E8F 100%); }
.slide-air{ background:
  radial-gradient(ellipse at 80% 15%, rgba(245,130,31,0.22), transparent 50%),
  linear-gradient(160deg,#08213F 0%, #103457 55%, #16456F 100%); }
.slide-road{ background:
  radial-gradient(ellipse at 50% 85%, rgba(245,130,31,0.28), transparent 55%),
  linear-gradient(210deg,#0A2040 0%, #102F52 50%, #1B4577 100%); }

.hero-content{
  position:relative; z-index:5;
  width:100%;
  flex:1 1 auto;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:130px 24px 100px;
  color:var(--white);
}
.hero-slug{
  display:inline-flex; align-items:center; gap:10px;
  font-family:var(--font-mono); font-size:13px; letter-spacing:.16em; text-transform:uppercase;
  background:rgba(255,255,255,0.1);
  border:1px solid rgba(255,255,255,0.25);
  padding:8px 18px; border-radius:var(--radius-pill);
  margin-bottom:26px;
  color:var(--orange-400);
  backdrop-filter:blur(6px);
}
.hero-slug span.dot{ width:7px; height:7px; border-radius:50%; background:var(--green-600); box-shadow:0 0 0 4px rgba(46,158,91,0.25); animation:pulse-dot 2s infinite; }
@keyframes pulse-dot{ 0%,100%{ box-shadow:0 0 0 4px rgba(46,158,91,0.25);} 50%{ box-shadow:0 0 0 8px rgba(46,158,91,0.08);} }

.hero-heading-wrap{ min-height:220px; display:flex; align-items:center; justify-content:center; }
.hero-heading{
  position:absolute;
  max-width:900px;
  left:50%; transform:translate(-50%,26px);
  opacity:0;
  transition:opacity .9s var(--ease), transform .9s var(--ease);
  pointer-events:none;
}
.hero-heading.active{ position:relative; opacity:1; transform:translate(-50%,0); pointer-events:auto; }
.hero-heading h1{
  font-size:clamp(34px,6vw,66px);
  font-weight:800;
  letter-spacing:-0.02em;
  color:var(--white);
  margin-bottom:18px;
}
.hero-heading h1 em{ font-style:normal; color:var(--orange-400); }
.hero-heading p{
  font-size:clamp(16px,2vw,19px);
  color:#D7E2F1;
  max-width:560px;
  margin:0 auto;
  line-height:1.6;
}

.hero-cta{
  display:flex; gap:16px; justify-content:center; margin-top:38px; flex-wrap:wrap;
}

.hero-dots{
  display:flex; gap:10px; justify-content:center; margin-top:56px;
}
.hero-dots button{
  width:34px; height:4px; border-radius:2px; background:rgba(255,255,255,0.3); border:none; padding:0;
  transition:background .3s ease, width .3s ease;
}
.hero-dots button.active{ background:var(--orange-500); width:52px; }

/* Route line signature — animated dashed shipping lane across hero base */
.route-line{
  position:absolute; left:0; right:0; bottom:0; height:120px; z-index:2;
  overflow:hidden;
  pointer-events:none;
}
.route-line svg{ width:100%; height:100%; display:block; }
.route-path{
  fill:none;
  stroke:rgba(255,255,255,0.35);
  stroke-width:3;
  stroke-dasharray:14 14;
  animation:dash-move 3.2s linear infinite;
}
@keyframes dash-move{ to{ stroke-dashoffset:-56; } }
.route-marker{ animation:travel 6s linear infinite; }
@keyframes travel{
  0%{ offset-distance:0%; }
  100%{ offset-distance:100%; }
}

/* =========================================================
   HERO — rich background decoration layer
   ========================================================= */
.hero-decor{
  position:absolute; inset:0; z-index:2; overflow:hidden; pointer-events:none;
}

/* Blueprint-style grid, very subtle */
.hero-grid{
  position:absolute; inset:-2px;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size:56px 56px;
  mask-image:radial-gradient(ellipse 80% 60% at 50% 40%, #000 40%, transparent 85%);
  animation:grid-drift 40s linear infinite;
}
@keyframes grid-drift{ from{ background-position:0 0, 0 0; } to{ background-position:56px 84px, 56px 84px; } }

/* Drifting glow orbs */
.hero-orb-layer{ position:absolute; inset:0; transition:transform .3s ease-out; }
.hero-orb{
  position:absolute; border-radius:50%;
  filter:blur(4px);
  animation:orb-drift 16s ease-in-out infinite;
  will-change:transform;
}
.hero-orb--1{
  width:420px; height:420px; left:-8%; top:-12%;
  background:radial-gradient(circle, rgba(245,130,31,0.32), transparent 70%);
  animation-duration:19s;
}
.hero-orb--2{
  width:360px; height:360px; right:-6%; top:18%;
  background:radial-gradient(circle, rgba(29,78,143,0.55), transparent 70%);
  animation-duration:23s; animation-delay:-4s;
}
.hero-orb--3{
  width:300px; height:300px; left:22%; bottom:-14%;
  background:radial-gradient(circle, rgba(46,158,91,0.18), transparent 70%);
  animation-duration:17s; animation-delay:-8s;
}
@keyframes orb-drift{
  0%,100%{ transform:translate(0,0) scale(1); }
  33%{ transform:translate(30px,-24px) scale(1.08); }
  66%{ transform:translate(-22px,18px) scale(0.96); }
}

/* Global network — connection nodes + animated arcs */
.hero-network{ position:absolute; inset:0; opacity:0.55; }
.hero-network svg{ width:100%; height:100%; }
.net-arc{
  fill:none; stroke:rgba(255,255,255,0.28); stroke-width:1.4; stroke-dasharray:5 7;
  animation:dash-move 5s linear infinite;
}
.net-node{ fill:#F5821F; opacity:0.9; }
.net-node.alt{ fill:#fff; }
.net-pulse{ fill:none; stroke:#F5821F; stroke-width:1.5; opacity:0; transform-origin:center; animation:node-pulse 3s ease-out infinite; }
@keyframes node-pulse{
  0%{ opacity:0.6; transform:scale(0.4); }
  100%{ opacity:0; transform:scale(2.6); }
}

/* Floating glass badges */
.hero-badge{
  position:absolute;
  display:flex; align-items:center; gap:10px;
  padding:12px 18px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.18);
  border-radius:var(--radius-pill);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  box-shadow:0 12px 30px -10px rgba(0,0,0,0.35);
  animation:badge-float 6s ease-in-out infinite;
  z-index:3;
}
.hero-badge svg{ width:19px; height:19px; color:var(--orange-400); flex-shrink:0; }
.hero-badge b{ display:block; color:#fff; font-family:var(--font-display); font-size:15px; font-weight:700; line-height:1.1; }
.hero-badge span{ display:block; color:#AEC0DA; font-size:11px; font-family:var(--font-mono); letter-spacing:.04em; }
.hero-badge--3{ left:9%; bottom:30%; animation-duration:7s; animation-delay:-4s; }
@keyframes badge-float{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-14px); }
}
@media (max-width:1180px){ .hero-badge{ display:none; } }

/* Twinkling particles */
.hero-particle{
  position:absolute; width:4px; height:4px; border-radius:50%;
  background:#fff; opacity:0.25;
  animation:twinkle 4s ease-in-out infinite;
}
@keyframes twinkle{
  0%,100%{ opacity:0.1; transform:scale(1); }
  50%{ opacity:0.75; transform:scale(1.6); }
}

/* Hero ship illustration — sits behind decor/badges/text, one side accent */
.hero-ship-wrap{
  position:absolute;
  right:-3%;
  bottom:24%;
  width:min(38vw, 520px);
  z-index:1;
  pointer-events:none;
  animation:ship-bob 7s ease-in-out infinite;
  filter:drop-shadow(0 25px 35px rgba(0,0,0,0.4));
}
.hero-ship-wrap svg{ width:100%; height:auto; display:block; }
@keyframes ship-bob{
  0%,100%{ transform:translateY(0) rotate(0deg); }
  50%{ transform:translateY(-8px) rotate(-0.3deg); }
}
.ship-wake{ animation:wake-fade 3.4s ease-out infinite; transform-origin:right center; }
.ship-wake--2{ animation-delay:-1.1s; }
.ship-wake--3{ animation-delay:-2.2s; }
@keyframes wake-fade{
  0%{ opacity:0.5; transform:scaleX(1); }
  100%{ opacity:0; transform:scaleX(1.6) translateX(-30px); }
}
@media (max-width:1180px){ .hero-ship-wrap{ display:none; } }

/* Scroll cue */
.scroll-cue{
  position:absolute; left:50%; bottom:14px; transform:translateX(-50%);
  z-index:6; display:flex; flex-direction:column; align-items:center; gap:6px;
  color:rgba(255,255,255,0.6);
  font-family:var(--font-mono); font-size:10.5px; letter-spacing:.14em; text-transform:uppercase;
  animation:cue-bob 2.4s ease-in-out infinite;
}
.scroll-cue svg{ width:16px; height:16px; }
@keyframes cue-bob{
  0%,100%{ transform:translateX(-50%) translateY(0); }
  50%{ transform:translateX(-50%) translateY(6px); }
}
@media (max-width:860px){ .scroll-cue{ display:none; } }


.hero-stats{
  position:relative; z-index:6;
  background:rgba(11,37,69,0.55);
  border-top:1px solid rgba(255,255,255,0.12);
  backdrop-filter:blur(10px);
  margin-top:60px;
}
.hero-stats .container{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  padding:26px 24px;
}
.hero-stat{ text-align:center; border-right:1px solid rgba(255,255,255,0.12); }
.hero-stat:last-child{ border-right:none; }
.hero-stat b{
  display:block; font-family:var(--font-display); font-size:clamp(22px,3vw,34px); color:var(--white); font-weight:800;
}
.hero-stat span{ font-family:var(--font-mono); font-size:11.5px; letter-spacing:.1em; text-transform:uppercase; color:#9FB4D2; }

/* Page header (interior pages, static, no slider) */
.page-hero{
  position:relative;
  padding:170px 0 90px;
  background:linear-gradient(200deg,#0B2545 0%, #123A64 55%, #1D4E8F 100%);
  color:var(--white);
  overflow:hidden;
}
.page-hero .container{ position:relative; z-index:3; }
.page-hero h1{ color:var(--white); font-size:clamp(32px,5vw,54px); font-weight:800; max-width:720px; }
.page-hero p{ margin-top:18px; color:#CFE0F3; max-width:560px; font-size:17px; line-height:1.6; }

/* Reusable decor layer for interior page headers */
.page-hero-decor{ position:absolute; inset:0; z-index:1; pointer-events:none; overflow:hidden; }
.page-hero-decor .hero-grid{ animation-duration:60s; }
.page-route-line{
  position:absolute; left:0; right:0; bottom:0; height:70px; z-index:1;
  overflow:hidden; pointer-events:none;
}
.page-route-line svg{ width:100%; height:100%; display:block; }
.breadcrumb{ font-family:var(--font-mono); font-size:12.5px; letter-spacing:.1em; text-transform:uppercase; color:var(--orange-400); margin-bottom:18px; display:flex; gap:10px; align-items:center;}
.breadcrumb a{ color:#AEC0DA; }

/* =========================================================
   Trust / logos bar
   ========================================================= */
.trust-bar{ padding:44px 0; background:var(--cream-100); border-bottom:1px solid var(--line); border-top:1px solid var(--line); }
.trust-row{
  display:flex; align-items:center; justify-content:space-between; gap:30px; flex-wrap:wrap;
}
.trust-label{ font-family:var(--font-mono); font-size:12px; letter-spacing:.12em; text-transform:uppercase; color:var(--ink-soft); white-space:nowrap; }
.trust-logos{ display:flex; gap:42px; flex-wrap:wrap; align-items:center; }
.trust-logos .badge{
  display:flex; align-items:center; gap:8px;
  font-family:var(--font-display); font-weight:700; color:var(--navy-500); opacity:.55;
  transition:opacity .3s ease, color .3s ease;
  font-size:15px;
}
.trust-logos .badge:hover{ opacity:1; color:var(--navy-900); }
.trust-logos .badge svg{ width:20px; height:20px; }

/* =========================================================
   Services grid
   ========================================================= */
.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}
.service-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:36px 30px;
  position:relative;
  overflow:hidden;
  transition:transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s ease;
}
.service-card:hover{ transform:translateY(-8px); box-shadow:var(--shadow-lift); border-color:transparent; }
.service-card::before{
  content:""; position:absolute; top:0; left:0; right:0; height:4px;
  background:linear-gradient(90deg,var(--orange-500),var(--navy-500));
  transform:scaleX(0); transform-origin:left; transition:transform .4s var(--ease);
}
.service-card:hover::before{ transform:scaleX(1); }
.service-icon{
  width:58px; height:58px; border-radius:16px;
  background:linear-gradient(135deg,var(--orange-100),#fff);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:22px;
}
.service-icon svg{ width:28px; height:28px; color:var(--orange-600); }
.service-card h3{ font-size:20px; margin-bottom:10px; }
.service-card p{ color:var(--ink-soft); font-size:14.5px; line-height:1.6; margin-bottom:18px;}
.service-link{ font-weight:700; font-size:14px; color:var(--navy-900); display:inline-flex; align-items:center; gap:6px; }
.service-link svg{ width:15px; height:15px; transition:transform .3s ease; }
.service-card:hover .service-link svg{ transform:translateX(4px); }

/* =========================================================
   Dark feature list (Why choose us)
   ========================================================= */
.feature-split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}
.feature-list{ display:grid; grid-template-columns:1fr 1fr; gap:28px; margin-top:34px; }
.feature-item{ display:flex; gap:14px; }
.feature-item .ico{
  width:44px; height:44px; border-radius:12px; flex-shrink:0;
  background:rgba(245,130,31,0.14); display:flex; align-items:center; justify-content:center;
}
.feature-item .ico svg{ width:22px; height:22px; color:var(--orange-400); }
.feature-item h4{ color:var(--white); font-size:16px; margin-bottom:5px; }
.feature-item p{ color:#AEC0DA; font-size:13.5px; line-height:1.55; }

.route-visual{
  position:relative;
  background:linear-gradient(160deg,#0F2E56,#173D66);
  border-radius:var(--radius-lg);
  border:1px solid rgba(255,255,255,0.1);
  padding:34px;
  min-height:420px;
  overflow:hidden;
}
.route-visual .map-dot{
  position:absolute; width:10px; height:10px; border-radius:50%; background:var(--orange-500);
  box-shadow:0 0 0 6px rgba(245,130,31,0.2);
}
.route-visual .glow{ position:absolute; width:260px; height:260px; border-radius:50%; background:radial-gradient(circle,rgba(245,130,31,0.25),transparent 70%); top:-60px; right:-60px; }
.route-visual svg{ width:100%; height:100%; position:relative; z-index:2; }

/* =========================================================
   Process timeline
   ========================================================= */
.timeline{
  position:relative;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
  margin-top:20px;
}
.timeline::before{
  content:"";
  position:absolute; top:34px; left:8%; right:8%; height:2px;
  background:repeating-linear-gradient(90deg,var(--orange-400) 0 10px, transparent 10px 20px);
}
.timeline-step{ position:relative; text-align:center; padding-top:0; }
.timeline-num{
  width:68px; height:68px; border-radius:50%; margin:0 auto 22px;
  background:var(--white); border:2px solid var(--orange-500);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-display); font-weight:800; font-size:22px; color:var(--navy-900);
  position:relative; z-index:2;
  box-shadow:var(--shadow-soft);
}
.timeline-step h4{ font-size:16.5px; margin-bottom:8px; }
.timeline-step p{ font-size:13.5px; color:var(--ink-soft); line-height:1.55; padding:0 6px; }

/* =========================================================
   Tracking teaser / widget
   ========================================================= */
.track-card{
  background:var(--white);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-lift);
  padding:44px;
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:50px;
  align-items:center;
  border:1px solid var(--line);
}
.track-form{ display:flex; gap:12px; margin-top:24px; flex-wrap:wrap; }
.input{
  flex:1; min-width:220px;
  padding:16px 20px;
  border-radius:var(--radius-pill);
  border:1.5px solid var(--line);
  font-family:var(--font-mono);
  font-size:14.5px;
  background:var(--cream-50);
  transition:border-color .25s ease, box-shadow .25s ease;
}
.input:focus{ outline:none; border-color:var(--orange-500); box-shadow:0 0 0 4px rgba(245,130,31,0.15); }

.status-strip{ display:flex; flex-direction:column; gap:0; }
.status-item{ display:flex; gap:16px; padding:14px 0; border-bottom:1px dashed var(--line); }
.status-item:last-child{ border-bottom:none; }
.status-dot{ width:12px; height:12px; border-radius:50%; margin-top:4px; flex-shrink:0; background:var(--line); }
.status-item.done .status-dot{ background:var(--green-600); }
.status-item.active .status-dot{ background:var(--orange-500); box-shadow:0 0 0 5px rgba(245,130,31,0.2); }
.status-item h5{ font-size:14.5px; margin-bottom:3px; color:var(--navy-900); }
.status-item span{ font-size:12.5px; color:var(--ink-soft); font-family:var(--font-mono); }

/* =========================================================
   Testimonials
   ========================================================= */
.testi-track{ display:flex; gap:24px; overflow-x:auto; scroll-snap-type:x mandatory; padding-bottom:10px; }
.testi-track::-webkit-scrollbar{ height:6px; }
.testi-track::-webkit-scrollbar-thumb{ background:rgba(255,255,255,0.2); border-radius:3px; }
.testi-card{
  scroll-snap-align:start;
  min-width:340px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:var(--radius-lg);
  padding:32px;
  flex-shrink:0;
}
.testi-stars{ color:var(--orange-400); font-size:15px; letter-spacing:3px; margin-bottom:16px; }
.testi-card p.quote{ color:#E4ECF6; font-size:15.5px; line-height:1.65; margin-bottom:24px; }
.testi-person{ display:flex; align-items:center; gap:12px; }
.testi-avatar{
  width:42px; height:42px; border-radius:50%;
  background:linear-gradient(135deg,var(--orange-500),var(--navy-500));
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-weight:700; font-family:var(--font-display); font-size:15px;
}
.testi-person b{ display:block; color:var(--white); font-size:14px; }
.testi-person span{ font-size:12.5px; color:#9FB4D2; }

/* =========================================================
   Blog cards
   ========================================================= */
.blog-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.blog-card{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius-lg); overflow:hidden;
  transition:transform .4s var(--ease), box-shadow .4s var(--ease);
}
.blog-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-lift); }
.blog-thumb{ height:170px; position:relative; }
.blog-body{ padding:24px; }
.blog-tag{
  display:inline-block; font-family:var(--font-mono); font-size:11px; letter-spacing:.08em; text-transform:uppercase;
  color:var(--orange-600); background:var(--orange-100); padding:5px 12px; border-radius:var(--radius-pill); margin-bottom:14px;
}
.blog-body h3{ font-size:17px; margin-bottom:10px; line-height:1.35; }
.blog-meta{ font-family:var(--font-mono); font-size:12px; color:var(--ink-soft); margin-top:16px; }

/* =========================================================
   CTA banner
   ========================================================= */
.cta-banner{
  background:linear-gradient(120deg,var(--navy-900),var(--navy-700));
  border-radius:var(--radius-lg);
  padding:60px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
  flex-wrap:wrap;
  position:relative;
  overflow:hidden;
}
.cta-banner::before{
  content:""; position:absolute; width:340px; height:340px; border-radius:50%;
  background:radial-gradient(circle,rgba(245,130,31,0.35),transparent 70%);
  right:-100px; top:-120px;
}
.cta-banner h3{ color:var(--white); font-size:clamp(24px,3vw,32px); max-width:480px; position:relative; z-index:2;}
.cta-banner .actions{ display:flex; gap:16px; align-items:center; flex-wrap:wrap; position:relative; z-index:2; }
.cta-phone{ color:var(--white); font-family:var(--font-mono); font-weight:700; display:flex; align-items:center; gap:8px; }
.cta-phone svg{ width:18px; height:18px; color:var(--orange-400); }

/* =========================================================
   Footer
   ========================================================= */
.site-footer{ background:var(--navy-900); color:#B9C7DD; padding-top:80px; }
.footer-top{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:50px; padding-bottom:60px; border-bottom:1px solid rgba(255,255,255,0.1); }
.footer-brand img{ height:40px; margin-bottom:18px; background:#fff; padding:8px 14px; border-radius:10px; }
.footer-brand p{ font-size:14px; line-height:1.7; color:#9FB4D2; max-width:280px; }
.footer-col h5{ color:var(--white); font-family:var(--font-display); font-size:14.5px; letter-spacing:.04em; margin-bottom:20px; text-transform:uppercase; }
.footer-col ul li{ margin-bottom:12px; }
.footer-col ul a{ font-size:14px; color:#9FB4D2; transition:color .25s ease; }
.footer-col ul a:hover{ color:var(--orange-400); }
.footer-social{ display:flex; gap:10px; margin-top:22px; }
.footer-social a{
  width:38px; height:38px; border-radius:50%; border:1px solid rgba(255,255,255,0.18);
  display:flex; align-items:center; justify-content:center; transition:background .25s ease, border-color .25s ease;
}
.footer-social a:hover{ background:var(--orange-500); border-color:var(--orange-500); }
.footer-social svg{ width:16px; height:16px; }
.footer-newsletter{ display:flex; gap:8px; margin-top:16px; }
.footer-newsletter input{
  flex:1; padding:12px 16px; border-radius:var(--radius-pill); border:1px solid rgba(255,255,255,0.18);
  background:rgba(255,255,255,0.06); color:var(--white); font-size:13.5px;
}
.footer-newsletter input::placeholder{ color:#7E93B4; }
.footer-newsletter button{
  width:44px; height:44px; border-radius:50%; border:none; background:var(--orange-500); color:#fff; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
}
.footer-newsletter button svg{ width:17px; height:17px; }
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center; padding:26px 0; font-size:12.5px; color:#7E93B4; flex-wrap:wrap; gap:10px;
}
.footer-bottom .legal-links{ display:flex; gap:20px; }
.footer-bottom a:hover{ color:var(--orange-400); }

/* =========================================================
   Scroll reveal
   ========================================================= */
.reveal{ opacity:0; transform:translateY(28px); transition:opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in-view{ opacity:1; transform:translateY(0); }
.stagger > *{ transition-delay:calc(var(--i,0) * 90ms); }

/* =========================================================
   Misc pages: forms, faq, contact
   ========================================================= */
.grid-2{ display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:start; }
.form-card{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:40px; box-shadow:var(--shadow-soft);
}
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-bottom:18px; }
.field{ display:flex; flex-direction:column; gap:8px; }
.field.full{ grid-column:1 / -1; }
.field label{ font-size:13px; font-weight:600; color:var(--navy-800); }
.field input, .field select, .field textarea{
  padding:14px 16px; border-radius:var(--radius-sm); border:1.5px solid var(--line);
  font-family:var(--font-body); font-size:14.5px; background:var(--cream-50); resize:vertical;
  transition:border-color .25s ease, box-shadow .25s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{ outline:none; border-color:var(--orange-500); box-shadow:0 0 0 4px rgba(245,130,31,0.15); }

.quote-steps{ display:flex; justify-content:space-between; margin-bottom:44px; position:relative; }
.quote-steps::before{ content:""; position:absolute; top:19px; left:5%; right:5%; height:2px; background:var(--line); z-index:0; }
.q-step{ position:relative; z-index:1; text-align:center; flex:1; }
.q-step .circ{
  width:40px; height:40px; border-radius:50%; background:var(--white); border:2px solid var(--line);
  display:flex; align-items:center; justify-content:center; margin:0 auto 10px; font-family:var(--font-display); font-weight:700; color:var(--ink-soft);
  transition:all .3s ease;
}
.q-step.active .circ{ border-color:var(--orange-500); background:var(--orange-500); color:#fff; }
.q-step.done .circ{ border-color:var(--green-600); background:var(--green-600); color:#fff; }
.q-step span{ font-size:12.5px; font-weight:600; color:var(--ink-soft); }
.q-step.active span{ color:var(--navy-900); }

.pill-select{ display:flex; gap:12px; flex-wrap:wrap; }
.pill-select label{
  border:1.5px solid var(--line); border-radius:var(--radius-pill); padding:12px 22px; font-size:14px; font-weight:600;
  cursor:pointer; transition:all .25s ease; display:flex; align-items:center; gap:8px;
}
.pill-select input{ display:none; }
.pill-select input:checked + span{ color:var(--orange-600); }
.pill-select label:has(input:checked){ border-color:var(--orange-500); background:var(--orange-100); }

.accordion-item{ border-bottom:1px solid var(--line); }
.accordion-head{
  display:flex; justify-content:space-between; align-items:center; padding:24px 0; cursor:pointer;
}
.accordion-head h4{ font-size:16.5px; font-weight:700; }
.accordion-head .plus{
  width:28px; height:28px; border-radius:50%; border:1.5px solid var(--line); flex-shrink:0;
  display:flex; align-items:center; justify-content:center; transition:transform .35s ease, background .3s ease, border-color .3s ease;
  font-size:16px; color:var(--navy-900);
}
.accordion-item.open .accordion-head .plus{ transform:rotate(135deg); background:var(--orange-500); border-color:var(--orange-500); color:#fff; }
.accordion-body{ max-height:0; overflow:hidden; transition:max-height .4s var(--ease); }
.accordion-body p{ padding-bottom:24px; color:var(--ink-soft); font-size:14.5px; line-height:1.65; max-width:680px; }

.map-embed{
  border-radius:var(--radius-lg); overflow:hidden; border:1px solid var(--line); height:340px;
  background:linear-gradient(160deg,#e9eef5,#dfe7f1);
  position:relative;
}

.contact-info-list{ display:flex; flex-direction:column; gap:22px; margin-top:28px; }
.contact-info-item{ display:flex; gap:16px; align-items:flex-start; }
.contact-info-item .ico{
  width:46px; height:46px; border-radius:12px; background:var(--orange-100); display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.contact-info-item .ico svg{ width:22px; height:22px; color:var(--orange-600); }
.contact-info-item h4{ font-size:15.5px; margin-bottom:4px; }
.contact-info-item p{ font-size:14px; color:var(--ink-soft); line-height:1.55; }

/* team/about */
.value-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.value-card{ background:var(--white); border:1px solid var(--line); border-radius:var(--radius-lg); padding:28px; text-align:center; }
.value-card .ico{ width:52px; height:52px; margin:0 auto 16px; border-radius:14px; background:var(--orange-100); display:flex; align-items:center; justify-content:center;}
.value-card .ico svg{ width:26px; height:26px; color:var(--orange-600); }
.value-card h4{ font-size:15.5px; margin-bottom:8px; }
.value-card p{ font-size:13.5px; color:var(--ink-soft); line-height:1.5; }

.team-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.team-card{ text-align:center; }
.team-photo{
  width:100%; aspect-ratio:1; border-radius:var(--radius-lg); margin-bottom:16px;
  background:linear-gradient(160deg,var(--navy-700),var(--navy-500));
  display:flex; align-items:center; justify-content:center; color:#fff; font-family:var(--font-display); font-weight:800; font-size:32px;
}
.team-card h4{ font-size:15.5px; margin-bottom:3px; }
.team-card span{ font-size:13px; color:var(--ink-soft); }

.milestone-row{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; text-align:center; }
.milestone-row b{ display:block; font-family:var(--font-display); font-size:clamp(28px,4vw,42px); font-weight:800; color:var(--navy-900); }
.milestone-row span{ font-family:var(--font-mono); font-size:12px; letter-spacing:.08em; text-transform:uppercase; color:var(--ink-soft); }

/* =========================================================
   Divider route (between sections)
   ========================================================= */
.mini-route{ height:34px; position:relative; overflow:hidden; }
.mini-route svg{ width:100%; height:100%; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width:1024px){
  .services-grid{ grid-template-columns:repeat(2,1fr); }
  .feature-split{ grid-template-columns:1fr; }
  .value-grid, .team-grid{ grid-template-columns:repeat(2,1fr); }
  .footer-top{ grid-template-columns:1fr 1fr; }
  .grid-2{ grid-template-columns:1fr; }
  .track-card{ grid-template-columns:1fr; }
  .blog-grid{ grid-template-columns:repeat(2,1fr);}
}
@media (max-width:860px){
  .main-nav, .nav-tel{ display:none; }
  .burger{ display:flex; }
  .hero-stats .container{ grid-template-columns:repeat(2,1fr); row-gap:20px; }
  .hero-stat:nth-child(2){ border-right:none; }
  .timeline{ grid-template-columns:1fr; gap:44px; }
  .timeline::before{ display:none; }
  .milestone-row{ grid-template-columns:repeat(2,1fr); gap:30px; }
  .form-row{ grid-template-columns:1fr; }
  .cta-banner{ padding:40px 28px; }
}
@media (max-width:640px){
  .section{ padding:70px 0; }
  .services-grid{ grid-template-columns:1fr; }
  .value-grid, .team-grid, .blog-grid{ grid-template-columns:1fr; }
  .topbar .container{ justify-content:center; }
  .topbar-left span:nth-child(2){ display:none; }
  .topbar-right{ display:none; }
  .brand img{ height:34px; }
  .nav-actions{ gap:8px; }
  .nav-actions .btn-sm{ padding:10px 16px; font-size:13px; }
  .trust-row{ flex-direction:column; align-items:flex-start; }
  .quote-steps span{ display:none; }
  .cta-banner{ flex-direction:column; align-items:flex-start; }
  .hero-stats .container{ grid-template-columns:1fr 1fr; }
  .hero-stat{ padding:6px 0; }
}
@media (max-width:400px){
  .nav-actions .btn-sm{ display:none; }
}
