/* ============================================================
   WecoColis — Premium cinematic homepage
   Design tokens, base styles, and component styles for the
   Morocco -> Europe package-journey storytelling experience.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&family=Outfit:wght@500;600;700;800&display=swap');

:root {
  /* palette */
  --navy: #18334D;
  --navy-soft: #285372;
  --navy-ink: #10263D;
  --red: #DC6A5E;
  --red-soft: #FDE9E5;
  --ocean: #4699C7;
  --ocean-soft: #E7F4FA;
  --sand: #FBF3E7;
  --sand-line: #F0DEC4;
  --paper: #FFFDF9;
  --gray-50: #F8FAFB;
  --gray-100: #F1F5F7;
  --gray-200: #E4EAEE;
  --gray-400: #8C9AAA;
  --gray-600: #5C6D80;
  --gray-800: #23384D;

  --text: #1B2E42;
  --text-soft: #627489;
  --line: #E4EAEE;

  --shadow-sm: 0 1px 2px rgba(11,29,58,.06), 0 4px 12px -6px rgba(11,29,58,.10);
  --shadow-md: 0 8px 24px -8px rgba(11,29,58,.18), 0 2px 6px rgba(11,29,58,.06);
  --shadow-lg: 0 24px 60px -20px rgba(11,29,58,.28);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --font-display: 'Outfit', 'DM Sans', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

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

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
html, body { background: var(--paper); overflow-x: hidden; }
body {
  margin: 0; color: var(--text);
  font-family: var(--font-body); font-size: 17px; line-height: 1.68; letter-spacing: .005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
[dir="rtl"] body { font-family: 'Cairo', system-ui, sans-serif; letter-spacing: 0; }
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] h4,
[dir="rtl"] button, [dir="rtl"] input, [dir="rtl"] select, [dir="rtl"] textarea { font-family: 'Cairo', system-ui, sans-serif; }
img, svg { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; color: var(--text); text-wrap: balance; letter-spacing: -.025em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 1rem; }
:focus-visible { outline: 3px solid var(--ocean); outline-offset: 2px; }
::selection { background: var(--sand); }

.wrap { max-width: 1240px; margin: 0 auto; padding-inline: 24px; }
.wrap-narrow { max-width: 860px; margin: 0 auto; padding-inline: 24px; }

/* ---------- section scaffolding ---------- */
.section { padding-block: 110px; position: relative; }
.section-tight { padding-block: 72px; }
.section.bg-navy { background: var(--navy); color: #fff; }
.section.bg-navy .text-soft { color: rgba(255,255,255,.65); }
.section.bg-sand { background: var(--sand); }
.section.bg-gray { background: var(--gray-50); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-size: .8rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--red); margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--red); border-radius: 2px; }
.section.bg-navy .eyebrow { color: #EF8A8D; }
.section.bg-navy .eyebrow::before { background: #EF8A8D; }
.sec-head { max-width: 640px; margin-bottom: 56px; }
.sec-head.center { max-width: 640px; margin-inline: auto; text-align: center; }
.sec-head h2 { font-size: clamp(2rem, 1.5rem + 2vw, 3rem); font-weight: 800; line-height: 1.12; margin-bottom: 16px; }
.sec-head p { color: var(--text-soft); font-size: 1.12rem; }
.section.bg-navy .sec-head p { color: rgba(255,255,255,.68); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  border-radius: 999px; padding: 15px 28px; font-weight: 700; font-size: .98rem;
  border: 1px solid transparent; transition: transform .18s var(--ease), background .18s ease, box-shadow .18s ease;
  min-height: 52px; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary { background: var(--navy); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--navy-soft); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.btn-red { background: var(--red); color: #fff; box-shadow: 0 10px 24px -10px rgba(193,39,45,.55); }
.btn-red:hover { filter: brightness(1.06); transform: translateY(-1px); }
.btn-ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.35); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,.16); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-outline:hover { border-color: var(--navy); }
.btn-sm { padding: 11px 20px; min-height: 42px; font-size: .9rem; }
.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { filter: brightness(1.05); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding-block: 20px; transition: background .3s ease, box-shadow .3s ease, padding .3s ease, backdrop-filter .3s ease;
}
.navbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.navbar.scrolled {
  background: rgba(255,255,255,.85); backdrop-filter: blur(14px); box-shadow: var(--shadow-sm);
  padding-block: 12px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: #fff; transition: color .3s ease; }
.navbar.scrolled .nav-logo { color: var(--navy); }
.nav-logo .mark { width: 36px; height: 36px; flex: none; }
.brand-name { display: inline-flex; align-items: baseline; white-space: nowrap; }
.brand-accent { color: var(--red); font-weight: 800; }
.brand-ar { display: none; font-family: 'Cairo', system-ui, sans-serif; font-weight: 800; }
[dir="rtl"] .brand-latin { display: none; }
[dir="rtl"] .brand-ar { display: inline; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: .95rem; font-weight: 600; color: rgba(255,255,255,.85); transition: color .3s ease; }
.navbar.scrolled .nav-links a { color: var(--text-soft); }
.nav-links a:hover { color: #fff; }
.navbar.scrolled .nav-links a:hover { color: var(--navy); }
.nav-right { display: flex; align-items: center; gap: 14px; }
.mobile-lang { display: none; position: relative; z-index: 130; }
.mobile-lang-toggle {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  min-width: 62px; height: 44px; padding: 0 9px; border-radius: 11px;
  border: 1.5px solid rgba(255,255,255,.32); background: rgba(255,255,255,.12); color: #fff;
  font-size: .86rem; font-weight: 800;
}
.mobile-lang-toggle svg { width: 15px; height: 15px; transition: transform .18s ease; }
.mobile-lang-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.navbar.scrolled .mobile-lang-toggle { background: #fff; color: var(--navy); border-color: var(--gray-200); }
.mobile-lang-menu {
  position: absolute; inset-inline-end: 0; top: calc(100% + 10px); width: min(210px, calc(100vw - 32px));
  padding: 8px; border: 1px solid var(--gray-200); border-radius: 16px; background: #fff;
  box-shadow: 0 18px 46px rgba(16,38,61,.22); color: var(--navy);
}
.mobile-lang-menu button {
  width: 100%; min-height: 48px; padding: 10px 12px; border: 0; border-radius: 10px; background: transparent;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; color: inherit; font-size: 1rem; text-align: start;
}
.mobile-lang-menu button:hover, .mobile-lang-menu button[aria-current="true"] { background: var(--ocean-soft); color: var(--navy); }
.mobile-lang-menu button[aria-current="true"] { font-weight: 800; }
.mobile-lang-menu small { color: var(--gray-600); font-size: .76rem; font-weight: 800; }
.lang-switch {
  background: rgba(255,255,255,.12); color: #fff; border: 1.5px solid rgba(255,255,255,.3);
  padding: 10px 14px; border-radius: 10px; font-size: .95rem; font-weight: 600; cursor: pointer;
  transition: background .3s ease, color .3s ease, border-color .3s ease;
  min-width: 70px; position: relative; z-index: 101;
}
.lang-switch:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.5); }
.lang-switch:focus { outline: 2px solid var(--ocean); outline-offset: 2px; background: rgba(255,255,255,.16); }
.lang-switch:focus-visible { outline: 2px solid var(--ocean); outline-offset: 2px; }
.navbar.scrolled .lang-switch { background: #fff; color: var(--navy); border-color: var(--gray-200); }
.navbar.scrolled .lang-switch:hover { background: var(--gray-50); border-color: var(--gray-300); }
/* Style the dropdown options */
.lang-switch option {
  background: #fff; color: var(--navy); padding: 10px; font-size: .95rem;
}
.lang-switch option:hover { background: var(--ocean); color: #fff; }
.lang-switch option:checked { background: var(--ocean); color: #fff; font-weight: 700; }
.nav-burger { display: none; width: 44px; height: 44px; border-radius: 10px; border: none; background: rgba(255,255,255,.12); color: #fff; align-items: center; justify-content: center; }
.navbar.scrolled .nav-burger { background: var(--gray-100); color: var(--navy); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden; background: linear-gradient(180deg, #0E2145 0%, #123262 55%, #1B4A82 100%);
  color: #fff; padding-top: 90px;
}
.hero-bg { position: absolute; left: 0; right: 0; bottom: 0; height: 46vh; min-height: 300px; z-index: 0; }
.hero-bg svg { width: 100%; height: 100%; display: block; }
.hero-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,23,48,.1) 0%, rgba(10,23,48,.35) 70%, rgba(10,23,48,.6) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; width: 100%; padding-block: 40px 60px; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 40px; text-align: center; max-width: 900px; margin-inline: auto; }
.hero .eyebrow { justify-content: center; color: #F0A8AA; }
.hero .eyebrow::before { background: #F0A8AA; }
.hero h1 {
  font-size: clamp(2.4rem, 1.7rem + 3.2vw, 4.4rem); font-weight: 800; line-height: 1.08;
  letter-spacing: -.01em; margin-bottom: 22px; color: #fff;
}
.hero h1 .accent { color: #FFB4A8; font-style: italic; font-weight: 600; }
.hero .lede { font-size: 1.18rem; color: rgba(255,255,255,.82); max-width: 56ch; margin: 0 auto 36px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 52px; }
.hero-stage {
  position: relative; width: 100%; aspect-ratio: 760 / 260; max-width: 760px; margin-inline: auto;
}
.hero-stage svg { width: 100%; height: 100%; overflow: hidden; }
.hero-labels { position: absolute; inset: 0; pointer-events: none; }
.float-label {
  position: absolute; display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.95); color: var(--navy); font-size: .78rem; font-weight: 700;
  padding: 8px 14px; border-radius: 999px; box-shadow: var(--shadow-md); opacity: 0;
}
.float-label .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ocean); }
.float-label.fl-picked { top: 10%; left: 6%; }
.float-label.fl-way { top: 4%; right: 10%; }
.float-label.fl-secure { bottom: 12%; left: 50%; transform: translateX(-50%); }
.scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,.7);
  font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
}
.scroll-cue .mouse { width: 24px; height: 38px; border: 2px solid rgba(255,255,255,.55); border-radius: 14px; position: relative; }
.scroll-cue .mouse::before { content: ""; position: absolute; top: 6px; left: 50%; width: 4px; height: 8px; background: #fff; border-radius: 2px; transform: translateX(-50%); }

/* hero van/box: pure CSS keyframes, no JS animation library needed */
#heroBox { animation: heroBoxLoad 4s ease both; }
#heroVan { animation: heroVanDrive 4s cubic-bezier(.4,0,.2,1) both; }
@keyframes heroBoxLoad {
  0%, 28% { opacity: 1; transform: translate(380px,175px) scale(1); }
  42%, 100% { opacity: 0; transform: translate(380px,165px) scale(.3); }
}
@keyframes heroVanDrive {
  0% { transform: translate(85px,178px); }
  28%, 44% { transform: translate(380px,178px); }
  100% { transform: translate(660px,178px); }
}
.float-label { animation: fl-pop .4s var(--ease) both; }
.fl-picked { animation-delay: 2.1s; }
.fl-way { animation-delay: 2.9s; }
.fl-secure { animation-delay: 3.3s; }
/* Animate opacity only so the centered badge keeps its translateX. */
@keyframes fl-pop { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  #heroBox, #heroVan, .float-label { animation: none; opacity: 1; }
  #heroVan { transform: translate(30px,178px); }
  #heroBox { display: none; }
}

/* ============================================================
   JOURNEY — lightweight scroll-reveal scenes (no scroll-jacking)
   ============================================================ */
.journey { position: relative; background: var(--sand); padding-block: 90px; }
.journey .sec-head { margin-bottom: 64px; }

.scene-list { display: flex; flex-direction: column; gap: 6px; }
.scene {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  max-width: 1120px; margin-inline: auto; padding: 40px 24px;
}
.scene.reverse { direction: rtl; }
.scene.reverse > * { direction: ltr; }
.scene.dark { background: var(--navy); border-radius: var(--radius-lg); color: #fff; margin-block: 24px; }
.scene.dark .step-tag { background: rgba(255,255,255,.12); color: #EF8A8D; }
.scene.dark h3, .scene.dark p { color: #fff; }
.scene.dark p { color: rgba(255,255,255,.75); }

.scene-art { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.scene-art svg { width: 100%; height: auto; display: block; }

.step-tag {
  display: inline-flex; align-items: center; gap: 8px; background: var(--red-soft);
  color: var(--red); font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 999px; margin-bottom: 16px;
}
.scene-copy h3 { font-size: clamp(1.4rem, 1.1rem + 1.2vw, 2rem); font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.scene-copy p { color: var(--text-soft); font-size: 1.04rem; }
.scene-checks { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.check-pill {
  display: inline-flex; align-items: center; gap: 7px; background: var(--paper);
  padding: 8px 14px; border-radius: 999px; font-size: .82rem; font-weight: 700; color: var(--navy);
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
}
.check-pill svg { width: 15px; height: 15px; color: var(--ocean); }
.check-pill.ok { color: #1C7A4D; }
.check-pill.ok svg { color: #1C7A4D; }

/* reveal-on-scroll utility, driven by IntersectionObserver toggling .visible */
.reveal { opacity: 1; }
.reveal.visible { animation: revealIn .45s var(--ease); }
@keyframes revealIn { from { opacity: .4; translate: 0 12px; } to { opacity: 1; translate: 0 0; } }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
.stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.stagger > .reveal:nth-child(2) { transition-delay: .08s; }
.stagger > .reveal:nth-child(3) { transition-delay: .16s; }
.stagger > .reveal:nth-child(4) { transition-delay: .24s; }
.stagger > .reveal:nth-child(5) { transition-delay: .32s; }
.stagger > .reveal:nth-child(6) { transition-delay: .4s; }

/* ============================================================
   MAP / DESTINATIONS
   ============================================================ */
.map-section { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.map-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.map-stage { position: relative; }
.map-stage svg { width: 100%; height: auto; }
.dest-cards { display: flex; flex-direction: column; gap: 14px; }
.dest-card {
  display: flex; align-items: center; gap: 14px; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-md); padding: 16px 18px;
  transition: background .25s ease, transform .25s ease, border-color .25s ease;
}
.dest-card:hover { background: rgba(255,255,255,.11); transform: translateX(-4px); border-color: rgba(255,255,255,.25); }
[dir="rtl"] .dest-card:hover { transform: translateX(4px); }
.dest-card .flag { font-size: 1.7rem; flex: none; }
.dest-card .dc-name { font-weight: 700; font-size: 1.02rem; margin-bottom: 2px; }
.dest-card .dc-sub { font-size: .85rem; color: rgba(255,255,255,.6); }

/* ============================================================
   DESTINATION GRID CARDS (full section)
   ============================================================ */
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.dgrid-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 26px 24px; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s ease;
  display: flex; flex-direction: column; gap: 14px;
}
.dgrid-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.dgrid-top { display: flex; align-items: center; justify-content: space-between; }
.dgrid-flag { font-size: 2.1rem; }
.dgrid-arrow { width: 34px; height: 34px; border-radius: 50%; background: var(--gray-100); display: flex; align-items: center; justify-content: center; transition: background .25s ease, transform .25s ease; }
.dgrid-card:hover .dgrid-arrow { background: var(--red); color: #fff; transform: rotate(45deg); }
[dir="rtl"] .dgrid-card:hover .dgrid-arrow { transform: rotate(-45deg); }
.dgrid-arrow svg { width: 16px; height: 16px; }
.dgrid-card h4 { font-size: 1.18rem; font-weight: 800; }
.dgrid-card .dgrid-status { font-size: .86rem; color: var(--ocean); font-weight: 700; display: flex; align-items: center; gap: 6px; }
.dgrid-status .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ocean); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-row { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.steps-line { position: absolute; top: 34px; left: 8%; right: 8%; height: 2px; background: var(--line); z-index: 0; }
.steps-line-fill { position: absolute; top: 0; left: 0; height: 100%; width: 0%; background: var(--red); }
.step-card { position: relative; z-index: 1; text-align: center; }
.step-num {
  width: 68px; height: 68px; border-radius: 50%; background: var(--paper); border: 2px solid var(--line);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-family: var(--font-display);
  font-weight: 800; font-size: 1.3rem; color: var(--navy); box-shadow: var(--shadow-sm); transition: border-color .3s ease, transform .3s ease;
}
.step-card.in-view .step-num { border-color: var(--red); transform: scale(1.06); }
.step-card h4 { font-size: 1.1rem; font-weight: 800; margin-bottom: 8px; }
.step-card p { color: var(--text-soft); font-size: .95rem; }

/* ============================================================
   SERVICES
   ============================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 28px 24px;
  transition: transform .25s var(--ease), box-shadow .25s ease, border-color .25s ease;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.svc-icon {
  width: 52px; height: 52px; border-radius: 14px; background: var(--ocean-soft); color: var(--ocean);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px; transition: transform .3s var(--ease);
}
.svc-card:hover .svc-icon { transform: rotate(-6deg) scale(1.06); }
.svc-icon svg { width: 26px; height: 26px; }
.svc-card h4 { font-size: 1.12rem; font-weight: 800; margin-bottom: 8px; }
.svc-card p { color: var(--text-soft); font-size: .93rem; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.why-list { display: flex; flex-direction: column; gap: 22px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-ic { width: 46px; height: 46px; border-radius: 12px; background: var(--red-soft); color: var(--red); display: flex; align-items: center; justify-content: center; flex: none; }
.why-ic svg { width: 22px; height: 22px; }
.why-item h4 { font-size: 1.02rem; font-weight: 800; margin-bottom: 3px; }
.why-item p { color: var(--text-soft); font-size: .92rem; }
.counter-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.counter-card {
  background: var(--navy); color: #fff; border-radius: var(--radius-md); padding: 30px 20px; text-align: center;
}
.counter-n { font-family: var(--font-display); font-size: 2.3rem; font-weight: 800; margin-bottom: 6px; }
.counter-l { font-size: .84rem; color: rgba(255,255,255,.65); }

/* ============================================================
   QUOTE FORM
   ============================================================ */
.quote-section { background: var(--gray-50); }
.family-easy {
  display: grid; grid-template-columns: 1.25fr 1fr; gap: 30px; align-items: center;
  margin: -20px 0 42px; padding: 28px 30px; background: #fff; border: 2px solid var(--sand-line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
}
.family-easy .eyebrow { margin-bottom: 7px; }
.family-easy h3 { font-size: clamp(1.35rem, 1.1rem + .8vw, 1.85rem); margin-bottom: 8px; }
.family-easy-copy > p:last-of-type { color: var(--text-soft); }
.family-phone { display: inline-flex; align-items: center; gap: 10px; margin-top: 14px; color: var(--navy); width: fit-content; font-size: 1.15rem; }
.family-phone > span:first-child { display:grid; place-items:center; width:46px; height:46px; border-radius:50%; background:#E4F5EA; color:#147443; font-size:1.45rem; }
.family-phone > span:last-child { display:flex; flex-direction:column; line-height:1.3; }
.family-phone small { font-size:.78rem; color:var(--text-soft); }
.family-phone strong { font-size:1.08rem; }
.family-steps { list-style:none; margin:0; padding:0; display:grid; gap:12px; }
.family-steps li { display:flex; align-items:center; gap:12px; }
.family-steps li > span { display:grid; place-items:center; flex:none; width:38px; height:38px; border-radius:50%; background:var(--navy); color:#fff; font-weight:800; }
.family-steps strong { font-size:.98rem; line-height:1.35; }
.quote-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: flex-start; }
.quote-illustration { position: sticky; top: 120px; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.qbox-stage { width: 100%; max-width: 320px; aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; }
.qbox-stage svg { width: 80%; height: 80%; }
.qbox-caption { text-align: center; color: var(--text-soft); font-size: .92rem; }
.quote-panel { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-md); }
.q-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.q-row-3 { grid-template-columns: 1fr 1fr 1fr; }
.q-field { display: flex; flex-direction: column; gap: 7px; }
.q-field label { font-size: .84rem; font-weight: 700; color: var(--text); }
.q-field input, .q-field select {
  border: 2px solid #CDD4DE; border-radius: 12px; padding: 14px 16px; min-height: 56px; font-size: 1rem;
  background: var(--paper); color: var(--text); width: 100%; transition: border-color .2s ease, box-shadow .2s ease;
}
.q-field input:focus, .q-field select:focus { border-color: var(--ocean); box-shadow: 0 0 0 3px var(--ocean-soft); outline: none; }
.field-hint { margin: -8px 0 16px; color: var(--text-soft); font-size: .86rem; }
.quote-panel .btn { width: 100%; margin-top: 6px; }
.quote-msg { margin-top: 14px; padding: 12px 16px; border-radius: 10px; font-size: .88rem; font-weight: 600; display: none; }
.quote-msg.show { display: block; }
.quote-msg.ok { background: #E4F5EA; color: #1C7A4D; }
.quote-msg.err { background: var(--red-soft); color: var(--red); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-track { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; scrollbar-width: none; }
.testi-track::-webkit-scrollbar { display: none; }
.testi-card {
  scroll-snap-align: start; flex: 0 0 min(88%, 380px); background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-md); padding: 28px; box-shadow: var(--shadow-sm);
}
.testi-stars { display: flex; gap: 3px; color: #F0A93B; margin-bottom: 14px; }
.testi-stars svg { width: 16px; height: 16px; }
.testi-text { font-size: .98rem; color: var(--text); margin-bottom: 18px; line-height: 1.65; }
.testi-who { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .9rem; }
.testi-name { font-weight: 700; font-size: .9rem; }
.testi-loc { font-size: .8rem; color: var(--text-soft); }
.testi-nav { display: flex; gap: 10px; justify-content: center; margin-top: 20px; }
.testi-nav button { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--line); background: var(--paper); display: flex; align-items: center; justify-content: center; }
.testi-nav button:hover { border-color: var(--navy); }
.testi-nav svg { width: 18px; height: 18px; }

/* ============================================================
   CTA
   ============================================================ */
.cta-section { position: relative; background: var(--navy); color: #fff; overflow: hidden; }
.cta-route { position: absolute; inset: 0; opacity: .5; }
#ctaVan { transform: translate(120px,190px); }
.cta-section.in-view #ctaVan { animation: ctaVanDrift 3s ease-in-out both; }
@keyframes ctaVanDrift { from { transform: translate(120px,190px); } to { transform: translate(1100px,215px); } }
@media (prefers-reduced-motion: reduce) { #ctaVan { animation: none; } }
.cta-content { position: relative; z-index: 2; text-align: center; max-width: 640px; margin-inline: auto; }
.cta-content h2 { font-size: clamp(1.9rem, 1.4rem + 2vw, 2.8rem); font-weight: 800; margin-bottom: 16px; color: #fff; }
.cta-content p { color: rgba(255,255,255,.75); font-size: 1.08rem; margin-bottom: 34px; }
.cta-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy-ink); color: rgba(255,255,255,.75); padding-block: 64px 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; color: #fff; margin-bottom: 14px; }
.footer-brand .mark { width: 32px; height: 32px; }
.footer-brand .brand-accent { color: #F0A8AA; }
.footer-desc { font-size: .92rem; color: rgba(255,255,255,.55); max-width: 32ch; margin-bottom: 20px; }
.footer-route { display: inline-flex; align-items: center; gap: 8px; font-size: .88rem; font-weight: 700; color: rgba(255,255,255,.8); background: rgba(255,255,255,.07); padding: 8px 14px; border-radius: 999px; }
.footer-col h5 { color: #fff; font-size: .84rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: .92rem; color: rgba(255,255,255,.6); transition: color .2s ease; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.45); }
/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .journey-pin { height: auto; position: relative; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .family-easy { grid-template-columns: 1fr 1fr; }
  .map-grid, .why-grid, .quote-grid { grid-template-columns: 1fr; }
  .scene, .scene.reverse { grid-template-columns: 1fr; direction: ltr; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch;
    gap: 0; background: var(--paper); border-top: 1px solid var(--line); box-shadow: var(--shadow-md); padding: 8px 0;
  }
  .nav-links.mobile-open { display: flex; }
  .nav-links a { color: var(--text) !important; padding: 14px 24px; }
  .nav-links a:hover { background: var(--gray-50); }
  .quote-illustration { position: static; }
  .steps-row { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .steps-line { display: none; }
  .svc-grid, .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .counter-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}
@media (max-width: 620px) {
  body { font-size: 18px; }
  .family-easy { grid-template-columns: 1fr; padding: 22px 18px; gap: 22px; margin: 0 0 28px; }
  .senior-call { font-size:.88rem !important; max-width:none !important; }
  .section { padding-block: 72px; }
  .q-row, .q-row-3 { grid-template-columns: 1fr; }
  .svc-grid, .dest-grid, .counter-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-ctas .btn, .cta-ctas .btn { width: 100%; }
  .hero-ctas, .cta-ctas { flex-direction: column; }
  .journey-copy { top: 8%; }
  .journey-checks { bottom: 6%; }
}

/* One question per line on phones and narrow tablets: easier to scan and tap. */
@media (max-width: 760px) {
  .family-easy { grid-template-columns: 1fr; padding: 22px 18px; gap: 22px; }
  .q-row, .q-row-3 { grid-template-columns: 1fr; }
}

/* Keep controls inside their grid tracks, including at 320px and at zoom. */
section { scroll-margin-top: 96px; }
.hero-grid > *, .scene > *, .map-grid > *, .why-grid > *, .quote-grid > *,
.q-row > *, .dest-grid > *, .svc-grid > *, .counter-grid > * { min-width: 0; }
.q-field input, .q-field select { min-width: 0; max-width: 100%; font-size: 1rem; }
.q-field label { font-size: .95rem; }
.btn { white-space: normal; text-align: center; }
button:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.quote-panel .q-field, .quote-panel details { margin-bottom: 16px; }
.quote-panel .q-row .q-field { margin-bottom: 0; }
.quote-panel summary { cursor: pointer; padding: 12px 0; font-weight: 700; }
.quote-panel summary + .q-row { margin-top: 12px; }
.float-label { white-space: nowrap; }
@media (max-width: 980px) {
  .quote-panel { grid-row: 1; }
  .quote-illustration .qbox-stage, .quote-illustration .qbox-caption { display: none; }
  .quote-illustration { width: 100%; align-items: stretch; }
}
@media (max-width: 760px) {
  .navbar .wrap { gap: 8px; padding-inline: 16px; }
  .nav-right { gap: 8px; }
  .nav-right > .lang-switch, .nav-right > a.btn { display: none; }
  .mobile-lang { display: block; }
  .nav-logo { gap: 4px; font-size: 1rem; }
  .nav-logo .mark { width: 28px; height: 28px; }
  .nav-right .btn { padding: 9px 12px; font-size: .8rem; max-width: 105px; }
  .nav-burger { flex: none; }
  .hero-content { padding-block: 20px 65px; }
  .hero-grid { gap: 12px; }
  .hero-ctas { margin-bottom: 12px; }
  .hero .lede { font-size: 1.05rem; }
  .float-label { font-size: .6rem; padding: 4px 7px; gap: 4px; }
  .float-label.fl-secure { bottom: 0; }
  .quote-panel { padding: 20px 16px; }
  .steps-row { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal, .float-label { opacity: 1; }
  #heroVan { transform: translate(380px,178px); }
  #heroBox { display: none; }
}
