/* ─────────────────────────────────────────
   RESET & TOKENS
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --ink:       #0b0d12;
  --slate:     #14171f;
  --navy:      #0d2244;
  --cobalt:    #275390;
  --sky:       #40abe1;
  --gold:      #b47932;
  --gold-lt:   #d09040;
  --cream:     #f3ede3;
  --white:     #ffffff;
  --font-d:    'Barlow Condensed', sans-serif;
  --font-s:    'Cormorant', serif;
  --font-b:    'Jost', sans-serif;
  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
  --ease-io:   cubic-bezier(0.4, 0, 0.2, 1);
}
html { scroll-behavior: smooth; font-size: 22px; }
body {
  font-family: var(--font-b);
  background: var(--ink);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; }

/* ─────────────────────────────────────────
   CUSTOM CURSOR
───────────────────────────────────────── */
#cur-dot {
  position: fixed; top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s, opacity .2s;
}
#cur-ring {
  position: fixed; top: 0; left: 0;
  width: 34px; height: 34px;
  border: 1.5px solid rgba(180,121,50,.55);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width .15s var(--ease), height .15s var(--ease), border-color .2s;
}
body.cursor-hover #cur-dot  { width: 14px; height: 14px; }
body.cursor-hover #cur-ring { width: 52px; height: 52px; border-color: rgba(180,121,50,.9); }

/* ─────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────── */
nav#nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 800;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 3.5rem;
  transition: padding .4s var(--ease-io), background .4s, backdrop-filter .4s;
}
nav#nav.pinned {
  background: rgba(11,13,18,.9);
  backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: 1rem 3.5rem;
}
.nav-brand { display: flex; align-items: center; gap: .8rem; }
.nav-brand img { height: 62px; width: auto; }
.nav-brand-copy {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  line-height: 1.3;
}
.nav-brand-copy small {
  display: block;
  font-weight: 300;
  font-size: .78rem;
  letter-spacing: .14em;
  color: var(--gold);
}
.nav-links {
  list-style: none;
  display: flex; align-items: center; gap: 2.25rem;
}
.nav-links a {
  font-family: var(--font-d);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  position: relative;
  transition: color .3s;
  cursor: none;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .35s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  padding: .55rem 1.35rem !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  transition: background .3s, color .3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold) !important; color: var(--ink) !important; }

.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: none; padding: 6px;
}
.nav-burger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--white); transition: all .3s;
}

/* ─────────────────────────────────────────
   NAV DROPDOWN
───────────────────────────────────────── */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: .35rem; }
.nav-dropdown > a .dd-caret { transition: transform .3s var(--ease); flex-shrink: 0; }
.nav-dropdown:hover > a .dd-caret { transform: rotate(180deg); }
.nav-dd-menu {
  position: absolute; top: calc(100% + .0rem); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: rgba(11,13,18,.97);
  backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,.08);
  border-top: 2px solid var(--gold);
  padding: .6rem 0; min-width: 280px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .22s var(--ease), visibility .22s, transform .22s var(--ease);
  z-index: 900;
}

.nav-dropdown:hover .nav-dd-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dd-menu a {
  display: block; padding: .55rem 1.5rem;
  font-family: var(--font-d); font-size: .8rem !important;
  letter-spacing: .12em !important; text-transform: uppercase;
  color: rgba(255,255,255,.6) !important;
  transition: color .2s, background .2s; white-space: nowrap;
}
.nav-dd-menu a::after { display: none !important; }
.nav-dd-menu a:hover { color: var(--gold) !important; background: rgba(255,255,255,.03); }
.nav-dd-menu .dd-active { color: var(--gold) !important; }
.nav-dd-menu .dd-divider { height: 1px; background: rgba(255,255,255,.08); margin: .4rem 0; }

/* ─────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────── */
@keyframes slideup {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideupslow {
  from { opacity: 0; transform: translateY(48px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes kbzoom { from { transform: scale(1.07); } to { transform: scale(1); } }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes scrollbar {
  0%   { transform: scaleY(0); transform-origin: top; }
  49%  { transform: scaleY(1); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes rpulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .4; }
}

/* Scroll reveals */
.rv, .rv-l, .rv-r {
  opacity: 0;
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}
.rv   { transform: translateY(42px); }
.rv-l { transform: translateX(-42px); }
.rv-r { transform: translateX(42px); }
.rv.on, .rv-l.on, .rv-r.on { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .45s; }

/* ─────────────────────────────────────────
   SECTION SHARED
───────────────────────────────────────── */
.sec-label {
  display: inline-flex; align-items: center; gap: .7rem;
  font-family: var(--font-d); font-size: .88rem; font-weight: 400;
  letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.1rem;
}
.sec-label::before {
  content: ''; display: block;
  width: 28px; height: 1px; background: var(--gold);
}

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn-gold {
  display: inline-flex; align-items: center; gap: .7rem;
  background: var(--gold); color: var(--ink);
  font-family: var(--font-d); font-weight: 700;
  font-size: .88rem; letter-spacing: .12em;
  text-transform: uppercase; padding: 1rem 1.9rem;
  position: relative; overflow: hidden;
  transition: transform .25s var(--ease);
  cursor: none;
}
.btn-gold::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,.18);
  transform: translateX(-101%); transition: transform .38s var(--ease);
}
.btn-gold:hover { transform: translateY(-2px); }
.btn-gold:hover::before { transform: translateX(0); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-d); font-weight: 600;
  font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.6);
  transition: color .3s; cursor: none;
}
.btn-ghost svg { transition: transform .3s var(--ease); }
.btn-ghost:hover { color: var(--white); }
.btn-ghost:hover svg { transform: translateX(5px); }

.text-link {
  display: inline-flex; align-items: center; gap: .7rem;
  font-family: var(--font-d); font-size: .8rem;
  font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); margin-top: .75rem;
  border-bottom: 1px solid rgba(180,121,50,.35);
  padding-bottom: .2rem;
  transition: gap .3s var(--ease), border-color .3s;
  cursor: none;
}
.text-link:hover { gap: 1.2rem; border-color: var(--gold); }

/* ─────────────────────────────────────────
   FLAG
───────────────────────────────────────── */
.flag-strip {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 30px; display: flex; z-index: 3;
}
.flag-strip span { flex: 1; }
.flag-strip span:nth-child(1) { background: #009246; }
.flag-strip span:nth-child(2) { background: #ffffff; }
.flag-strip span:nth-child(3) { background: #ce2b37; }

/* ─────────────────────────────────────────
   HERO (homepage)
───────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh; min-height: 640px;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../transport2.jpg') center 50% / cover no-repeat;
  transform: scale(1.07);
  animation: kbzoom 14s var(--ease) forwards;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgb(11 13 18) 0%, rgb(8 31 89 / 67%) 30%, rgba(11, 13, 18, .5) 65%, rgb(13 13 13 / 97%) 100%);
}
.hero-vline {
  position: absolute; top: 0; right: 5rem;
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent 0%, var(--gold) 40%, transparent 100%);
  opacity: .25;
}
.hero-body {
  position: relative; z-index: 2;
  padding: 0 3.5rem 5.5rem;
  max-width: 960px;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: 1.25rem;
  opacity: 0; animation: slideup .8s var(--ease) .3s forwards;
  background: #ffffff8f;
}
.hero-eyebrow-bar { width: 36px; height: 1px; background: var(--cobalt); }
.hero-eyebrow-txt {
  font-family: var(--font-d);
  font-size: .88rem; font-weight: 400;
  letter-spacing: .32em; text-transform: uppercase;
  color: var(--cobalt);
}
.hero-h1 {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: clamp(5rem, 13vw, 8rem);
  line-height: .88;
  text-transform: uppercase;
  opacity: 0; animation: slideup .9s var(--ease) .45s forwards;
}
.hero-h1 .outline {
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,.35);
}
.hero-h1 .accent { color: var(--gold); }
.hero-sub {
  margin-top: 1.5rem;
  font-weight: 900; font-size: 1.2rem; line-height: 1.7;
  color: rgba(255,255,255,1); max-width: 780px;
  opacity: 0; animation: slideup .9s var(--ease) .62s forwards;
  text-shadow: 2px 2px 1px #000000;
}
.hero-actions {
  margin-top: 2.25rem;
  display: flex; align-items: center; gap: 1.5rem;
  opacity: 0; animation: slideup .9s var(--ease) .78s forwards;
}
.hero-scroll-ind {
  position: absolute; right: 3.5rem; bottom: 2.5rem;
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  opacity: 0; animation: fadein 1s var(--ease) 1.1s forwards;
}
.hero-scroll-ind span {
  font-family: var(--font-d); font-size: .92rem;
  letter-spacing: .3em; text-transform: uppercase;
  color: rgba(255,255,255,.3); writing-mode: vertical-rl;
}
.scroll-bar {
  width: 3px; height: 52px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollbar 2.2s ease-in-out 1.4s infinite;
}

/* ─────────────────────────────────────────
   PAGE HERO (service pages)
───────────────────────────────────────── */
.page-hero {
  position: relative; height: 75vh; min-height: 560px;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: url('../transport2.jpg') center 55% / cover no-repeat;
  transform: scale(1.06);
  animation: kbzoom 12s var(--ease) forwards;
}
.page-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(11,13,18,.95) 0%, rgba(8,31,89,.55) 35%, rgba(11,13,18,.4) 65%, rgba(11,13,18,.97) 100%);
}
.page-hero .hero-vline {
  position: absolute; top: 0; right: 5rem;
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent 0%, var(--gold) 40%, transparent 100%);
  opacity: .25;
}
.page-hero-body {
  position: relative; z-index: 2;
  padding: 0 3.5rem 5rem; max-width: 900px;
}
.page-hero-body .hero-eyebrow {
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: 1.25rem;
  opacity: 0; animation: slideup .8s var(--ease) .3s forwards;
  background: transparent;
}
.page-hero-h1 {
  font-family: var(--font-d); font-weight: 900;
  font-size: clamp(4rem,11vw,7rem); line-height: .9;
  text-transform: uppercase;
  opacity: 0; animation: slideup .9s var(--ease) .45s forwards;
}
.page-hero-h1 .accent { color: var(--gold); }
.page-hero-sub {
  margin-top: 1.4rem; font-weight: 400; font-size: 1.05rem; line-height: 1.7;
  color: rgba(255,255,255,.8); max-width: 680px;
  opacity: 0; animation: slideup .9s var(--ease) .6s forwards;
}
.page-hero-actions {
  margin-top: 2rem; display: flex; align-items: center; gap: 1.5rem;
  opacity: 0; animation: slideup .9s var(--ease) .75s forwards;
}
.page-hero .flag-strip { height: 5px; }

/* ─────────────────────────────────────────
   BREADCRUMB
───────────────────────────────────────── */
.breadcrumb { background: #1c2030; padding: .9rem 3.5rem; border-bottom: 1px solid rgba(255,255,255,.06); }
.breadcrumb-inner {
  max-width: 1260px; margin: 0 auto;
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--font-d); font-size: .78rem; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,.35);
}
.breadcrumb-inner a { color: rgba(255,255,255,.45); transition: color .25s; font-size: 1.1rem; }
.breadcrumb-inner a:hover { color: var(--gold); }
.breadcrumb-inner .bc-sep { opacity: .6; font-size: 1.3rem; }
.breadcrumb-inner .bc-current { color: var(--gold); font-size: 1.1rem; }

/* ─────────────────────────────────────────
   OVERVIEW (service pages)
───────────────────────────────────────── */
.overview { background: var(--cream); padding: 7.5rem 3.5rem; overflow: hidden; }
.overview-inner {
  max-width: 1260px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5.5rem; align-items: center;
}
.overview-copy h2 {
  font-family: var(--font-d); font-weight: 800;
  font-size: clamp(2.2rem,4vw,3.6rem); line-height: .96;
  text-transform: uppercase; color: var(--ink); margin-bottom: 1.5rem;
}
.overview-copy h2 .serif-em {
  display: block; font-family: var(--font-s); font-weight: 300; font-style: italic;
  font-size: .6em; letter-spacing: .04em; color: var(--gold);
  text-transform: none; margin-bottom: .15em;
}
.overview-copy p { font-weight: 300; font-size: 1rem; line-height: 1.85; color: rgba(0,0,0,.62); margin-bottom: .85rem; }
.overview-img { position: relative; }
.overview-img img { width: 100%; height: 460px; object-fit: cover; position: relative; z-index: 1; }
.overview-img::before {
  content: ''; position: absolute; top: -18px; left: -18px; right: 18px; bottom: 18px;
  border: 1px solid rgba(180,121,50,.25); z-index: 0;
}

/* ─────────────────────────────────────────
   FEATURES (service pages)
───────────────────────────────────────── */
.features { background: #eef3f8; padding: 7.5rem 3.5rem; }
.features-inner { max-width: 1260px; margin: 0 auto; }
.features-head { text-align: center; margin-bottom: 4rem; }
.features-head .sec-label { justify-content: center; }
.features-head .sec-label::before { display: none; }
.features-head .sec-label::after { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }
.features-head h2 {
  font-family: var(--font-d); font-weight: 800;
  font-size: clamp(2.2rem,4vw,3.2rem); text-transform: uppercase; color: var(--ink);
}
.feat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.feat-card {
  border: 1px solid rgba(0,0,0,.1); background: rgba(255,255,255,.65);
  padding: 2.5rem 1.75rem; text-align: center;
  transition: border-color .3s, background .3s; cursor: none;
}
.feat-card:hover { border-color: rgba(180,121,50,.45); background: rgba(255,255,255,.95); }
.feat-ico { width: 44px; height: 44px; margin: 0 auto 1.4rem; color: var(--gold); }
.feat-card h3 {
  font-family: var(--font-d); font-weight: 700;
  font-size: 1.15rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink); margin-bottom: .65rem;
}
.feat-card p { font-size: .95rem; font-weight: 300; line-height: 1.72; color: rgba(0,0,0,.58); }

/* ─────────────────────────────────────────
   PROCESS (service pages)
───────────────────────────────────────── */
.process { background: var(--navy); padding: 7.5rem 3.5rem; position: relative; overflow: hidden; }
.process::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 65% 50%, rgba(39,83,144,.35), transparent);
  pointer-events: none;
}
.process-inner { max-width: 1260px; margin: 0 auto; }
.process-head { margin-bottom: 4rem; }
.process-head h2 {
  font-family: var(--font-d); font-weight: 800;
  font-size: clamp(2.2rem,4vw,3.2rem); text-transform: uppercase; color: var(--white);
}
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2.5rem; }
.step-num {
  font-family: var(--font-d); font-weight: 900;
  font-size: 4.5rem; line-height: 1;
  color: var(--gold); opacity: .4; margin-bottom: 1rem;
}
.step h3 {
  font-family: var(--font-d); font-weight: 700;
  font-size: 1.3rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--white); margin-bottom: .75rem;
}
.step p { font-size: .95rem; font-weight: 300; line-height: 1.78; color: rgba(255,255,255,.6); }

/* ─────────────────────────────────────────
   INTRO / ABOUT (homepage)
───────────────────────────────────────── */
.about {
  background: #f5f1eb;
  padding: 7.5rem 3.5rem;
  position: relative; overflow: hidden;
}
.about-watermark {
  position: absolute; right: -3vw; top: 50%; transform: translateY(-50%);
  font-family: var(--font-d); font-weight: 900;
  font-size: clamp(8rem, 20vw, 22rem);
  text-transform: uppercase; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0,0,0,.04);
  pointer-events: none; user-select: none;
}
.about-inner {
  max-width: 1260px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: center;
}
.about-copy h2 {
  font-family: var(--font-d); font-weight: 800;
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  line-height: .96; text-transform: uppercase;
  margin-bottom: 1.5rem; color: var(--ink);
}
.about-copy h2 .serif-em {
  display: block; font-family: var(--font-s);
  font-weight: 300; font-style: italic;
  font-size: .62em; letter-spacing: .04em;
  color: var(--gold); text-transform: none;
  margin-bottom: .15em;
}
.about-copy p {
  font-weight: 300; font-size: 1.05rem; line-height: 1.82;
  color: rgba(0,0,0,.6); margin-bottom: .85rem;
}
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.stat {
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(0,0,0,.1);
  padding: 2.25rem 2rem;
  transition: background .3s, border-color .3s;
  cursor: none;
}
.stat:hover {
  background: rgba(180,121,50,.07);
  border-color: rgba(180,121,50,.3);
}
.stat-n {
  font-family: var(--font-d); font-weight: 900;
  font-size: clamp(2.4rem, 4vw, 3.6rem); line-height: 1;
  color: var(--gold); margin-bottom: .4rem;
}
.stat-lbl {
  font-family: var(--font-d); font-size: .82rem; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(0,0,0,.5);
}

/* ─────────────────────────────────────────
   SERVICES (homepage)
───────────────────────────────────────── */
.services { background: var(--cream); padding: 7.5rem 3.5rem; }
.services-inner { max-width: 1260px; margin: 0 auto; }
.services-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 3.75rem;
}
.services-head .sec-label { color: var(--cobalt); }
.services-head .sec-label::before { background: var(--cobalt); }
.services-head h2 {
  font-family: var(--font-d); font-weight: 800;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  text-transform: uppercase; line-height: .96; color: var(--ink);
}
.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5px; background: rgba(0,0,0,.08);
}
.svc-card {
  background: #fff; padding: 2.75rem 2.25rem;
  position: relative; overflow: hidden;
  cursor: none; transition: background .3s;
}
.svc-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--cobalt);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.svc-card:hover { background: #faf7f2; }
.svc-card:hover::after { transform: scaleX(1); }
.svc-num {
  position: absolute; top: 1.75rem; right: 2.25rem;
  font-family: var(--font-d); font-weight: 900;
  font-size: 4.5rem; line-height: 1;
  color: rgba(0,0,0,.04); pointer-events: none;
}
.svc-icon { width: 44px; height: 44px; margin-bottom: 1.6rem; color: var(--cobalt); }
.svc-title {
  font-family: var(--font-d); font-weight: 700;
  font-size: 1.5rem; letter-spacing: .03em;
  text-transform: uppercase; color: var(--ink); margin-bottom: .65rem;
}
.svc-desc { font-size: 1rem; font-weight: 300; line-height: 1.75; color: rgba(0,0,0,.6); }

/* ─────────────────────────────────────────
   FLEET MARQUEE (homepage)
───────────────────────────────────────── */
.fleet { background: #1c2030; padding: 6.5rem 0; overflow: hidden; }
.fleet-head { padding: 0 3.5rem; max-width: 1260px; margin: 0 auto 3rem; }
.fleet-head h2 {
  font-family: var(--font-d); font-weight: 800;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  text-transform: uppercase; color: var(--white);
}
.fleet-track { overflow: hidden; }
.fleet-strip { display: flex; gap: 2px; width: max-content; animation: marquee 28s linear infinite; }
.fleet-strip:hover { animation-play-state: paused; }
.fleet-strip img {
  width: 360px; height: 245px; object-fit: cover; flex-shrink: 0;
  filter: saturate(.85) brightness(.9);
  transition: filter .5s, transform .5s var(--ease);
}
.fleet-strip img:hover { filter: saturate(1) brightness(1); transform: scale(1.02); }

/* ─────────────────────────────────────────
   COVERAGE (homepage)
───────────────────────────────────────── */
.coverage { background: var(--navy); padding: 7.5rem 3.5rem; position: relative; overflow: hidden; }
.coverage::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 65% 50%, rgba(39,83,144,.35), transparent);
  pointer-events: none;
}
.coverage-inner {
  max-width: 1260px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 6rem; align-items: center;
}
.coverage-copy h2 {
  font-family: var(--font-d); font-weight: 800;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  text-transform: uppercase; line-height: .96; color: var(--white); margin-bottom: 1.5rem;
}
.coverage-copy p { font-weight: 300; font-size: 1.05rem; line-height: 1.82; color: rgba(255,255,255,.65); margin-bottom: 1.75rem; }
.city-list {
  list-style: none;
  display: grid; grid-template-columns: 1fr 1fr; gap: .6rem .5rem; margin-bottom: 2.5rem;
}
.city-list li {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--font-d); font-size: 1rem;
  font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.82);
}
.city-list li::before { content: ''; width: 5px; height: 5px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.map-wrap { display: flex; justify-content: center; align-items: center; }
.italia-map-container { position: relative; width: 100%; filter: drop-shadow(0 0 48px rgba(64,171,225,.18)); }
.map-svg-real { width: 100%; height: auto; filter: sepia(1) saturate(3) hue-rotate(190deg) brightness(0.75); }
.city-pin { position: absolute; transform: translate(-50%, -50%); display: flex; align-items: center; gap: 6px; pointer-events: none; }
.pin-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; box-shadow: 0 0 0 3px rgba(255,255,255,.2); }
.pin-dot-gold { background: var(--gold); }
.pin-dot-sky  { background: var(--sky); }
.pin-label { font-family: 'Barlow Condensed', sans-serif; font-size: 9px; font-weight: 600; letter-spacing: .08em; color: rgba(255,255,255,.9); text-shadow: 0 1px 3px rgba(0,0,0,.8); white-space: nowrap; }
.route-pulse { animation: rpulse 2.4s ease-in-out infinite; }

/* ─────────────────────────────────────────
   WHY US (homepage)
───────────────────────────────────────── */
.why { background: #eef3f8; padding: 7.5rem 3.5rem; }
.why-inner { max-width: 1260px; margin: 0 auto; }
.why-head { text-align: center; margin-bottom: 4rem; }
.why-head .sec-label { justify-content: center; }
.why-head .sec-label::before { display: none; }
.why-head .sec-label::after { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }
.why-head h2 {
  font-family: var(--font-d); font-weight: 800;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  text-transform: uppercase; color: var(--ink);
}
.why-head h2 em { font-style: italic; font-family: var(--font-s); font-weight: 300; font-size: .72em; color: var(--gold); display: block; margin-bottom: .1em; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.why-card {
  border: 1px solid rgba(0,0,0,.1);
  background: rgba(255,255,255,.6);
  padding: 2.5rem 1.75rem; text-align: center;
  transition: border-color .3s, background .3s; cursor: none;
}
.why-card:hover { border-color: rgba(180,121,50,.45); background: rgba(255,255,255,.95); }
.why-ico { width: 44px; height: 44px; margin: 0 auto 1.4rem; color: var(--gold); }
.why-card h3 {
  font-family: var(--font-d); font-weight: 700;
  font-size: 1.2rem; letter-spacing: .06em;
  text-transform: uppercase; color: var(--ink); margin-bottom: .65rem;
}
.why-card p { font-size: 1rem; font-weight: 300; line-height: 1.72; color: rgba(0,0,0,.58); }

/* ─────────────────────────────────────────
   CONTACT
───────────────────────────────────────── */
.contact { position: relative; padding: 8rem 3.5rem; overflow: hidden; }
.contact-bg {
  position: absolute; inset: 0;
  background: url('../transport3.jpg') center 60% / cover no-repeat;
}
.contact-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(11,13,18,.97) 0%, rgba(11,13,18,.82) 55%, rgba(11,13,18,.55) 100%);
}
.contact-inner {
  position: relative; z-index: 2;
  max-width: 1260px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 5.5rem; align-items: start;
}
.contact-copy h2 {
  font-family: var(--font-d); font-weight: 900;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  text-transform: uppercase; line-height: .94; color: var(--white); margin-bottom: 1.5rem;
}
.contact-copy h2 em { font-style: normal; color: var(--gold); }
.contact-copy p { font-weight: 300; font-size: 1.05rem; line-height: 1.8; color: rgba(255,255,255,.65); margin-bottom: 2rem; }
.contact-detail { display: flex; align-items: center; gap: .8rem; margin-bottom: .75rem; }
.contact-detail svg { color: var(--gold); flex-shrink: 0; }
.contact-detail span { font-size: 1rem; color: rgba(255,255,255,.65); font-weight: 300; }
.form-box {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(12px); padding: 2.5rem;
}
.form-box h3 {
  font-family: var(--font-d); font-weight: 700;
  font-size: 1.05rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--white); margin-bottom: 1.75rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; margin-bottom: .9rem; }
.form-group { margin-bottom: .9rem; }
.form-group label {
  display: block; font-family: var(--font-d);
  font-size: .82rem; font-weight: 400;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.55); margin-bottom: .45rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.11);
  color: var(--white);
  font-family: var(--font-b); font-size: 1rem; font-weight: 300;
  padding: .8rem 1rem; outline: none;
  transition: border-color .3s, background .3s;
  cursor: none; appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); background: rgba(180,121,50,.06); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.28); }
.form-group textarea { resize: none; height: 96px; }
.form-group select option { background: var(--ink); }
.form-submit {
  width: 100%; margin-top: .3rem;
  background: var(--gold); color: var(--ink);
  font-family: var(--font-d); font-weight: 700;
  font-size: .88rem; letter-spacing: .15em; text-transform: uppercase;
  padding: 1.05rem; cursor: none; transition: background .3s, transform .2s;
}
.form-submit:hover { background: var(--gold-lt); transform: translateY(-1px); }

.form-notice {
  padding: .85rem 1.1rem;
  border-radius: 4px;
  font-size: .88rem;
  margin-bottom: 1.4rem;
  line-height: 1.5;
}
.form-notice--ok  { background: rgba(100,200,120,.12); border-left: 3px solid #64c878; color: #9ee8ac; }
.form-notice--err { background: rgba(220, 80, 80,.12); border-left: 3px solid #dc5050; color: #f4a0a0; }

/* ─────────────────────────────────────────
   GROUP BANNER
───────────────────────────────────────── */
.group-banner { background: var(--cobalt); padding: 2.25rem 3.5rem; }
.group-banner-inner {
  max-width: 1260px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.group-banner-txt { font-family: var(--font-d); font-weight: 300; font-size: 1.4rem; letter-spacing: .1em; color: rgba(255,255,255,.75); }
.group-banner-txt strong { font-weight: 700; color: var(--white); }
.group-banner-link {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-d); font-weight: 600;
  font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(180,121,50,.5);
  padding: .5rem 1.2rem; transition: background .3s, color .3s; cursor: none;
}
.group-banner-link:hover { background: var(--gold); color: var(--ink); }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer { background: var(--navy); padding: 5rem 3.5rem 2.5rem; border-top: 1px solid rgba(255,255,255,.05); }
.footer-inner { max-width: 1260px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3.5rem; padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,.07); margin-bottom: 2rem;
}
.footer-brand-logo { height: 54px; width: auto; margin-bottom: 1.2rem; }
.footer-brand p { font-size: 1rem; font-weight: 300; line-height: 1.72; color: rgba(255,255,255,.5); max-width: 290px; margin-bottom: 1.5rem; }
.flag-badge { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-d); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.28); }
.flag-mini { display: flex; width: 18px; height: 12px; border-radius: 2px; overflow: hidden; }
.flag-mini span { flex: 1; }
.flag-mini span:nth-child(1) { background: #009246; }
.flag-mini span:nth-child(2) { background: #fff; }
.flag-mini span:nth-child(3) { background: #ce2b37; }
.footer-col h4 { font-family: var(--font-d); font-weight: 700; font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--white); margin-bottom: 1.1rem; }
.footer-list { list-style: none; }
.footer-list li { margin-bottom: .55rem; }
.footer-list a { font-size: 1rem; font-weight: 300; color: rgba(255,255,255,.5); transition: color .3s; cursor: none; }
.footer-list a:hover { color: var(--gold); }
.f-contact-item { display: flex; align-items: flex-start; gap: .65rem; margin-bottom: .65rem; }
.f-contact-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.f-contact-item span { font-size: 1rem; color: rgba(255,255,255,.5); font-weight: 300; line-height: 1.55; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: .9rem; color: rgba(255,255,255,.35); }
.footer-meta { display: flex; gap: 1.5rem; }
.footer-meta a { font-size: .9rem; color: rgba(255,255,255,.35); transition: color .3s; cursor: none; }
.footer-meta a:hover { color: rgba(255,255,255,.5); }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1100px) {
  .about-inner, .overview-inner, .coverage-inner, .contact-inner { grid-template-columns: 1fr; gap: 3.5rem; }
  .about-watermark { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .map-wrap { max-width: 260px; margin: 0 auto; }
}
@media (max-width: 860px) {
  nav#nav { padding: 1.25rem 2rem; }
  nav#nav.pinned { padding: .9rem 2rem; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-dd-menu { display: none; }
  .hero-body { padding: 0 2rem 4.5rem; }
  .hero-scroll-ind { right: 2rem; }
  .page-hero-body, .breadcrumb { padding-left: 2rem; padding-right: 2rem; }
  .about, .services, .overview, .features, .process, .coverage, .why, .contact { padding-left: 2rem; padding-right: 2rem; }
  .fleet-head { padding-left: 2rem; padding-right: 2rem; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .services-head { flex-direction: column; align-items: flex-start; gap: .5rem; }
  .steps-grid { grid-template-columns: 1fr; gap: 2rem; }
  .group-banner { padding: 2rem; }
  footer { padding-left: 2rem; padding-right: 2rem; }
}
@media (max-width: 580px) {
  nav#nav { padding: 1rem 1.5rem; }
  .hero-body { padding: 0 1.5rem 4rem; }
  .page-hero-body { padding: 0 1.5rem 3.5rem; }
  .about, .services, .overview, .features, .process, .coverage, .why, .contact { padding-left: 1.5rem; padding-right: 1.5rem; }
  .fleet-head { padding-left: 1.5rem; padding-right: 1.5rem; }
  .svc-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  footer { padding-left: 1.5rem; padding-right: 1.5rem; }
  .group-banner { padding: 1.5rem; }
  .overview-img img { height: 280px; }
  .overview-img::before { display: none; }
}
