/* ============================================================
   PERSEL TRANSPORT — Premium Dark Royal · UI Enhanced
   ============================================================ */

/* === CSS VARIABLES === */
:root {
  --bg-void:       #03060E;
  --bg-deep:       #070C18;
  --bg-dark:       #0A1020;
  --bg-card:       #0D1628;
  --bg-glass:      rgba(12,18,36,.75);

  --royal:         #1A4FBB;
  --royal-bright:  #2563EB;
  --electric:      #3B82F6;
  --sky-glow:      #60A5FA;
  --ice:           #BAD4FA;
  --purple-accent: #6366F1;

  --white:         #FFFFFF;
  --silver:        #C8D4E8;
  --muted:         #7A91B4;
  --border:        rgba(59,130,246,.14);
  --border-bright: rgba(59,130,246,.38);
  --glow:          rgba(37,99,235,.22);

  --transition:      0.3s cubic-bezier(.4,0,.2,1);
  --transition-slow: 0.65s cubic-bezier(.4,0,.2,1);
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --shadow-blue: 0 8px 40px rgba(37,99,235,.35);
  --shadow-dark: 0 12px 56px rgba(0,0,0,.7);

  --container:  1200px;
  --section-py: 100px;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--silver);
  background: var(--bg-deep);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3 { font-family: 'Barlow Condensed', sans-serif; line-height: 1.1; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
:focus-visible { outline: 2px solid var(--electric); outline-offset: 3px; border-radius: 4px; }

/* === SCROLL PROGRESS BAR === */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2.5px;
  width: 0%;
  background: linear-gradient(90deg, var(--royal-bright), var(--sky-glow), var(--purple-accent));
  z-index: 9999;
  transition: width .08s linear;
  box-shadow: 0 0 10px rgba(96,165,250,.7);
}

/* === CONTAINER === */
.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .3px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  transform: skewX(-22deg);
  transition: left .6s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn:hover::after { left: 160%; }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: linear-gradient(135deg, var(--royal-bright) 0%, #1A4FBB 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,99,235,.4), inset 0 1px 0 rgba(255,255,255,.15);
}
.btn--primary:hover {
  background: linear-gradient(135deg, #60A5FA 0%, var(--royal-bright) 100%);
  box-shadow: 0 8px 36px rgba(37,99,235,.6), 0 0 24px rgba(96,165,250,.25);
}
.btn--outline {
  background: rgba(255,255,255,.04);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.25);
  backdrop-filter: blur(10px);
}
.btn--outline:hover {
  background: rgba(59,130,246,.1);
  border-color: var(--sky-glow);
  color: var(--sky-glow);
  box-shadow: 0 0 20px rgba(59,130,246,.2);
}
.btn--lg { padding: 17px 40px; font-size: 1rem; }

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section { padding: var(--section-py) 0; }

.section__header { text-align: center; margin-bottom: 64px; }

.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--electric);
  margin-bottom: 14px;
  background: rgba(59,130,246,.08);
  border: 1px solid rgba(59,130,246,.2);
  padding: 6px 16px;
  border-radius: 50px;
}
.section__eyebrow::before,
.section__eyebrow::after {
  content: '';
  display: inline-block;
  width: 16px; height: 1px;
  background: currentColor;
  opacity: .5;
}
.section__eyebrow--light {
  color: var(--sky-glow);
  background: rgba(96,165,250,.08);
  border-color: rgba(96,165,250,.2);
}

.section__title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 18px;
}
.section__desc {
  max-width: 600px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 22px 0;
}
.header.scrolled {
  background: rgba(3,6,14,.93);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 rgba(59,130,246,.12), 0 4px 40px rgba(0,0,0,.6);
  padding: 12px 0;
}
.nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav__logo img {
  width: 44px; height: 44px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255,255,255,.9);
  padding: 3px;
  box-shadow: 0 0 14px rgba(59,130,246,.4), 0 0 0 1px rgba(59,130,246,.25);
  transition: box-shadow var(--transition), transform var(--transition);
}
.nav__logo:hover img {
  box-shadow: 0 0 24px rgba(59,130,246,.65), 0 0 0 1px rgba(59,130,246,.5);
  transform: scale(1.05);
}
.nav__brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem; font-weight: 800;
  letter-spacing: 1.5px;
  background: linear-gradient(
    90deg,
    var(--white)    0%,
    var(--white)    28%,
    var(--sky-glow) 46%,
    #ffffff         50%,
    var(--sky-glow) 54%,
    var(--white)    72%,
    var(--white)    100%
  );
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: navShimmer 3.5s linear infinite, navGlitch 9s steps(1) infinite;
}
@keyframes navShimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -100% center; }
}
@keyframes navGlitch {
  0%,  87%, 100% { filter: none; transform: none; }
  89% { filter: hue-rotate(85deg) brightness(1.7) saturate(3); transform: skewX(-5deg) scaleX(1.03); }
  90% { filter: none; transform: skewX(2deg); }
  92% { filter: hue-rotate(-45deg) brightness(1.4); transform: skewX(3deg); }
  93% { filter: none; transform: none; }
}
.nav__brand-sub { /* color inherited via gradient */ }

.nav__menu { display: flex; align-items: center; gap: 2px; }
.nav__link {
  display: block;
  padding: 8px 15px;
  color: rgba(200,212,232,.75);
  font-size: .88rem; font-weight: 500;
  border-radius: 8px;
  position: relative;
  transition: color var(--transition), background var(--transition);
}
.nav__link:hover { color: var(--white); background: rgba(255,255,255,.06); }
.nav__link.active { color: var(--sky-glow); }
/* Animated underline — grows from center on hover / active */
.nav__link:not(.nav__link--cta)::after {
  content: '';
  position: absolute;
  left: 15px; right: 15px; bottom: 5px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--electric), var(--sky-glow));
  box-shadow: 0 0 8px rgba(96,165,250,.6);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .35s cubic-bezier(.22,.61,.36,1);
}
.nav__link:not(.nav__link--cta):hover::after,
.nav__link:not(.nav__link--cta).active::after { transform: scaleX(1); }
.nav__link--cta {
  background: linear-gradient(135deg, var(--royal-bright), var(--royal));
  color: #fff !important;
  padding: 9px 22px; border-radius: 50px;
  margin-left: 10px;
  box-shadow: 0 4px 16px rgba(37,99,235,.4);
  position: relative; overflow: hidden;
}
.nav__link--cta::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  transform: skewX(-20deg);
  transition: left .5s;
}
.nav__link--cta:hover { box-shadow: 0 4px 24px rgba(37,99,235,.6); }
.nav__link--cta:hover::after { left: 140%; }

/* --- Language switcher (BS / EN / DE) --- */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 3px;
  flex-shrink: 0;
}
.lang-switch__btn {
  padding: 5px 12px;
  min-height: 30px;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--muted);
  transition: color var(--transition), background var(--transition), box-shadow var(--transition);
}
.lang-switch__btn:hover { color: var(--white); }
.lang-switch__btn.active {
  background: linear-gradient(135deg, var(--royal-bright), var(--royal));
  color: #fff;
  box-shadow: 0 2px 12px rgba(37,99,235,.45);
}

.nav__hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; border-radius: 8px; transition: background var(--transition); }
.nav__hamburger:hover { background: rgba(255,255,255,.08); }
.nav__bar { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }
.nav__hamburger.open .nav__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open .nav__bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open .nav__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-image: url('images/persel-kamioni-nocni-pogled.png');
  background-size: cover;
  background-position: center 40%;
  animation: heroZoomIn 2.6s cubic-bezier(.22, .61, .36, 1) forwards;
  will-change: transform, filter;
  transform-origin: center center;
}
/* Continuous slow drift after reveal */
.hero.loaded .hero__bg {
  animation: heroZoomIn 2.6s cubic-bezier(.22, .61, .36, 1) forwards,
             heroDrift 22s ease-in-out 2.6s infinite;
}

@keyframes heroZoomIn {
  0%   { transform: scale(1.28) translateZ(0); filter: brightness(.55) blur(5px); }
  40%  { filter: brightness(.8) blur(1.5px); }
  100% { transform: scale(1.05) translateZ(0); filter: brightness(1) blur(0px); }
}
@keyframes heroDrift {
  0%, 100% { transform: scale(1.05) translateZ(0); }
  50%       { transform: scale(1.10) translateZ(0); }
}

/* Tri-layer overlay za dramatiku */
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right,  rgba(3,6,14,.92) 0%, rgba(3,6,14,.65) 55%, rgba(3,6,14,.2) 100%),
    linear-gradient(to top,    rgba(3,6,14,.97) 0%, transparent 45%),
    linear-gradient(to bottom, rgba(3,6,14,.75) 0%, transparent 25%);
}
.hero__overlay::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 65% 30%, rgba(37,99,235,.1) 0%, transparent 65%);
}

.hero__content {
  position: relative; z-index: 2;
  padding-top: 130px; padding-bottom: 80px;
  max-width: 720px;
}

.hero__eyebrow {
  font-size: .75rem; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--electric);
  margin-bottom: 20px;
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(59,130,246,.1);
  border: 1px solid rgba(59,130,246,.25);
  padding: 7px 18px; border-radius: 50px;
}
.hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--electric);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--electric);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.7); }
}

.hero__title {
  font-size: clamp(3rem, 8vw, 6.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: .92;
  margin-bottom: 22px;
  text-shadow: 0 4px 40px rgba(0,0,0,.6);
}
.hero__title-accent {
  display: block;
  background: linear-gradient(90deg, #60A5FA, #3B82F6, #818CF8, #60A5FA);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 5s linear infinite;
  filter: drop-shadow(0 0 24px rgba(59,130,246,.35));
}
@keyframes gradientFlow {
  0%   { background-position: 0% center; }
  100% { background-position: 250% center; }
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: var(--muted);
  margin-bottom: 44px;
  max-width: 480px;
  font-weight: 300;
  line-height: 1.75;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__scroll-btn {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.35);
  transition: color var(--transition);
  animation: bounceDown 2.8s ease-in-out infinite;
}
.hero__scroll-btn:hover { color: var(--electric); }
.hero__scroll-icon {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  backdrop-filter: blur(4px);
}
@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: .4; }
  50%       { transform: translateX(-50%) translateY(10px); opacity: .9; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,.06) 0%, transparent 70%);
  pointer-events: none;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about__text p { color: var(--muted); margin-bottom: 20px; font-size: 1rem; line-height: 1.8; }
.about__lead { font-size: 1.12rem !important; color: var(--silver) !important; font-weight: 500; }

.about__badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 28px 0 38px;
}
.about__badge-item {
  display: flex; align-items: center; gap: 10px;
  font-size: .87rem; font-weight: 500; color: var(--silver);
  padding: 11px 14px;
  background: rgba(59,130,246,.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.about__badge-item:hover {
  border-color: var(--border-bright);
  background: rgba(59,130,246,.12);
  transform: translateX(3px);
}
.about__badge-item svg { color: var(--electric); flex-shrink: 0; }

.about__visual { position: relative; }
.about__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-dark), 0 0 0 1px var(--border);
}
.about__img-wrap img {
  width: 100%; height: 520px;
  object-fit: cover;
  transition: transform var(--transition-slow);
  filter: brightness(.88) saturate(1.15);
}
.about__img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(3,6,14,.55) 0%, transparent 50%);
}
.about__img-wrap:hover img { transform: scale(1.04); }

.about__exp-badge {
  position: absolute; bottom: -24px; right: -24px;
  background: linear-gradient(135deg, var(--royal-bright), var(--royal));
  color: #fff;
  border-radius: var(--radius);
  padding: 22px 28px; text-align: center;
  box-shadow: var(--shadow-blue);
  border: 1px solid rgba(59,130,246,.4);
}
.about__exp-num { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 3rem; font-weight: 800; line-height: 1; }
.about__exp-plus { font-size: 2.2rem; }
.about__exp-text { display: block; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; opacity: .85; margin-top: 5px; }

/* ============================================================
   STATS — GLASSMORPHISM
   ============================================================ */
.stats {
  position: relative;
  padding: var(--section-py) 0;
  overflow: hidden;
}
.stats__bg {
  position: absolute; inset: 0;
  background: var(--bg-void);
}
.stats__bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('images/persel-volvo-mercedes-actros-nocu.png');
  background-size: cover;
  background-position: center 30%;
  opacity: .07;
}
/* Dot grid pattern */
.stats__bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(59,130,246,.12) 1px, transparent 1px);
  background-size: 36px 36px;
}
.stats__inner { position: relative; z-index: 1; }

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stats__card {
  text-align: center;
  padding: 44px 24px;
  background: linear-gradient(135deg, rgba(255,255,255,.055) 0%, rgba(255,255,255,.02) 100%);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.1),
    inset 0 -1px 0 rgba(0,0,0,.2),
    0 8px 40px rgba(0,0,0,.4);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative; overflow: hidden;
}
/* Top glow line on card */
.stats__card::before {
  content: '';
  position: absolute; top: 0; left: 15%; right: 15%; height: 1px;
  background: linear-gradient(to right, transparent, rgba(96,165,250,.6), transparent);
  opacity: 0; transition: opacity var(--transition);
}
.stats__card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(96,165,250,.2);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.15),
    0 0 50px rgba(37,99,235,.18),
    0 20px 50px rgba(0,0,0,.5);
}
.stats__card:hover::before { opacity: 1; }

.stats__icon { width: 52px; height: 52px; margin: 0 auto 18px; color: var(--electric); }
.stats__icon svg { width: 100%; height: 100%; }

.stats__number-wrap {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 4.2rem; font-weight: 800;
  line-height: 1; margin-bottom: 10px;
  background: linear-gradient(135deg, #fff 30%, var(--sky-glow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 12px rgba(96,165,250,.3));
}
.stats__num { display: inline; }
.stats__label { font-size: .76rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--bg-dark); }

.gallery__wrapper { display: flex; flex-direction: column; gap: 14px; }
.gallery__slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-dark), 0 0 0 1px var(--border);
  background: var(--bg-void);
  aspect-ratio: 16/9;
  user-select: none;
}
.gallery__track {
  display: flex; height: 100%;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.gallery__slide { flex: 0 0 100%; height: 100%; }
.gallery__img {
  width: 100%; height: 100%;
  object-fit: cover; cursor: zoom-in;
  transition: opacity .3s, transform .3s;
  filter: brightness(.88) saturate(1.1);
}
.gallery__img:hover { opacity: .9; }

.gallery__btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  width: 52px; height: 52px;
  background: rgba(3,6,14,.8);
  backdrop-filter: blur(16px);
  color: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.12);
  transition: background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.gallery__btn:hover {
  background: var(--royal-bright);
  border-color: var(--electric);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 24px rgba(37,99,235,.55);
}
.gallery__btn--prev { left: 16px; }
.gallery__btn--next { right: 16px; }

.gallery__dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.gallery__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.2); border: none; cursor: pointer;
  transition: background var(--transition), transform var(--transition), width var(--transition);
  padding: 0;
}
.gallery__dot.active {
  background: var(--electric); transform: scale(1.3); width: 24px; border-radius: 4px;
  box-shadow: 0 0 10px rgba(59,130,246,.8);
}

.gallery__thumbs {
  display: flex; gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--border-bright) transparent;
}
.gallery__thumbs::-webkit-scrollbar { height: 3px; }
.gallery__thumbs::-webkit-scrollbar-track { background: transparent; }
.gallery__thumbs::-webkit-scrollbar-thumb { background: var(--border-bright); border-radius: 2px; }

.gallery__thumb {
  flex: 0 0 clamp(80px, 12vw, 150px); aspect-ratio: 16/9;
  border-radius: var(--radius-sm); overflow: hidden;
  border: 1.5px solid transparent;
  transition: border-color var(--transition), transform var(--transition), opacity var(--transition);
  opacity: .35; padding: 0;
}
.gallery__thumb:hover { opacity: .65; transform: translateY(-2px); }
.gallery__thumb.active { border-color: var(--electric); opacity: 1; box-shadow: 0 0 16px rgba(59,130,246,.45); }
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.85) saturate(1.1); }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox { position: fixed; inset: 0; z-index: 2000; display: flex; align-items: center; justify-content: center; }
.lightbox[hidden] { display: none; }
.lightbox.visible { display: flex; }
.lightbox__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.97); backdrop-filter: blur(12px); cursor: pointer; }
.lightbox__content { position: relative; z-index: 1; max-width: 92vw; max-height: 90vh; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.lightbox__img { max-width: 100%; max-height: 80vh; object-fit: contain; border-radius: var(--radius); box-shadow: 0 0 0 1px var(--border), 0 24px 80px rgba(0,0,0,.9); animation: lbIn .25s ease; }
@keyframes lbIn { from { opacity: 0; transform: scale(.93); } to { opacity: 1; transform: scale(1); } }
.lightbox__caption { color: var(--muted); font-size: .86rem; text-align: center; max-width: 600px; }
.lightbox__close {
  position: fixed; top: 20px; right: 24px; z-index: 2;
  width: 48px; height: 48px;
  background: rgba(255,255,255,.07); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); transition: background var(--transition);
}
.lightbox__close:hover { background: rgba(37,99,235,.5); }
.lightbox__nav {
  position: fixed; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 56px; height: 56px;
  background: rgba(255,255,255,.07); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); transition: background var(--transition), box-shadow var(--transition);
}
.lightbox__nav:hover { background: var(--royal-bright); box-shadow: 0 0 20px rgba(37,99,235,.5); }
.lightbox__nav--prev { left: 20px; }
.lightbox__nav--next { right: 20px; }
.lightbox__counter { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); color: var(--muted); font-size: .84rem; font-weight: 500; background: rgba(3,6,14,.85); padding: 6px 18px; border-radius: 50px; border: 1px solid var(--border); }

/* ============================================================
   SERVICES — GLASSMORPHISM
   ============================================================ */
.services {
  background: var(--bg-deep);
  position: relative; overflow: hidden;
}
.services::after {
  content: '';
  position: absolute; bottom: -300px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(37,99,235,.06) 0%, transparent 70%);
  pointer-events: none;
}
.services__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }

.service-card {
  background: linear-gradient(135deg, rgba(13,22,40,.9) 0%, rgba(9,15,28,.95) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 38px;
  position: relative; overflow: hidden;
  backdrop-filter: blur(16px);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: default;
}
/* Subtle background noise/texture */
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(37,99,235,.07) 0%, rgba(99,102,241,.04) 100%);
  opacity: 0; transition: opacity var(--transition);
}
/* Top glow line */
.service-card::after {
  content: '';
  position: absolute; top: 0; left: 8%; right: 8%; height: 1px;
  background: linear-gradient(to right, transparent, rgba(96,165,250,.5), transparent);
  opacity: 0; transition: opacity var(--transition);
}
.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(96,165,250,.25);
  box-shadow:
    0 0 50px rgba(37,99,235,.12),
    0 20px 56px rgba(0,0,0,.6),
    inset 0 1px 0 rgba(255,255,255,.05);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover::after  { opacity: 1; }

.service-card__icon-wrap {
  position: relative; z-index: 1;
  width: 68px; height: 68px;
  background: rgba(37,99,235,.1);
  border: 1px solid rgba(37,99,235,.2);
  border-radius: var(--radius); margin-bottom: 28px;
  display: flex; align-items: center; justify-content: center;
  color: var(--electric);
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.service-card:hover .service-card__icon-wrap {
  background: rgba(37,99,235,.18);
  border-color: rgba(96,165,250,.4);
  box-shadow: 0 0 24px rgba(37,99,235,.3);
}
.service-card__icon { width: 34px; height: 34px; }
.service-card__title { position: relative; z-index: 1; font-size: 1.55rem; font-weight: 700; color: var(--white); margin-bottom: 14px; transition: color var(--transition); }
.service-card:hover .service-card__title { color: var(--sky-glow); }
.service-card__text { position: relative; z-index: 1; color: var(--muted); font-size: .95rem; line-height: 1.8; transition: color var(--transition); }
.service-card:hover .service-card__text { color: var(--silver); }
.service-card__arrow { position: absolute; z-index: 1; bottom: 28px; right: 28px; color: var(--electric); opacity: 0; transform: translateX(-8px); transition: opacity var(--transition), transform var(--transition); }
.service-card:hover .service-card__arrow { opacity: 1; transform: translateX(0); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--bg-dark); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }

.contact__cards { display: grid; gap: 12px; }
.contact__card {
  background: linear-gradient(135deg, rgba(13,22,40,.85) 0%, rgba(9,15,28,.9) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 26px;
  display: flex; align-items: flex-start; gap: 16px;
  backdrop-filter: blur(16px);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.contact__card:hover {
  transform: translateX(5px);
  border-color: var(--border-bright);
  box-shadow: -3px 0 24px rgba(37,99,235,.12), 0 4px 24px rgba(0,0,0,.3);
}
.contact__card-icon {
  width: 46px; height: 46px;
  background: rgba(37,99,235,.1);
  border: 1px solid rgba(37,99,235,.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--electric); flex-shrink: 0;
  transition: box-shadow var(--transition);
}
.contact__card:hover .contact__card-icon { box-shadow: 0 0 18px rgba(37,99,235,.35); }
.contact__card-body { flex: 1; }
.contact__card-title { font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.contact__card-body p { color: var(--muted); font-size: .9rem; line-height: 1.6; }
.contact__card-body strong { color: var(--silver); }
.contact__phone-list { display: flex; flex-direction: column; gap: 5px; }
.contact__phone-link { display: inline-block; color: var(--electric); font-weight: 600; font-size: 1.05rem; transition: color var(--transition), text-shadow var(--transition); }
.contact__phone-link:hover { color: var(--sky-glow); text-shadow: 0 0 14px rgba(96,165,250,.5); }

.contact__visual { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-dark), 0 0 0 1px var(--border); }
.contact__visual img { width: 100%; height: 500px; object-fit: cover; display: block; transition: transform var(--transition-slow); filter: brightness(.78) saturate(1.2); }
.contact__visual:hover img { transform: scale(1.04); }
.contact__visual-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(3,6,14,.94) 0%, rgba(3,6,14,.3) 55%, transparent 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  padding: 40px; gap: 16px; text-align: center;
}
.contact__cta-label { color: var(--silver); font-size: 1.15rem; font-weight: 500; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg-void); }
.footer__top { padding: 64px 0 48px; border-bottom: 1px solid rgba(59,130,246,.08); }
.footer__top-inner { display: grid; grid-template-columns: 1fr auto auto; gap: 48px; align-items: start; }
.footer__brand { display: flex; align-items: center; gap: 16px; }
.footer__brand img { width: 56px; height: 56px; object-fit: contain; border-radius: 10px; background: rgba(255,255,255,.88); padding: 4px; filter: drop-shadow(0 0 10px rgba(59,130,246,.35)); }
.footer__name { font-family: 'Barlow Condensed', sans-serif; font-size: 1.3rem; font-weight: 800; color: var(--white); letter-spacing: 1.5px; }
.footer__location { font-size: .84rem; color: var(--muted); margin-top: 4px; }
.footer__nav { display: flex; flex-direction: column; gap: 10px; }
.footer__link { color: var(--muted); font-size: .9rem; transition: color var(--transition); }
.footer__link:hover { color: var(--sky-glow); }
.footer__phones { display: flex; flex-direction: column; gap: 8px; }
.footer__phones-label { font-size: .7rem; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,.22); margin-bottom: 4px; }
.footer__phone { color: var(--muted); font-size: .88rem; transition: color var(--transition); }
.footer__phone:hover { color: var(--electric); }
.footer__bottom { padding: 20px 0; font-size: .8rem; color: rgba(255,255,255,.22); border-top: 1px solid rgba(255,255,255,.04); }
.footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition:
    opacity  .85s cubic-bezier(.22,.61,.36,1),
    transform .85s cubic-bezier(.22,.61,.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.animate-fadeup {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(10px);
  animation: fadeUp .9s cubic-bezier(.22,.61,.36,1) forwards;
  animation-delay: var(--delay, 0s);
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); filter: blur(0); } }

/* Gradient section dividers */
.section + .section::before,
.stats + .section::before {
  display: none;
}

/* ============================================================
   PREFERS-REDUCED-MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .hero__scroll-btn { animation: none; }
  .hero__bg { animation: none !important; transform: scale(1.05) translateZ(0) !important; filter: brightness(1) !important; }
  .hero__title-accent { animation: none; background-position: 0% center; }
  .hero__eyebrow::before { animation: none; }
  .gallery__dot.active { width: 8px; border-radius: 50%; }
}

/* ============================================================
   RESPONSIVE — Tablet (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid { gap: 44px; }
  .footer__top-inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

/* ============================================================
   RESPONSIVE — Mobile (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --section-py: 60px; }

  .nav__hamburger { display: flex; order: 3; }
  .lang-switch { margin-left: auto; }
  .lang-switch__btn { padding: 4px 9px; }
  .nav__menu {
    position: fixed; top: 0; right: 0;
    width: min(320px, 100vw); height: 100vh;
    background: rgba(3,6,14,.98);
    backdrop-filter: blur(28px);
    flex-direction: column; align-items: flex-start;
    padding: 100px 32px 40px; gap: 6px;
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    box-shadow: -2px 0 40px rgba(0,0,0,.7), -1px 0 0 var(--border);
    z-index: 999;
  }
  .nav__menu.open { transform: translateX(0); }
  .nav__link { font-size: 1.1rem; padding: 12px 16px; width: 100%; }
  .nav__link--cta { margin-left: 0; margin-top: 16px; }

  .hero__content { padding-top: 140px; padding-bottom: 60px; }
  .hero__title { font-size: clamp(2.6rem, 10vw, 4rem); }
  .hero__actions { flex-direction: column; width: fit-content; }

  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__visual { order: -1; }
  .about__img-wrap img { height: 300px; }
  .about__exp-badge { right: 0; bottom: -16px; }
  .about__badges { grid-template-columns: 1fr; }

  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .stats__card { padding: 28px 16px; }
  .stats__number-wrap { font-size: 3rem; }

  .gallery__slider { aspect-ratio: 4/3; }
  .gallery__btn { width: 40px; height: 40px; }

  .services__grid { grid-template-columns: 1fr; }
  .service-card { padding: 30px 24px; }

  .contact__grid { grid-template-columns: 1fr; gap: 32px; }
  .contact__visual img { height: 300px; }

  .footer__top-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__brand { flex-direction: column; align-items: flex-start; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
}

/* ============================================================
   RESPONSIVE — Small Mobile (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .gallery__thumbs { display: none; }
  .section__title { font-size: 1.9rem; }
  .contact__card { padding: 16px 18px; gap: 12px; }
  .hero__title { font-size: clamp(2.4rem, 11vw, 3.4rem); }
  .stats__grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   FUTURISTIC ENHANCEMENTS
   ============================================================ */

/* Animatable angle for conic-gradient border */
@property --border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@keyframes rotateBorder {
  to { --border-angle: 360deg; }
}

/* --- Hero particles canvas --- */
.hero__particles {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: .7;
}

/* --- Scanline texture overlay --- */
.hero__scanlines {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,.022) 2px,
    rgba(0,0,0,.022) 3px
  );
  pointer-events: none;
  z-index: 2;
}

/* --- Hero content above particle layer --- */
.hero__content { z-index: 3; }
.hero__scroll-btn { z-index: 3; }

/* --- Rotating conic border on stats cards (overrides old ::before) --- */
.stats__card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: conic-gradient(
    from var(--border-angle),
    transparent 0%,
    rgba(59,130,246,.95) 14%,
    rgba(96,165,250,.55) 18%,
    transparent 32%
  );
  padding: 1.5px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  animation: rotateBorder 8s linear infinite;
  opacity: .5;
  pointer-events: none;
}
.stats__card:hover::before {
  opacity: 1;
  animation-duration: 3s;
}

/* --- Rotating conic border on service cards (injected .card__rot-border) --- */
.card__rot-border {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: conic-gradient(
    from var(--border-angle),
    transparent 0%,
    rgba(59,130,246,.85) 14%,
    rgba(96,165,250,.45) 18%,
    transparent 32%
  );
  padding: 1.5px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  animation: rotateBorder 9s linear infinite;
  opacity: .35;
  pointer-events: none;
  z-index: 0;
  transition: opacity .3s;
}
.service-card:hover .card__rot-border { opacity: .9; animation-duration: 3.5s; }
.contact__card .card__rot-border { animation-duration: 11s; opacity: .25; }
.contact__card:hover .card__rot-border { opacity: .65; animation-duration: 4s; }

/* --- HUD corner brackets --- */
.hud-corner {
  position: absolute;
  width: 13px; height: 13px;
  border-color: rgba(96,165,250,.28);
  border-style: solid;
  pointer-events: none;
  z-index: 2;
  transition: border-color .35s, width .35s, height .35s;
}
.hud-corner--tl { top: 9px;  left: 9px;  border-width: 1.5px 0 0 1.5px; }
.hud-corner--tr { top: 9px;  right: 9px; border-width: 1.5px 1.5px 0 0; }
.hud-corner--bl { bottom: 9px; left: 9px;  border-width: 0 0 1.5px 1.5px; }
.hud-corner--br { bottom: 9px; right: 9px; border-width: 0 1.5px 1.5px 0; }

.service-card:hover .hud-corner,
.stats__card:hover .hud-corner {
  border-color: rgba(96,165,250,.85);
  width: 18px; height: 18px;
}
.contact__card .hud-corner { width: 10px; height: 10px; }
.contact__card:hover .hud-corner {
  border-color: rgba(96,165,250,.75);
  width: 13px; height: 13px;
}

/* --- Pulsing glow ring on stats icons --- */
.stats__icon { position: relative; overflow: visible; }
.stats__icon::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(59,130,246,.32);
  animation: pulseRing 3.8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes pulseRing {
  0%, 100% { transform: scale(.75); opacity: 0; }
  50%       { transform: scale(1.18); opacity: 1; }
}

/* --- Section title glow --- */
.section__title {
  text-shadow: 0 0 50px rgba(37,99,235,.13);
}

/* --- Aurora blob in services section --- */
.services::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(99,102,241,.055) 0%, transparent 70%);
  animation: auroraFloat 14s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes auroraFloat {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: .6; }
  40%       { transform: translate(-28px, 22px) scale(1.12); opacity: 1; }
  75%       { transform: translate(18px, -26px) scale(.92); opacity: .7; }
}

/* Second aurora blob in stats section */
.stats__bg::before {
  animation: auroraFloat 18s ease-in-out infinite reverse;
}

/* --- 3D perspective support on grids --- */
.services__grid,
.stats__grid {
  perspective: 1200px;
}
.service-card,
.stats__card {
  will-change: transform;
  transform-style: preserve-3d;
}

/* --- Neon data-line on section eyebrow --- */
.section__eyebrow {
  font-variant-numeric: tabular-nums;
}

/* Animated scan line on scroll progress bar */
.scroll-progress::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60px; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,.5), transparent);
  animation: progressScan 1.5s ease-in-out infinite;
}
@keyframes progressScan {
  0%   { opacity: 0; transform: scaleX(0); }
  50%  { opacity: 1; transform: scaleX(1); }
  100% { opacity: 0; transform: scaleX(0); }
}

/* --- Futuristic about section badges get HUD corners too --- */
.about__badge-item { position: relative; }

/* --- Contact card needs position:relative for hud corners --- */
.contact__card { position: relative; }

/* Reduced motion: disable all new animations */
@media (prefers-reduced-motion: reduce) {
  .hero__particles { display: none; }
  .stats__card::before { animation: none; }
  .card__rot-border { animation: none; opacity: .2; }
  .stats__icon::after { animation: none; }
  .services::before { animation: none; }
  .scroll-progress::after { display: none; }
  .nav__brand { animation: none; }
}

/* ============================================================
   TOUCH-FRIENDLY TARGETS (WCAG 2.5.5 — min 44×44px)
   ============================================================ */
.btn              { min-height: 48px; }
.nav__link        { min-height: 44px; display: inline-flex; align-items: center; }
.nav__hamburger   { min-width: 44px; min-height: 44px; }
.gallery__btn     { min-width: 44px; min-height: 44px; }
.gallery__thumb   { min-width: 44px; min-height: 44px; }
.gallery__dot     { min-width: 22px; min-height: 22px; }
.lightbox__close,
.lightbox__nav    { min-width: 48px; min-height: 48px; }
.contact__phone-link {
  display: inline-block;
  padding: 6px 0;
  min-height: 44px;
  line-height: 2;
}
.footer__phone,
.footer__link { min-height: 36px; display: inline-flex; align-items: center; }

/* ============================================================
   NEW SECTIONS — WHY US + MAP
   ============================================================ */

/* Section title light variant (for dark bg sections) */
.section__title--light { color: var(--white); }
.section__desc--light  { color: rgba(200,212,232,.65); }

/* --- Services grid: 3 columns for 6 cards --- */
.services__grid { grid-template-columns: repeat(3, 1fr); }

/* --- Why Us section --- */
.why-us {
  background: linear-gradient(180deg, var(--bg-void) 0%, var(--bg-deep) 50%, var(--bg-void) 100%);
  position: relative;
  overflow: hidden;
}
.why-us__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(37,99,235,.07) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 50%, rgba(99,102,241,.05) 0%, transparent 55%);
  pointer-events: none;
}

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.why-card {
  background: linear-gradient(135deg, rgba(13,22,40,.92) 0%, rgba(9,15,28,.96) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px 30px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.why-card:hover {
  transform: translateY(-7px);
  border-color: var(--border-bright);
  box-shadow: 0 22px 60px rgba(0,0,0,.45), 0 0 40px rgba(37,99,235,.1);
}
/* Top accent line on hover */
.why-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--royal-bright), var(--sky-glow));
  opacity: 0;
  transition: opacity var(--transition);
}
.why-card:hover::after { opacity: 1; }

.why-card__num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.8rem;
  font-weight: 800;
  color: rgba(59,130,246,.08);
  line-height: 1;
  margin-bottom: -4px;
  letter-spacing: -2px;
  transition: color var(--transition);
  user-select: none;
}
.why-card:hover .why-card__num { color: rgba(59,130,246,.16); }

.why-card__icon {
  width: 50px; height: 50px;
  color: var(--electric);
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px rgba(59,130,246,.2));
  transition: filter var(--transition), transform var(--transition);
}
.why-card:hover .why-card__icon {
  filter: drop-shadow(0 0 18px rgba(59,130,246,.5));
  transform: scale(1.06);
}
.why-card__icon svg { width: 100%; height: 100%; }

.why-card__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 11px;
  letter-spacing: .2px;
  transition: color var(--transition);
}
.why-card:hover .why-card__title { color: var(--sky-glow); }

.why-card__text {
  font-size: .91rem;
  color: var(--muted);
  line-height: 1.75;
  transition: color var(--transition);
}
.why-card:hover .why-card__text { color: var(--silver); }

/* --- Map section --- */
.map-section { margin-top: 68px; }

.map-header {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--sky-glow);
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 16px;
}
.map-header svg { flex-shrink: 0; }

.map-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 460px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-dark), 0 0 0 1px rgba(59,130,246,.08), 0 0 60px rgba(0,0,0,.4);
  transition: box-shadow var(--transition-slow), border-color var(--transition-slow);
}
.map-container:hover {
  border-color: var(--border-bright);
  box-shadow: var(--shadow-dark), 0 0 0 1px rgba(59,130,246,.28), 0 0 80px rgba(37,99,235,.12);
}
.map-container iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(18%) brightness(.95) contrast(1.04);
  transition: filter var(--transition-slow);
}
.map-container:hover iframe {
  filter: grayscale(0%) brightness(1) contrast(1);
}

/* ============================================================
   RESPONSIVE — Why Us + Services + Map
   ============================================================ */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .why-us__grid   { grid-template-columns: repeat(2, 1fr); }
  .map-container  { height: 380px; }
}

@media (max-width: 768px) {
  .services__grid  { grid-template-columns: 1fr; }
  .why-us__grid    { grid-template-columns: 1fr; gap: 16px; }
  .why-card        { padding: 28px 22px 24px; }
  .map-container   { height: 300px; }
  .map-section     { margin-top: 48px; }
  .why-card__num   { font-size: 2.8rem; }
}

@media (max-width: 480px) {
  .map-container  { height: 240px; border-radius: var(--radius); }
}

/* ============================================================
   SCROLL JOURNEY — TRUCK LANES
   Scroll-linked truck that drives across the page between
   sections. Transform-only (translate/rotate) → no layout shift.
   ============================================================ */
.truck-lane {
  position: relative;
  height: 150px;
  overflow: hidden;
  background: var(--bg-deep);
}
/* Dashed center line of the road */
.truck-lane::before {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 36px;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    rgba(96,165,250,.32) 0 26px,
    transparent 26px 50px
  );
}
/* Faint solid base line */
.truck-lane::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent 2%, rgba(59,130,246,.22) 50%, transparent 98%);
}
.truck-lane__truck {
  position: absolute;
  left: 0; bottom: 31px;
  width: clamp(150px, 22vw, 240px);
  will-change: transform;
  transform: translate3d(-120%, 0, 0);
  filter: drop-shadow(0 12px 22px rgba(0,0,0,.55));
}
.truck-lane__truck svg { overflow: visible; display: block; }
.truck-lane--reverse .truck-lane__truck svg { transform: scaleX(-1); }
.truck-wheel {
  transform-box: fill-box;
  transform-origin: center;
  will-change: transform;
}
/* Exhaust smoke puffs — drift up & back, group opacity driven by JS velocity */
.truck-smoke circle {
  transform-box: fill-box;
  transform-origin: center;
  animation: smokePuff 1.5s ease-out infinite;
  opacity: 0;
}
.truck-smoke circle:nth-child(2) { animation-delay: .5s; }
.truck-smoke circle:nth-child(3) { animation-delay: 1s; }
@keyframes smokePuff {
  0%   { transform: translate(0, 0) scale(.45); opacity: .55; }
  100% { transform: translate(-16px, -20px) scale(1.7); opacity: 0; }
}

/* Stats counter settle pop */
@keyframes numPop {
  0%   { transform: scale(1); }
  45%  { transform: scale(1.12); }
  100% { transform: scale(1); }
}
.stats__number-wrap.pop { animation: numPop .55s cubic-bezier(.34,1.56,.64,1); }

/* Hero parallax layers */
.hero__content { will-change: transform, opacity; }

@media (max-width: 768px) {
  .truck-lane { height: 104px; }
  .truck-lane::before { bottom: 26px; }
  .truck-lane::after  { bottom: 21px; }
  .truck-lane__truck  { bottom: 23px; width: clamp(130px, 34vw, 180px); }
}

@media (prefers-reduced-motion: reduce) {
  .truck-lane { height: 64px; }
  .truck-lane__truck { display: none; }
  .stats__number-wrap.pop { animation: none; }
}

/* ============================================================
   MOBILE-FIRST HERO PERFORMANCE
   Disable blur animation on low-end/mobile for perf
   ============================================================ */
@media (max-width: 768px) {
  @keyframes heroZoomIn {
    0%   { transform: scale(1.18) translateZ(0); filter: brightness(.6); }
    100% { transform: scale(1.03) translateZ(0); filter: brightness(1); }
  }
  @keyframes heroDrift {
    0%, 100% { transform: scale(1.03) translateZ(0); }
    50%       { transform: scale(1.07) translateZ(0); }
  }
}
