/* ══════════════════════════════════════════════════════════
   EMPOWER EXPRESS LTD — Pixel-perfect match CSS
══════════════════════════════════════════════════════════ */

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

:root {
  --navy:   #0A1628;
  --navy2:  #0d1f3c;
  --orange: #FF6A00;
  --white:  #ffffff;
  --gray:   rgba(255,255,255,0.65);
  --card-bg:rgba(13,20,40,0.96);
  --radius: 12px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ─── Utilities ──────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.text-orange { color: var(--orange); }
.section { padding: 100px 0; }
.btn-orange {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: #fff;
  padding: 14px 28px; border-radius: 8px;
  font-weight: 700; font-size: 15px;
  text-decoration: none; border: none; cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.btn-orange:hover { background: #e55f00; transform: translateY(-2px); }
.btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); color: #fff;
  padding: 14px 24px; border-radius: 8px;
  font-weight: 600; font-size: 15px;
  text-decoration: none; border: 1px solid rgba(255,255,255,0.18);
  cursor: pointer; transition: background var(--transition);
  backdrop-filter: blur(8px);
}
.btn-dark:hover { background: rgba(255,255,255,0.18); }

/* ─── Section headers ────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block; background: rgba(255,106,0,0.15);
  color: var(--orange); border: 1px solid rgba(255,106,0,0.3);
  padding: 6px 16px; border-radius: 100px;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 16px;
}
.section-tag.dark { background: rgba(255,106,0,0.12); }
.section-title { font-size: clamp(28px,4vw,44px); font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.section-title.dark-title { color: var(--navy); }
.section-desc { color: var(--gray); max-width: 600px; margin: 0 auto; }
.section-desc.dark-desc { color: rgba(10,22,40,0.7); }

/* ─── Reveal animations ──────────────────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ═════════════════════════════════════════════════════
   NAVBAR
═════════════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(8,15,30,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition);
}
.navbar.scrolled { background: rgba(8,15,30,0.98); }

.nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 2rem;
  height: 68px;
  display: flex; align-items: center; gap: 2rem;
}

.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.logo-icon { width: 40px; height: 34px; flex-shrink: 0; }
.logo-icon svg { width: 100%; height: 100%; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-top { font-size: 13px; font-weight: 800; letter-spacing: 0.5px; color: #fff; }
.logo-orange { color: var(--orange); }
.logo-ltd { font-size: 9px; font-weight: 700; letter-spacing: 3px; color: var(--orange); margin-top: 1px; }

.nav-links {
  list-style: none;
  display: flex; align-items: center; gap: 2px;
  flex: 1; justify-content: center;
}
.nav-links li { position: relative; }
.nl {
  color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 500;
  text-decoration: none; padding: 6px 12px; border-radius: 6px;
  transition: color var(--transition), background var(--transition);
  display: flex; align-items: center; gap: 4px;
}
.nl:hover { color: #fff; }
.nl.active { color: var(--orange); }
.nl.active::after {
  content: ''; position: absolute; bottom: -3px; left: 12px; right: 12px;
  height: 2px; background: var(--orange); border-radius: 2px;
}
.arr { font-size: 10px; opacity: 0.7; }

.nav-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.nav-phone { display: flex; align-items: center; gap: 10px; }
.phone-num { font-size: 14px; font-weight: 700; color: #fff; }
.phone-sub { font-size: 11px; color: rgba(255,255,255,0.5); }
.btn-quote-nav {
  display: flex; align-items: center; gap: 6px;
  background: var(--orange); color: #fff;
  padding: 10px 20px; border-radius: 8px;
  font-weight: 700; font-size: 14px; text-decoration: none;
  transition: background var(--transition);
  white-space: nowrap;
}
.btn-quote-nav:hover { background: #e55f00; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { width: 22px; height: 2px; background: #fff; border-radius: 2px; }

/* ═════════════════════════════════════════════════════
   HERO
═════════════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #040a14;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 65% center;
  display: block;
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(95deg,
      rgba(4,8,18,0.95) 0%,
      rgba(4,8,18,0.85) 25%,
      rgba(4,8,18,0.50) 48%,
      rgba(4,8,18,0.15) 68%,
      rgba(4,8,18,0.05) 100%),
    linear-gradient(180deg,
      rgba(4,8,18,0.55) 0%,
      transparent 18%,
      transparent 65%,
      rgba(4,8,18,0.80) 100%);
}

.hero-canvas {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%;
  pointer-events: none;
}

.hero-body {
  position: relative; z-index: 10;
  width: 100%; max-width: 1280px;
  margin: 0 auto;
  padding: 68px 2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex: 1;
  min-height: calc(100vh - 60px);
}

.hero-left {
  flex: 1;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,106,0,0.4);
  color: rgba(255,255,255,0.92); font-size: 11px; font-weight: 700;
  padding: 7px 16px; border-radius: 100px;
  letter-spacing: 1.5px; margin-bottom: 22px;
}

.hero-h1 {
  font-size: clamp(52px, 5.5vw, 82px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -2px;
  margin-bottom: 18px;
  font-family: 'Barlow', 'Inter', sans-serif;
  text-transform: uppercase;
  text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}
.hero-moving {
  color: var(--orange);
  display: block;
  font-size: clamp(52px, 5.5vw, 82px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -2px;
}

.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 360px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-right {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.quote-card {
  width: 320px;
  background: rgba(13,18,35,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.04);
}

.qc-header {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 20px;
  background: rgba(255,106,0,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 12px; font-weight: 800; letter-spacing: 1.5px;
  color: rgba(255,255,255,0.95);
  text-transform: uppercase;
}

.qc-form { padding: 16px 20px; display: flex; flex-direction: column; gap: 12px; }

.qf-group { display: flex; flex-direction: column; gap: 5px; }
.qf-group label {
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.2px;
}

.qf-input-wrap, .qf-select-wrap {
  position: relative; display: flex; align-items: center;
}
.qf-input {
  width: 100%; padding: 10px 38px 10px 12px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; color: #fff; font-size: 13px;
  outline: none; transition: border-color var(--transition);
  font-family: 'Inter', sans-serif;
}
.qf-input::placeholder { color: rgba(255,255,255,0.32); }
.qf-input:focus { border-color: var(--orange); background: rgba(255,255,255,0.09); }
.qf-input-wrap svg { position: absolute; right: 11px; pointer-events: none; }

.qf-select-wrap svg:first-child { position: absolute; left: 11px; z-index: 1; pointer-events: none; }
.qf-select {
  width: 100%; padding: 10px 34px 10px 36px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; color: #fff; font-size: 13px;
  outline: none; appearance: none; cursor: pointer;
  transition: border-color var(--transition);
  font-family: 'Inter', sans-serif;
}
.qf-select option { background: #0d1428; }
.qf-select:focus { border-color: var(--orange); }
.sel-arr { position: absolute; right: 9px; pointer-events: none; }

.btn-quote-submit {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--orange); color: #fff;
  padding: 13px; border-radius: 8px;
  font-weight: 700; font-size: 15px;
  border: none; cursor: pointer; width: 100%;
  transition: background var(--transition), transform var(--transition);
  margin-top: 2px;
  font-family: 'Inter', sans-serif;
}
.btn-quote-submit:hover { background: #e55f00; transform: translateY(-1px); }

/* ─── Quote form extras (Web3Forms) ────────────────── */
.qf-req { color: var(--orange); font-weight: 700; }
.qf-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 4px 0; }
.qf-textarea {
  resize: vertical; min-height: 52px; max-height: 120px;
  padding: 10px 12px; line-height: 1.5;
  font-family: 'Inter', sans-serif;
}
.qf-status {
  font-size: 12px; font-weight: 600; line-height: 1.5;
  padding: 10px 14px; border-radius: 8px; text-align: center;
}
.qf-status.success {
  background: rgba(34,197,94,0.12); color: #4ade80;
  border: 1px solid rgba(34,197,94,0.25);
}
.qf-status.error {
  background: rgba(239,68,68,0.12); color: #f87171;
  border: 1px solid rgba(239,68,68,0.25);
}
.qf-spinner {
  display: inline-block; width: 18px; height: 18px;
  border: 2.5px solid rgba(255,255,255,0.3);
  border-top-color: #fff; border-radius: 50%;
  animation: qfSpin 0.65s linear infinite;
}
@keyframes qfSpin { to { transform: rotate(360deg); } }
.btn-quote-submit:disabled {
  opacity: 0.7; cursor: not-allowed; transform: none;
}
.btn-quote-submit:disabled:hover { background: var(--orange); transform: none; }
.qf-input.qf-error, .qf-select.qf-error {
  border-color: #f87171 !important; background: rgba(239,68,68,0.08);
}

/* ─── Feature bar ── */
.feature-bar {
  position: relative; z-index: 10;
  width: 100%;
  background: rgba(4,10,22,0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.feature-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 0;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  flex: 1;
  justify-content: center;
}
.feature-item + .feature-item {
  border-left: 1px solid rgba(255,255,255,0.07);
}

/* ═════════════════════════════════════════════════════
   STATS BAR
═════════════════════════════════════════════════════ */
.stats-bar {
  background: var(--navy);
  padding: 50px 2rem;
}
.stats-inner {
  background: #0d1c35;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  padding: 44px 60px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  max-width: 1280px;
  margin: 0 auto;
}
.stat-item { text-align: center; flex: 1; }
.stat-icon-wrap {
  width: 58px; height: 58px; border-radius: 50%;
  border: 1.5px solid rgba(255,106,0,0.25);
  background: rgba(255,106,0,0.06);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; color: rgba(255,255,255,0.7);
}
.stat-num {
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 900; color: #fff;
  font-family: 'Barlow', sans-serif;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-suf { font-size: 0.72em; font-weight: 800; color: #fff; }
.stat-lbl { font-size: 12px; color: rgba(255,255,255,0.5); font-weight: 500; }
.stat-divider { width: 1px; height: 80px; background: rgba(255,255,255,0.07); flex-shrink: 0; }

/* ═════════════════════════════════════════════════════
   SERVICES
═════════════════════════════════════════════════════ */
.services-section { background: var(--navy); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 28px 22px;
  position: relative; cursor: pointer;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(255,106,0,0.4); background: rgba(255,106,0,0.06); }
.svc-icon { width: 52px; height: 52px; border-radius: 12px; background: rgba(var(--c, 255,106,0),0.15); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
.service-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.service-card p { font-size: 13px; color: var(--gray); line-height: 1.55; }
.svc-tag { display: inline-block; background: rgba(255,106,0,0.2); color: var(--orange); font-size: 10px; font-weight: 700; letter-spacing: 1px; padding: 3px 10px; border-radius: 100px; margin-top: 10px; }
.svc-link { display: block; color: var(--orange); font-size: 13px; font-weight: 600; text-decoration: none; margin-top: 12px; }

/* ═════════════════════════════════════════════════════
   WHY US
═════════════════════════════════════════════════════ */
.why-section { background: var(--navy2); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-feats { display: flex; flex-direction: column; gap: 20px; margin: 28px 0 32px; }
.why-feat { display: flex; gap: 16px; }
.wf-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.why-feat h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.why-feat p { font-size: 13px; color: var(--gray); }
.why-cards { display: flex; flex-direction: column; gap: 14px; }
.wc { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 18px 20px; }
.wc-head { display: flex; align-items: center; gap: 8px; font-size: 13px; margin-bottom: 12px; }
.dot-green { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; flex-shrink: 0; }
.wc-bar { position: relative; height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; margin-bottom: 8px; }
.wc-fill { height: 100%; background: var(--orange); border-radius: 3px; }
.wc-truck { position: absolute; top: -10px; font-size: 16px; transform: translateX(-50%); }
.wc-labels { display: flex; justify-content: space-between; font-size: 11px; color: var(--gray); }
.wc-meta { display: flex; align-items: center; gap: 12px; margin-top: 10px; font-size: 12px; color: var(--gray); }
.badge-en { background: rgba(34,197,94,0.2); color: #22c55e; padding: 2px 8px; border-radius: 4px; font-size: 10px; font-weight: 700; }
.wc-stats { display: flex; gap: 24px; justify-content: center; }
.wcs { text-align: center; }
.wcs-n { font-size: 26px; font-weight: 900; }
.wcs-n.orange { color: var(--orange); }
.wcs-n.green { color: #22c55e; }
.wcs-l { font-size: 11px; color: var(--gray); }
.wc-pod-h { font-size: 13px; font-weight: 700; margin-bottom: 8px; }
.wc-pod-b { font-size: 12px; color: var(--gray); line-height: 1.6; }

/* ═════════════════════════════════════════════════════
   FLEET
═════════════════════════════════════════════════════ */
.fleet-section { background: #f0f4f8; }
.fleet-section .section-title.dark-title { color: #0a1628; }
.fleet-section .section-tag.dark { color: var(--orange); }
.fleet-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.fleet-map { position: relative; border-radius: var(--radius); overflow: hidden; }
.fleet-map-img { width: 100%; display: block; border-radius: var(--radius); }
.map-pins { position: absolute; inset: 0; }
.mpin { position: absolute; }
.mpin-pulse { width: 20px; height: 20px; border-radius: 50%; background: rgba(255,106,0,0.3); animation: pulse 2s ease-out infinite; }
.mpin-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--orange); position: absolute; top: 5px; left: 5px; }
.mpin-dot.orange-dot { background: #fff; }
.mpin span { position: absolute; top: -20px; left: 14px; font-size: 11px; font-weight: 700; color: #fff; white-space: nowrap; text-shadow: 0 1px 4px rgba(0,0,0,0.8); }
@keyframes pulse { 0%{transform:scale(1);opacity:1} 100%{transform:scale(2.5);opacity:0} }
.fleet-panel { display: flex; flex-direction: column; gap: 18px; }
.fleet-card { background: var(--navy2); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 20px; }
.fc-head { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; font-size: 13px; font-weight: 700; }
.live-dot { color: #22c55e; font-size: 11px; animation: blink 1.5s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.fc-vehicles { display: flex; flex-direction: column; gap: 12px; }
.fc-v { display: flex; align-items: center; gap: 12px; }
.fc-icon { font-size: 20px; flex-shrink: 0; }
.fc-id { font-size: 13px; font-weight: 700; }
.fc-rt { font-size: 11px; color: var(--gray); }
.fc-status { margin-left: auto; font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 4px; }
.fc-status.online { background: rgba(34,197,94,0.15); color: #22c55e; }
.fc-status.idle { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5); }
.fc-status.done { background: rgba(59,130,246,0.15); color: #60a5fa; }
.fleet-ai { background: var(--navy2); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 20px; }
.ai-head { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; margin-bottom: 14px; }
.ai-pct { font-size: 42px; font-weight: 900; color: var(--orange); line-height: 1; }
.ai-pct span { font-size: 24px; }
.ai-sub { font-size: 12px; color: var(--gray); margin-bottom: 16px; }
.ai-bars { display: flex; flex-direction: column; gap: 10px; }
.ai-row { display: flex; flex-direction: column; gap: 5px; }
.ai-row span { font-size: 12px; color: var(--gray); }
.ai-bar { height: 6px; background: rgba(255,255,255,0.08); border-radius: 3px; }
.ai-fill { height: 100%; background: linear-gradient(90deg, var(--orange), #ffaa44); border-radius: 3px; transition: width 1.2s ease; }

/* ═════════════════════════════════════════════════════
   INDUSTRIES
═════════════════════════════════════════════════════ */
.industries-section { background: var(--navy); }
.ind-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.ind-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 28px 20px; text-align: center; transition: transform var(--transition), border-color var(--transition); cursor: pointer; }
.ind-card:hover { transform: translateY(-5px); border-color: rgba(255,106,0,0.35); }
.ind-ico { font-size: 36px; margin-bottom: 14px; }
.ind-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.ind-card p { font-size: 12px; color: var(--gray); line-height: 1.5; }

/* ═════════════════════════════════════════════════════
   TECHNOLOGY
═════════════════════════════════════════════════════ */
.tech-section { background: var(--navy2); }
.tech-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.tech-feats { display: flex; flex-direction: column; gap: 4px; }
.tf { display: flex; align-items: center; gap: 16px; padding: 16px 18px; border-radius: 10px; transition: background var(--transition); cursor: pointer; }
.tf:hover { background: rgba(255,255,255,0.05); }
.tf-ico { font-size: 22px; flex-shrink: 0; width: 44px; text-align: center; }
.tf h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.tf p { font-size: 12px; color: var(--gray); }
.tf > span { margin-left: auto; color: var(--orange); font-size: 18px; font-weight: 700; flex-shrink: 0; }
.dash-img { width: 100%; border-radius: var(--radius); box-shadow: 0 40px 100px rgba(0,0,0,0.5); }
.tech-badge { display: flex; align-items: center; gap: 8px; background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.25); border-radius: 8px; padding: 10px 16px; font-size: 13px; color: #4ade80; font-weight: 600; margin-top: 16px; }
.tb-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; animation: blink 1.5s infinite; flex-shrink: 0; }

/* ═════════════════════════════════════════════════════
   HOW IT WORKS
═════════════════════════════════════════════════════ */
.how-section { background: var(--navy); }
.steps { display: flex; gap: 0; position: relative; justify-content: space-between; align-items: flex-start; }
.step-line { position: absolute; top: 28px; left: 60px; right: 60px; height: 2px; background: rgba(255,255,255,0.1); z-index: 0; }
.step { text-align: center; flex: 1; position: relative; z-index: 1; padding: 0 10px; }
.step-n { display: inline-block; font-size: 11px; font-weight: 700; color: var(--orange); letter-spacing: 1px; margin-bottom: 10px; }
.step-ico { width: 56px; height: 56px; border-radius: 50%; background: var(--navy2); border: 2px solid rgba(255,106,0,0.4); display: flex; align-items: center; justify-content: center; font-size: 22px; margin: 0 auto 14px; }
.step h3 { font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 12px; color: var(--gray); }

/* ═════════════════════════════════════════════════════
   REVIEWS
═════════════════════════════════════════════════════ */
.reviews-section { background: var(--navy2); }
.reviews-wrap { overflow: hidden; position: relative; }
.reviews-track { display: flex; transition: transform 0.5s ease; }
.review-card { min-width: 100%; padding: 40px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); }
.rv-stars { color: var(--orange); font-size: 18px; margin-bottom: 16px; }
.review-card p { font-size: 16px; color: rgba(255,255,255,0.85); line-height: 1.7; font-style: italic; margin-bottom: 24px; }
.rv-author { display: flex; align-items: center; gap: 14px; }
.rv-av { width: 44px; height: 44px; border-radius: 50%; background: var(--orange); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; flex-shrink: 0; }
.rv-name { font-size: 14px; font-weight: 700; }
.rv-role { font-size: 12px; color: var(--gray); }
.rv-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 24px; }
.rv-btn { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); color: #fff; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; font-size: 18px; transition: background var(--transition); }
.rv-btn:hover { background: var(--orange); border-color: var(--orange); }
.rv-dots { display: flex; gap: 8px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.2); cursor: pointer; transition: background var(--transition); }
.dot.active { background: var(--orange); }

/* ═════════════════════════════════════════════════════
   CTA BANNER
═════════════════════════════════════════════════════ */
.cta-banner { background: linear-gradient(135deg, var(--orange) 0%, #e04e00 100%); padding: 80px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-left h2 { font-size: clamp(24px,3vw,38px); font-weight: 900; }
.cta-left h2 span { text-decoration: underline; }
.cta-left p { color: rgba(255,255,255,0.85); margin-top: 8px; font-size: 15px; }
.cta-right { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-white { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--orange); padding: 14px 28px; border-radius: 8px; font-weight: 700; font-size: 15px; text-decoration: none; }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: #fff; padding: 14px 24px; border-radius: 8px; font-weight: 700; font-size: 15px; text-decoration: none; border: 2px solid rgba(255,255,255,0.5); }

/* ═════════════════════════════════════════════════════
   FOOTER
═════════════════════════════════════════════════════ */
.footer { background: #060c18; padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 60px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.fl-name { font-size: 16px; font-weight: 800; letter-spacing: 1px; }
.fl-name span { color: var(--orange); }
.fl-ltd { font-size: 10px; font-weight: 700; letter-spacing: 3px; color: var(--orange); }
.footer-desc { font-size: 13px; color: var(--gray); line-height: 1.7; margin-bottom: 16px; }
.footer-emergency { font-size: 13px; color: var(--orange); background: rgba(255,106,0,0.1); padding: 10px 14px; border-radius: 8px; }
.footer-col h4 { font-size: 13px; font-weight: 700; letter-spacing: 0.5px; margin-bottom: 16px; color: rgba(255,255,255,0.9); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--gray); font-size: 13px; text-decoration: none; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--orange); }
.footer-contact li { color: var(--gray); font-size: 13px; display: flex; align-items: center; gap: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.4); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-links a:hover { color: var(--orange); }

/* ═════════════════════════════════════════════════════
   RESPONSIVE
═════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .ind-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero-body { flex-direction: column; align-items: flex-start; padding-top: 80px; padding-bottom: 24px; min-height: unset; }
  .hero-left { max-width: 100%; }
  .hero-right { width: 100%; justify-content: flex-start; }
  .quote-card { width: 100%; max-width: 400px; }
  .why-grid { grid-template-columns: 1fr; }
  .fleet-layout { grid-template-columns: 1fr; }
  .tech-layout { grid-template-columns: 1fr; }
  .stats-inner { flex-wrap: wrap; gap: 30px; padding: 32px; }
  .stat-divider { display: none; }
  .stat-item { min-width: 120px; }
  .steps { flex-wrap: wrap; gap: 24px; }
  .step-line { display: none; }
  .feature-bar-inner { flex-direction: column; }
  .feature-item { width: 100%; justify-content: flex-start; border-left: none; border-top: 1px solid rgba(255,255,255,0.07); }
  .feature-item:first-child { border-top: none; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .ind-grid { grid-template-columns: repeat(2,1fr); }
  .cta-inner { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .nav-wa-icon { display: none; }
  .mobile-wa-icon { display: flex; }
  .btn-quote-nav { display: none; }
}

/* ═════════════════════════════════════════════════════
   WHATSAPP SYSTEM
═════════════════════════════════════════════════════ */
.nav-wa-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: 50%;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 0 10px rgba(37, 211, 102, 0.2);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.nav-wa-icon:hover {
  transform: scale(1.1);
  background: rgba(37, 211, 102, 0.25);
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
}
.nav-wa-icon svg {
  width: 18px;
  height: 18px;
}

.mobile-wa-icon {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: 50%;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 0 10px rgba(37, 211, 102, 0.2);
  transition: transform var(--transition);
}
.mobile-wa-icon:hover {
  transform: scale(1.05);
}
.mobile-wa-icon svg {
  width: 22px;
  height: 22px;
}

/* Float actions */
.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}
@media (max-width: 768px) {
  .floating-actions {
    bottom: 20px;
    right: 20px;
  }
}
.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.float-btn:hover {
  transform: scale(1.1) translateY(-5px);
}
.float-call {
  background: var(--orange);
  color: #fff;
}
.float-call svg { width: 24px; height: 24px; }
.float-wa {
  background: #25D366;
  color: #fff;
  animation: pulse-wa 5s infinite;
}
.float-wa svg { width: 30px; height: 30px; }

@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  10% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Modal */
.wa-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.wa-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.wa-modal {
  background: rgba(13,20,40,0.96);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
  border-radius: 16px;
  width: 90%;
  max-width: 400px;
  padding: 24px;
  position: relative;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.wa-modal-overlay.active .wa-modal {
  transform: translateY(0) scale(1);
}
.wa-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.wa-close:hover { background: rgba(255,255,255,0.2); }

.wa-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.wa-avatar {
  width: 50px;
  height: 50px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.wa-avatar svg { width: 28px; height: 28px; }
.wa-header h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}
.wa-header p {
  font-size: 13px;
  color: var(--gray);
}
.wa-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wa-opt {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  padding: 14px 18px;
  border-radius: 10px;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  font-family: 'Inter', sans-serif;
}
.wa-opt:hover {
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.4);
  color: #25D366;
}

[data-theme="light"] .wa-modal { background: #fff; border-color: #E2E8F0; }
[data-theme="light"] .wa-header { border-bottom-color: #E2E8F0; }
[data-theme="light"] .wa-header h3 { color: #0F172A; }
[data-theme="light"] .wa-header p { color: #475569; }
[data-theme="light"] .wa-close { background: #F1F5F9; color: #475569; }
[data-theme="light"] .wa-close:hover { background: #E2E8F0; }
[data-theme="light"] .wa-opt { background: #F8FAFC; border-color: #E2E8F0; color: #0F172A; }
[data-theme="light"] .wa-opt:hover { background: rgba(37, 211, 102, 0.05); border-color: #25D366; color: #128C7E; }

/* ═════════════════════════════════════════════════════
   INSTANT QUOTE CALCULATOR
═════════════════════════════════════════════════════ */
.iqc-section { background: var(--navy2); }

/* Layout */
.iqc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 900px) {
  .iqc-layout { grid-template-columns: 1fr; }
}

/* Calculator card */
.iqc-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.iqc-card-header {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 24px;
  background: rgba(255,106,0,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 12px; font-weight: 800; letter-spacing: 1.5px;
  color: rgba(255,255,255,0.9); text-transform: uppercase;
}
.iqc-form { padding: 24px; display: flex; flex-direction: column; gap: 20px; }

/* Row */
.iqc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) {
  .iqc-row { grid-template-columns: 1fr; }
}

/* Groups */
.iqc-group { display: flex; flex-direction: column; gap: 8px; }
.iqc-group label {
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.6);
  display: flex; align-items: center; gap: 6px;
  letter-spacing: 0.2px;
}
.iqc-req { color: var(--orange); font-weight: 700; }

/* Inputs */
.iqc-input-wrap { position: relative; }
.iqc-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: #fff; font-size: 14px;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  font-family: 'Inter', sans-serif;
}
.iqc-input::placeholder { color: rgba(255,255,255,0.28); }
.iqc-input:focus {
  border-color: var(--orange);
  background: rgba(255,255,255,0.09);
}
.iqc-input.iqc-input-error { border-color: #f87171 !important; background: rgba(239,68,68,0.08); }

/* Autocomplete dropdown */
.iqc-autocomplete {
  position: absolute; top: calc(100% + 4px); left: 0; right: 0;
  background: #0d1428;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  z-index: 200;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  display: none;
}
.iqc-autocomplete.open { display: block; }
.iqc-ac-item {
  padding: 10px 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.15s;
  display: flex; align-items: center; gap: 8px;
}
.iqc-ac-item:last-child { border-bottom: none; }
.iqc-ac-item:hover { background: rgba(255,106,0,0.12); color: #fff; }
.iqc-ac-icon { font-size: 14px; opacity: 0.7; }

/* Vehicle grid */
.iqc-vehicles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 600px) {
  .iqc-vehicles { grid-template-columns: repeat(2, 1fr); }
}
.iqc-veh {
  display: flex; flex-direction: column; align-items: center;
  gap: 4px; padding: 14px 8px;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 10px; cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  text-align: center; font-family: 'Inter', sans-serif;
}
.iqc-veh:hover {
  border-color: rgba(255,106,0,0.5);
  background: rgba(255,106,0,0.07);
  transform: translateY(-2px);
}
.iqc-veh.active {
  border-color: var(--orange);
  background: rgba(255,106,0,0.12);
  box-shadow: 0 0 0 1px rgba(255,106,0,0.25);
}
.iqc-veh-icon { font-size: 22px; }
.iqc-veh-name { font-size: 12px; font-weight: 700; color: #fff; }
.iqc-veh-spec { font-size: 10px; color: rgba(255,255,255,0.45); }
.iqc-veh-rate { font-size: 11px; font-weight: 700; color: var(--orange); margin-top: 2px; }

/* Error */
.iqc-error {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  color: #f87171;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px; font-weight: 500;
  line-height: 1.5;
}

/* Submit button */
.iqc-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, var(--orange), #e04e00);
  color: #fff; border: none; border-radius: 10px;
  padding: 15px; font-size: 16px; font-weight: 700;
  cursor: pointer; width: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 6px 24px rgba(255,106,0,0.3);
}
.iqc-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(255,106,0,0.45); }
.iqc-btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.iqc-spinner {
  display: inline-block; width: 18px; height: 18px;
  border: 2.5px solid rgba(255,255,255,0.3);
  border-top-color: #fff; border-radius: 50%;
  animation: iqcSpin 0.65s linear infinite;
}
@keyframes iqcSpin { to { transform: rotate(360deg); } }

/* Result panel */
.iqc-result-wrap { animation: iqcFadeIn 0.4s ease; }
@keyframes iqcFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}
.iqc-result {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.iqc-result-header {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 24px;
  background: rgba(255,106,0,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 12px; font-weight: 800; letter-spacing: 1.5px;
  color: rgba(255,255,255,0.9); text-transform: uppercase;
}

/* Price hero */
.iqc-price-hero {
  padding: 28px 24px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: linear-gradient(180deg, rgba(255,106,0,0.06) 0%, transparent 100%);
}
.iqc-price-label {
  display: block;
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 8px;
}
.iqc-price-big {
  font-size: clamp(40px, 5vw, 58px);
  font-weight: 900;
  color: var(--orange);
  font-family: 'Barlow', 'Inter', sans-serif;
  line-height: 1;
  letter-spacing: -2px;
}

/* Result grid */
.iqc-result-grid {
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.iqc-rg-item {
  display: flex; flex-direction: column; gap: 3px;
}
.iqc-rg-label { font-size: 11px; color: rgba(255,255,255,0.45); font-weight: 500; }
.iqc-rg-val { font-size: 14px; font-weight: 700; color: #fff; }
.iqc-rg-val.orange { color: var(--orange); font-size: 16px; }
.iqc-rg-total { grid-column: 1/-1; padding-top: 8px; border-top: 1px solid rgba(255,255,255,0.07); }

/* Route bar */
.iqc-route-bar {
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.iqc-route-from, .iqc-route-to {
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.7);
  flex: 1;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.iqc-route-to { text-align: right; }
.iqc-route-line {
  display: flex; align-items: center; gap: 6px;
  flex: 2; min-width: 0;
}
.iqc-route-dash { flex: 1; height: 2px; background: rgba(255,255,255,0.15); border-radius: 1px; }
.iqc-route-truck { font-size: 16px; flex-shrink: 0; animation: iqcTruck 2.5s linear infinite; }
@keyframes iqcTruck {
  0%   { transform: translateX(-4px); }
  50%  { transform: translateX(4px); }
  100% { transform: translateX(-4px); }
}
.iqc-route-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.orange-dot-sm { background: var(--orange); }
.green-dot-sm  { background: #22c55e; }

/* CTA row */
.iqc-cta-row {
  padding: 18px 24px;
  display: flex; gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.iqc-book-btn {
  flex: 1; display: flex; align-items: center; justify-content: center;
  background: var(--orange); color: #fff;
  padding: 12px 20px; border-radius: 8px;
  font-weight: 700; font-size: 14px; text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  text-align: center;
}
.iqc-book-btn:hover { background: #e55f00; transform: translateY(-1px); }
.iqc-reset-btn {
  flex-shrink: 0;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  padding: 12px 18px; border-radius: 8px;
  font-size: 13px; font-weight: 600;
  cursor: pointer; font-family: 'Inter', sans-serif;
  transition: background 0.2s;
}
.iqc-reset-btn:hover { background: rgba(255,255,255,0.14); }

/* Disclaimer */
.iqc-disclaimer {
  padding: 14px 24px;
  font-size: 11px;
  color: rgba(255,255,255,0.38);
  line-height: 1.6;
  font-style: italic;
}

/* Light theme overrides */
[data-theme="light"] .iqc-section { background: #f0f4f8; }
[data-theme="light"] .iqc-card,
[data-theme="light"] .iqc-result { background: #fff; border-color: #E2E8F0; box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
[data-theme="light"] .iqc-card-header,
[data-theme="light"] .iqc-result-header { background: rgba(255,106,0,0.06); border-bottom-color: #E2E8F0; color: #0A1628; }
[data-theme="light"] .iqc-input { background: #F8FAFC; border-color: #E2E8F0; color: #0A1628; }
[data-theme="light"] .iqc-input::placeholder { color: rgba(10,22,40,0.3); }
[data-theme="light"] .iqc-input:focus { border-color: var(--orange); background: #fff; }
[data-theme="light"] .iqc-input.iqc-input-error { background: rgba(239,68,68,0.04); }
[data-theme="light"] .iqc-group label { color: rgba(10,22,40,0.55); }
[data-theme="light"] .iqc-veh { background: #F8FAFC; border-color: #E2E8F0; }
[data-theme="light"] .iqc-veh:hover { background: rgba(255,106,0,0.05); }
[data-theme="light"] .iqc-veh.active { background: rgba(255,106,0,0.08); }
[data-theme="light"] .iqc-veh-name { color: #0A1628; }
[data-theme="light"] .iqc-veh-spec { color: rgba(10,22,40,0.4); }
[data-theme="light"] .iqc-autocomplete { background: #fff; border-color: #E2E8F0; }
[data-theme="light"] .iqc-ac-item { color: #0A1628; border-bottom-color: #F1F5F9; }
[data-theme="light"] .iqc-ac-item:hover { background: rgba(255,106,0,0.06); }
[data-theme="light"] .iqc-rg-label { color: rgba(10,22,40,0.45); }
[data-theme="light"] .iqc-rg-val { color: #0A1628; }
[data-theme="light"] .iqc-rg-total { border-top-color: #E2E8F0; }
[data-theme="light"] .iqc-result-grid,
[data-theme="light"] .iqc-route-bar,
[data-theme="light"] .iqc-cta-row,
[data-theme="light"] .iqc-price-hero { border-bottom-color: #E2E8F0; }
[data-theme="light"] .iqc-route-from,
[data-theme="light"] .iqc-route-to { color: rgba(10,22,40,0.7); }
[data-theme="light"] .iqc-route-dash { background: #E2E8F0; }
[data-theme="light"] .iqc-reset-btn { background: #F1F5F9; border-color: #E2E8F0; color: #475569; }
[data-theme="light"] .iqc-reset-btn:hover { background: #E2E8F0; }
[data-theme="light"] .iqc-disclaimer { color: rgba(10,22,40,0.38); }
[data-theme="light"] .iqc-price-hero { background: linear-gradient(180deg, rgba(255,106,0,0.05) 0%, transparent 100%); }
