/* =========================================================================
   PURE TAXI  -  cinematic, photography-driven editorial redesign
   ========================================================================= */

:root {
  --bg:        #05070d;
  --bg-2:      #080b14;
  --ink:       #f4f7fc;
  --muted:     #aab6cc;
  --faint:     #6b7890;
  --line:      rgba(255,255,255,0.12);
  --line-soft: rgba(255,255,255,0.07);

  --blue:      #2f8bff;
  --blue-2:    #5aa6ff;
  --wa:        #25d366;
  --wa-2:      #1eb457;

  --maxw: 1280px;
  --pad: clamp(20px, 5vw, 72px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-io: cubic-bezier(0.65, 0, 0.35, 1);

  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-disp: 'Anton', 'Inter', sans-serif;
}

* , *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
html.lenis-lock, body.menu-open { overflow: hidden; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
html { overflow-x: clip; scroll-behavior: smooth; }
section[id] { scroll-margin-top: 76px; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
:focus-visible { outline: 2px solid var(--blue-2); outline-offset: 3px; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }

/* ---------- typography ---------- */
.label {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--blue-2);
}
.label::before { content: ""; width: 28px; height: 1px; background: currentColor; opacity: .8; }
.label.no-line::before { display: none; }

.display {
  font-family: var(--font-disp); font-weight: 400; text-transform: uppercase;
  line-height: 0.92; letter-spacing: 0.005em;
}
h1.display { font-size: clamp(52px, 11vw, 150px); }
h2.display { font-size: clamp(40px, 8vw, 104px); }
.mega { font-size: clamp(64px, 14vw, 200px); }
.blue { color: var(--blue); }
.stroke {
  -webkit-text-stroke: 1.4px rgba(255,255,255,0.55); color: transparent;
}
.lead { color: var(--muted); font-size: clamp(15px, 1.5vw, 19px); max-width: 46ch; }

.num-badge {
  font-family: var(--font-disp); color: rgba(255,255,255,0.10);
  line-height: 1; letter-spacing: 0;
}

/* ---------- buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 28px; font-weight: 600; font-size: 15px; border-radius: 2px;
  transition: transform .3s var(--ease), background .3s, color .3s, box-shadow .3s;
  will-change: transform; overflow: hidden; white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; flex: none; }
.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn-wa { background: var(--wa); color: #04240f; }
.btn-wa:hover { background: #2ee56f; transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(37,211,102,.7); }
.btn-wa::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,.5) 50%, transparent 65%);
  transform: translateX(-130%); transition: transform .7s var(--ease);
}
.btn-wa:hover::after { transform: translateX(130%); }

.btn-outline { border: 1px solid rgba(255,255,255,0.35); color: var(--ink); background: rgba(255,255,255,0.02); backdrop-filter: blur(4px); }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); transform: translateY(-2px); }

.btn-lg { padding: 19px 36px; font-size: 16px; }
.btn-xl { padding: 22px 44px; font-size: 17px; }

/* =========================================================================
   LOADER
   ========================================================================= */
#loader {
  position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center;
  background: var(--bg); transition: opacity .7s var(--ease), visibility .7s;
}
#loader.hide { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; overflow: hidden; }
.loader-word {
  font-family: var(--font-disp); text-transform: uppercase; font-size: clamp(40px, 10vw, 90px);
  line-height: 1; letter-spacing: .02em; color: var(--ink);
  transform: translateY(110%); animation: loadUp .8s var(--ease) forwards;
}
.loader-word.b { color: var(--blue); animation-delay: .1s; }
.loader-bar { height: 2px; width: 0; margin: 20px auto 0; background: var(--blue); animation: loadBar 1.3s .3s var(--ease) forwards; }
@keyframes loadUp { to { transform: translateY(0); } }
@keyframes loadBar { to { width: 220px; } }

/* =========================================================================
   NAV
   ========================================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .5s var(--ease), backdrop-filter .5s, border-color .5s, padding .4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(5,7,13,0.82); backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 84px; transition: height .4s var(--ease); }
.nav.scrolled .nav-inner { height: 70px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 42px; height: 42px; }
.brand-name { font-family: var(--font-disp); text-transform: uppercase; font-size: 22px; letter-spacing: .04em; }
.brand-name .t { color: var(--blue); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a.link { position: relative; padding: 8px 16px; font-size: 14px; font-weight: 500; color: var(--muted); transition: color .25s; }
.nav-links a.link:hover, .nav-links a.link.active { color: var(--ink); }
.nav-links a.link::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 2px; height: 1.5px;
  background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav-links a.link:hover::after, .nav-links a.link.active::after { transform: scaleX(1); }
.nav-cta { margin-left: 12px; }

.burger { display: none; width: 46px; height: 46px; position: relative; }
.burger span { position: absolute; left: 11px; right: 11px; height: 2px; background: var(--ink); transition: transform .35s var(--ease), opacity .2s; }
.burger span:nth-child(1) { top: 16px; } .burger span:nth-child(2) { top: 22px; } .burger span:nth-child(3) { top: 28px; }
.burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: var(--bg);
  transform: translateY(-100%); transition: transform .55s var(--ease);
  display: flex; flex-direction: column; justify-content: center; padding: var(--pad);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a.link { font-family: var(--font-disp); text-transform: uppercase; font-size: clamp(38px, 12vw, 66px); line-height: 1.1; color: var(--ink); padding: 6px 0; opacity: .4; transition: opacity .3s, color .3s, transform .3s; }
.mobile-menu a.link.active, .mobile-menu a.link:hover { opacity: 1; color: var(--blue); transform: translateX(8px); }
.mobile-menu .m-actions { margin-top: 40px; display: flex; flex-direction: column; gap: 14px; max-width: 320px; }

/* =========================================================================
   HERO
   ========================================================================= */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-media { transform: scale(1.06); transition: transform 8s var(--ease); }
.hero.in .hero-media { transform: scale(1); }   /* slow settle "zoom" on load */
.hero-slides { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s var(--ease); }
.hero.in .hero-slides { opacity: 1; }            /* transform handled by JS parallax */
.hero-slide {
  position: absolute; inset: 0; width: 100%; height: 120%;
  object-fit: cover; object-position: center;
  opacity: 0; transition: opacity 1.4s var(--ease);
}
.hero-slide.active { opacity: 1; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(5,7,13,0.92) 0%, rgba(5,7,13,0.55) 40%, rgba(5,7,13,0.15) 75%, transparent 100%),
    linear-gradient(0deg, rgba(5,7,13,0.95) 0%, rgba(5,7,13,0.35) 35%, transparent 65%);
}
/* moving light sweep */
.hero-sweep { position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none; }
.hero-sweep::before {
  content: ""; position: absolute; top: -20%; left: -30%; width: 40%; height: 140%;
  background: linear-gradient(105deg, transparent, rgba(90,166,255,0.10), transparent);
  transform: skewX(-14deg); animation: sweep 9s 2s ease-in-out infinite;
}
@keyframes sweep { 0% { left: -40%; } 55%,100% { left: 130%; } }

.hero-inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(60px, 12vh, 130px); padding-top: 120px; }
.hero .label { opacity: 0; transform: translateY(16px); }
.hero.in .label { animation: up .8s .2s var(--ease) forwards; }
.hero h1 { margin: 22px 0; }
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line > span { display: block; transform: translateY(105%); }
.hero.in h1 .line:nth-child(1) > span { animation: reveal 1s .35s var(--ease) forwards; }
.hero.in h1 .line:nth-child(2) > span { animation: reveal 1s .5s var(--ease) forwards; }
.hero-sub { opacity: 0; transform: translateY(16px); margin-bottom: 34px; }
.hero.in .hero-sub { animation: up .9s .7s var(--ease) forwards; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; opacity: 0; transform: translateY(16px); }
.hero.in .hero-cta { animation: up .9s .85s var(--ease) forwards; }
@keyframes reveal { to { transform: translateY(0); } }
@keyframes up { to { opacity: 1; transform: translateY(0); } }

.scroll-cue { position: absolute; right: var(--pad); bottom: 40px; z-index: 3; display: flex; align-items: center; gap: 10px;
  writing-mode: vertical-rl; font-size: 11px; letter-spacing: .25em; text-transform: uppercase; color: var(--faint); opacity: 0; }
.hero.in .scroll-cue { animation: up 1s 1.2s var(--ease) forwards; }
.scroll-cue .bar { width: 1px; height: 46px; background: linear-gradient(var(--blue), transparent); }

/* =========================================================================
   MARQUEE
   ========================================================================= */
.marquee { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); padding: 22px 0; overflow: hidden; background: var(--bg-2); }
.marquee-track { display: flex; gap: 0; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { font-family: var(--font-disp); text-transform: uppercase; font-size: clamp(20px, 3vw, 34px); color: var(--ink); padding: 0 30px; display: inline-flex; align-items: center; gap: 30px; opacity: .85; }
.marquee-item::after { content: ""; width: 8px; height: 8px; background: var(--blue); border-radius: 50%; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =========================================================================
   SECTION scaffolding
   ========================================================================= */
.section { padding: clamp(90px, 12vh, 150px) 0; position: relative; }
.section-head { max-width: 760px; margin-bottom: 60px; }
.section-head h2 { margin: 18px 0; }

/* reveal utilities */
[data-reveal] { opacity: 0; transform: translateY(40px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-reveal].vis { opacity: 1; transform: none; }
[data-reveal="fade"] { transform: none; }
[data-reveal].vis { transform: none; }
[data-d="1"]{ transition-delay:.1s } [data-d="2"]{ transition-delay:.2s } [data-d="3"]{ transition-delay:.3s } [data-d="4"]{ transition-delay:.4s }
.line-mask { display: block; overflow: hidden; }
.line-mask > span { display: block; transform: translateY(105%); transition: transform 1s var(--ease); }
.line-mask.vis > span { transform: translateY(0); }

/* =========================================================================
   WHY  (editorial statements, not cards)
   ========================================================================= */
.why { border-top: 1px solid var(--line-soft); overflow: hidden; }
.why-rows { display: flex; flex-direction: column; gap: 16px; }

.why-row {
  position: relative; min-height: 150px; border-radius: 10px; overflow: hidden;
  background: #0a0e1a; border: 1px solid var(--line-soft); outline: none;
  transition: border-color .4s var(--ease), box-shadow .4s var(--ease), transform .4s var(--ease);
}
.wr-media { position: absolute; top: 0; right: 0; bottom: 0; width: 64%; z-index: 0; }
.wr-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.wr-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, #0a0e1a 2%, rgba(10,14,26,0.85) 22%, rgba(10,14,26,0.25) 55%, rgba(10,14,26,0.55) 100%);
}
.wr-inner { position: relative; z-index: 2; display: flex; align-items: center; gap: clamp(18px, 3vw, 40px); padding: 30px clamp(22px, 3vw, 40px); min-height: 150px; }
.wr-num { font-family: var(--font-disp); font-size: clamp(40px, 5vw, 70px); line-height: 1; color: rgba(255,255,255,.16); transition: color .4s; min-width: 1.4em; }
.wr-inner::after { display: none; }
.wr-div { width: 1px; align-self: stretch; background: var(--line); }
.wr-ico { width: 54px; height: 54px; flex: none; display: grid; place-items: center; color: var(--blue-2); border-left: 1px solid var(--line); padding-left: clamp(16px, 2.5vw, 34px); }
.wr-ico svg { width: 30px; height: 30px; }
.wr-body h3 { font-family: var(--font-disp); text-transform: uppercase; font-size: clamp(22px, 2.6vw, 34px); line-height: 1; letter-spacing: .01em; margin-bottom: 8px; }
.wr-body p { color: var(--muted); font-size: 15px; max-width: 30ch; }

/* active look (SS2): middle row glows at rest, follows hover/focus */
.why-rows:not(:hover) .why-row:nth-child(2),
.why-row:hover, .why-row:focus-visible {
  border-color: rgba(47,139,255,.75);
  box-shadow: 0 0 0 1px rgba(47,139,255,.4), 0 20px 50px -24px rgba(47,139,255,.6);
}
.why-rows:not(:hover) .why-row:nth-child(2) .wr-num, .why-row:hover .wr-num { color: var(--blue); }
.why-row:hover .wr-media img { transform: scale(1.05); }

/* WhatsApp chat bubble on the "chat" row */
.wr-chat { position: absolute; right: clamp(20px, 5vw, 70px); top: 50%; transform: translateY(-50%); z-index: 3;
  width: min(260px, 42%); background: #1f2c33; border-radius: 12px 12px 12px 4px; padding: 12px 14px;
  box-shadow: 0 18px 40px -16px rgba(0,0,0,.8); }
.wr-chat-name { color: var(--wa); font-size: 12px; font-weight: 700; margin-bottom: 4px; }
.wr-chat-msg { color: #e9edef; font-size: 13.5px; line-height: 1.4; position: relative; padding-right: 20px; }
.wr-chat-tick { position: absolute; right: 0; bottom: 0; color: #53bdeb; }
.wr-chat-tick svg { width: 15px; height: 15px; }

/* bottom CTA bar */
.why-bar { display: flex; align-items: center; flex-wrap: wrap; gap: clamp(20px, 4vw, 46px); margin-top: 40px; padding-top: 34px; border-top: 1px solid var(--line); }
.why-bar-lines { display: flex; flex-direction: column; gap: 2px; padding-left: 18px; border-left: 2px solid var(--blue); }
.why-bar-lines span { font-family: var(--font-disp); text-transform: uppercase; font-size: clamp(15px, 1.6vw, 19px); letter-spacing: .02em; color: var(--ink); line-height: 1.25; }
.why-bar-phone { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: clamp(18px, 2vw, 24px); color: var(--ink); transition: color .3s; }
.why-bar-phone:hover { color: var(--blue); }
.why-bar-phone svg { width: 22px; height: 22px; color: var(--blue); }

/* =========================================================================
   SERVICES  (photographic 3D carousel)
   ========================================================================= */
.services { padding: 0; position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.svc-bgs { position: absolute; inset: 0; z-index: 0; }
.svc-bg { position: absolute; inset: 0; opacity: 0; transition: opacity 1.1s var(--ease); }
.svc-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.14); filter: blur(14px) brightness(.42); }
.svc-bg.active { opacity: 1; }
.svc-bgs::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,7,13,0.92), rgba(5,7,13,0.86) 40%, rgba(5,7,13,0.96)); }

.services .container { position: relative; z-index: 2; padding-top: 100px; padding-bottom: 40px; }
.svc-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; margin-bottom: 34px; }
.svc-head h2 { margin-top: 16px; }
.svc-count { font-family: var(--font-disp); font-size: clamp(40px, 6vw, 80px); color: rgba(255,255,255,.16); line-height: 1; }
.svc-count b { color: var(--blue); }

.carousel { position: relative; height: 520px; perspective: 1900px; z-index: 2; }
.carousel-track { position: relative; width: 100%; height: 100%; transform-style: preserve-3d; }
.svc-card {
  position: absolute; top: 50%; left: 50%; width: 430px; height: 500px; margin: -250px 0 0 -215px;
  border-radius: 8px; overflow: hidden; cursor: pointer; background: #0b1120;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 30px 70px -34px rgba(0,0,0,.9);
  transition: transform .7s var(--ease), opacity .7s var(--ease), filter .7s var(--ease), box-shadow .7s, border-color .7s;
  will-change: transform, opacity; backface-visibility: hidden;
}
.svc-card .sc-img { position: absolute; inset: 0; }
.svc-card .sc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.svc-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,10,20,.1) 0%, rgba(6,10,20,.4) 42%, rgba(6,10,20,.96) 100%); }
.svc-card .sc-body { position: absolute; inset: 0; z-index: 2; padding: 32px; display: flex; flex-direction: column; }
.svc-card .sc-num { font-family: var(--font-disp); font-size: 52px; line-height: 1; color: #fff; opacity: .95; text-shadow: 0 2px 20px rgba(0,0,0,.6); }
.svc-card .sc-spacer { flex: 1; }
.svc-card h3 { font-family: var(--font-disp); text-transform: uppercase; font-size: 36px; line-height: 1; letter-spacing: .01em; margin-bottom: 12px; text-shadow: 0 2px 16px rgba(0,0,0,.5); }
.svc-card p { color: #cdd8ea; font-size: 15.5px; margin-bottom: 22px; max-height: 0; opacity: 0; overflow: hidden; transition: max-height .6s var(--ease), opacity .5s; }
.svc-card .sc-cta { max-height: 0; opacity: 0; overflow: hidden; transition: max-height .6s var(--ease), opacity .5s; }
.svc-card .sc-cta .btn { width: 100%; }

.svc-card.pos-center { transform: translate3d(0,0,0) scale(1); opacity: 1; z-index: 6; box-shadow: 0 50px 110px -34px rgba(0,0,0,.95), 0 0 0 1px rgba(47,139,255,.5); border-color: rgba(47,139,255,.85); }
.svc-card.pos-center .sc-img img { transform: scale(1.08); }
.svc-card.pos-center p, .svc-card.pos-center .sc-cta { max-height: 180px; opacity: 1; }
.svc-card.pos-right  { transform: translate3d(310px,0,-300px) rotateY(-26deg) scale(.84); opacity: .82; z-index: 4; filter: brightness(.62); }
.svc-card.pos-left   { transform: translate3d(-310px,0,-300px) rotateY(26deg) scale(.84); opacity: .82; z-index: 4; filter: brightness(.62); }
.svc-card.pos-far-right { transform: translate3d(560px,0,-600px) rotateY(-32deg) scale(.68); opacity: .4; z-index: 3; filter: brightness(.45); }
.svc-card.pos-far-left  { transform: translate3d(-560px,0,-600px) rotateY(32deg) scale(.68); opacity: .4; z-index: 3; filter: brightness(.45); }
.svc-card.pos-hidden { transform: translate3d(0,0,-820px) scale(.5); opacity: 0; z-index: 1; pointer-events: none; }
.svc-card:not(.pos-center) .sc-cta .btn { pointer-events: none; }
/* keep side cards readable as cards: show their title even when not active */
.svc-card:not(.pos-center) .sc-body { padding: 28px; }

.carousel-nav { display: flex; align-items: center; justify-content: center; gap: 24px; margin-top: 40px; z-index: 3; position: relative; }
.car-arrow { width: 54px; height: 54px; border: 1px solid var(--line); display: grid; place-items: center; border-radius: 50%; transition: background .3s, border-color .3s, transform .3s; color: var(--ink); }
.car-arrow:hover { background: var(--blue); border-color: var(--blue); transform: scale(1.05); }
.car-arrow svg { width: 20px; height: 20px; }
.car-dots { display: flex; gap: 10px; }
.car-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.25); cursor: pointer; transition: all .3s; }
.car-dot.active { width: 30px; border-radius: 4px; background: var(--blue); }

/* =========================================================================
   LEBANON  (full-bleed with animated route)
   ========================================================================= */
.lebanon { position: relative; min-height: 92svh; display: flex; align-items: center; overflow: hidden; }
.lebanon-media { position: absolute; inset: 0; z-index: 0; }
.lebanon-media img { width: 100%; height: 118%; object-fit: cover; will-change: transform; }
.lebanon-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,7,13,.7), rgba(5,7,13,.35) 40%, rgba(5,7,13,.85)); }
.lebanon .container { position: relative; z-index: 2; }
.lebanon h2 { margin: 20px 0 24px; }
.route { position: absolute; left: 0; right: 0; bottom: 16%; z-index: 1; height: 120px; pointer-events: none; }
.route svg { width: 100%; height: 100%; overflow: visible; }
.route .path { fill: none; stroke: var(--blue); stroke-width: 2.5; stroke-linecap: round; filter: drop-shadow(0 0 6px rgba(47,139,255,.8)); }
.route .dot { fill: #fff; filter: drop-shadow(0 0 8px rgba(90,166,255,1)); }
.route-stops { display: flex; gap: clamp(20px, 8vw, 90px); margin-top: 34px; }
.route-stop { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 14px; letter-spacing: .05em; text-transform: uppercase; color: var(--ink); opacity: 0; transform: translateY(14px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.route-stop.vis { opacity: 1; transform: none; }
.route-stop .pip { width: 10px; height: 10px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 4px rgba(47,139,255,.2); }

/* =========================================================================
   ABOUT  (editorial)
   ========================================================================= */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 6vw, 80px); align-items: center; }
.about h2 { margin: 20px 0 26px; }
.about p { color: var(--muted); font-size: 17px; max-width: 44ch; margin-bottom: 34px; }
.about-values { border-top: 1px solid var(--line); }
.about-value { display: flex; align-items: baseline; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.about-value .av-num { font-family: var(--font-disp); color: var(--blue); font-size: 20px; min-width: 40px; }
.about-value b { font-family: var(--font-disp); text-transform: uppercase; font-size: clamp(20px, 2.4vw, 30px); min-width: clamp(140px, 18vw, 200px); letter-spacing: .01em; }
.about-value span { color: var(--faint); font-size: 15px; }
.about-visual { position: relative; overflow: hidden; border-radius: 4px; aspect-ratio: 4/5; }
.about-visual img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.about-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(5,7,13,.5)); }
.about-tag { position: absolute; left: 20px; bottom: 20px; z-index: 2; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink); background: rgba(5,7,13,.5); backdrop-filter: blur(6px); padding: 8px 14px; border: 1px solid var(--line-soft); }

/* =========================================================================
   CONTACT  (full-screen CTA)
   ========================================================================= */
.contact { position: relative; min-height: 96svh; display: flex; align-items: center; text-align: center; overflow: hidden; }
.contact-media { position: absolute; inset: 0; z-index: 0; }
.contact-media img { width: 100%; height: 116%; object-fit: cover; object-position: center; will-change: transform; }
.contact-media::after { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 80% at 50% 50%, rgba(5,7,13,.6), rgba(5,7,13,.9)); }
.contact .container { position: relative; z-index: 2; }
.contact h2 { margin: 22px 0 10px; }
.contact .lead { margin: 0 auto 40px; text-align: center; }
.contact-cta { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-bottom: 44px; }
.contact-phone { display: inline-flex; align-items: center; gap: 14px; font-family: var(--font-disp); font-size: clamp(28px, 4vw, 48px); color: var(--ink); letter-spacing: .02em; transition: color .3s; }
.contact-phone:hover { color: var(--blue); }
.contact-phone svg { width: 30px; height: 30px; color: var(--blue); }
.contact-note { margin-top: 22px; color: var(--faint); font-size: 14px; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer { border-top: 1px solid var(--line-soft); padding: 70px 0 34px; background: var(--bg-2); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr; gap: 40px; }
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p { color: var(--muted); font-size: 14px; max-width: 30ch; }
.footer h4 { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--faint); margin-bottom: 18px; }
.footer-links a, .footer-contact a { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 14.5px; padding: 6px 0; transition: color .25s, transform .25s; }
.footer-links a:hover { color: var(--blue-2); transform: translateX(3px); }
.footer-contact a:hover { color: var(--ink); }
.footer-contact svg { width: 16px; height: 16px; color: var(--blue); }
.footer-bottom { margin-top: 50px; padding-top: 24px; border-top: 1px solid var(--line-soft); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: var(--faint); font-size: 12.5px; }
.footer-bottom a { color: var(--faint); text-decoration: underline; text-underline-offset: 3px; }

/* =========================================================================
   FLOATING WA + STICKY MOBILE BAR
   ========================================================================= */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; background: var(--wa); color: #04240f; box-shadow: 0 14px 34px -10px rgba(37,211,102,.7); transition: transform .3s var(--ease); }
.wa-float svg { width: 29px; height: 29px; }
.wa-float:hover { transform: scale(1.08); }
.wa-float::before { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid rgba(37,211,102,.55); animation: waPulse 2.4s ease-out infinite; }
@keyframes waPulse { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.7); opacity: 0; } }

.mobile-bar { display: none; }

/* =========================================================================
   PAGE HERO (sub pages)
   ========================================================================= */
.page-hero { position: relative; min-height: 66svh; display: flex; align-items: flex-end; overflow: hidden; }
.page-hero .page-media { position: absolute; inset: 0; z-index: 0; }
.page-hero .page-media img { width: 100%; height: 116%; object-fit: cover; }
.page-hero .page-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,7,13,.6), rgba(5,7,13,.4) 40%, rgba(5,7,13,.9)); }
.page-hero .container { position: relative; z-index: 2; padding-bottom: 60px; padding-top: 130px; }
.page-hero h1 { margin: 18px 0 16px; }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1000px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: block; }
  .wr-media { width: 74%; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { aspect-ratio: 16/10; order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .svc-head { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .hero-inner { padding-bottom: 120px; }
  .marquee-item { font-size: 22px; }
  /* why rows: photo becomes a faded full backdrop, content stacks over it */
  .wr-media { width: 100%; }
  .wr-media::after { background: linear-gradient(180deg, rgba(10,14,26,0.72), rgba(10,14,26,0.9)); }
  .wr-inner { flex-wrap: wrap; gap: 12px 16px; padding: 24px; }
  .wr-num { font-size: 40px; min-width: auto; }
  .wr-ico { border-left: none; padding-left: 0; margin-left: auto; }
  .wr-body { flex-basis: 100%; }
  .wr-chat { display: none; }
  .why-bar { flex-direction: column; align-items: flex-start; gap: 20px; }
  .carousel { height: 500px; }
  .svc-card { width: min(86vw, 340px); margin-left: calc(min(86vw, 340px) / -2); height: 470px; }
  .svc-card.pos-right { transform: translate3d(150px,0,-320px) rotateY(-22deg) scale(.8); opacity: .5; }
  .svc-card.pos-left { transform: translate3d(-150px,0,-320px) rotateY(22deg) scale(.8); opacity: .5; }
  .svc-card.pos-far-right, .svc-card.pos-far-left { opacity: 0; }
  .svc-card .sc-num { font-size: 44px; }
  .svc-card h3 { font-size: 30px; }
  .svc-card p, .svc-card.pos-center p { max-height: 130px; opacity: 1; }
  .svc-card .sc-cta, .svc-card.pos-center .sc-cta { max-height: 70px; opacity: 1; }
  .about-value { flex-wrap: wrap; gap: 8px 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .wa-float { display: none; }               /* replaced by sticky bar on mobile */
  .mobile-bar { display: grid; grid-template-columns: 1fr auto; gap: 10px; position: fixed; left: 0; right: 0; bottom: 0; z-index: 92; padding: 12px 14px calc(12px + env(safe-area-inset-bottom)); background: rgba(5,7,13,.92); backdrop-filter: blur(12px); border-top: 1px solid var(--line-soft); }
  .mobile-bar .btn { width: 100%; }
  .mobile-bar .call { width: 54px; height: 54px; border-radius: 4px; display: grid; place-items: center; border: 1px solid var(--line); }
  .mobile-bar .call svg { width: 20px; height: 20px; color: var(--blue); }
  body { padding-bottom: 76px; }
  .scroll-cue { display: none; }
}

/* =========================================================================
   REDUCED MOTION
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
  .hero-media { transform: none !important; }
  .hero-slides { opacity: 1 !important; }
  .hero-slide.active { opacity: 1 !important; }
  .hero .label, .hero-sub, .hero-cta, .scroll-cue, .hero h1 .line > span { opacity: 1 !important; transform: none !important; }
  [data-reveal], .line-mask > span, .route-stop { opacity: 1 !important; transform: none !important; }
  .marquee-track { animation: none !important; }
  .hero-sweep, .wa-float::before { display: none !important; }
}
