/* ============================================
   AutosMover — Modern 2026 Theme
   ============================================ */

:root {
  --primary: #1e3a5f;
  --accent: #e63946;
  --accent-glow: rgba(230,57,70,.15);
  --blue: #457b9d;
  --light-blue: #a8dadc;
  --cream: #f8f9fa;
  --dark: #1d3557;
  --text: #2b2d42;
  --text-light: #6c757d;
  --white: #ffffff;
  --glass: rgba(255,255,255,.7);
  --glass-border: rgba(255,255,255,.3);
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.1);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-full: 50px;
  --transition: .35s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* Override Elementor width constraints */
body.wp-theme-autosmover-modern,
body.wp-theme-autosmover-modern .site,
body.wp-theme-autosmover-modern .page,
body.wp-theme-autosmover-modern #page,
body.wp-theme-autosmover-modern #content,
body.wp-theme-autosmover-modern .entry-content,
body.wp-theme-autosmover-modern .site-main,
body.wp-theme-autosmover-modern .elementor-page {
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px; line-height: 1.6; color: var(--text);
  background: var(--cream); overflow-x: hidden; -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--radius-full);
  font-weight: 600; font-size: 15px; border: none; cursor: pointer;
  transition: all var(--transition); position: relative; overflow: hidden;
}
.btn-primary { background: var(--accent); color: var(--white); box-shadow: 0 4px 20px rgba(230,57,70,.3); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(230,57,70,.4); }
.btn-outline { background: transparent; color: var(--dark); border: 2px solid rgba(0,0,0,.12); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-white { background: var(--white); color: var(--dark); box-shadow: var(--shadow-sm); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-sm { padding: 10px 22px; font-size: 13px; }
.btn-lg { padding: 16px 40px; font-size: 16px; }

/* ===== TOP BAR ===== */
.top-bar { background: var(--dark); padding: 8px 0; font-size: 13px; color: rgba(255,255,255,.7); }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-bar a { color: rgba(255,255,255,.8); transition: color var(--transition); }
.top-bar a:hover { color: var(--white); }
.top-links { display: flex; gap: 20px; }
.top-social { display: flex; gap: 14px; }

/* ===== NAVBAR ===== */
.navbar {
  background: var(--glass); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,.06); position: sticky; top: 0; z-index: 100;
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,.08); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-img { height: 48px !important; width: auto !important; max-width: 220px !important; filter: brightness(0); display: block; }
.footer-logo-img { height: 42px !important; width: auto !important; max-width: 200px !important; display: block; }
.logo-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #c1121f);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 18px;
}
.logo-text { font-size: 22px; font-weight: 800; color: var(--dark); letter-spacing: -.5px; }
.logo-text span { color: var(--accent); }

.nav-links { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav-links li { list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-light);
  transition: color var(--transition); position: relative; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--dark); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--accent); border-radius: 1px; transition: width var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-phone { font-size: 14px; font-weight: 600; color: var(--dark); }
.nav-phone i { color: var(--accent); margin-right: 6px; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); margin: 5px 0; border-radius: 2px; transition: var(--transition); }

/* ===== HERO ===== */
.hero {
  position: relative; padding: 80px 0;
  background: var(--dark);
  overflow: hidden;
}
.hero-bg-img {
  position: absolute; top: 0; right: 0; width: 55%; height: 100%;
  background: url('https://autosmover.com/wp-content/uploads/2025/12/USE-97-car-hauling-scaled.jpg') center/cover no-repeat;
  z-index: 0;
}
.hero-bg-img::before {
  content: ''; position: absolute; top: 0; left: -1px; width: 100%; height: 100%;
  background: linear-gradient(to right, var(--dark) 0%, rgba(29,53,87,.7) 40%, rgba(29,53,87,.3) 100%);
  z-index: 1;
}
.hero-bg-img::after {
  content: ''; position: absolute; top: -20%; left: 5%; width: 100px; height: 140%;
  background: var(--accent); transform: rotate(20deg); opacity: .15; z-index: 2;
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(230,57,70,.08) 0%, transparent 70%); z-index: 0;
}
.hero::after {
  content: ''; position: absolute; bottom: -150px; left: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(69,123,157,.08) 0%, transparent 70%); z-index: 0;
}
.hero .container {
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center;
  position: relative; z-index: 1;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: var(--radius-full);
  background: rgba(230,57,70,.2); color: var(--accent);
  font-size: 13px; font-weight: 600; margin-bottom: 20px;
  border: 1px solid rgba(230,57,70,.3);
}
.hero-tag i { font-size: 11px; }
.hero h1 { font-size: 52px; font-weight: 900; line-height: 1.1; color: #fff; margin-bottom: 18px; letter-spacing: -1px; }
.hero h1 span { background: linear-gradient(135deg, var(--accent), #ff6b6b); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-desc { font-size: 17px; color: rgba(255,255,255,.7); margin-bottom: 32px; line-height: 1.8; max-width: 500px; }
.hero-btns { display: flex; gap: 14px; margin-bottom: 40px; flex-wrap: wrap; }
.hero-btns .btn-outline { color: #fff; border-color: rgba(255,255,255,.3); }
.hero-btns .btn-outline:hover { border-color: #fff; }
.hero-trust { display: flex; gap: 30px; align-items: center; }
.trust-badge { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.7); }
.trust-badge i { color: var(--accent); font-size: 16px; }

/* Hero Quote Card */
.hero-card { background: var(--white); border-radius: 20px; box-shadow: var(--shadow-lg); overflow: hidden; border: 1px solid rgba(0,0,0,.04); }
.hero-card-header { background: linear-gradient(135deg, var(--dark), #0d1b2a); padding: 22px 28px; color: var(--white); }
.hero-card-header h3 { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.hero-card-header p { font-size: 13px; opacity: .7; }
.hero-card-body { padding: 24px 28px 28px; }

/* Form elements */
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; color: var(--text); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .5px; }
.form-group input, .form-group select {
  width: 100%; padding: 12px 16px; border-radius: var(--radius-sm);
  border: 1.5px solid #e2e8f0; font-size: 14px; transition: border-color var(--transition);
  background: var(--cream);
}
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--accent); background: var(--white); }
.form-group textarea { width: 100%; padding: 12px 16px; border-radius: var(--radius-sm); border: 1.5px solid #e2e8f0; font-size: 14px; min-height: 120px; resize: vertical; background: var(--cream); transition: border-color var(--transition); }
.form-group textarea:focus { outline: none; border-color: var(--accent); background: var(--white); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.zip-city {
  font-size: 12px; font-weight: 600; margin-top: 4px; min-height: 18px;
  color: #28a745; display: flex; align-items: center; gap: 5px;
}
.zip-city.error { color: var(--accent); }

/* Multi-step form */
.form-progress { display: flex; padding: 18px 28px 0; gap: 8px; }
.step-ind { flex: 1; text-align: center; }
.step-dot {
  width: 32px; height: 32px; border-radius: 50%; background: #e2e8f0; color: var(--text-light);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; margin-bottom: 4px;
  transition: all var(--transition);
}
.step-ind.active .step-dot { background: var(--accent); color: #fff; }
.step-ind.done .step-dot { background: #28a745; color: #fff; }
.step-lbl { font-size: 11px; color: var(--text-light); }
.step-ind.active .step-lbl { color: var(--accent); font-weight: 600; }

.q-step { display: none; }
.q-step.active { display: block; }

/* Mini calendar */
.cal-wrap { position: relative; }
.cal-wrap input { cursor: pointer; }
.mini-cal {
  display: none; position: absolute; bottom: 100%; left: 0; right: 0;
  background: #fff; border: 1.5px solid #e2e8f0; border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md); z-index: 50; padding: 12px; margin-bottom: 4px;
}
.mini-cal.open { display: block; }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.cal-head span { font-weight: 700; font-size: 14px; color: var(--dark); }
.cal-arr {
  background: none; border: 1px solid #e2e8f0; border-radius: 6px;
  width: 28px; height: 28px; cursor: pointer; font-size: 12px; color: var(--dark);
  display: flex; align-items: center; justify-content: center;
}
.cal-arr:hover { background: var(--cream); }
.cal-arr:disabled { opacity: .3; cursor: not-allowed; }
.cal-days { display: grid; grid-template-columns: repeat(7,1fr); text-align: center; margin-bottom: 4px; }
.cal-days span { font-size: 10px; font-weight: 700; color: var(--text-light); text-transform: uppercase; }
.cal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; }
.cal-d {
  border: none; border-radius: 6px; background: none; padding: 6px 0;
  font-size: 13px; font-weight: 500; cursor: pointer; color: var(--dark);
  transition: all .2s;
}
.cal-d:hover:not(.off):not(.sel) { background: rgba(230,57,70,.1); color: var(--accent); }
.cal-d.off { color: #ccc; cursor: not-allowed; text-decoration: line-through; }
.cal-d.sel { background: var(--accent); color: #fff; font-weight: 700; }
.cal-d.emp { cursor: default; }

.form-radio { display: flex; gap: 16px; margin-top: 6px; }
.form-radio label { font-size: 13px; font-weight: 400; text-transform: none; letter-spacing: 0; display: flex; align-items: center; gap: 6px; cursor: pointer; }
.form-radio input { width: auto; accent-color: var(--accent); }

/* ===== TRUST STRIP ===== */
.trust-strip { padding: 40px 0; background: var(--white); border-bottom: 1px solid #eee; }
.trust-strip .container { display: flex; justify-content: center; align-items: center; gap: 50px; flex-wrap: wrap; }
.trust-logo { text-align: center; }
.trust-bbb { display: flex; align-items: center; gap: 12px; text-align: left; }
.trust-bbb svg { flex-shrink: 0; }
.trust-bbb .rating { font-size: 26px; }
.trust-logo .platform svg { display: inline-block; flex-shrink: 0; }
.trust-logo .rating { font-size: 22px; font-weight: 800; color: var(--dark); }
.trust-logo .stars { color: #f59e0b; font-size: 14px; letter-spacing: 2px; margin: 4px 0; }
.trust-logo .platform { font-size: 12px; color: var(--text-light); font-weight: 600; }
.trust-logo .count { font-size: 11px; color: #aaa; }

/* ===== SECTION HEADERS ===== */
.section-top { text-align: center; margin-bottom: 50px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px; border-radius: var(--radius-full);
  background: var(--accent-glow); color: var(--accent);
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 14px;
}
.section-top h2 { font-size: 36px; font-weight: 800; color: var(--dark); margin-bottom: 12px; letter-spacing: -.5px; }
.section-top p { font-size: 16px; color: var(--text-light); max-width: 550px; margin: 0 auto; }

/* ===== SERVICE CARDS ===== */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card { background: var(--cream); border-radius: var(--radius); overflow: hidden; border: 1px solid #eee; transition: all var(--transition); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card .card-img { height: 160px; overflow: hidden; position: relative; }
.service-card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.service-card:hover .card-img img { transform: scale(1.08); }
.service-card .card-img .card-badge { position: absolute; top: 12px; left: 12px; padding: 4px 12px; border-radius: var(--radius-full); background: var(--white); font-size: 11px; font-weight: 600; color: var(--dark); box-shadow: var(--shadow-sm); }
.service-card .card-body { padding: 18px; }
.service-card .card-body h3 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.service-card .card-body p { font-size: 13px; color: var(--text-light); line-height: 1.5; margin-bottom: 10px; }
.service-card .card-body a { font-size: 13px; font-weight: 600; color: var(--accent); display: inline-flex; align-items: center; gap: 4px; transition: gap var(--transition); }
.service-card .card-body a:hover { gap: 8px; }

/* ===== PILLARS / WHY SECTION ===== */
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pillar { background: var(--white); border-radius: var(--radius); padding: 32px 28px; border: 1px solid #eee; transition: all var(--transition); position: relative; overflow: hidden; }
.pillar::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--accent), var(--blue)); transform: scaleX(0); transform-origin: left; transition: transform var(--transition); }
.pillar:hover::before { transform: scaleX(1); }
.pillar:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.pillar-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, var(--accent-glow), rgba(69,123,157,.1));
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--accent); margin-bottom: 18px;
  transition: all .4s cubic-bezier(.4,0,.2,1);
}
.pillar:hover .pillar-icon {
  transform: scale(1.15) rotate(-5deg);
  background: linear-gradient(135deg, var(--accent), #c1121f);
  color: #fff;
  box-shadow: 0 8px 25px rgba(230,57,70,.3);
}
/* Pillar animations handled by .animate-on-scroll class */
.pillar h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.pillar p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ===== PROCESS STEPS ===== */
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 40px; left: 15%; right: 15%; height: 2px; background: linear-gradient(90deg, var(--accent), var(--blue), var(--light-blue)); z-index: 0; border-radius: 1px; }
.step { text-align: center; position: relative; z-index: 1; }
.step-num { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), #c1121f); color: var(--white); font-size: 24px; font-weight: 800; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 18px; box-shadow: 0 6px 24px rgba(230,57,70,.3); border: 4px solid var(--white); }
.step h4 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--text-light); max-width: 280px; margin: 0 auto; }

/* 4-step process */
.process-steps.four-steps { grid-template-columns: repeat(4, 1fr); }

/* ===== PRICING / ROUTES TABLE ===== */
.pricing-dark { background: linear-gradient(160deg, var(--dark), #0d1b2a); color: var(--white); padding: 90px 0; }
.pricing-dark .section-top h2 { color: var(--white); }
.pricing-dark .section-top p { color: rgba(255,255,255,.6); }
.pricing-dark .section-tag { background: rgba(230,57,70,.2); }

.routes-table { width: 100%; border-collapse: separate; border-spacing: 0; border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 30px rgba(0,0,0,.2); }
.routes-table thead { background: rgba(255,255,255,.08); }
.routes-table th { padding: 16px 20px; text-align: left; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.6); }
.routes-table td { padding: 14px 20px; font-size: 14px; border-bottom: 1px solid rgba(255,255,255,.06); color: rgba(255,255,255,.8); }
.routes-table tbody tr { transition: background var(--transition); }
.routes-table tbody tr:hover { background: rgba(255,255,255,.04); }
.routes-table .price { color: var(--accent); font-weight: 700; }

/* Light table variant */
.table-light { box-shadow: var(--shadow-md); }
.table-light thead { background: var(--dark); }
.table-light th { color: rgba(255,255,255,.8); }
.table-light td { color: var(--text); border-bottom: 1px solid #eee; }
.table-light tbody tr:nth-child(even) { background: var(--cream); }
.table-light tbody tr:hover { background: #e8ecf3; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial { background: var(--white); border-radius: var(--radius); padding: 28px; border: 1px solid #eee; transition: all var(--transition); }
.testimonial:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testimonial .stars { color: #f59e0b; font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial p { font-size: 14px; color: var(--text-light); line-height: 1.7; font-style: italic; margin-bottom: 18px; }
.testimonial-footer { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--light-blue)); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 15px; }
.testimonial-name { font-size: 14px; font-weight: 600; color: var(--dark); }
.testimonial-platform { font-size: 12px; color: var(--text-light); }

/* ===== SCROLL-IN ANIMATIONS ===== */
/* Use a safe approach - visible by default, animate only if JS loaded */
.animate-on-scroll {
  opacity: 0; transform: translateY(25px);
  transition: all .6s cubic-bezier(.4,0,.2,1);
}
.animate-on-scroll.visible {
  opacity: 1; transform: translateY(0);
}
.animate-on-scroll:nth-child(2) { transition-delay: .1s; }
.animate-on-scroll:nth-child(3) { transition-delay: .2s; }
.animate-on-scroll:nth-child(4) { transition-delay: .3s; }
.animate-on-scroll:nth-child(5) { transition-delay: .4s; }
.animate-on-scroll:nth-child(6) { transition-delay: .5s; }

/* Step number pulse on hover */
.step:hover .step-num {
  transform: scale(1.15);
  box-shadow: 0 8px 30px rgba(230,57,70,.4);
}
.step-num { transition: all .4s cubic-bezier(.4,0,.2,1); }

/* ===== STEP POPUP MODAL ===== */
.step-click:hover .step-num { transform: scale(1.15); box-shadow: 0 8px 30px rgba(230,57,70,.5); }

.step-modal-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 9999;
  background: rgba(0,0,0,.6); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  animation: modalFadeIn .3s ease;
}
@keyframes modalFadeIn { from { opacity: 0; } to { opacity: 1; } }

.step-modal {
  background: #fff; border-radius: 20px; padding: 40px 36px; max-width: 420px; width: 90%;
  text-align: center; position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,.3);
  animation: modalSlideUp .35s cubic-bezier(.4,0,.2,1);
}
@keyframes modalSlideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.step-modal-close {
  position: absolute; top: 14px; right: 18px; background: none; border: none;
  font-size: 28px; color: #999; cursor: pointer; line-height: 1;
  transition: color .2s;
}
.step-modal-close:hover { color: #e63946; }

.step-modal-icon {
  width: 70px; height: 70px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(230,57,70,.12), rgba(69,123,157,.08));
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 30px; color: #e63946; margin-bottom: 16px;
}
.step-modal-num {
  font-size: 13px; font-weight: 700; color: #e63946;
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px;
}
.step-modal-title {
  font-size: 24px; font-weight: 800; color: #1d3557; margin-bottom: 12px;
}
.step-modal-desc {
  font-size: 15px; color: #6c757d; line-height: 1.8;
}

/* ===== PROGRESS BAR ANIMATION ===== */
.p-circle {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 2px solid rgba(255,255,255,.15);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px; color: rgba(255,255,255,.3);
  transition: all .5s cubic-bezier(.4,0,.2,1);
}
.p-circle.lit {
  background: var(--accent); border-color: var(--accent);
  color: #fff; box-shadow: 0 0 20px rgba(230,57,70,.5);
  transform: scale(1.15);
}
.progress-truck { left: 2%; }

@keyframes progressFill {
  0% { width: 0%; }
  8% { width: 0%; }
  18% { width: 18%; }
  28% { width: 18%; }
  36% { width: 36%; }
  44% { width: 36%; }
  52% { width: 55%; }
  60% { width: 55%; }
  68% { width: 73%; }
  76% { width: 73%; }
  84% { width: 92%; }
  92% { width: 92%; }
  100% { width: 0%; }
}

@keyframes truckRide {
  0% { left: 2%; }
  8% { left: 2%; }
  18% { left: 18%; }
  28% { left: 18%; }
  36% { left: 36%; }
  44% { left: 36%; }
  52% { left: 55%; }
  60% { left: 55%; }
  68% { left: 73%; }
  76% { left: 73%; }
  84% { left: 88%; }
  92% { left: 88%; }
  100% { left: 2%; }
}

@media (max-width: 768px) {
  .p-circle { width: 36px; height: 36px; font-size: 13px; }
  .progress-truck i { font-size: 22px !important; }
}

/* ===== TRUCK ANIMATION ===== */
.truck-animation {
  position: relative;
  height: 120px;
  margin: 10px 0 50px;
  overflow: hidden;
}

/* Road */
.road {
  position: absolute;
  bottom: 28px;
  left: 0; right: 0;
  height: 6px;
  background: #dde1e7;
  border-radius: 3px;
}
.road-line {
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 2px;
  background: repeating-linear-gradient(90deg, #b0b8c4 0px, #b0b8c4 20px, transparent 20px, transparent 40px);
  transform: translateY(-50%);
}

/* Pickup car (left side, fades out when truck arrives) */
.anim-car {
  position: absolute;
  bottom: 34px;
  font-size: 28px;
  color: var(--blue);
}
.pickup-car {
  left: 8%;
  animation: carPickup 8s ease-in-out infinite;
}
.delivery-car {
  right: 8%;
  animation: carDeliver 8s ease-in-out infinite;
}

/* Truck */
.anim-truck {
  position: absolute;
  bottom: 24px;
  left: -15%;
  display: flex;
  align-items: flex-end;
  animation: truckDrive 8s ease-in-out infinite;
}
.truck-body {
  display: flex;
  align-items: flex-end;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.15));
}

/* Labels */
.anim-labels {
  position: absolute;
  bottom: 4px;
  left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 6%;
}
.anim-labels span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 4px;
}
.anim-labels span i {
  color: var(--accent);
  font-size: 14px;
}

/* Animations */
@keyframes truckDrive {
  0% { left: -15%; }
  15% { left: 5%; }       /* arrive at pickup */
  30% { left: 5%; }       /* loading pause */
  35% { left: 5%; }
  90% { left: 85%; }      /* arrive at delivery */
  95% { left: 85%; }      /* unloading pause */
  100% { left: 105%; }    /* drive off */
}

@keyframes carPickup {
  0% { opacity: 1; transform: scale(1); }
  15% { opacity: 1; transform: scale(1); }
  30% { opacity: 0; transform: scale(.8) translateY(-5px); }
  100% { opacity: 0; }
}

@keyframes carLoad {
  0% { opacity: 0; }
  30% { opacity: 0; }
  35% { opacity: 1; }     /* car loaded onto truck */
  85% { opacity: 1; }
  90% { opacity: 0; }     /* car unloaded */
  100% { opacity: 0; }
}

@keyframes carDeliver {
  0% { opacity: 0; transform: scale(.8) translateY(-5px); }
  85% { opacity: 0; transform: scale(.8) translateY(-5px); }
  95% { opacity: 1; transform: scale(1) translateY(0); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

@media (max-width: 768px) {
  .truck-animation { height: 100px; margin: 10px 0 30px; }
  .truck-body svg { width: 100px; height: 32px; }
  .anim-car { font-size: 22px; }
  .anim-labels { padding: 0 4%; }
}

/* ===== TESTIMONIAL SLIDER ===== */
.testimonial-slider {
  position: relative; overflow: hidden;
}
.slider-viewport { overflow: hidden; }
.slider-track {
  display: flex; gap: 20px;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.testimonial-slider .testimonial {
  flex: 0 0 calc(33.333% - 14px);
  background: var(--white); border-radius: var(--radius);
  padding: 28px; border: 1px solid #eee;
  transition: all var(--transition);
}
.testimonial-slider .testimonial:hover {
  box-shadow: var(--shadow-md); transform: translateY(-4px);
}
.testimonial-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
}
.testimonial-header .stars { color: #f59e0b; font-size: 14px; letter-spacing: 2px; }
.platform-logo { height: 20px; width: auto; object-fit: contain; }
.platform-badge {
  font-size: 11px; font-weight: 700; padding: 4px 10px;
  border-radius: var(--radius-full); display: inline-flex; align-items: center; gap: 4px;
}
.bbb-badge { background: #003b73; color: #fff; }
.shiply-badge { background: #2fb770; color: #fff; }
.uship-badge { background: #ff6600; color: #fff; }
.yelp-badge { background: #d32323; color: #fff; }

.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); border: 1px solid #eee;
  color: var(--dark); font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.slider-btn:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }
.slider-prev { left: -8px; }
.slider-next { right: -8px; }

@media (max-width: 1024px) {
  .testimonial-slider .testimonial { flex: 0 0 calc(50% - 10px); }
}
@media (max-width: 768px) {
  .testimonial-slider .testimonial { flex: 0 0 100%; }
  .slider-prev { left: 4px; }
  .slider-next { right: 4px; }
}

/* ===== FAQ ===== */
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item { border: 1px solid #eee; border-radius: var(--radius-sm); margin-bottom: 10px; overflow: hidden; transition: border-color var(--transition); }
.faq-item:hover { border-color: #ddd; }
.faq-q { width: 100%; padding: 18px 22px; background: none; border: none; font-size: 15px; font-weight: 600; color: var(--dark); text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background var(--transition); font-family: inherit; }
.faq-q:hover { background: var(--cream); }
.faq-q .icon { color: var(--accent); font-size: 18px; transition: transform var(--transition); }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding: 0 22px 18px; font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* ===== STATES SECTION ===== */
.states-section { padding: 60px 0; background: var(--light); }
.states-grid { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.state-link { display: inline-block; padding: 8px 16px; background: var(--white); border: 1px solid #e2e8f0; border-radius: 8px; font-size: 13px; font-weight: 500; color: var(--dark); text-decoration: none; transition: all .2s; }
.state-link:hover { background: var(--accent); color: #fff; border-color: var(--accent); transform: translateY(-1px); }

/* ===== GUIDES SECTION ===== */
.guides-section { padding: 60px 0; background: var(--white); }
.guides-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.guide-card { display: flex; flex-direction: column; justify-content: space-between; padding: 24px; background: var(--light); border-radius: 12px; text-decoration: none; transition: all .3s; border: 1px solid #e2e8f0; }
.guide-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.08); border-color: var(--accent); }
.guide-card h3 { font-size: 15px; font-weight: 600; color: var(--dark); margin-bottom: 12px; line-height: 1.5; }
.guide-link { font-size: 13px; font-weight: 600; color: var(--accent); }
.guide-link i { margin-left: 4px; transition: transform .2s; }
.guide-card:hover .guide-link i { transform: translateX(3px); }
@media (max-width: 768px) { .guides-grid { grid-template-columns: 1fr; } }

/* ===== BLOG GRID ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.blog-card { display: flex; flex-direction: column; background: var(--white); border-radius: 14px; overflow: hidden; text-decoration: none; border: 1px solid #e2e8f0; transition: all .3s; box-shadow: 0 2px 8px rgba(0,0,0,.04); }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.1); border-color: var(--accent); }
.blog-card-img { height: 180px; overflow: hidden; background: #f1f5f9; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-img-placeholder { display: flex; align-items: center; justify-content: center; }
.blog-card-img-placeholder i { font-size: 40px; color: #cbd5e1; }
.blog-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta { display: flex; gap: 16px; font-size: 12px; color: #94a3b8; margin-bottom: 10px; }
.blog-card-meta i { margin-right: 4px; }
.blog-card-title { font-size: 16px; font-weight: 700; color: var(--dark); line-height: 1.45; margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card-excerpt { font-size: 13px; color: var(--text-light); line-height: 1.6; margin-bottom: 14px; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card-link { font-size: 13px; font-weight: 600; color: var(--accent); }
.blog-card-link i { margin-left: 4px; transition: transform .2s; }
.blog-card:hover .blog-card-link i { transform: translateX(3px); }
.blog-pagination { margin-top: 40px; text-align: center; }
.blog-pagination .nav-links { display: flex; justify-content: center; gap: 8px; }
.blog-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 12px; border-radius: 8px; font-size: 14px; font-weight: 600; color: var(--dark); background: var(--white); border: 1px solid #e2e8f0; text-decoration: none; transition: all .2s; }
.blog-pagination .page-numbers:hover, .blog-pagination .page-numbers.current { background: var(--accent); color: #fff; border-color: var(--accent); }
@media (max-width: 1024px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .blog-grid { grid-template-columns: 1fr; } }

/* ===== CTA BANNER ===== */
.cta { padding: 80px 0; background: linear-gradient(135deg, var(--accent), #c1121f); text-align: center; color: var(--white); position: relative; overflow: hidden; }
.cta::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; border-radius: 50%; background: rgba(255,255,255,.06); }
.cta h2 { font-size: 38px; font-weight: 800; margin-bottom: 14px; letter-spacing: -.5px; }
.cta p { font-size: 17px; opacity: .9; margin-bottom: 30px; }
.cta .btn-outline { color: var(--white); border-color: rgba(255,255,255,.3); }
.cta .btn-outline:hover { border-color: var(--white); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 60px 0; text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--dark), #0d1b2a);
  color: var(--white);
}
.page-hero::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(230,57,70,.12) 0%, transparent 70%);
}
.page-hero h1 { font-size: 48px; font-weight: 900; margin-bottom: 14px; letter-spacing: -.5px; position: relative; z-index: 1; }
.page-hero p { font-size: 18px; opacity: .8; max-width: 650px; margin: 0 auto; position: relative; z-index: 1; line-height: 1.7; }
.breadcrumb { font-size: 15px; opacity: .7; margin-bottom: 16px; position: relative; z-index: 1; font-weight: 500; }
.breadcrumb a { color: #fff; opacity: 1; text-decoration: underline; text-underline-offset: 3px; }
.breadcrumb a:hover { text-decoration: underline; }

/* ===== CONTENT SECTIONS (inner pages) ===== */
.content-section { padding: 60px 0; }
.content-section.alt { background: linear-gradient(160deg, #f0f4f8, #e8edf2); }
.content-section h1 { font-size: 32px; color: var(--dark); margin-bottom: 16px; font-weight: 800; letter-spacing: -.5px; text-align: center; }
.content-section h2 { font-size: 26px; color: var(--dark); margin: 40px 0 14px; font-weight: 800; letter-spacing: -.5px; padding-bottom: 10px; border-bottom: 2px solid #f0f0f0; }
.content-section h3 { font-size: 20px; color: var(--dark); margin: 28px 0 10px; font-weight: 700; }
.content-section p { font-size: 15px; color: var(--text-light); line-height: 1.85; margin-bottom: 16px; }
.content-section ul, .content-section ol { margin-bottom: 20px; padding-left: 0; list-style: none; }
.content-section ul li { font-size: 15px; color: var(--text-light); padding: 8px 0 8px 28px; position: relative; line-height: 1.7; }
.content-section ul li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.content-section ol { counter-reset: ol-counter; }
.content-section ol li { font-size: 15px; color: var(--text-light); padding: 8px 0 8px 32px; position: relative; line-height: 1.7; counter-increment: ol-counter; }
.content-section ol li::before { content: counter(ol-counter); position: absolute; left: 0; background: var(--accent); color: #fff; width: 22px; height: 22px; border-radius: 50%; font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; top: 10px; }
.content-section strong { color: var(--dark); }
.content-section a { color: var(--accent); text-decoration: none; font-weight: 600; }
.content-section a:hover { text-decoration: underline; }
.content-section table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.content-section table th, .content-section table td { padding: 12px 16px; text-align: left; font-size: 14px; border-bottom: 1px solid #e2e8f0; }
.content-section table th { background: var(--light); font-weight: 700; color: var(--dark); }
.page-content > h1:first-child { display: none; }

/* Two column layout */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.two-col img { border-radius: var(--radius); box-shadow: var(--shadow-md); }

/* Stats row */
.stats-strip { background: var(--dark); padding: 50px 0; }
.stats-row { display: flex; justify-content: center; gap: 60px; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-number { font-size: 42px; font-weight: 900; color: var(--white); }
.stat-label { font-size: 13px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* Discount cards */
.discount-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.discount-card {
  display: flex; gap: 18px; padding: 28px; background: var(--white);
  border-radius: var(--radius); border: 1px solid #eee;
  border-left: 4px solid var(--accent); transition: all var(--transition);
}
.discount-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.discount-icon {
  flex-shrink: 0; width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, var(--accent-glow), rgba(69,123,157,.1));
  color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.discount-card h4 { font-size: 17px; color: var(--dark); margin-bottom: 4px; font-weight: 700; }
.discount-amount { font-size: 15px; font-weight: 700; color: var(--accent); margin-bottom: 6px; }
.discount-card p { font-size: 14px; color: var(--text-light); line-height: 1.5; margin-bottom: 0; }

/* Contact grid */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; }
.contact-info-card { padding: 24px; background: var(--cream); border-radius: var(--radius-sm); text-align: center; margin-bottom: 16px; }
.contact-info-icon { width: 50px; height: 50px; border-radius: 14px; background: linear-gradient(135deg, var(--accent), #c1121f); color: var(--white); display: inline-flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 12px; }
.contact-info-card h4 { font-size: 15px; color: var(--dark); margin-bottom: 4px; font-weight: 700; }
.contact-info-card p { font-size: 14px; color: var(--text-light); margin-bottom: 2px; }
.contact-info-card a { color: var(--dark); font-weight: 600; }
.contact-info-card a:hover { color: var(--accent); }

/* Prep tips grid */
.tips-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tip-card { padding: 22px; background: var(--white); border-radius: var(--radius-sm); border: 1px solid #eee; text-align: center; transition: all var(--transition); }
.tip-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.tip-card i {
  font-size: 24px; color: var(--accent); margin-bottom: 10px;
  display: inline-block; transition: all .4s cubic-bezier(.4,0,.2,1);
}
.tip-card:hover i {
  transform: scale(1.3) rotate(-10deg);
  color: #fff;
  background: var(--accent);
  width: 50px; height: 50px; line-height: 50px;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(230,57,70,.35);
}
.tip-card h4 { font-size: 14px; color: var(--dark); margin-bottom: 4px; font-weight: 600; }
.tip-card p { font-size: 13px; color: var(--text-light); margin-bottom: 0; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: var(--white); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer h4 { font-size: 16px; font-weight: 700; margin-bottom: 18px; }
.footer p { font-size: 14px; opacity: .65; line-height: 1.7; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14px; opacity: .65; transition: opacity var(--transition); }
.footer-links a:hover { opacity: 1; }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 12px; font-size: 14px; opacity: .7; }
.footer-contact li i { color: var(--accent); margin-top: 2px; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a { width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center; font-size: 14px; transition: background var(--transition); }
.footer-social a:hover { background: var(--accent); }
.footer-bottom { text-align: center; padding: 20px 0; font-size: 13px; opacity: .4; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin: 0 auto 32px; }
  .hero-btns { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-card { max-width: 480px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .process-steps.four-steps { grid-template-columns: repeat(2, 1fr); }
  .tips-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .nav-links { display: none !important; position: fixed; top: 72px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 20px; gap: 16px; box-shadow: var(--shadow-md); border-top: 1px solid #eee; z-index: 9999; }
  .nav-links.open { display: flex !important; }
  .hamburger { display: block; }
  .nav-phone { display: none; }
  .hero h1 { font-size: 28px; }
  .hero { padding: 40px 0; }
  .hero-bg-img { width: 100%; opacity: .15; }
  .hero-btns .btn { padding: 12px 20px; font-size: 14px; }
  .hero-trust { flex-wrap: wrap; gap: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .process-steps, .process-steps.four-steps { grid-template-columns: 1fr; gap: 40px; }
  .process-steps::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .section-top h2 { font-size: 24px; }
  .page-hero h1 { font-size: 26px !important; }
  .page-hero { padding: 40px 0 !important; }
  .form-row { grid-template-columns: 1fr; }
  .cta h2 { font-size: 24px; }
  .cta { padding: 50px 0; }
  .discount-grid { grid-template-columns: 1fr; }
  .stats-row { gap: 30px; }
  .stat-number { font-size: 32px; }
  .tips-grid { grid-template-columns: 1fr; }
  /* Trust strip - stack on mobile */
  .trust-strip .container { flex-direction: column; gap: 20px; }
  .trust-bbb { justify-content: center; }
  /* 6-step process - 2 columns on mobile */
  .process-section [style*="grid-template-columns: repeat(6"] { grid-template-columns: repeat(2, 1fr) !important; gap: 16px !important; }
  /* Pricing table - horizontal scroll */
  .routes-table { display: block; overflow-x: auto; white-space: nowrap; -webkit-overflow-scrolling: touch; }
  .routes-table th, .routes-table td { padding: 10px 14px; font-size: 13px; }
  /* States grid */
  .states-grid { gap: 6px; }
  .state-link { padding: 6px 12px; font-size: 12px; }
  /* Quote form card */
  .hero-card { margin: 20px auto 0; }
  .hero-card-header h3 { font-size: 18px; }
  /* Footer */
  .footer-social { justify-content: center; }
  /* Progress bar hide on mobile */
  .progress-road { display: none; }
}
