/* ══════════════════════════════════════════════════════
   Bold Auto Transport – Lead v3 PREMIUM LAYER
   Dramatic visual upgrade — loads AFTER lead3.css
   ══════════════════════════════════════════════════════ */

/* ── PREMIUM VARIABLES ───────────────────────────────── */
:root {
  --p-blue: #0866b3;
  --p-blue-glow: rgba(11,125,218,0.15);
  --p-green: #16a34a;
  --p-dark: #0c1929;
  --p-radius: 18px;
  --p-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── PAGE — dark navy premium background ─────────────── */
body {
  background: #eef2f7 !important;
  background-image:
    radial-gradient(ellipse at 30% -10%, rgba(11,125,218,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 100%, rgba(22,163,74,0.05) 0%, transparent 50%) !important;
  background-attachment: fixed !important;
}

/* ── HEADER — frosted glass with depth ───────────────── */
.lh {
  background: rgba(255,255,255,0.72) !important;
  backdrop-filter: blur(24px) saturate(200%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(200%) !important;
  border-bottom: 1px solid rgba(255,255,255,0.3) !important;
  box-shadow: 0 4px 30px rgba(0,0,0,0.06), 0 1px 0 rgba(255,255,255,0.5) inset !important;
}

/* ── PROGRESS BAR — vivid gradient with glow ─────────── */
.prog {
  height: 3px !important;
  background: rgba(226,232,240,0.3) !important;
}
.prog-fill {
  background: linear-gradient(90deg, #0866b3, #0ea5e9, #22c55e) !important;
  box-shadow: 0 0 20px rgba(11,125,218,0.4), 0 0 6px rgba(11,125,218,0.3) !important;
}

/* ── STEP NAV — active glow ──────────────────────────── */
.hs.active {
  background: linear-gradient(135deg, rgba(11,125,218,0.12), rgba(14,165,233,0.08)) !important;
  box-shadow: 0 0 0 2px rgba(11,125,218,0.15), 0 2px 12px rgba(11,125,218,0.1) !important;
}
.hs.active .hs-num {
  background: linear-gradient(135deg, #0866b3, #0ea5e9) !important;
  box-shadow: 0 3px 12px rgba(11,125,218,0.4) !important;
}
.hs.done .hs-num {
  background: linear-gradient(135deg, #16a34a, #22c55e) !important;
  box-shadow: 0 3px 12px rgba(22,163,74,0.4) !important;
}

/* ── MOBILE DOTS — premium ───────────────────────────── */
.hd.active {
  background: linear-gradient(135deg, #0866b3, #0ea5e9) !important;
  box-shadow: 0 3px 12px rgba(11,125,218,0.45) !important;
  transform: scale(1.15);
  border-radius: 10px !important;
}
.hd.done {
  background: linear-gradient(135deg, #16a34a, #22c55e) !important;
  box-shadow: 0 3px 12px rgba(22,163,74,0.4) !important;
}

/* ── FORM CARD — elevated with visible depth ─────────── */
.card {
  background: #ffffff !important;
  border-radius: var(--p-radius) !important;
  border: 1px solid rgba(226,232,240,0.5) !important;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.02),
    0 4px 8px rgba(0,0,0,0.03),
    0 12px 40px rgba(0,0,0,0.06) !important;
  padding: 40px 36px 32px !important;
  transition: box-shadow 0.4s var(--p-ease), transform 0.4s var(--p-ease) !important;
}

/* ── CARD TITLE — gradient text ──────────────────────── */
.card h1 {
  font-size: 28px !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
}
.hl {
  background: linear-gradient(135deg, #0866b3, #0ea5e9) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* ── STEP BADGE — premium pill ───────────────────────── */
.badge {
  background: linear-gradient(135deg, rgba(11,125,218,0.1), rgba(14,165,233,0.06)) !important;
  border: 1px solid rgba(11,125,218,0.2) !important;
  border-radius: 100px !important;
  padding: 5px 16px !important;
  font-size: 10.5px !important;
  letter-spacing: 1.2px !important;
}

/* ── STEP TRANSITIONS — cinematic fade+scale+blur ────── */
.step {
  animation: premiumStep 0.55s var(--p-ease) both !important;
}
@keyframes premiumStep {
  from { opacity: 0; transform: translateY(24px) scale(0.98); filter: blur(4px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

/* ── INPUTS — premium with visible hover/focus ───────── */
.fi {
  height: 52px !important;
  border: 1.5px solid #d1d9e6 !important;
  border-radius: 14px !important;
  background: #fafbfc !important;
  transition: all 0.25s var(--p-ease) !important;
  box-shadow: 0 1px 3px rgba(0,0,0,0.02) !important;
}
.fi:hover {
  border-color: #b0bdd0 !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05) !important;
  background: #fff !important;
}
.fi:focus {
  border-color: var(--p-blue) !important;
  background: #fff !important;
  box-shadow: 0 0 0 4px var(--p-blue-glow), 0 4px 16px rgba(11,125,218,0.08) !important;
}

/* ── AUTOCOMPLETE — dramatic dropdown ────────────────── */
.acl {
  border: 2px solid var(--p-blue) !important;
  border-radius: 16px !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 0 0 1px rgba(11,125,218,0.1) !important;
  animation: acReveal 0.25s var(--p-ease) both !important;
}
@keyframes acReveal {
  from { opacity: 0; transform: translateY(-6px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.aci {
  padding: 15px 20px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #0f172a !important;
  transition: all 0.15s ease !important;
}
.aci:hover, .aci.active {
  background: linear-gradient(135deg, rgba(11,125,218,0.08), rgba(14,165,233,0.04)) !important;
  color: var(--p-blue) !important;
  padding-left: 24px !important;
}

/* ── SWAP — rotates on hover ─────────────────────────── */
.swap {
  width: 38px !important; height: 38px !important;
  border-radius: 12px !important;
  border: 2px solid #d1d9e6 !important;
  transition: all 0.3s var(--p-ease) !important;
}
.swap:hover {
  border-color: var(--p-blue) !important;
  background: linear-gradient(135deg, rgba(11,125,218,0.08), rgba(14,165,233,0.04)) !important;
  color: var(--p-blue) !important;
  transform: rotate(180deg) !important;
  box-shadow: 0 4px 16px rgba(11,125,218,0.2) !important;
}

/* ── TRANSPORT TYPE — premium radio cards ────────────── */
.tt-opt {
  border: 2px solid #d1d9e6 !important;
  border-radius: 16px !important;
  padding: 18px !important;
  transition: all 0.25s var(--p-ease) !important;
}
.tt-opt:hover {
  border-color: #b0bdd0 !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06) !important;
  transform: translateY(-2px);
}
.tt-opt.selected {
  border-color: var(--p-blue) !important;
  background: linear-gradient(135deg, rgba(11,125,218,0.06), rgba(14,165,233,0.03)) !important;
  box-shadow: 0 0 0 4px var(--p-blue-glow), 0 4px 20px rgba(11,125,218,0.1) !important;
  transform: translateY(-2px);
}

/* ── VEHICLE BUTTONS — dramatic hover + select ───────── */
.vb {
  border: 2px solid #d1d9e6 !important;
  border-radius: 16px !important;
  transition: all 0.25s var(--p-ease) !important;
}
.vb:hover {
  border-color: #b0bdd0 !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08) !important;
}
.vb.selected {
  border-color: var(--p-blue) !important;
  background: linear-gradient(135deg, rgba(11,125,218,0.06), rgba(14,165,233,0.02)) !important;
  box-shadow: 0 0 0 4px var(--p-blue-glow), 0 8px 24px rgba(11,125,218,0.12) !important;
  transform: translateY(-3px) !important;
}

/* ── BUTTONS — gradient with depth + shine ───────────── */
.btn-next {
  background: linear-gradient(135deg, #0866b3 0%, #0ea5e9 100%) !important;
  border-radius: 14px !important;
  box-shadow: 0 4px 20px rgba(11,125,218,0.3), 0 2px 4px rgba(0,0,0,0.06) !important;
  transition: all 0.3s var(--p-ease) !important;
  position: relative !important;
  overflow: hidden !important;
}
.btn-next:hover:not(:disabled) {
  background: linear-gradient(135deg, #0756a0 0%, #0b8fd0 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 32px rgba(11,125,218,0.35), 0 4px 8px rgba(0,0,0,0.08) !important;
}
.btn-next:active:not(:disabled) {
  transform: translateY(0) !important;
}

.btn-go {
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%) !important;
  border-radius: 14px !important;
  box-shadow: 0 4px 20px rgba(22,163,74,0.3), 0 2px 4px rgba(0,0,0,0.06) !important;
  transition: all 0.3s var(--p-ease) !important;
}
.btn-go:hover:not(:disabled) {
  background: linear-gradient(135deg, #15803d 0%, #16a34a 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 32px rgba(22,163,74,0.35), 0 4px 8px rgba(0,0,0,0.08) !important;
}

.btn-back {
  border-radius: 14px !important;
}
.btn-back:hover {
  transform: translateX(-3px) !important;
}

/* ── BUTTON SHINE SWEEP ──────────────────────────────── */
.btn-next::after, .btn-go::after {
  content: '' !important;
  position: absolute !important;
  top: 0 !important; left: -100% !important;
  width: 60% !important; height: 100% !important;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent) !important;
  transform: skewX(-20deg) !important;
  transition: left 0.5s ease !important;
}
.btn-next:hover::after, .btn-go:hover::after {
  left: 150% !important;
}

/* ── PROGRESSIVE UNLOCK — visible blur transition ────── */
.prog-locked .fi,
.prog-locked .dp2-bar,
.prog-locked .combo-input {
  filter: blur(3px) !important;
  opacity: 0.25 !important;
}
.prog-locked label {
  opacity: 0.35 !important;
}
.lock-overlay {
  border-radius: 16px !important;
  backdrop-filter: blur(8px) !important;
  background: rgba(248,250,252,0.6) !important;
}

/* ── UNLOCK ANIMATION — dramatic deblur ──────────────── */
.prog-just-unlocked {
  animation: premiumUnlock 0.5s var(--p-ease) both !important;
}
@keyframes premiumUnlock {
  from { opacity: 0; transform: translateY(16px) scale(0.97); filter: blur(6px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

/* ── PRICE HERO — dramatic entrance ──────────────────── */
.price-hero {
  border-radius: 20px !important;
}
.price-hero-ready {
  animation: priceEntrance 0.7s var(--p-ease) both !important;
}
@keyframes priceEntrance {
  from { opacity: 0; transform: scale(0.92); filter: blur(8px); }
  40% { opacity: 1; filter: blur(0); }
  to { transform: scale(1); }
}

/* ── SIDEBAR — elevated cards ────────────────────────── */
.sb-card {
  border-radius: 18px !important;
  border: 1px solid rgba(226,232,240,0.5) !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05) !important;
  transition: all 0.3s var(--p-ease) !important;
}
.sb-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08) !important;
  transform: translateY(-3px) !important;
}

/* ── SIDEBAR CALL CARD — vibrant gradient ────────────── */
.sb-call-card {
  border-radius: 18px !important;
  box-shadow: 0 8px 32px rgba(22,163,74,0.15) !important;
}

/* ── SIDEBAR WHY-BOLD — premium green ────────────────── */
.sb-why {
  border-radius: 18px !important;
  box-shadow: 0 8px 32px rgba(22,163,74,0.12) !important;
}

/* ── CALENDAR — glass modal ──────────────────────────── */
.cal-overlay {
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  background: rgba(15,23,42,0.45) !important;
}
.cal {
  border-radius: 20px !important;
  box-shadow: 0 24px 80px rgba(0,0,0,0.18), 0 0 0 1px rgba(255,255,255,0.1) !important;
  animation: calDrop 0.35s var(--p-ease) both !important;
}
@keyframes calDrop {
  from { opacity: 0; transform: scale(0.94) translateY(12px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.cal-day {
  border-radius: 10px !important;
  font-weight: 600 !important;
  transition: all 0.15s ease !important;
}
.cal-day:hover:not(.disabled):not(.other-month) {
  background: rgba(11,125,218,0.1) !important;
  transform: scale(1.1) !important;
}
.cal-day.selected, .cal-day.range-start, .cal-day.range-end {
  background: linear-gradient(135deg, #0866b3, #0ea5e9) !important;
  box-shadow: 0 3px 12px rgba(11,125,218,0.35) !important;
  color: #fff !important;
}
.cal-day.in-range {
  background: rgba(11,125,218,0.1) !important;
}

/* ── DATE BAR — premium button ───────────────────────── */
.dp2-bar {
  border: 2px solid #d1d9e6 !important;
  border-radius: 14px !important;
  transition: all 0.25s var(--p-ease) !important;
}
.dp2-bar:hover {
  border-color: #b0bdd0 !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06) !important;
}

/* ── STEP GUIDE — premium callout ────────────────────── */
.step-guide {
  border-radius: 16px !important;
  background: linear-gradient(135deg, rgba(232,244,253,0.9), rgba(219,234,254,0.7)) !important;
  border: 1px solid rgba(147,197,253,0.5) !important;
  backdrop-filter: blur(4px) !important;
  box-shadow: 0 2px 12px rgba(11,125,218,0.06) !important;
}
.step-guide-final {
  background: linear-gradient(135deg, rgba(240,253,244,0.9), rgba(220,252,231,0.7)) !important;
  border-color: rgba(134,239,172,0.5) !important;
  box-shadow: 0 2px 12px rgba(22,163,74,0.06) !important;
}

/* ── FORM TRUST BADGES — glass bar ───────────────────── */
.form-trust {
  border-radius: 16px !important;
  border: 1px solid rgba(226,232,240,0.4) !important;
  background: rgba(255,255,255,0.7) !important;
  backdrop-filter: blur(12px) !important;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04) !important;
}

/* ── COMBO BOXES — premium ───────────────────────────── */
.combo-input {
  border: 1.5px solid #d1d9e6 !important;
  border-radius: 14px !important;
}
.combo-input:focus {
  border-color: var(--p-blue) !important;
  box-shadow: 0 0 0 4px var(--p-blue-glow), 0 4px 16px rgba(11,125,218,0.08) !important;
}
.combo-list {
  border-radius: 16px !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.14) !important;
  border: 1.5px solid #d1d9e6 !important;
}

/* ── MOBILE TRUST — glass ────────────────────────────── */
.m-trust {
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  background: rgba(255,255,255,0.85) !important;
  border-bottom: 1px solid rgba(226,232,240,0.4) !important;
}

/* ── MOBILE BOTTOM BAR — frosted glass ───────────────── */
.m-bottom {
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  background: rgba(255,255,255,0.82) !important;
  border-top: 1px solid rgba(226,232,240,0.4) !important;
  box-shadow: 0 -8px 30px rgba(0,0,0,0.08) !important;
}
.m-bottom-quote {
  border-radius: 14px !important;
  background: linear-gradient(135deg, #0866b3, #0ea5e9) !important;
  box-shadow: 0 4px 16px rgba(11,125,218,0.3) !important;
}
.m-bottom-call {
  border-radius: 14px !important;
}

/* ── SUCCESS CARD — premium ──────────────────────────── */
.done-quote-card {
  border-radius: 20px !important;
  box-shadow: 0 12px 48px rgba(0,0,0,0.08) !important;
  border: 1px solid rgba(226,232,240,0.5) !important;
}

/* ── SCANNING — premium pulse ────────────────────────── */
.sb-scan-pulse {
  box-shadow: 0 0 0 6px rgba(11,125,218,0.12) !important;
}

/* ── OPERABILITY — premium ───────────────────────────── */
.op-opt {
  border: 2px solid #d1d9e6 !important;
  border-radius: 16px !important;
}
.op-opt.selected {
  border-color: var(--p-blue) !important;
  box-shadow: 0 0 0 4px var(--p-blue-glow), 0 4px 20px rgba(11,125,218,0.1) !important;
}

/* ── NEEDS-SELECT — visible warning ──────────────────── */
.needs-select {
  border-color: #f59e0b !important;
  box-shadow: 0 0 0 4px rgba(245,158,11,0.12) !important;
}

/* ── ACCESSIBILITY ───────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.1s !important;
  }
  .step { animation: none !important; opacity: 1 !important; }
  .swap:hover { transform: none !important; }
  .vb:hover, .vb.selected { transform: none !important; }
  .btn-next:hover, .btn-go:hover, .btn-back:hover { transform: none !important; }
  .tt-opt:hover, .tt-opt.selected { transform: none !important; }
}

/* ── MOBILE OVERRIDES ────────────────────────────────── */
@media (max-width: 768px) {
  .card { padding: 28px 22px 24px !important; border-radius: 16px !important; }
  .fi { height: 54px !important; font-size: 16px !important; }
  .btn-next, .btn-go { border-radius: 14px !important; }
  .vb { border-radius: 14px !important; }
  .tt-opt, .op-opt { border-radius: 14px !important; }
}
@media (max-width: 380px) {
  .card { padding: 22px 16px 20px !important; }
}
