/* ============================================================
   HISTORY — Project Logistics & Freight Forwarding
   Static site stylesheet
   Brand: cyan #16A6E0 · navy #2C4A6E · dark #16283F
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --cyan: #16a6e0;
  --cyan-dark: #0f86ba;
  --navy: #2c4a6e;
  --navy-deep: #16283f;
  --ink: #17293c;
  --muted: #5c6b7a;
  --line: #e4e9ef;
  --bg: #ffffff;
  --bg-soft: #f4f7fb;
  --bg-soft-2: #eaf1f8;
  --white: #ffffff;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 10px rgba(22, 40, 63, .06);
  --shadow: 0 12px 32px rgba(22, 40, 63, .10);
  --shadow-lg: 0 24px 60px rgba(22, 40, 63, .16);
  --maxw: 1200px;
  --header-h: 84px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --font: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16.5px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
h1, h2, h3, h4 { line-height: 1.18; color: var(--navy-deep); margin: 0 0 .5em; font-weight: 700; letter-spacing: -.01em; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; }
section { position: relative; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 92px 0; }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--navy-deep); color: #dbe6f2; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--cyan); border-radius: 2px; }
.section-head { max-width: 760px; margin-bottom: 54px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 17px; margin: 0; }
.section--dark .section-head p { color: #a9bdd3; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 28px; border-radius: 999px; font-weight: 600; font-size: 15px;
  cursor: pointer; border: 2px solid transparent; transition: all .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--cyan); color: #fff; box-shadow: 0 8px 20px rgba(22, 166, 224, .32); }
.btn--primary:hover { background: var(--cyan-dark); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(22, 166, 224, .42); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .45); }
.btn--ghost:hover { background: #fff; color: var(--navy-deep); border-color: #fff; }
.btn--dark { background: var(--navy); color: #fff; }
.btn--dark:hover { background: var(--navy-deep); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--navy); border-color: var(--line); }
.btn--outline:hover { border-color: var(--cyan); color: var(--cyan); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 52px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-menu a {
  display: block; padding: 10px 15px; font-weight: 500; font-size: 15px; color: var(--navy);
  border-radius: 8px; position: relative;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--cyan); }
.nav-menu a.active::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 4px; height: 2px;
  background: var(--cyan); border-radius: 2px;
}
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 8px;
  width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 5px;
}
.nav-toggle span { display: block; height: 2.5px; width: 24px; background: var(--navy-deep); border-radius: 3px; transition: all .3s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Nav dropdown ---------- */
.nav-menu .has-dropdown { position: relative; }
.nav-menu .has-dropdown > a .caret { width: 13px; height: 13px; margin-left: 3px; vertical-align: -1px; transition: transform .2s var(--ease); }
.nav-menu .has-dropdown:hover > a .caret { transform: rotate(180deg); }
.nav-menu .dropdown {
  position: absolute; top: calc(100% - 6px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 256px; background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow); padding: 10px; list-style: none; display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; transition: opacity .22s var(--ease), transform .22s var(--ease); z-index: 60;
}
.nav-menu .has-dropdown:hover .dropdown, .nav-menu .has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav-menu .dropdown li { width: 100%; }
.nav-menu .dropdown a { display: flex; align-items: center; gap: 10px; padding: 11px 14px; border-radius: 9px; font-size: 14.5px; font-weight: 500; white-space: nowrap; color: var(--navy); }
.nav-menu .dropdown a:hover { background: var(--bg-soft); color: var(--cyan); }
.nav-menu .dropdown a.active { color: var(--cyan); }
.nav-menu .dropdown a::after { display: none; }
.nav-menu .dropdown svg { width: 17px; height: 17px; color: var(--cyan); flex: none; }

/* ---------- Photo service cards ---------- */
.card--photo { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.card--photo .card__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-soft-2); }
.card--photo .card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.card--photo:hover .card__media img { transform: scale(1.06); }
.card--photo .card__body { padding: 26px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.card--photo .card__ico { width: 46px; height: 46px; border-radius: 11px; display: grid; place-items: center; background: linear-gradient(135deg, var(--cyan), #4bc4f2); color: #fff; margin-bottom: 14px; box-shadow: 0 8px 18px rgba(22,166,224,.28); }
.card--photo .card__ico svg { width: 24px; height: 24px; }
.card--photo h3 { font-size: 19px; margin-bottom: 9px; }
.card--photo p { color: var(--muted); font-size: 14.5px; margin-bottom: 16px; flex: 1; }

/* ---------- Service detail bits ---------- */
.sector-card { display: flex; gap: 16px; align-items: flex-start; padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: box-shadow .3s var(--ease), transform .3s var(--ease); }
.sector-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.sector-card__icon { width: 50px; height: 50px; border-radius: 12px; background: var(--bg-soft-2); color: var(--cyan); display: grid; place-items: center; flex: none; }
.sector-card__icon svg { width: 26px; height: 26px; }
.sector-card h3 { font-size: 17px; margin-bottom: 6px; }
.sector-card p { margin: 0; color: var(--muted); font-size: 14.5px; }
.callout { border-left: 4px solid var(--cyan); background: var(--bg-soft); border-radius: 0 14px 14px 0; padding: 26px 30px; font-size: 18px; color: var(--ink); font-weight: 500; }

/* ---------- Quotation form ---------- */
.quote-layout { display: grid; grid-template-columns: 1fr; gap: 26px; max-width: 900px; margin: 0 auto; }
.quote-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 8px; }
.quote-tab {
  display: inline-flex; align-items: center; gap: 9px; padding: 13px 22px; border-radius: 12px;
  border: 1.5px solid var(--line); background: #fff; color: var(--navy); font-weight: 600; font-size: 15px;
  font-family: inherit; cursor: pointer; transition: all .2s var(--ease);
}
.quote-tab svg { width: 20px; height: 20px; color: var(--cyan); }
.quote-tab:hover { border-color: var(--cyan); }
.quote-tab.active { background: var(--navy-deep); color: #fff; border-color: var(--navy-deep); }
.quote-tab.active svg { color: #7fd4f6; }
.js .quote-panel { display: none; }
.js .quote-panel.active { display: block; animation: fadeIn .3s var(--ease); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.quote-section-title { font-size: 15px; font-weight: 700; color: var(--navy-deep); text-transform: uppercase; letter-spacing: .08em; margin: 6px 0 4px; padding-bottom: 10px; border-bottom: 2px solid var(--bg-soft-2); display: flex; align-items: center; gap: 9px; }
.quote-section-title svg { width: 20px; height: 20px; color: var(--cyan); }
.dims { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 12px; }
.quote-note { font-size: 13px; color: var(--muted); background: var(--bg-soft); border-radius: 10px; padding: 12px 16px; margin-top: 6px; }
@media (max-width: 640px) { .dims { grid-template-columns: 1fr 1fr; } }

/* ---------- Mobile: dropdown becomes inline list ---------- */
@media (max-width: 820px) {
  .nav-menu .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    border: 0; border-radius: 0; padding: 0 0 0 16px; min-width: 0; background: transparent; margin-top: 0;
  }
  .nav-menu .dropdown a { padding: 12px 12px; font-size: 15px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav-menu .dropdown svg { display: none; }
  .nav-menu .has-dropdown > a .caret { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background: linear-gradient(120deg, #0f2136 0%, #1d3a5c 55%, #22558a 100%);
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(900px 500px at 78% 12%, rgba(22, 166, 224, .35), transparent 60%);
  pointer-events: none;
}
.hero__img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: .22; mix-blend-mode: luminosity;
}
.hero__inner { position: relative; z-index: 2; padding: 110px 0 118px; max-width: 780px; }
.hero h1 { color: #fff; font-size: clamp(34px, 5.4vw, 62px); line-height: 1.08; margin-bottom: 22px; letter-spacing: -.02em; }
.hero h1 .accent { color: var(--cyan); }
.hero p { font-size: clamp(16px, 2vw, 20px); color: #cfe0f0; max-width: 620px; margin-bottom: 34px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__strip {
  position: relative; z-index: 2; display: flex; flex-wrap: wrap; gap: 10px 34px;
  padding: 22px 0 4px; border-top: 1px solid rgba(255, 255, 255, .14);
}
.hero__strip span { display: inline-flex; align-items: center; gap: 9px; font-size: 14.5px; color: #b9cde2; }
.hero__strip svg { width: 18px; height: 18px; color: var(--cyan); flex: none; }

/* page hero (interior) */
.pagehero {
  position: relative; color: #fff; padding: 76px 0 68px;
  background: linear-gradient(120deg, #0f2136 0%, #1d3a5c 60%, #234f80 100%);
  overflow: hidden;
}
.pagehero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 380px at 85% 0%, rgba(22, 166, 224, .30), transparent 60%); }
.pagehero__inner { position: relative; z-index: 2; }
.pagehero h1 { color: #fff; font-size: clamp(30px, 4.5vw, 48px); margin-bottom: 12px; }
.pagehero p { color: #c8dbee; max-width: 640px; margin: 0; font-size: 17px; }
.crumbs { display: flex; gap: 8px; align-items: center; font-size: 14px; color: #9fb8d2; margin-bottom: 18px; }
.crumbs a:hover { color: #fff; }
.crumbs span { color: var(--cyan); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 8px; }
.stat__num { font-size: clamp(34px, 5vw, 52px); font-weight: 800; color: var(--cyan); line-height: 1; letter-spacing: -.02em; }
.stat__label { margin-top: 10px; font-size: 15px; color: var(--muted); font-weight: 500; }
.section--dark .stat__label { color: #a9bdd3; }

/* ---------- Cards / services ---------- */
.grid { display: grid; gap: 26px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  position: relative; overflow: hidden; height: 100%;
}
.card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0; background: var(--cyan);
  transition: width .35s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card:hover::before { width: 100%; }
.card__icon {
  width: 58px; height: 58px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--cyan), #4bc4f2); color: #fff; margin-bottom: 20px;
  box-shadow: 0 10px 22px rgba(22, 166, 224, .30);
}
.card__icon svg { width: 28px; height: 28px; }
.card h3 { font-size: 20px; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 15px; margin-bottom: 16px; }
.card__link { color: var(--cyan); font-weight: 600; font-size: 14.5px; display: inline-flex; align-items: center; gap: 6px; }
.card__link svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.card:hover .card__link svg { transform: translateX(4px); }

/* ---------- About split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; height: 100%; object-fit: cover; }
.split__badge {
  position: absolute; right: -18px; bottom: -18px; background: var(--cyan); color: #fff;
  padding: 20px 26px; border-radius: var(--radius-sm); box-shadow: var(--shadow); text-align: center;
}
.split__badge b { display: block; font-size: 30px; line-height: 1; }
.split__badge span { font-size: 13px; opacity: .95; }
.lead { font-size: 18px; color: var(--ink); }

.ticklist { list-style: none; display: grid; gap: 12px; margin: 22px 0 28px; }
.ticklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); font-size: 15.5px; }
.ticklist svg { width: 22px; height: 22px; color: var(--cyan); flex: none; margin-top: 2px; }

/* ---------- Value / feature tiles ---------- */
.tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.tile { padding: 30px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); }
.tile__icon { width: 50px; height: 50px; border-radius: 12px; background: var(--bg-soft-2); color: var(--navy); display: grid; place-items: center; margin-bottom: 16px; }
.tile__icon svg { width: 26px; height: 26px; }
.tile h3 { font-size: 18px; margin-bottom: 8px; }
.tile p { color: var(--muted); font-size: 15px; margin: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff; border-radius: 20px; padding: 54px; text-align: center; position: relative; overflow: hidden;
}
.cta-band::after { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 80% 20%, rgba(22, 166, 224, .3), transparent 60%); }
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; font-size: clamp(26px, 3.6vw, 38px); margin-bottom: 12px; }
.cta-band p { color: #c6d7ea; max-width: 560px; margin: 0 auto 26px; }
.cta-band .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- References marquee ---------- */
.ref-note { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.ref-pill { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 26px 16px; font-weight: 600; color: var(--navy); font-size: 15px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 46px; align-items: start; }
.info-row { display: flex; gap: 16px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: 0; }
.info-row__icon { width: 48px; height: 48px; border-radius: 12px; background: var(--bg-soft-2); color: var(--cyan); display: grid; place-items: center; flex: none; }
.info-row__icon svg { width: 24px; height: 24px; }
.info-row h4 { margin: 0 0 4px; font-size: 15px; color: var(--navy-deep); }
.info-row p, .info-row a { margin: 0; color: var(--muted); font-size: 15.5px; }
.info-row a:hover { color: var(--cyan); }

.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-sm); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 14px; font-weight: 600; color: var(--navy-deep); margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 10px;
  font-family: inherit; font-size: 15px; color: var(--ink); background: #fbfcfe; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(22, 166, 224, .15); background: #fff;
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 4px; }
.form-alert { padding: 14px 16px; border-radius: 10px; font-size: 14.5px; margin-bottom: 18px; display: none; }
.form-alert.ok { display: block; background: #e7f7ee; color: #1c7a45; border: 1px solid #b6e4c9; }
.form-alert.err { display: block; background: #fdecec; color: #b5322f; border: 1px solid #f5c2c0; }

.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); line-height: 0; }
.map-embed iframe { width: 100%; height: 380px; border: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: #a9bdd3; padding: 68px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 44px; }
.footer-brand img { height: 66px; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 14.5px; color: #92aac6; max-width: 300px; }
.footer-col h4 { color: #fff; font-size: 15px; margin-bottom: 18px; letter-spacing: .02em; }
.footer-col ul { list-style: none; display: grid; gap: 11px; }
.footer-col a { color: #a9bdd3; font-size: 14.5px; }
.footer-col a:hover { color: var(--cyan); }
.footer-contact li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; margin-bottom: 13px; }
.footer-contact svg { width: 18px; height: 18px; color: var(--cyan); flex: none; margin-top: 2px; }
.social { display: flex; gap: 10px; margin-top: 18px; }
.social a {
  width: 40px; height: 40px; border-radius: 10px; background: rgba(255, 255, 255, .08);
  display: grid; place-items: center; color: #cddcec; transition: all .25s var(--ease);
}
.social a:hover { background: var(--cyan); color: #fff; transform: translateY(-3px); }
.social svg { width: 19px; height: 19px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1); padding-top: 24px;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 13.5px; color: #7f97b3;
}

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 10px 26px rgba(37, 211, 102, .45);
  transition: transform .25s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* ---------- Interior page-hero photo background ---------- */
.pagehero__bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: .20; mix-blend-mode: luminosity; z-index: 0;
}

/* ---------- Global coverage / network map ---------- */
.coverage { background: linear-gradient(120deg, #0f2136 0%, #16304e 55%, #1d3f66 100%); color: #dbe6f2; overflow: hidden; }
.coverage .section-head h2 { color: #fff; }
.coverage .section-head p { color: #a9bdd3; }
.map-wrap {
  position: relative; margin-top: 20px; border-radius: var(--radius);
  background:
    radial-gradient(1100px 460px at 52% 44%, rgba(22, 166, 224, .16), transparent 62%),
    repeating-radial-gradient(circle at 50% 50%, rgba(255,255,255,.05) 0 1.6px, transparent 1.6px 22px);
  padding: 12px;
}
.map-svg { width: 100%; height: auto; display: block; }
.map-route { fill: none; stroke: url(#routeGrad); stroke-width: 1.6; stroke-dasharray: 5 7; opacity: .85; }
.js .map-route { stroke-dashoffset: 260; animation: dash 3.4s linear infinite; }
@keyframes dash { to { stroke-dashoffset: 0; } }
.map-hub { fill: #7fd4f6; }
.map-hub--main { fill: #16a6e0; }
.js .map-pulse { transform-box: fill-box; transform-origin: center; animation: pulse 2.6s ease-out infinite; }
@keyframes pulse { 0% { r: 5; opacity: .55; } 70% { r: 22; opacity: 0; } 100% { opacity: 0; } }
.map-label { fill: #cfe0f0; font-size: 13px; font-weight: 500; font-family: var(--font); }
.map-label--main { fill: #fff; font-weight: 700; font-size: 15px; }
.coverage-tags { display: flex; flex-wrap: wrap; gap: 10px 12px; justify-content: center; margin-top: 34px; }
.coverage-tags span {
  border: 1px solid rgba(255,255,255,.18); color: #cfe0f0; border-radius: 999px;
  padding: 8px 18px; font-size: 14px; font-weight: 500; background: rgba(255,255,255,.04);
}
@media (prefers-reduced-motion: reduce) {
  .js .map-route, .js .map-pulse { animation: none; }
  .js .map-route { stroke-dashoffset: 0; }
}
@media (max-width: 560px) { .map-label, .map-label--main { display: none; } }

/* ---------- Lightbox ---------- */
.gallery__item { cursor: zoom-in; }
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  background: rgba(10, 20, 33, .92); backdrop-filter: blur(4px);
  align-items: center; justify-content: center; padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 84vh; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lightbox__cap { position: absolute; left: 0; right: 0; bottom: 26px; text-align: center; color: #cfe0f0; font-size: 15px; font-weight: 500; }
.lightbox__btn {
  position: absolute; top: 20px; right: 24px; width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: 0; color: #fff; cursor: pointer; font-size: 26px; line-height: 1;
  display: grid; place-items: center; transition: background .2s;
}
.lightbox__btn:hover { background: rgba(255,255,255,.25); }
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 0; color: #fff; cursor: pointer; display: grid; place-items: center; transition: background .2s;
}
.lightbox__nav:hover { background: rgba(255,255,255,.24); }
.lightbox__nav svg { width: 26px; height: 26px; }
.lightbox__nav--prev { left: 20px; }
.lightbox__nav--next { right: 20px; }
@media (max-width: 560px) { .lightbox__nav { width: 42px; height: 42px; } }

/* ---------- Project gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery__item {
  position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery__item:hover img { transform: scale(1.07); }
.gallery__cap {
  position: absolute; inset: auto 0 0 0; padding: 30px 18px 16px; color: #fff;
  background: linear-gradient(to top, rgba(15, 33, 54, .9), transparent);
  font-weight: 600; font-size: 15px; opacity: 0; transform: translateY(10px); transition: all .35s var(--ease);
}
.gallery__item:hover .gallery__cap { opacity: 1; transform: none; }
.gallery__tag { display: block; font-size: 12px; font-weight: 500; color: var(--cyan); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 2px; }

/* ---------- News ---------- */
.news-empty { text-align: center; max-width: 560px; margin: 0 auto; padding: 30px 0; }
.news-empty__icon { width: 76px; height: 76px; border-radius: 20px; background: var(--bg-soft-2); color: var(--cyan); display: grid; place-items: center; margin: 0 auto 22px; }
.news-empty__icon svg { width: 38px; height: 38px; }

@media (max-width: 820px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery { grid-template-columns: 1fr; } }

/* ---------- Reveal animation (only hides when JS is active) ---------- */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split__media { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .grid--3, .tiles { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; align-items: stretch;
    background: #fff; padding: 16px 20px 24px; gap: 2px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); transform: translateY(-140%); transition: transform .35s var(--ease); max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-menu a { padding: 14px 12px; font-size: 16px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav-menu a.active::after { display: none; }
  .nav-actions .btn { display: none; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; }
  .section { padding: 66px 0; }
  .cta-band { padding: 40px 24px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .grid--3, .grid--2, .tiles, .ref-note { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .split__badge { right: 12px; bottom: -14px; padding: 16px 20px; }
  .hero__inner { padding: 80px 0 90px; }
  .brand img { height: 44px; }
}
