/* =====================================================
   FREIGHT ANGEL & ASSOCIATES — MAIN STYLESHEET
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800;900&family=Lora:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Inter:wght@400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

:root{
  --red: #e02430;
  --red-dark: #b81b26;
  --maroon: #5c1018;
  --black: #0a0a0b;
  --near-black: #121212;
  --cream: #f7f4ee;
  --cream-2: #efeae1;
  --card: #ffffff;
  --line: #e6dfd2;
  --ink: #16130f;
  --muted: #6f6a60;
  --muted-2: #948d80;
  --white: #ffffff;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(20,15,10,.06);
  --shadow-md: 0 8px 30px rgba(20,15,10,.08);
  --shadow-lg: 0 20px 60px rgba(20,15,10,.16);
  --font-display: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Lora', Georgia, 'Times New Roman', serif;
  --font-ui: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Space Mono', 'Courier New', monospace;
  --container: 1200px;
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
button{ font-family: inherit; cursor:pointer; }
input, select, textarea{ font-family: var(--font-ui); }
ul{ margin:0; padding:0; list-style:none; }
:focus-visible{ outline: 2px solid var(--red); outline-offset: 3px; }

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

h1,h2,h3,h4{
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
}

.section-rule{
  width: 64px;
  height: 4px;
  background: var(--red);
  border-radius: 2px;
  margin: 22px auto 0;
}
.align-left .section-rule{ margin-left:0; }

.section-head{
  max-width: 720px;
  text-align:center;
  margin: 0 auto 56px;
}
.section-head p{
  color: var(--muted);
  font-size: 19px;
  margin-top: 22px;
}

.section{ padding: 96px 0; }
.section.tight{ padding: 64px 0; }
.section.dark{ background: var(--black); color: #f2ede4; }
.section.cream-2{ background: var(--cream-2); }

/* -------------------- BUTTONS -------------------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .03em;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  padding: 15px 26px;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn svg{ width:16px; height:16px; flex-shrink:0; }
.btn-primary{
  background: var(--red);
  color: #fff;
}
.btn-primary:hover{
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(224,36,48,.35);
}
.btn-dark{
  background: var(--black);
  color: var(--red);
}
.btn-dark:hover{
  background: #000;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,.35);
}
.btn-outline{
  background: transparent;
  border-color: rgba(255,255,255,.35);
  color: #fff;
}
.btn-outline:hover{
  border-color: var(--red);
  background: rgba(224,36,48,.12);
}
.btn-block{ width:100%; }
.btn-lg{ padding: 18px 30px; font-size: 15px; }

/* -------------------- HEADER -------------------- */
.site-header{
  position: sticky;
  top:0;
  z-index: 500;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease, background-color .25s ease;
}
.site-header.is-scrolled{
  box-shadow: 0 6px 24px rgba(20,15,10,.08);
}
.site-header .container{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 14px;
  padding-bottom: 14px;
  max-width: 1360px;
}
.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  flex-shrink:0;
}
.brand-mark{
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(155deg, var(--red) 0%, var(--maroon) 100%);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.15);
  flex-shrink:0;
  transition: transform .25s ease, box-shadow .25s ease;
}
.brand:hover .brand-mark{
  transform: rotate(-6deg) scale(1.06);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.25), 0 8px 18px rgba(224,36,48,.35);
}
.brand-mark svg{ width:24px; height:24px; color:#fff; }
.brand-text{ line-height:1.1; }
.brand-text .name{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--ink);
  display:block;
}
.brand-text .tag{
  font-family: var(--font-body);
  font-style: italic;
  font-size: 13px;
  color: var(--red);
  display:block;
}

.primary-nav{
  display:flex;
  align-items:center;
  gap: 2px;
  flex: 1;
  justify-content:center;
  flex-wrap: nowrap;
  min-width:0;
}
.primary-nav a{
  display:flex;
  align-items:center;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background-color .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.primary-nav a span{ position:relative; padding-bottom:3px; }
.primary-nav a span::after{
  content:"";
  position:absolute;
  left:0; right:100%;
  bottom:-2px;
  height:2px;
  border-radius:2px;
  background: var(--red);
  transition: right .22s ease;
}
.primary-nav a:hover{
  background: var(--cream-2);
  transform: translateY(-1px);
}
.primary-nav a:hover span::after{ right:0; }
.primary-nav a.is-active{
  background: var(--red);
  color: #fff;
  box-shadow: 0 6px 16px rgba(224,36,48,.35);
}
.primary-nav a.is-active span::after{ display:none; }

.header-cta{ flex-shrink:0; }
.header-cta .btn{ padding: 13px 20px; }
.menu-toggle{
  display:none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 11px;
}
.menu-toggle svg{ width:22px; height:22px; }

/* announcement / badge bar */
.badge-bar{
  background: var(--cream-2);
  border-bottom: 1px solid var(--line);
}
.badge-bar .container{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap: wrap;
  gap: 10px 44px;
  padding: 15px 32px;
}
.badge-bar .item{
  display:flex;
  align-items:center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink);
}
.badge-bar .item svg{ width:16px; height:16px; color:#c9852a; }

/* -------------------- HERO (home, dark) -------------------- */
.hero-dark{
  position: relative;
  background: linear-gradient(115deg, rgba(6,6,7,.88), rgba(10,8,9,.82)), url('https://images.unsplash.com/photo-1700716465891-9e5e9f501d7d?fm=jpg&q=70&w=1800&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 88px 0 80px;
  overflow: hidden;
}
.hero-dark::after{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(ellipse at 80% 20%, rgba(224,36,48,.16), transparent 55%);
  pointer-events:none;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .95fr;
  gap: 56px;
  align-items:start;
  position:relative;
  z-index:2;
}
.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:9px;
  border: 1px solid rgba(224,36,48,.5);
  color: var(--red);
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 999px;
  margin-bottom: 26px;
}
.hero-badge svg{ width:15px; height:15px; }
.hero-dark h1{
  font-size: 56px;
  color: #fff;
  margin-bottom: 4px;
}
.hero-dark h1 .accent{ color: var(--red); }
.hero-dark .lede{
  font-family: var(--font-body);
  color: #cfc9bd;
  font-size: 18px;
  margin: 28px 0 40px;
  max-width: 560px;
}
.hero-stats{
  display:flex;
  gap: 0;
  margin-top: 8px;
}
.hero-stats .stat{
  padding: 0 26px;
  border-left: 3px solid var(--red);
}
.hero-stats .stat:first-child{ padding-left:0; }
.hero-stats .stat .num{
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 30px;
  color:#fff;
  display:block;
}
.hero-stats .stat .lbl{
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #a49d8f;
}

.hero-card{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-lg);
  padding: 34px;
  position: relative;
  z-index: 2;
}
.hero-card h3{ color:#fff; font-size: 22px; margin-bottom:8px; }
.hero-card > p{ color:#a49d8f; font-family: var(--font-body); font-size: 15px; margin: 0 0 24px; }
.track-input{
  display:flex;
  align-items:center;
  gap:10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-sm);
  padding: 15px 16px;
  margin-bottom: 16px;
  transition: border-color .2s ease;
}
.track-input:focus-within{ border-color: var(--red); }
.track-input svg{ width:18px; height:18px; color:#8b8578; flex-shrink:0; }
.track-input input{
  background: none; border:none; color:#fff; width:100%; font-size:14.5px;
}
.track-input input::placeholder{ color:#8b8578; }

.consignment-list{ margin-top: 26px; border-top: 1px solid rgba(255,255,255,.12); padding-top: 20px; }
.consignment-list .label{
  font-family: var(--font-mono); font-size:11.5px; letter-spacing:.1em; text-transform:uppercase; color:#8b8578; margin-bottom:14px; display:block;
}
.consignment-row{
  display:flex; align-items:center; justify-content:space-between;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px;
  padding: 13px 16px;
  margin-bottom: 10px;
  transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}
.consignment-row:hover{
  border-color: var(--red);
  background: rgba(224,36,48,.08);
  transform: translateX(3px);
}
.consignment-row .id{ font-family: var(--font-mono); color: var(--red); font-weight:700; font-size:14px; }
.consignment-row .meta{ color:#a49d8f; font-size:13px; font-family: var(--font-ui); }

/* -------------------- HERO (light, inner pages) -------------------- */
.hero-light{
  padding: 88px 0 70px;
  text-align:center;
  position: relative;
  overflow:hidden;
}
.hero-light::before{
  content:"";
  position:absolute; top:-120px; right:-120px; width:420px; height:420px;
  background: radial-gradient(circle, rgba(224,36,48,.10), transparent 70%);
  z-index:0;
}
.hero-light .inner{ position:relative; z-index:1; max-width:820px; margin:0 auto; }
.hero-light .eyebrow{ justify-content:center; }
.hero-light h1{ font-size: 48px; }
.hero-light p{ color: var(--muted); font-size: 19px; margin-top: 26px; }

/* -------------------- ABOUT / INFO SPLIT -------------------- */
.split{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 60px;
  align-items:start;
}
.split h2{ font-size: 34px; }
.split .body-copy p{ color: var(--ink); font-size: 17px; margin: 0 0 20px; }
.split .body-copy p:last-child{ margin-bottom:0; }

.mini-cards{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 34px;
}
.mini-card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.mini-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(224,36,48,.35);
}
.mini-card .lbl{
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom: 14px;
}
.mini-card .lbl svg{ width:16px; height:16px; }
.mini-card p{ color: var(--muted); font-size: 14.5px; margin:0; }

.creed-card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-md);
}
.creed-card > .lbl{
  display:flex; align-items:center; gap:10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
}
.creed-card > .lbl svg{ width:20px; height:20px; color: var(--red); }
.creed-item{
  display:flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.creed-item:last-child{ border-bottom:none; padding-bottom:0; }
.creed-item .ic{
  width: 42px; height:42px; border-radius:10px; flex-shrink:0;
  background: #fbe4e2;
  display:flex; align-items:center; justify-content:center;
  transition: background-color .2s ease, transform .2s ease;
}
.creed-item .ic svg{ width:20px; height:20px; color: var(--red); }
.creed-card:hover .creed-item .ic,
.creed-item:hover .ic{ background: var(--red); }
.creed-item:hover .ic svg{ color:#fff; }
.creed-item h4{ font-size:16px; margin:0 0 6px; }
.creed-item p{ color: var(--muted); font-size:14px; margin:0; }

/* -------------------- SERVICES -------------------- */
.feature-media{
  border-radius: var(--radius-lg);
  overflow:hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.feature-media img{ width:100%; height:100%; object-fit:cover; transition: transform .5s ease; }
.feature-media.banner{ height: 320px; }
.feature-media.banner-lg{ height: 420px; }
.feature-media.img-zoom{ cursor: pointer; }
.feature-media.img-zoom:hover img{ transform: scale(1.06); }
.feature-media.img-zoom:hover{ box-shadow: 0 24px 70px rgba(224,36,48,.25); }
.feature-media .cap{
  position:absolute; left:0; right:0; bottom:0;
  padding: 26px 30px;
  background: linear-gradient(0deg, rgba(0,0,0,.82), rgba(0,0,0,0));
  color:#fff;
}
.feature-media .cap .eyebrow{ color: var(--red); margin-bottom:8px; }
.feature-media .cap h3{ color:#fff; font-size:22px; margin:0; }

.cards-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 56px;
}
.svc-card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.svc-card:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(224,36,48,.3);
}
.svc-card .icon{
  width: 52px; height:52px;
  border-radius: 12px;
  background: var(--black);
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 24px;
  transition: background-color .25s ease, transform .25s ease;
}
.svc-card .icon svg{ width:24px; height:24px; color: var(--red); }
.svc-card:hover .icon{ background: var(--red); transform: rotate(-6deg) scale(1.05); }
.svc-card:hover .icon svg{ color:#fff; }
.svc-card .eyebrow{ margin-bottom:10px; }
.svc-card h3{ font-size: 22px; margin-bottom: 12px; }
.svc-card > p{ color: var(--muted); font-size:15px; margin-bottom:22px; }
.svc-card ul{ border-top: 1px solid var(--line); padding-top: 20px; }
.svc-card li{
  display:flex; gap:10px; align-items:flex-start;
  font-size: 14.5px; color: var(--ink);
  margin-bottom: 12px;
}
.svc-card li:last-child{ margin-bottom:0; }
.svc-card li::before{
  content:"";
  width:6px; height:6px; border-radius:50%;
  background: var(--red);
  margin-top: 8px;
  flex-shrink:0;
}

/* -------------------- MAP / TRADE GATEWAYS -------------------- */
.map-panel{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
  align-items: stretch;
}
.map-visualizer{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  min-height: 420px;
  position: relative;
}
.map-visualizer .title{
  display:flex; align-items:center; gap:9px;
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing:.1em; text-transform:uppercase;
  color: var(--red); margin-bottom: 18px;
}
.map-visualizer .title svg{ width:16px; height:16px; }
.map-svg{ width:100%; height: 340px; display:block; }
.map-svg .route{ fill:none; stroke: rgba(224,36,48,.35); stroke-width:2.5; }
.map-svg .route-dashed{ fill:none; stroke: rgba(224,36,48,.35); stroke-width:2; stroke-dasharray: 6 6; }
.map-svg .node{
  fill: var(--red);
  stroke:#fff; stroke-width:2;
  cursor:pointer;
  transition: r .2s ease, fill .2s ease;
}
.map-svg .node:hover, .map-svg .node.active{ fill: var(--maroon); }
.map-svg .node-label{
  font-family: var(--font-ui); font-size:12px; font-weight:600; fill: var(--ink);
}
.map-svg .hub-ring{ fill:none; stroke: rgba(224,36,48,.4); stroke-width:2; }

.depot-card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
}
.depot-card .eyebrow{ margin-bottom:10px; }
.depot-card h3{ font-size: 26px; margin-bottom: 22px; padding-bottom:22px; border-bottom:1px solid var(--line); }
.depot-stats{ display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-bottom:26px; }
.depot-stat{
  background: var(--cream-2);
  border-radius: var(--radius-sm);
  padding: 16px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.depot-stat:hover{ transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.depot-stat .k{ font-family: var(--font-mono); font-size:11px; letter-spacing:.08em; text-transform:uppercase; color: var(--muted); display:block; margin-bottom:6px; }
.depot-stat .v{ display:flex; align-items:center; gap:7px; font-weight:700; font-family: var(--font-ui); }
.depot-stat .v svg{ width:15px; height:15px; }
.depot-stat.ok .v{ color:#1f8a4c; }
.depot-card h4{ font-family: var(--font-mono); font-size:11.5px; letter-spacing:.08em; text-transform:uppercase; color:var(--muted); font-weight:700; margin-bottom:10px; }
.depot-card .corridor-name{
  font-family: var(--font-display); font-weight:800; font-size:19px; color: var(--red); margin-bottom:22px;
}
.depot-note{
  display:flex; gap:14px; align-items:flex-start;
  background: #fbe4e2;
  border-radius: var(--radius-sm);
  padding:18px;
}
.depot-note svg{ width:20px; height:20px; color:var(--red); flex-shrink:0; margin-top:2px; }
.depot-note p{ margin:0; font-size:14px; color:#5c2020; }

.gateway-toggle{
  display:flex; flex-wrap:wrap; gap:10px; margin-top: 26px;
}
.gateway-toggle button{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 18px;
  font-family: var(--font-ui);
  font-weight:600;
  font-size:13.5px;
  transition: all .18s ease;
}
.gateway-toggle button:hover{ border-color: var(--red); color: var(--red); }
.gateway-toggle button.active{ background: var(--red); color:#fff; border-color: var(--red); }

/* -------------------- CTA BAND -------------------- */
.cta-band{
  background: var(--cream-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-band .container{
  display:flex; align-items:center; justify-content:space-between; gap:30px;
  padding: 56px 32px;
}
.cta-band .eyebrow{ margin-bottom:12px; }
.cta-band h2{ font-size: 32px; margin-bottom:14px; }
.cta-band p{ color: var(--muted); max-width: 560px; margin:0; }
.cta-band .btn{ flex-shrink:0; }

/* -------------------- FORMS -------------------- */
.form-card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 36px;
}
.form-card h3{ font-size: 24px; margin-bottom: 8px; }
.form-card > p{ color: var(--muted); font-size:14.5px; margin: 0 0 26px; padding-bottom:22px; border-bottom:1px solid var(--line); }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-bottom:20px; }
.field label{
  display:block;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color: var(--muted);
  margin-bottom: 9px;
  font-weight:700;
}
.field input, .field select, .field textarea{
  width:100%;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 14.5px;
  color: var(--ink);
  transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}
.field input::placeholder, .field textarea::placeholder{ color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none;
  border-color: var(--red);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(224,36,48,.12);
}
.field textarea{ resize: vertical; min-height: 120px; }
.field.full{ grid-column: 1 / -1; }
.form-note{ font-size:13px; color:var(--muted-2); margin-top:14px; text-align:center; }

/* -------------------- CONTACT STATIONS -------------------- */
.stations-head{ font-family: var(--font-display); font-weight:800; font-size:14px; letter-spacing:.05em; text-transform:uppercase; margin-bottom:22px; }
.station-card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  margin-bottom: 20px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.station-card:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(224,36,48,.3);
}
.station-card h4{
  display:flex; align-items:center; gap:10px;
  font-size: 18px; margin-bottom: 16px;
}
.station-card h4 svg{ width:20px; height:20px; color: var(--red); }
.station-line{
  display:flex; gap:12px; align-items:flex-start;
  font-size: 14.5px; color: var(--ink);
  padding: 9px 0;
}
.station-line svg{ width:17px; height:17px; color: var(--muted-2); flex-shrink:0; margin-top:2px; }
.station-line + .station-line{ border-top: 1px solid var(--line); }
.station-hours{
  display:flex; align-items:center; gap:10px;
  color: var(--red); font-weight:700; font-size:13.5px;
  margin-top: 14px; padding-top:14px; border-top:1px solid var(--line);
}
.station-hours svg{ width:16px; height:16px; }

/* -------------------- TRACK & TRACE PAGE -------------------- */
.tracker-box{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 14px;
  display:flex;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}
.tracker-box .track-input{
  flex:1; background: var(--cream-2); border-color: var(--line);
}
.tracker-box .track-input svg{ color: var(--muted-2); }
.tracker-box .track-input input{ color: var(--ink); }
.tracker-box .track-input input::placeholder{ color: var(--muted-2); }
.tracker-box .btn{ flex-shrink:0; }
.tracker-result{
  max-width: 900px;
  margin: 34px auto 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  display:none;
}
.tracker-result.show{ display:block; animation: fadeUp .35s ease; }
.tracker-result .row{
  display:flex; justify-content:space-between; align-items:center;
  padding: 14px 0; border-bottom: 1px solid var(--line);
}
.tracker-result .row:last-child{ border-bottom:none; }
.tracker-result .k{ color:var(--muted); font-size:13.5px; font-family: var(--font-mono); text-transform:uppercase; letter-spacing:.06em; }
.tracker-result .v{ font-weight:700; font-family: var(--font-ui); }
.tracker-result .v.ok{ color:#1f8a4c; }

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

/* -------------------- CUSTOMS CALCULATOR -------------------- */
.calc-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items:start;
}
.calc-card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 34px;
}
.calc-card h3{
  display:flex; align-items:center; gap:10px;
  font-size: 20px; margin-bottom: 26px;
}
.calc-card h3 svg{ width:22px; height:22px; }
.field-label-row{
  font-family: var(--font-mono);
  font-size: 11.5px; letter-spacing:.08em; text-transform:uppercase;
  color: var(--muted); font-weight:700; margin-bottom: 10px;
}
.mode-toggle{
  display:grid; grid-template-columns: repeat(3,1fr); gap:10px; margin-bottom: 24px;
}
.mode-toggle button{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 15px 10px;
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 13.5px;
  letter-spacing: .04em;
  transition: all .18s ease;
}
.mode-toggle button:hover{ border-color: var(--red); }
.mode-toggle button.active{
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  box-shadow: 0 8px 18px rgba(224,36,48,.3);
}
.calc-row{ display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-bottom:24px; }
.calc-placeholder{
  background: var(--card);
  border: 1.5px dashed var(--line);
  border-radius: var(--radius-lg);
  min-height: 420px;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center;
  padding: 40px;
}
.calc-placeholder .q{
  width: 64px; height:64px; border-radius:50%;
  border: 2px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  color: var(--muted-2);
  margin-bottom: 22px;
}
.calc-placeholder .q svg{ width:28px; height:28px; }
.calc-placeholder h4{ font-size:20px; margin-bottom:12px; }
.calc-placeholder p{ color: var(--muted); font-size:14.5px; max-width:340px; margin:0; }

.calc-result{ display:none; text-align:left; width:100%; }
.calc-result.show{ display:block; animation: fadeUp .35s ease; }
.calc-result .total{
  background: var(--black); color:#fff; border-radius: var(--radius-md);
  padding: 22px 24px; margin-bottom:20px;
  display:flex; justify-content:space-between; align-items:center;
}
.calc-result .total .k{ font-family: var(--font-mono); font-size:11.5px; letter-spacing:.08em; text-transform:uppercase; color:#a49d8f; }
.calc-result .total .v{ font-family: var(--font-display); font-weight:900; font-size:28px; color: var(--red); }
.calc-result .line{ display:flex; justify-content:space-between; padding:11px 0; border-bottom:1px solid var(--line); font-size:14.5px; }
.calc-result .line:last-child{ border-bottom:none; }
.calc-result .line .k{ color: var(--muted); }
.calc-result .line .v{ font-weight:700; }

/* -------------------- FOOTER -------------------- */
.site-footer{
  background: var(--black);
  color: #cfc9bd;
  padding: 72px 0 28px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.3fr 1fr 1.2fr 1.1fr;
  gap: 40px;
  padding-bottom: 46px;
}
.footer-brand .brand{ margin-bottom: 20px; }
.footer-brand .brand-text .name{ color:#fff; }
.footer-brand p{ font-size: 14.5px; color:#a49d8f; margin: 0 0 20px; line-height:1.7; }
.footer-accred{
  display:flex; align-items:center; gap:9px;
  font-family: var(--font-mono); font-size:12.5px; color:#a49d8f;
}
.footer-accred svg{ width:16px; height:16px; color: var(--red); }
.footer-col h5{
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing:.1em; text-transform:uppercase;
  color: var(--red); font-weight:700; margin: 0 0 20px;
}
.footer-item{
  display:flex; gap:11px; align-items:flex-start;
  font-size: 14px; color:#cfc9bd;
  margin-bottom: 16px;
  line-height:1.5;
}
.footer-item svg{ width:16px; height:16px; color:#8b8578; flex-shrink:0; margin-top:2px; }
.footer-item a:hover{ color: var(--red); }
.footer-station{ margin-bottom:16px; font-size:14px; color:#cfc9bd; line-height:1.6; }
.footer-station b{ color:#fff; }
.footer-col.compliance p{ font-size:13.5px; color:#8b8578; line-height:1.7; margin:0 0 20px; }
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  font-size: 12.5px;
  color: #7a7468;
  font-family: var(--font-mono);
}

/* chat bubble */
.chat-fab{
  position: fixed;
  right: 26px; bottom: 26px;
  width: 58px; height:58px;
  border-radius:50%;
  background: var(--black);
  border: none;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  z-index: 900;
  transition: transform .2s ease, background-color .2s ease;
}
.chat-fab:hover{ transform: scale(1.08); background:#000; }
.chat-fab svg{ width:24px; height:24px; color: #f3a63a; }
.chat-fab .dot{
  position:absolute; top:6px; right:6px;
  width:10px; height:10px; border-radius:50%;
  background: #f3a63a;
  border: 2px solid var(--black);
}

/* -------------------- WHY CHOOSE US -------------------- */
.why-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 56px;
}
.why-card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.why-card:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(224,36,48,.3);
}
.why-card .num{
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--muted-2);
  margin-bottom: 18px;
  display:block;
}
.why-card .icon{
  width: 50px; height:50px;
  border-radius: 12px;
  background: #fbe4e2;
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 20px;
  transition: background-color .25s ease, transform .25s ease;
}
.why-card .icon svg{ width:23px; height:23px; color: var(--red); }
.why-card:hover .icon{ background: var(--red); transform: rotate(-6deg) scale(1.06); }
.why-card:hover .icon svg{ color:#fff; }
.why-card h4{ font-size: 17px; margin-bottom: 10px; }
.why-card p{ color: var(--muted); font-size: 14.5px; margin:0; }

.why-grid.dark .why-card{
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.12);
}
.why-grid.dark .why-card h4{ color:#fff; }
.why-grid.dark .why-card p{ color:#a49d8f; }
.why-grid.dark .why-card .num{ color:#7a7468; }

@media (max-width: 1080px){
  .why-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px){
  .why-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 1180px){
  .site-header .container{ padding-left:20px; padding-right:20px; gap:10px; }
  .primary-nav a{ padding:9px 10px; font-size:13px; }
  .header-cta .btn{ padding:12px 16px; font-size:13px; }
  .brand-text .name{ font-size:17px; }
}

@media (max-width: 1080px){
  .hero-grid, .split, .map-panel, .calc-grid{ grid-template-columns: 1fr; }
  .cards-3{ grid-template-columns: 1fr 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px){
  .primary-nav{ display:none; }
  .menu-toggle{ display:flex; }
  .header-cta{ display:none; }
  .hero-dark h1, .hero-light h1{ font-size: 36px; }
  .hero-stats{ flex-wrap:wrap; gap:20px; }
  .hero-stats .stat{ border-left:none; border-top:3px solid var(--red); padding: 12px 0 0; }
  .cards-3{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .form-row, .calc-row{ grid-template-columns: 1fr; }
  .cta-band .container{ flex-direction:column; text-align:center; }
  .container{ padding: 0 20px; }
  .section{ padding: 64px 0; }
}
@media (max-width: 900px){
  .primary-nav.is-open{
    display:flex;
    flex-direction:column;
    position:absolute;
    top:100%; left:0; right:0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 10px 20px 20px;
    box-shadow: var(--shadow-md);
  }
  .primary-nav.is-open a{ width:100%; }
}
