/* SwiftCash Auto Buyers — Automotive Salvage Theme */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg-dark: #0a0a0c;
  --bg-card: #141418;
  --bg-elevated: #1c1c22;
  --charcoal: #474749;
  --orange: #f37037;
  --orange-glow: #ff8c5a;
  --gold: #ffb800;
  --white: #ffffff;
  --text-muted: #a0a0a8;
  --border: rgba(255,255,255,0.08);
  --gradient-fire: linear-gradient(135deg, #f37037 0%, #ffb800 100%);
  --shadow-glow: 0 0 40px rgba(243,112,55,0.25);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --header-h: 72px;
  --radius: 12px;
  --radius-lg: 20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: min(1200px, 92vw); margin: 0 auto; }
.section { padding: 5rem 0; }
.section-label {
  color: var(--orange);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.section-desc { color: var(--text-muted); max-width: 640px; font-size: 1.05rem; }

/* ===== HEADER ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  background: rgba(10,10,12,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.site-header.scrolled { background: rgba(10,10,12,0.97); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}
.logo {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
}
.logo-icon {
  width: 42px; height: 42px;
  background: var(--gradient-fire);
  border-radius: 10px;
  display: grid; place-items: center;
  font-size: 1.3rem;
}
.logo span { color: var(--orange); }

.nav-desktop { display: flex; align-items: center; gap: 1.75rem; }
.nav-desktop a {
  font-size: 0.875rem; font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-desktop a:hover, .nav-desktop a.active { color: var(--white); }
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.7em; }
.dropdown-menu {
  position: absolute; top: 100%; left: -1rem;
  min-width: 220px; padding: 0.75rem 0;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: block; padding: 0.55rem 1.25rem; font-size: 0.85rem; }
.dropdown-menu a:hover { background: rgba(243,112,55,0.1); color: var(--orange); }

.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.mobile-toggle {
  display: none; background: none; border: none;
  color: var(--white); font-size: 1.5rem; cursor: pointer;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem; font-weight: 700;
  border-radius: 50px;
  border: none; cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-fire);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(243,112,55,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.25);
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }
.btn-ghost { background: rgba(255,255,255,0.06); color: var(--white); }
.btn-ghost:hover { background: rgba(243,112,55,0.15); }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-sm { padding: 0.55rem 1rem; font-size: 0.8rem; }
.btn-call {
  background: #22c55e;
  color: white;
  animation: pulse-call 2s infinite;
}
@keyframes pulse-call {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  50% { box-shadow: 0 0 0 12px rgba(34,197,94,0); }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}
.hero-video-wrap {
  position: absolute; inset: 0; z-index: 0;
}
.hero-video-wrap video {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.35;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(135deg, rgba(10,10,12,0.92) 0%, rgba(10,10,12,0.7) 50%, rgba(10,10,12,0.85) 100%),
    radial-gradient(ellipse at 70% 50%, rgba(243,112,55,0.12) 0%, transparent 60%);
}
.hero-grid-lines {
  position: absolute; inset: 0; z-index: 1; opacity: 0.04;
  background-image:
    linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 2; padding: 4rem 0; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(243,112,55,0.15);
  border: 1px solid rgba(243,112,55,0.3);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem; font-weight: 600;
  color: var(--orange-glow);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease;
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e;
  animation: blink 1.5s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
  animation: fadeUp 0.8s ease 0.1s both;
}
.hero h1 .highlight {
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 2rem;
  animation: fadeUp 0.8s ease 0.2s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero CTA Grid */
.hero-cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
  max-width: 720px;
  margin-bottom: 2rem;
  animation: fadeUp 0.8s ease 0.3s both;
}
.hero-cta-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}
.hero-cta-card:hover {
  background: rgba(243,112,55,0.12);
  border-color: rgba(243,112,55,0.4);
  transform: translateY(-4px);
}
.hero-cta-card .icon { font-size: 1.75rem; margin-bottom: 0.35rem; }
.hero-cta-card .label { font-size: 0.78rem; font-weight: 600; color: var(--text-muted); }
.hero-cta-card:hover .label { color: var(--white); }

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 1rem;
  animation: fadeUp 0.8s ease 0.4s both;
}
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  animation: fadeUp 0.8s ease 0.5s both;
}
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--orange);
  line-height: 1;
}
.hero-stat .lbl { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.25rem; }

/* 3D Car Animation */
.hero-car-3d {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: min(520px, 45vw);
  z-index: 2;
  pointer-events: none;
  animation: carFloat 6s ease-in-out infinite;
}
@keyframes carFloat {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(calc(-50% - 16px)) translateX(-8px); }
}
.car-3d-svg { width: 100%; filter: drop-shadow(0 30px 60px rgba(243,112,55,0.3)); }
.car-wheel { animation: wheelSpin 3s linear infinite; transform-origin: center; }
@keyframes wheelSpin { to { transform: rotate(360deg); } }
.exhaust-particle {
  animation: exhaust 1.5s ease-out infinite;
}
@keyframes exhaust {
  0% { opacity: 0.6; transform: translateX(0) scale(1); }
  100% { opacity: 0; transform: translateX(-40px) scale(2); }
}

/* Quick Quote Bar */
.quick-quote-bar {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem;
  margin-top: 2rem;
  animation: fadeUp 0.8s ease 0.45s both;
}
.quick-quote-bar select, .quick-quote-bar input {
  flex: 1; min-width: 120px;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9rem;
}
.quick-quote-bar select:focus, .quick-quote-bar input:focus {
  outline: none; border-color: var(--orange);
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--bg-card);
  border-y: 1px solid var(--border);
  padding: 1.25rem 0;
}
.trust-bar-inner {
  display: flex; flex-wrap: wrap;
  justify-content: center; align-items: center;
  gap: 2rem;
}
.trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; font-weight: 600;
  color: var(--text-muted);
}
.trust-item .check { color: var(--orange); }

/* ===== CARDS GRID ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient-fire);
  transform: scaleX(0);
  transition: transform 0.35s;
}
.card:hover { transform: translateY(-6px); border-color: rgba(243,112,55,0.3); box-shadow: var(--shadow-glow); }
.card:hover::before { transform: scaleX(1); }
.card-icon {
  width: 56px; height: 56px;
  background: rgba(243,112,55,0.12);
  border-radius: 14px;
  display: grid; place-items: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; }
.card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.25rem; }
.card-link {
  color: var(--orange);
  font-weight: 600; font-size: 0.85rem;
  display: inline-flex; align-items: center; gap: 0.35rem;
}
.card-link:hover { gap: 0.6rem; }

/* ===== HOW IT WORKS ===== */
.steps-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  counter-reset: step;
}
.step-card {
  text-align: center;
  position: relative;
  padding: 2rem 1.5rem;
}
.step-num {
  width: 64px; height: 64px;
  background: var(--gradient-fire);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin: 0 auto 1.25rem;
  box-shadow: var(--shadow-glow);
}
.step-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.step-card p { color: var(--text-muted); font-size: 0.9rem; }

/* ===== CONDITIONS ===== */
.condition-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.condition-card img, .condition-card .cond-bg {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.condition-card:hover img, .condition-card:hover .cond-bg { transform: scale(1.08); }
.condition-card .cond-bg {
  background: linear-gradient(135deg, var(--bg-elevated), var(--charcoal));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.condition-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
}
.condition-overlay h3 { font-size: 1rem; font-weight: 700; }
.condition-overlay span { font-size: 0.75rem; color: var(--orange); font-weight: 600; }

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.testimonial-stars { color: var(--gold); margin-bottom: 1rem; font-size: 0.9rem; }
.testimonial-text { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gradient-fire);
  display: grid; place-items: center;
  font-weight: 700; font-size: 0.85rem;
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; }
.testimonial-role { font-size: 0.75rem; color: var(--text-muted); }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%; background: none; border: none;
  color: var(--white);
  text-align: left;
  padding: 1.25rem 0;
  font-size: 1rem; font-weight: 600;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-family: inherit;
}
.faq-question::after { content: '+'; font-size: 1.25rem; color: var(--orange); transition: transform 0.3s; }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 1.25rem; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: calc(var(--header-h) + 4rem) 0 3rem;
  background:
    linear-gradient(180deg, rgba(243,112,55,0.08) 0%, transparent 100%),
    var(--bg-dark);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; right: -10%; top: 0; bottom: 0; width: 50%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 100'%3E%3Cpath d='M20 70 L40 50 L160 50 L180 70 Z' fill='%23f37037' opacity='0.06'/%3E%3Ccircle cx='50' cy='72' r='12' fill='%23f37037' opacity='0.08'/%3E%3Ccircle cx='150' cy='72' r='12' fill='%23f37037' opacity='0.08'/%3E%3C/svg%3E") center/contain no-repeat;
  opacity: 0.5;
  pointer-events: none;
}
.breadcrumb {
  font-size: 0.8rem; color: var(--text-muted);
  margin-bottom: 1rem;
}
.breadcrumb a:hover { color: var(--orange); }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}
.page-hero p { color: var(--text-muted); max-width: 600px; font-size: 1.05rem; }

/* ===== WIZARD ===== */
.wizard-wrap {
  max-width: 720px; margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.wizard-progress {
  display: flex;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}
.wizard-step-indicator {
  flex: 1; padding: 1rem;
  text-align: center;
  font-size: 0.75rem; font-weight: 600;
  color: var(--text-muted);
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.wizard-step-indicator.active { color: var(--orange); border-color: var(--orange); }
.wizard-step-indicator.done { color: #22c55e; border-color: #22c55e; }
.wizard-body { padding: 2rem; }
.wizard-panel { display: none; }
.wizard-panel.active { display: block; animation: fadeUp 0.4s ease; }
.wizard-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.75rem;
  margin: 1.5rem 0;
}
.wizard-option {
  background: var(--bg-dark);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 0.75rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s;
  font-size: 0.85rem; font-weight: 600;
}
.wizard-option:hover { border-color: rgba(243,112,55,0.5); }
.wizard-option.selected {
  border-color: var(--orange);
  background: rgba(243,112,55,0.1);
  color: var(--orange);
}
.wizard-option .opt-icon { font-size: 1.5rem; display: block; margin-bottom: 0.35rem; }
.wizard-nav {
  display: flex; justify-content: space-between;
  margin-top: 2rem; padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 0.85rem 1rem;
  border-radius: 8px;
  font-family: inherit; font-size: 0.9rem;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--orange);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.offer-result {
  text-align: center; padding: 2rem;
}
.offer-amount {
  font-family: var(--font-display);
  font-size: 4rem;
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.offer-note { color: var(--text-muted); font-size: 0.85rem; margin-top: 0.5rem; }

/* ===== CALCULATOR ===== */
.calc-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 600px;
}
.calc-result {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: rgba(243,112,55,0.1);
  border: 1px solid rgba(243,112,55,0.3);
  border-radius: var(--radius);
  text-align: center;
}
.calc-result .val {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--orange);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--gradient-fire);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='none' stroke='rgba(255,255,255,0.08)'/%3E%3C/svg%3E");
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  position: relative;
  margin-bottom: 0.75rem;
}
.cta-banner p { position: relative; opacity: 0.9; margin-bottom: 1.5rem; }
.cta-banner .btn { position: relative; background: var(--white); color: var(--orange); }
.cta-banner .btn:hover { background: var(--bg-dark); color: var(--white); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 4rem 0 0;
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; margin: 1rem 0; max-width: 280px; }
.footer-col h4 {
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 0.3rem 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-contact-item {
  display: flex; gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}
.footer-contact-item .ico { color: var(--orange); flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  display: flex; flex-wrap: wrap;
  justify-content: space-between; align-items: center;
  gap: 1rem;
  font-size: 0.8rem; color: var(--text-muted);
}
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--orange); }

/* ===== STICKY MOBILE CTA ===== */
.sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  padding: 0.75rem 1rem;
  gap: 0.5rem;
}
.sticky-cta .btn { flex: 1; padding: 0.75rem; font-size: 0.8rem; }

/* ===== BLOG ===== */
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
}
.blog-card:hover { transform: translateY(-4px); border-color: rgba(243,112,55,0.3); }
.blog-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--bg-elevated), var(--charcoal));
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
}
.blog-card-body { padding: 1.5rem; }
.blog-card-date { font-size: 0.75rem; color: var(--orange); font-weight: 600; margin-bottom: 0.5rem; }
.blog-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.blog-card p { font-size: 0.85rem; color: var(--text-muted); }

/* ===== LOCATION MAP PLACEHOLDER ===== */
.map-placeholder {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  height: 300px;
  display: grid; place-items: center;
  color: var(--text-muted);
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed; inset: 0; z-index: 1001;
  background: rgba(10,10,12,0.98);
  padding: calc(var(--header-h) + 1rem) 1.5rem 2rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  display: block;
  padding: 0.85rem 0;
  font-size: 1rem; font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.mobile-nav .btn { width: 100%; margin-top: 1rem; }

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.highlight-box {
  background: rgba(243,112,55,0.08);
  border-left: 4px solid var(--orange);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
}
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }

/* Moving road animation */
.road-animation {
  height: 4px;
  background: repeating-linear-gradient(90deg, var(--orange) 0, var(--orange) 30px, transparent 30px, transparent 60px);
  animation: roadMove 1s linear infinite;
  margin: 2rem 0;
}
@keyframes roadMove { to { background-position: 60px 0; } }

/* Tow truck loader */
.tow-loader {
  display: inline-block;
  animation: towDrive 4s ease-in-out infinite;
}
@keyframes towDrive {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(20px); }
}

@media (max-width: 900px) {
  .nav-desktop, .header-actions .btn-outline { display: none; }
  .mobile-toggle { display: block; }
  .mobile-nav, .sticky-cta { display: flex; }
  .hero-car-3d { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-2, .split-section, .form-row { grid-template-columns: 1fr; }
  body { padding-bottom: 70px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Inline form messages */
.form-note {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  line-height: 1.5;
}
.form-note-ok {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #22c55e;
}
.form-note-err {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #ef4444;
}
.form-note a { color: inherit; text-decoration: underline; }
.btn[disabled] { opacity: 0.6; cursor: not-allowed; }
