/* =========================================================
   TY Freight International Freight — Redesign
   Western B2B aesthetic: navy + amber, Inter, generous whitespace
   ========================================================= */

:root {
  --navy-900: #071a36;
  --navy-800: #0b2447;
  --navy-700: #143b73;
  --navy-600: #1d4fa0;
  --ink: #15212e;
  --muted: #5b6b7f;
  --line: #e4e9f0;
  --bg: #ffffff;
  --bg-alt: #f5f8fc;
  --amber: #f97316;
  --amber-dark: #ea6504;
  --amber-soft: #fff3e9;
  --shadow-sm: 0 1px 2px rgba(11,36,71,.06), 0 4px 14px rgba(11,36,71,.06);
  --shadow-md: 0 8px 30px rgba(11,36,71,.10);
  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1180px;
  --ease: cubic-bezier(.2,.7,.3,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 860px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 15px; line-height: 1;
  padding: 14px 24px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s;
  white-space: nowrap;
}
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-primary { background: var(--amber); color: #fff; box-shadow: 0 6px 18px rgba(249,115,22,.35); }
.btn-primary:hover { background: var(--amber-dark); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(249,115,22,.42); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(255,255,255,.92); backdrop-filter: saturate(160%) blur(12px);
  box-shadow: 0 1px 0 var(--line);
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.site-header.scrolled {
  background: rgba(255,255,255,.98);
  box-shadow: 0 1px 0 var(--line), 0 6px 24px rgba(11,36,71,.06);
}
.brand { display: flex; align-items: center; gap: 11px; color: var(--navy-800); transition: color .3s; }
.brand-logo { width: 46px; height: 46px; object-fit: contain; border-radius: 12px; background: #fff; padding: 3px; box-shadow: var(--shadow-sm); flex: 0 0 46px; }
.brand-text { font-weight: 800; font-size: 19px; letter-spacing: -.02em; display: flex; flex-direction: column; line-height: 1.05; }
.brand-sub { font-size: 10.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; opacity: .72; }

.nav-links { display: flex; gap: 30px; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--navy-700); position: relative; transition: color .2s; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--amber); transition: width .25s var(--ease); }
.nav-links a:hover { color: var(--navy-800); }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px; border: none; background: var(--bg-alt); border-radius: 10px; cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle span { width: 20px; height: 2px; background: var(--navy-800); border-radius: 2px; transition: .3s; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 148px 0 0; overflow: hidden; color: var(--navy-800); background: #fff; }
.hero-bg { position: absolute; inset: 0; z-index: 0; background: #fff; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.92) 34%, rgba(255,255,255,.58) 56%, rgba(255,255,255,.18) 74%, rgba(255,255,255,0) 100%);
}
.hero-bg img {
  position: absolute; top: 0; right: 0; width: 64%; height: 100%; object-fit: cover; object-position: center;
  z-index: 0; opacity: 1; mix-blend-mode: normal; filter: none;
}
.hero-route { position: absolute; inset: 0; z-index: 2; opacity: .9; pointer-events: none; }
.hero-route svg { width: 100%; height: 100%; }
.hero-route svg path { stroke: rgba(11,36,71,.14); }
.hero-route circle { fill: var(--amber); }
.hero-inner { position: relative; z-index: 3; max-width: 640px; padding-bottom: 88px; }
.hero-eyebrow {
  display: inline-block; font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--amber-dark); background: var(--amber-soft); border: 1px solid rgba(249,115,22,.2);
  padding: 7px 14px; border-radius: 999px; margin-bottom: 22px;
}
.hero-title { font-size: clamp(38px, 6vw, 64px); font-weight: 800; line-height: 1.05; letter-spacing: -.03em; }
.hero-title .hl { color: var(--amber); }
.hero-sub { font-size: clamp(16px, 2.1vw, 20px); color: var(--muted); margin: 22px 0 34px; max-width: 620px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-badges { list-style: none; display: flex; flex-wrap: wrap; gap: 22px; margin-top: 34px; }
.hero-badges li { display: flex; align-items: center; gap: 9px; font-size: 14.5px; color: var(--navy-700); font-weight: 500; }
.hero-badges .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 4px rgba(249,115,22,.18); }
.btn-ghost { background: transparent; color: var(--navy-800); border-color: var(--line); }
.btn-ghost:hover { background: var(--bg-alt); transform: translateY(-2px); }

/* ---------- Stats ---------- */
.stats {
  position: relative; z-index: 4;
  background: #fff; color: var(--navy-800);
  margin: -48px auto 0; max-width: calc(var(--maxw) - 48px);
  border-radius: var(--radius-lg); border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 32px 20px; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat-num { font-size: 42px; font-weight: 800; letter-spacing: -.02em; color: var(--amber); }
.stat-label { font-size: 13.5px; color: var(--muted); margin-top: 6px; max-width: 200px; margin-inline: auto; }

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.stats + .section { padding-top: 112px; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.kicker { display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--amber-dark); margin-bottom: 14px; }
.section-title { font-size: clamp(28px, 4vw, 40px); font-weight: 800; letter-spacing: -.025em; line-height: 1.15; color: var(--navy-800); }
.section-lead { font-size: 17px; color: var(--muted); margin-top: 16px; }

.section-alt { background: var(--bg-alt); }

/* ---------- Cards (services) ---------- */
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
  display: flex; flex-direction: column; height: 100%;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: #d3deec; }
.card-icon { width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center; background: var(--amber-soft); color: var(--amber-dark); margin-bottom: 18px; }
.card-icon svg { width: 28px; height: 28px; }
.card h3 { font-size: 18.5px; font-weight: 700; color: var(--navy-800); display: flex; flex-direction: column; gap: 6px; }
.tag { align-self: flex-start; font-size: 11.5px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--navy-600); background: #eaf0f9; padding: 3px 9px; border-radius: 999px; }
.card p { font-size: 14.5px; color: var(--muted); margin-top: 12px; flex: 1; }
.mini-list { list-style: none; display: flex; gap: 8px; margin-top: auto; padding-top: 16px; flex-wrap: wrap; }
.mini-list li { font-size: 12.5px; font-weight: 600; color: var(--navy-700); background: var(--bg-alt); border: 1px solid var(--line); padding: 5px 11px; border-radius: 999px; }
.card-img { padding-top: 0; }
.card-photo { margin: -1px -24px 18px; border-radius: var(--radius) var(--radius) 0 0; overflow: hidden; height: 150px; }
.card-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card-img:hover .card-photo img { transform: scale(1.06); }

/* ---------- Cargo types ---------- */
.cargo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.cargo-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 16px;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-800);
  box-shadow: var(--shadow-sm);
}
.cargo-item span {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.4;
}

/* ---------- Ad landing: search-intent answer ---------- */
.answer-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 18px 20px;
  margin: 18px 0 8px;
  max-width: 560px;
}
.answer-box strong { display: block; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--amber-dark); margin-bottom: 8px; }
.answer-box ul { margin: 0; padding-left: 18px; color: var(--navy-800); font-size: 15px; line-height: 1.55; }
.trust-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.trust-row span {
  font-size: 12.5px; font-weight: 700; color: var(--navy-700);
  background: var(--amber-soft); border: 1px solid #f3d5a8; padding: 5px 10px; border-radius: 999px;
}
.btn-wa { background: #25D366; color: #fff; border-color: #25D366; }
.btn-wa:hover { background: #1ebe5d; border-color: #1ebe5d; color: #fff; transform: translateY(-2px); }
.btn-wechat { background: #07C160; color: #fff; border-color: #07C160; }
.btn-wechat:hover { background: #06ad56; border-color: #06ad56; color: #fff; transform: translateY(-2px); }

.wechat-modal { position: fixed; inset: 0; z-index: 10050; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; visibility: hidden; transition: opacity .2s, visibility .2s; }
.wechat-modal.open { opacity: 1; visibility: visible; }
.wechat-modal-backdrop { position: absolute; inset: 0; background: rgba(11,36,71,.55); }
.wechat-modal-panel { position: relative; background: #fff; border-radius: 16px; padding: 28px 24px 24px; max-width: 360px; width: 100%; text-align: center; box-shadow: 0 24px 60px rgba(0,0,0,.2); }
.wechat-modal-close { position: absolute; top: 10px; right: 12px; }
.wechat-modal-panel h3 { font-size: 1.25rem; margin-bottom: 8px; color: var(--navy, #0b2447); }
.wechat-modal-name { font-size: 14px; font-weight: 600; color: #07C160; margin-bottom: 6px; }
.wechat-modal-lead { font-size: 14px; color: #64748b; line-height: 1.5; margin-bottom: 16px; }
.wechat-modal-qr { display: block; margin: 0 auto 12px; border-radius: 8px; border: 1px solid #e2e8f0; }
.wechat-modal-phone { font-size: 1.1rem; margin-bottom: 8px; }
.wechat-modal-steps { font-size: 13px; color: #64748b; line-height: 1.5; margin-bottom: 16px; }
.wechat-modal-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.footer-wechat-block { margin-top: 10px; display: grid; gap: 4px; }
.footer-wechat-link { background: none; border: none; padding: 0; color: inherit; font: inherit; text-align: left; cursor: pointer; text-decoration: underline; }
.footer-wechat-link:hover { color: #07C160; }
.footer-wechat-hint { font-size: 12px; opacity: .75; }
.quote-contact-alt { margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(11,36,71,.1); text-align: center; }
.quote-contact-label { font-size: 13px; font-weight: 600; margin-bottom: 10px; }
.quote-contact-btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 8px; }
.quote-contact-hint { font-size: 12px; color: #64748b; line-height: 1.4; }

.pay-trust {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  max-width: 560px;
  margin-top: 18px;
  padding: 14px 16px;
  background: #fff8ee;
  border: 1px solid #f3d5a8;
  border-left: 4px solid #F97316;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.pay-trust-mark { font-size: 22px; line-height: 1.2; flex-shrink: 0; }
.pay-trust strong { display: block; color: var(--navy-900); font-size: 15px; font-weight: 800; }
.pay-trust p { margin: 4px 0 0; font-size: 13.5px; color: var(--navy-700); line-height: 1.45; }

/* ---------- Trade Lanes ---------- */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.lane {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px 26px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  display: flex; flex-direction: column; height: 100%;
}
.lane::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 5px; background: linear-gradient(90deg, var(--navy-600), var(--amber)); }
.lane:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.lane-flag { font-size: 34px; line-height: 1; margin-bottom: 12px; }
.lane h3 { font-size: 22px; font-weight: 800; color: var(--navy-800); }
.lane-ports { font-size: 14px; color: var(--muted); margin-top: 4px; }
.lane-times { display: flex; gap: 14px; margin: 22px 0 18px; }
.lane-times > div { flex: 1; background: var(--bg-alt); border-radius: 12px; padding: 14px; text-align: center; }
.lt-mode { display: block; font-size: 12px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.lt-days { display: block; font-size: 19px; font-weight: 800; color: var(--navy-800); margin-top: 4px; }
.lane-best { font-size: 13.5px; font-weight: 600; color: var(--navy-700); margin-top: auto; }
.lane-links { display: flex; gap: 24px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }
.link-arrow { color: var(--navy-700); font-weight: 600; font-size: 15px; border-bottom: 2px solid transparent; transition: border-color .2s, color .2s; }
.link-arrow:hover { color: var(--amber-dark); border-color: var(--amber); }

/* ---------- Steps ---------- */
.steps { list-style: none; display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; counter-reset: step; position: relative; }
.steps::before {
  content: ""; position: absolute; top: 48px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, var(--line), var(--navy-600) 50%, var(--line));
  z-index: 0;
}
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 20px; box-shadow: var(--shadow-sm); position: relative; z-index: 1; }
.step-num {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: var(--navy-800); color: #fff; font-weight: 800; font-size: 17px; margin-bottom: 16px;
  box-shadow: 0 6px 16px rgba(11,36,71,.28);
}
.step h3 { font-size: 17px; font-weight: 700; color: var(--navy-800); }
.step p { font-size: 14px; color: var(--muted); margin-top: 8px; }

/* ---------- Why ---------- */
.why-grid { gap: 20px; align-items: stretch; }
.why {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  height: 100%;
}
.why:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.why-icon { font-size: 30px; margin-bottom: 14px; }
.why h3 { font-size: 18px; font-weight: 700; color: var(--navy-800); }
.why p { font-size: 14.5px; color: var(--muted); margin-top: 10px; }

/* ---------- Split (specialization) ---------- */
.split { padding: 0; }
.split-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; padding: 88px 24px; }
.split-media { border-radius: var(--radius-lg); overflow: hidden; min-height: 380px; background: linear-gradient(155deg, var(--navy-800), var(--navy-600)); display: grid; place-items: center; box-shadow: var(--shadow-md); }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-content .section-title { text-align: left; }
.split-content .section-lead { text-align: left; }
.check-list { list-style: none; margin: 24px 0 30px; display: grid; gap: 13px; }
.check-list li { position: relative; padding-left: 34px; font-size: 15.5px; color: #2c3a4b; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--amber-soft) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23ea6504' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6L9 17l-5-5'/></svg>") center / 13px no-repeat;
}

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: 16.5px; font-weight: 600; color: var(--navy-800);
  padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-plus { position: relative; width: 18px; height: 18px; flex: 0 0 18px; }
.faq-plus::before, .faq-plus::after { content: ""; position: absolute; background: var(--amber-dark); border-radius: 2px; transition: transform .25s var(--ease); }
.faq-plus::before { left: 0; top: 8px; width: 18px; height: 2px; }
.faq-plus::after { left: 8px; top: 0; width: 2px; height: 18px; }
.faq-q[aria-expanded="true"] .faq-plus::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq-a p { padding: 0 24px 22px; color: var(--muted); font-size: 15px; }

/* ---------- Sub-page route cards ---------- */
.hero-page { padding: 154px 0 96px; min-height: auto; }
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.route-detail {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px 30px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.route-detail::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 5px; background: linear-gradient(90deg, var(--navy-600), var(--amber)); }
.route-detail:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.route-detail-wide { max-width: 760px; margin: 0 auto; }
.route-flag { font-size: 36px; line-height: 1; margin-bottom: 12px; }
.route-detail h3 { font-size: 24px; font-weight: 800; color: var(--navy-800); }
.route-ports { font-size: 15px; color: var(--muted); margin-top: 4px; }
.route-times { display: flex; gap: 16px; margin: 26px 0 22px; }
.route-times > div { flex: 1; background: var(--bg-alt); border-radius: 12px; padding: 16px; text-align: center; }
.rt-label { display: block; font-size: 12px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.rt-value { display: block; font-size: 22px; font-weight: 800; color: var(--navy-800); margin-top: 4px; }
.route-detail .check-list { margin: 18px 0 0; }

/* ---------- CTA / Quote ---------- */
.cta { background: linear-gradient(155deg, var(--navy-800), var(--navy-700)); color: #fff; padding: 80px 0; }
.cta-inner { display: flex; flex-direction: column; align-items: center; text-align: center; max-width: 640px; margin: 0 auto; gap: 24px; }
.cta-copy h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; letter-spacing: -.02em; }
.cta-copy p { font-size: 17px; color: rgba(255,255,255,.82); margin-top: 14px; }

/* ---------- Floating widgets — right stack: WhatsApp → Quote → AI ---------- */
.gsc-fab-stack {
  position: fixed;
  right: max(16px, env(safe-area-inset-right, 0px));
  bottom: max(16px, env(safe-area-inset-bottom, 0px));
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  pointer-events: none;
}
.gsc-fab-stack .float-widget {
  position: relative;
  right: auto;
  left: auto;
  bottom: auto;
  pointer-events: auto;
}
.gsc-fab-stack .float-widget.open { z-index: 10001; }

.float-widget { position: fixed; z-index: 9999; font-family: inherit; }
.float-fab {
  border: none; cursor: pointer; color: #fff;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 8px 26px rgba(11,36,71,.22);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.float-fab:hover { transform: translateY(-3px) scale(1.03); }
.float-panel {
  position: absolute; bottom: 72px;
  width: min(380px, calc(100vw - 32px));
  background: #fff; border-radius: 18px;
  box-shadow: 0 16px 48px rgba(11,36,71,.2), 0 0 0 1px rgba(11,36,71,.06);
  overflow: hidden;
  opacity: 0; visibility: hidden; transform: translateY(16px) scale(.96);
  transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s;
}
.float-widget.open .float-panel { opacity: 1; visibility: visible; transform: none; }
.panel-close {
  width: 32px; height: 32px; border: none; background: rgba(255,255,255,.18);
  border-radius: 50%; color: #fff; cursor: pointer; font-size: 18px;
  display: grid; place-items: center;
}

/* Quote widget — orange, middle of stack */
.quote-widget { right: 22px; bottom: 22px; }
.quote-widget.open .float-panel { transform-origin: bottom right; }
.quote-toggle {
  height: 54px; padding: 0 20px 0 16px; border-radius: 999px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-800));
  font-weight: 800; font-size: 14px;
  box-shadow: 0 8px 28px rgba(11, 36, 71, .35);
}
.quote-toggle:hover { box-shadow: 0 12px 34px rgba(11, 36, 71, .45); }
.quote-toggle svg { width: 22px; height: 22px; flex-shrink: 0; }
.quote-panel { right: 0; left: auto; transform-origin: bottom right; }
.quote-header {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  color: #fff; padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.quote-header strong { display: block; font-size: 16px; }
.quote-header span { font-size: 12.5px; opacity: .85; }
.quote-header .panel-close { background: rgba(255,255,255,.15); flex-shrink: 0; }
.quote-form { padding: 20px 18px 18px; display: grid; gap: 12px; max-height: min(70vh, 520px); overflow-y: auto; }
.quote-field label { display: block; font-size: 13px; font-weight: 600; color: var(--navy-700); margin-bottom: 6px; }
.quote-field .req { color: var(--amber-dark); }
.quote-field input, .quote-field select {
  width: 100%; font-family: inherit; font-size: 15px; color: var(--ink);
  padding: 11px 13px; border: 1.5px solid var(--line); border-radius: 10px; background: #fbfcfe;
}
.quote-field select optgroup { font-weight: 700; color: var(--navy-700); }
.quote-field select option { font-weight: 400; }
.quote-field input:invalid:not(:placeholder-shown) { border-color: #e11d48; }
.quote-dest-field { position: relative; }
.quote-dest-hint { font-size: 11px; color: var(--amber-dark); margin: 4px 0 0; }
.quote-dest-dropdown {
  position: absolute; left: 0; right: 0; top: calc(100% - 4px); z-index: 20;
  max-height: 220px; overflow-y: auto; background: #fff; border: 1px solid var(--border, #d1d5db);
  border-radius: 10px; box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.quote-dest-group {
  padding: 8px 12px 4px; font-size: 11px; font-weight: 700; color: var(--navy-700);
  background: #f8fafc; position: sticky; top: 0;
}
.quote-dest-divider {
  padding: 6px 12px; font-size: 11px; color: #64748b; border-top: 1px solid #e2e8f0;
  background: #f1f5f9;
}
.quote-dest-option {
  display: block; width: 100%; text-align: left; padding: 9px 12px; border: none;
  background: none; font-size: 13px; cursor: pointer;
}
.quote-dest-option:hover { background: #fff7ed; color: var(--amber-dark); }
.quote-dest-empty { padding: 12px; font-size: 12px; color: #64748b; }
.quote-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.quote-error { color: #b91c1c; font-size: 13px; font-weight: 600; margin: 0; line-height: 1.5; }
.quote-mailto-fallback {
  display: block; text-align: center; font-size: 13px; font-weight: 600;
  color: var(--navy); text-decoration: underline; margin: 4px 0 0;
}
.quote-mailto-fallback:hover { color: var(--orange); }
.quote-success { color: #047857; font-size: 13.5px; font-weight: 600; margin: 0; line-height: 1.5; }
.quote-note { text-align: center; font-size: 12px; color: var(--muted); margin: 0; }

/* AI Chat widget — top of stack, subtle */
.ai-chat-widget { right: 22px; bottom: 92px; z-index: 9998; }
.ai-chat-widget.open .float-panel { transform-origin: bottom right; }
.ai-chat-toggle {
  background: #fff;
  color: var(--navy-800, #0b2447);
  border: 1.5px solid rgba(11, 36, 71, .14);
  box-shadow: 0 4px 16px rgba(11, 36, 71, .12);
  min-width: auto;
  height: 44px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 12px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}
.ai-chat-toggle:hover {
  border-color: rgba(11, 36, 71, .28);
  box-shadow: 0 6px 20px rgba(11, 36, 71, .16);
}
.ai-chat-widget.from-chatgpt .ai-chat-toggle {
  border-color: rgba(249, 115, 22, .35);
  box-shadow: 0 4px 18px rgba(249, 115, 22, .2);
}
.ai-chat-icon svg { width: 18px; height: 18px; display: block; stroke: currentColor; }
.ai-chat-label { font-size: 12px; font-weight: 700; letter-spacing: .02em; }
.ai-chat-close { display: none; font-size: 24px; line-height: 1; }
.ai-chat-widget.open .ai-chat-icon { display: none; }
.ai-chat-widget.open .ai-chat-label { display: none; }
.ai-chat-widget.open .ai-chat-close { display: block; }
.ai-chat-panel {
  right: 0;
  width: min(380px, calc(100vw - 32px));
  max-height: min(520px, calc(100vh - 120px));
  display: flex;
  flex-direction: column;
}
.ai-chat-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--navy-900, #0b2447);
  color: #fff;
  border-radius: 14px 14px 0 0;
}
.ai-chat-header-info strong { display: block; font-size: 15px; }
.ai-chat-header-info span { font-size: 12px; opacity: .75; }
.ai-chat-header-close { color: #fff; opacity: .8; background: none; border: none; font-size: 22px; cursor: pointer; }
.ai-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 14px;
  background: #f8fafc;
  min-height: 180px;
  max-height: 280px;
}
.ai-chat-msg {
  max-width: 88%;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 10px;
}
.ai-chat-msg-in {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--navy-800);
  border-bottom-left-radius: 4px;
}
.ai-chat-msg-out {
  background: var(--navy-800);
  color: #fff;
  margin-left: auto;
  border-bottom-right-radius: 4px;
}
.ai-chat-msg-typing {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  background: transparent;
  padding: 4px 0;
}
.ai-chat-time { font-size: 10px; opacity: .55; margin-top: 4px; }
.ai-chat-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px 12px;
  border-top: 1px solid var(--line);
  background: #fff;
}
.ai-chat-quick button {
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy-700);
  cursor: pointer;
}
.ai-chat-quick button:hover { border-color: var(--amber); color: var(--amber-dark); }
.ai-chat-input-area {
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid var(--line);
  background: #fff;
  align-items: flex-end;
}
.ai-chat-input {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 10px;
  font: inherit;
  font-size: 14px;
  resize: none;
  min-height: 38px;
}
.ai-chat-send {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: none;
  background: var(--amber);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
}
.ai-chat-send:disabled { opacity: .45; cursor: not-allowed; }
.ai-chat-handoff {
  display: flex;
  gap: 8px;
  padding: 10px 12px 12px;
  background: #fff;
  border-radius: 0 0 14px 14px;
}
.chat-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.chat-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
}
.chat-action-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,.12); }
.chat-action-whatsapp { background: #25d366; color: #fff; }
.chat-action-email { background: var(--navy, #1a2744); color: #fff; }
.chat-action-form { background: var(--amber, #e8a020); color: #1a2744; }
.wa-msg-in .chat-inline-actions { margin-top: 8px; }
.ai-chat-msg-in .chat-action-btn { font-size: 12px; padding: 7px 12px; }


/* WhatsApp widget — bottom of stack (most prominent) */
.wa-widget { right: 22px; bottom: 22px; }
.wa-widget.open .float-panel { transform-origin: bottom right; }
.wa-toggle {
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366;
  box-shadow: 0 10px 32px rgba(37,211,102,.48);
}
.wa-toggle:hover { box-shadow: 0 14px 38px rgba(37,211,102,.58); }
.wa-toggle svg { width: 28px; height: 28px; fill: currentColor; }
.wa-toggle .wa-close-icon { display: none; }
.wa-widget.open .wa-toggle .wa-chat-icon { display: none; }
.wa-widget.open .wa-toggle .wa-close-icon { display: block; }

.wa-panel {
  right: 0; height: 520px;
  display: flex; flex-direction: column;
}

.wa-header {
  background: linear-gradient(135deg, #075E54, #128C7E);
  color: #fff; padding: 16px 18px; display: flex; align-items: center; gap: 12px;
}
.wa-avatar {
  width: 42px; height: 42px; border-radius: 50%; background: #fff;
  display: grid; place-items: center; flex-shrink: 0; overflow: hidden;
}
.wa-avatar img { width: 100%; height: 100%; object-fit: cover; }
.wa-header-info { flex: 1; min-width: 0; }
.wa-header-info strong { display: block; font-size: 15px; font-weight: 700; }
.wa-header-info span { font-size: 12.5px; opacity: .88; }
.wa-header-close {
  width: 32px; height: 32px; border: none; background: rgba(255,255,255,.15);
  border-radius: 50%; color: #fff; cursor: pointer; font-size: 18px; line-height: 1;
  display: grid; place-items: center; transition: background .2s;
}
.wa-header-close:hover { background: rgba(255,255,255,.28); }

.wa-messages {
  flex: 1; overflow-y: auto; padding: 16px 14px;
  background: #e5ddd5 url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23d4cdc4' fill-opacity='.35'%3E%3Cpath d='M0 0h30v30H0zm30 30h30v30H30z'/%3E%3C/g%3E%3C/svg%3E");
  display: flex; flex-direction: column; gap: 10px;
}
.wa-msg { max-width: 85%; padding: 10px 14px; border-radius: 12px; font-size: 14px; line-height: 1.5; word-wrap: break-word; }
.wa-msg-in {
  align-self: flex-start; background: #fff; color: var(--ink);
  border-radius: 4px 12px 12px 12px; box-shadow: 0 1px 2px rgba(0,0,0,.08);
}
.wa-msg-out {
  align-self: flex-end; background: #dcf8c6; color: var(--ink);
  border-radius: 12px 4px 12px 12px; box-shadow: 0 1px 2px rgba(0,0,0,.06);
}
.wa-msg-time { font-size: 11px; color: var(--muted); margin-top: 4px; text-align: right; }
.wa-msg-status { font-size: 11px; color: #128C7E; margin-top: 3px; text-align: right; font-weight: 600; }

.wa-quick { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 14px 12px; background: #e5ddd5; }
.wa-quick-btn {
  font-family: inherit; font-size: 12.5px; font-weight: 600;
  padding: 7px 12px; border-radius: 999px; border: 1.5px solid #128C7E;
  background: #fff; color: #128C7E; cursor: pointer; transition: background .2s, color .2s;
}
.wa-quick-btn:hover { background: #128C7E; color: #fff; }

.wa-input-area {
  display: flex; align-items: flex-end; gap: 8px;
  padding: 12px 14px; background: #f0f0f0; border-top: 1px solid #ddd;
}
.wa-input {
  flex: 1; font-family: inherit; font-size: 14.5px; line-height: 1.4;
  padding: 10px 14px; border: none; border-radius: 22px;
  background: #fff; resize: none; max-height: 100px; min-height: 42px;
  box-shadow: 0 1px 2px rgba(0,0,0,.06);
}
.wa-input:focus { outline: none; box-shadow: 0 0 0 2px rgba(18,140,126,.25); }
.wa-send {
  width: 42px; height: 42px; border-radius: 50%; border: none; flex-shrink: 0;
  background: #128C7E; color: #fff; cursor: pointer;
  display: grid; place-items: center; transition: background .2s, transform .15s;
}
.wa-send:hover { background: #075E54; }
.wa-send:active { transform: scale(.94); }
.wa-send:disabled { opacity: .45; cursor: not-allowed; }
.wa-send svg { width: 20px; height: 20px; fill: currentColor; }

.wa-badge {
  position: absolute; top: -4px; right: -4px;
  width: 18px; height: 18px; border-radius: 50%;
  background: #f97316; border: 2px solid #fff;
  font-size: 10px; font-weight: 800; color: #fff;
  display: grid; place-items: center;
}
.wa-widget.open .wa-badge { display: none; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,.72); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; }
.footer-brand .brand { color: #fff; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; max-width: 300px; color: rgba(255,255,255,.6); }
.footer-col h4 { color: #fff; font-size: 14.5px; font-weight: 700; margin-bottom: 16px; letter-spacing: .02em; }
.footer-col a, .footer-col span { display: block; font-size: 14px; color: rgba(255,255,255,.62); margin-bottom: 11px; transition: color .2s; }
.footer-col a:hover { color: #ffb072; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: 13px; color: rgba(255,255,255,.5); }
.footer-legal { display: flex; gap: 16px; }
.footer-legal a, .footer-bottom a { color: rgba(255,255,255,.5); }
.footer-legal a:hover, .footer-bottom a:hover { color: #ffb072; }

.legal-page { padding: 128px 0 80px; background: var(--bg); }
.legal-inner { max-width: 760px; }
.legal-kicker { font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--amber); margin-bottom: 10px; }
.legal-page h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); color: var(--navy-900); line-height: 1.2; margin-bottom: 8px; }
.legal-meta { color: var(--muted); font-size: 14px; margin-bottom: 28px; }
.legal-page h2 { font-size: 1.15rem; color: var(--navy-800); margin: 32px 0 10px; }
.legal-page p, .legal-page li { color: var(--navy-700); font-size: 15.5px; line-height: 1.75; }
.legal-page ul { padding-left: 1.2em; margin: 8px 0 16px; }
.legal-page li { margin-bottom: 8px; }
.legal-page a { color: var(--navy-600); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .cards-4, .cargo-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-bg img { width: 72%; }
  .hero-inner { max-width: 520px; }
  .stats { margin-inline: 24px; max-width: none; }
}

@media (max-width: 760px) {
  .nav-links {
    position: fixed; inset: 76px 0 auto 0; flex-direction: column; gap: 0;
    background: #fff; padding: 12px 24px 22px; box-shadow: var(--shadow-md);
    transform: translateY(-130%); transition: transform .3s var(--ease); border-top: 1px solid var(--line);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { color: var(--navy-800); padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links a::after { display: none; }
  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { padding: 132px 0 0; }
  .hero-inner { max-width: 100%; padding-bottom: 64px; }
  .answer-box { max-width: 100%; padding: 14px 16px; }
  .answer-box ul { font-size: 14px; }
  .pay-trust { max-width: 100%; }
  .stats { margin: -32px 16px 0; border-radius: var(--radius); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat { border-bottom: 1px solid var(--line); }
  .hero-bg img { width: 100%; object-position: 68% center; }
  .hero-bg::after { background: linear-gradient(180deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.86) 40%, rgba(255,255,255,.58) 68%, rgba(255,255,255,.22) 100%); }
  .section { padding: 64px 0; }
  .cards-4, .cards-3, .cards-2, .why-grid, .steps, .cargo-grid { grid-template-columns: 1fr; }
  .split-inner { grid-template-columns: 1fr; gap: 30px; padding: 64px 24px; }
  .route-times { flex-direction: column; }
  .split-media { min-height: 240px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; }
  .lane-times { flex-direction: column; }
  .quote-widget { left: auto; right: auto; bottom: auto; }
  .quote-toggle { height: 50px; padding: 0 16px 0 12px; font-size: 13px; }
  .quote-toggle .fab-label { display: inline; }
  .quote-panel, .wa-panel, .ai-chat-panel { bottom: 58px; width: min(380px, calc(100vw - 24px)); max-width: calc(100vw - 24px); }
  .wa-panel { height: min(480px, calc(100dvh - 140px)); }
  .ai-chat-widget { right: auto; bottom: auto; }
  .ai-chat-label { display: inline; }
  .ai-chat-toggle { height: 40px; padding: 0 10px; }
  .wa-widget { right: auto; bottom: auto; }
  .wa-toggle { width: 56px; height: 56px; }
  .gsc-fab-stack { right: max(12px, env(safe-area-inset-right, 0px)); bottom: max(12px, env(safe-area-inset-bottom, 0px)); gap: 8px; }
  .card-photo { height: 170px; }
}

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.blog-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow .2s, transform .2s; }
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-card-link { display: block; text-decoration: none; color: inherit; }
.blog-card-img { aspect-ratio: 16/10; overflow: hidden; background: var(--navy-50); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 22px 22px 24px; }
.blog-tag { display: inline-block; font-size: 12px; font-weight: 700; color: var(--amber-dark); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 10px; }
.blog-card-body h2 { font-size: 1.2rem; line-height: 1.35; color: var(--navy-900); margin-bottom: 10px; }
.blog-card-body p { font-size: 14.5px; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
.blog-read { font-size: 14px; font-weight: 700; color: var(--navy-600); }

.blog-article-header { padding: 140px 0 32px; background: linear-gradient(180deg, var(--navy-50) 0%, #fff 100%); }
.blog-breadcrumb { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.blog-breadcrumb a { color: var(--navy-600); text-decoration: none; }
.blog-breadcrumb a:hover { text-decoration: underline; }
.blog-article-header h1 { font-size: clamp(1.75rem, 4vw, 2.35rem); line-height: 1.2; color: var(--navy-900); margin: 12px 0 14px; }
.blog-meta { font-size: 14px; color: var(--muted); }

.blog-feature-img { margin: 0 auto 36px; }
.blog-feature-img img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }

.blog-content { padding-bottom: 72px; font-size: 17px; line-height: 1.75; color: var(--navy-800); }
.blog-lead { font-size: 1.15rem; font-weight: 500; color: var(--navy-900); margin-bottom: 1.25em; }
.blog-content h2 { font-size: 1.45rem; font-weight: 800; color: var(--navy-900); margin: 2em 0 .75em; line-height: 1.3; }
.blog-content h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy-800); margin: 1.5em 0 .5em; }
.blog-content p { margin-bottom: 1.15em; }
.blog-content a { color: var(--navy-600); font-weight: 600; }
.blog-content a:hover { color: var(--amber-dark); }
.blog-list { margin: 0 0 1.25em 1.25em; }
.blog-list li { margin-bottom: .5em; }
.blog-list-ordered { list-style: decimal; }
.blog-faq h3 { font-size: 1.05rem; margin: 1.25em 0 .4em; }
.blog-faq p { font-size: 16px; color: var(--muted); margin-bottom: 1em; }

.blog-cta-box {
  margin-top: 2.5em; padding: 32px 28px; text-align: center;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  border-radius: var(--radius-lg); color: #fff;
}
.blog-cta-box h2 { color: #fff; font-size: 1.35rem; margin: 0 0 10px; }
.blog-cta-box p { color: rgba(255,255,255,.82); margin-bottom: 18px; }
.blog-cta-links { font-size: 14px; margin-top: 14px; margin-bottom: 0 !important; }
.blog-cta-links a { color: #ffb072; }

@media (max-width: 768px) {
  .blog-article-header { padding-top: 120px; }
  .blog-content { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Language switcher — Europe pages */
.lang-bar {
  background: var(--navy-900);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 8px 0;
  font-size: 13px;
}
.lang-bar-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.lang-bar a {
  color: rgba(255,255,255,.72);
  text-decoration: none;
  font-weight: 500;
  transition: color .15s;
}
.lang-bar a:hover { color: #fff; }
.lang-bar a.lang-active {
  color: var(--amber, #f97316);
  font-weight: 700;
}

.guide-link-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.guide-link-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11, 36, 71, 0.08);
}
.blog-card.featured-ai {
  border: 1px solid rgba(249, 115, 22, 0.35);
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.04), transparent);
}
.lang-label { opacity: .55; font-size: 14px; }

.route-times-3{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;}
@media(max-width:600px){.route-times-3{grid-template-columns:1fr;}}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.serve-card {
  display: block;
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(11, 36, 71, 0.08);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.serve-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11, 36, 71, 0.08);
}
.serve-icon { font-size: 28px; display: block; margin-bottom: 12px; }
.serve-card h3 { font-size: 17px; margin: 0 0 8px; }
.serve-card p { font-size: 14px; line-height: 1.55; margin: 0; color: var(--muted, #5a6478); }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.trust-photo { margin: 0; }
.trust-photo img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.trust-photo figcaption {
  font-size: 13px;
  color: var(--muted, #5a6478);
  margin-top: 8px;
  text-align: center;
}
.trust-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}
.trust-step {
  text-align: center;
  padding: 16px 12px;
  background: var(--surface-alt, #f6f8fb);
  border-radius: 10px;
}
.trust-step span {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  background: var(--navy, #0b2447);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
}
.trust-step strong { display: block; font-size: 15px; margin-bottom: 4px; }
.trust-step p { font-size: 13px; margin: 0; color: var(--muted, #5a6478); line-height: 1.45; }
.trust-links { text-align: center; font-size: 14px; color: var(--muted, #5a6478); }
.trust-links a { color: var(--amber, #f97316); }

.dest-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.dest-link {
  display: block;
  padding: 20px;
  background: #fff;
  border: 1px solid rgba(11, 36, 71, 0.08);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.15s ease;
}
.dest-link:hover { box-shadow: 0 6px 20px rgba(11, 36, 71, 0.08); }
.dest-link h3 { font-size: 16px; margin: 0 0 6px; }
.dest-link p { font-size: 14px; margin: 0; color: var(--muted, #5a6478); line-height: 1.5; }

@media (max-width: 900px) {
  .serve-grid, .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-process { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .serve-grid, .trust-grid, .trust-process, .dest-links { grid-template-columns: 1fr; }
}

/* Google Ads landing — sticky CTA bar + in-page strip */
body.has-ads-bar { padding-bottom: 56px; }
.ads-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: var(--navy, #0b2447);
  color: #fff;
  box-shadow: 0 -4px 16px rgba(11, 36, 71, 0.2);
  padding: 10px 16px;
}
.ads-sticky-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.ads-sticky-text { font-size: 14px; }
.ads-sticky-text strong { color: var(--amber, #f97316); }
.ads-sticky-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.ads-sticky-bar .btn-sm { padding: 8px 14px; font-size: 13px; }
.ads-sticky-bar .btn-ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
}
.ads-convert-strip {
  background: linear-gradient(90deg, #fff7ed 0%, #fef3c7 100%);
  border-bottom: 1px solid rgba(249, 115, 22, 0.15);
  padding: 16px 0;
}
.ads-convert-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.ads-convert-copy strong { display: block; font-size: 16px; color: var(--navy, #0b2447); }
.ads-convert-copy span { font-size: 14px; color: var(--muted, #5a6478); }
.ads-convert-btns { display: flex; gap: 10px; flex-wrap: wrap; }
@media (max-width: 600px) {
  body.has-ads-bar { padding-bottom: 72px; }
  .ads-sticky-inner { justify-content: center; }
  .ads-sticky-text { text-align: center; width: 100%; }
  .ads-convert-inner { flex-direction: column; text-align: center; }
}

/* Blog mid-page WhatsApp conversion strip */
.blog-wa-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin: 28px 0;
  padding: 18px 20px;
  background: linear-gradient(90deg, #ecfdf5 0%, #fff7ed 100%);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 12px;
}
.blog-wa-strip-copy strong { display: block; font-size: 16px; color: var(--navy, #0b2447); }
.blog-wa-strip-copy span { font-size: 14px; color: var(--muted, #5a6478); }
.blog-wa-strip-btns { display: flex; gap: 10px; flex-wrap: wrap; }
@media (max-width: 600px) {
  .blog-wa-strip { flex-direction: column; text-align: center; }
}

/* Money page components */
.cost-table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 15px; }
.cost-table th, .cost-table td { padding: 12px 14px; border: 1px solid var(--line); text-align: left; }
.cost-table th { background: var(--navy-50); font-weight: 700; color: var(--navy-800); }
.cost-table tr:nth-child(even) td { background: #fbfcfe; }
.cost-table .note { font-size: 12px; color: var(--muted); display: block; margin-top: 4px; }
.table-scroll { overflow-x: auto; margin: 0 0 24px; -webkit-overflow-scrolling: touch; }
.rate-port-title { font-size: 1.05rem; font-weight: 700; margin: 28px 0 10px; color: var(--navy-800); }
.rate-port-title:first-of-type { margin-top: 0; }
.rate-table { font-size: 13px; min-width: 680px; }
.rate-table th, .rate-table td { padding: 8px 10px; }
.rate-table td:first-child, .rate-table th:first-child { position: sticky; left: 0; background: inherit; z-index: 1; }
.rate-table thead th:first-child { background: var(--navy-50); }
.rate-table tbody tr:nth-child(even) td:first-child { background: #fbfcfe; }
.rate-table tbody tr:nth-child(odd) td:first-child { background: #fff; }
.rate-notes { font-size: 14px; color: var(--muted); margin-top: 16px; line-height: 1.6; }
.rate-notes li { margin-bottom: 6px; }
.case-study-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 24px; box-shadow: var(--shadow-sm);
}
.case-study-card h3 { font-size: 1.15rem; margin-bottom: 12px; color: var(--navy-900); }
.case-study-meta { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; margin: 16px 0; }
.case-study-meta div { font-size: 13px; }
.case-study-meta strong { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); margin-bottom: 4px; }
.money-links { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; margin-top: 24px; }

/* AI search citation → live quote banner */
.ai-cite-banner {
  background: linear-gradient(105deg, #0b2447 0%, #1e3a5f 55%, #0f766e 100%);
  color: #fff;
  padding: 20px 0;
  border-bottom: 3px solid var(--amber, #f97316);
  translate: no;
}
.ai-cite-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.ai-cite-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(249, 115, 22, .25);
  color: #fed7aa;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.ai-cite-copy strong { display: block; font-size: clamp(16px, 2.5vw, 19px); line-height: 1.35; margin-bottom: 6px; }
.ai-cite-copy p { margin: 0; font-size: 14px; line-height: 1.5; color: rgba(255,255,255,.88); max-width: 560px; }
.ai-cite-btns { display: flex; gap: 10px; flex-wrap: wrap; flex-shrink: 0; }
.ai-cite-btns .btn-primary { background: var(--amber, #f97316); border-color: var(--amber, #f97316); color: #1a1208; font-weight: 800; }
.ai-cite-btns .btn-primary:hover { background: #ea580c; }
.from-ai-search .ai-cite-banner { box-shadow: inset 0 0 0 1px rgba(249, 115, 22, .45); }
@media (max-width: 640px) {
  .ai-cite-inner { flex-direction: column; text-align: center; }
  .ai-cite-copy p { max-width: none; }
  .ai-cite-btns { width: 100%; justify-content: center; }
}

