/* ==========================================================================
   Lepke Auto Transport — Main Stylesheet
   Extracted from index.html + new shared components (nav, footer, page-hero)
   ========================================================================== */

/* --- CSS Variables --- */
:root {
  --primary-red: #e63946;
  --dark-blue: #1d3557;
  --light-grey: #f8f9fa;
  --navy: #000080;
  --text-main: #333;
}

/* --- Base --- */
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: var(--text-main);
}

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

a { color: inherit; text-decoration: none; }

/* ==========================================================================
   HEADER
   ========================================================================== */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5%;
  box-sizing: border-box;
}

.logo {
  font-weight: bold;
  font-size: 24px;
  color: var(--dark-blue);
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo img {
  max-height: 75px;
  width: auto;
}

/* --- Navigation Links --- */
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark-blue);
  text-decoration: none;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-red);
  border-bottom-color: var(--primary-red);
}

/* --- Services Mega Dropdown --- */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-trigger {
  cursor: pointer;
}

.nav-dropdown-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15), 0 2px 8px rgba(0,0,0,0.08);
  padding: 28px 32px;
  min-width: 620px;
  z-index: 2000;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 12px;
}

.nav-dropdown-panel::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 3px;
  transform: translateX(-50%) rotate(45deg);
  box-shadow: -2px -2px 4px rgba(0,0,0,0.04);
}

.nav-dropdown:hover .nav-dropdown-panel {
  display: grid;
}

.nav-dropdown-col h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #999;
  margin: 0 0 12px 0;
  padding-bottom: 8px;
  border-bottom: 1px solid #f0f0f0;
}

.nav-dropdown-col a {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-blue);
  padding: 6px 0;
  border-bottom: none !important;
  transition: color 0.15s;
}

.nav-dropdown-col a:hover {
  color: var(--primary-red);
  border-bottom: none !important;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.phone-num {
  font-weight: bold;
  color: var(--dark-blue);
  text-decoration: none;
  white-space: nowrap;
}

.quote-btn-header {
  background-color: var(--primary-red);
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  display: none; /* shown on scroll via JS; always visible on mobile */
  white-space: nowrap;
  transition: background 0.2s;
}

.quote-btn-header:hover {
  background-color: #c62d3a;
}

/* --- Hamburger Menu --- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1100;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--dark-blue);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* --- Mobile Nav Overlay --- */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0; right: 0;
  width: 280px;
  height: 100%;
  background: #fff;
  z-index: 1050;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px rgba(0,0,0,0.15);
  flex-direction: column;
  gap: 0;
}

.mobile-nav a {
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: var(--dark-blue);
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
  text-decoration: none;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--primary-red);
}

.mobile-nav .mobile-phone {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-red);
}

.mobile-nav .mobile-quote-btn {
  display: block;
  margin-top: 16px;
  background: var(--primary-red);
  color: #fff;
  padding: 14px;
  border-radius: 6px;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
}

/* ==========================================================================
   HERO (Home Page)
   ========================================================================== */
.hero {
  margin-top: 70px;
  background: linear-gradient(90deg, rgba(0,0,0,0.60) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.20) 100%),
    url('hero.jpg') no-repeat center center / cover;
  min-height: 520px;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 4% 20px 7%;
  color: #fff;
  gap: 48px;
  position: relative;
  box-sizing: border-box;
}

.hero-text {
  max-width: 440px;
  flex: 1;
  z-index: 10;
}

.hero-text h1 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 40px;
  font-weight: 800;
  margin: 0 0 12px 0;
  line-height: 1.15;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

.hero-text p {
  font-size: 15px;
  line-height: 1.5;
  margin: 0 0 10px 0;
  opacity: 0.95;
}

/* ==========================================================================
   PAGE HERO (Inner Pages)
   ========================================================================== */
.page-hero {
  margin-top: 70px;
  position: relative;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(29,53,87,0.85) 0%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}

.page-hero h1,
.page-hero p {
  position: relative;
  z-index: 2;
  margin: 0;
}

.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.page-hero p {
  font-size: 1.1rem;
  margin-top: 8px;
  opacity: 0.9;
}

/* ==========================================================================
   INLINE QUOTE FUNNEL
   ========================================================================== */
.step-funnel {
  width: 370px;
  max-width: 370px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.28), 0 2px 8px rgba(0,0,0,0.12);
  overflow: hidden;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  box-sizing: border-box;
}

.progress-bar {
  height: 4px;
  background: #e9ecef;
  width: 100%;
}

.progress-fill {
  height: 100%;
  background: #e63946;
  width: 0%;
  transition: width 0.3s ease;
}

.funnel-header {
  padding: 14px 20px;
  background: #1d3557;
  border-bottom: none;
}

.funnel-header h2 {
  margin: 0;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.funnel-header p {
  margin: 5px 0 0 0;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
}

.funnel-content {
  padding: 16px 22px 8px;
  flex: 1;
  overflow-y: auto;
  max-height: 380px;
}

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

.step label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
  color: #333;
  font-size: 14px;
}

.step input {
  width: 100%;
  max-width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
  font-size: 14px;
}

.funnel-content * { max-width: 100%; box-sizing: border-box; }

.step-buttons {
  padding: 8px 18px 12px;
  background: #fff;
  border-top: 1px solid #e9ecef;
  display: flex;
  gap: 10px;
}

.btn-secondary {
  flex: 1;
  background: #f0f0f0;
  color: #555;
  padding: 13px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s;
}
.btn-secondary:hover { background: #e0e0e0; }

.btn-primary {
  flex: 1;
  background-color: #e63946;
  color: #fff;
  padding: 13px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.1s;
  box-shadow: 0 2px 8px rgba(230,57,70,0.35);
}
.btn-primary:hover { background-color: #c62d3a; transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

/* --- Quote Funnel Section variant (inner pages) --- */
.quote-funnel-section {
  padding: 60px 5%;
  background: var(--light-grey);
  text-align: center;
}

.quote-funnel-section h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 30px 0;
}

.quote-funnel-section .step-funnel {
  width: 480px;
  max-width: 480px;
  margin: 0 auto;
}

.quote-funnel-section .funnel-content {
  max-height: none;
}

/* --- Quote Funnel Inline variant (sidebar / embed) --- */
.quote-funnel-inline {
  width: 100%;
  max-width: 360px;
}

.quote-funnel-inline .step-funnel {
  width: 100%;
  max-width: 100%;
}

/* ==========================================================================
   TRUST BAR
   ========================================================================== */
.trust-bar {
  background: #fff;
  border-bottom: 1px solid #e9ecef;
  min-height: 150px;
  margin-top: 0;
  display: flex;
  align-items: stretch;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: 16px 0;
}

.trust-bar-inner {
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.trust-card-slim {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 28px;
  border-right: 1px solid #f0f0f0;
  overflow: auto;
}

.trust-card-slim:last-child { border-right: none; }

.trust-card-slim .mini-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 6px;
}

.trust-card-slim .mini-stars i {
  color: #FFD700;
  font-size: 14px;
}

.trust-card-slim .mini-quote {
  font-size: 15px;
  color: #444;
  font-style: italic;
  line-height: 1.55;
  margin: 0 0 8px 0;
}

.trust-card-slim .mini-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-card-slim .mini-name {
  font-size: 12px;
  font-weight: 700;
  color: #1d3557;
}

.trust-card-slim .mini-verified {
  font-size: 11px;
  color: #28a745;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 3px;
}

/* ==========================================================================
   SOCIAL PROOF / REVIEWS
   ========================================================================== */
.social-proof {
  background: #f8f9fa;
  padding: 80px 5%;
  position: relative;
  overflow: hidden;
}

.social-proof::before {
  content: '';
  position: absolute;
  top: -120px; left: -120px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(29,53,87,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.social-proof::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(245,130,32,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.social-proof-header {
  text-align: center;
  margin-bottom: 52px;
  position: relative; z-index: 1;
}

.social-proof-header h2 {
  font-family: 'Inter', sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: #1d3557;
  margin: 0 0 10px 0;
  letter-spacing: -0.4px;
}

.social-proof-header p {
  color: #6c757d;
  font-size: 16px;
  margin: 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative; z-index: 1;
}

.review-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 16px;
  padding: 28px 28px 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07), 0 1px 4px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 44px rgba(0,0,0,0.11), 0 2px 8px rgba(0,0,0,0.05);
}

.review-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review-stars { display: flex; gap: 3px; }
.review-stars i { color: #FFD700; font-size: 15px; text-shadow: 0 1px 2px rgba(0,0,0,0.1); }

.source-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #888;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.source-badge .fa-google { color: #4285F4; font-size: 15px; }

.review-quote {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  font-style: italic;
  margin: 0;
  flex: 1;
}

.review-quote::before { content: '\201C'; color: #1d3557; font-size: 22px; line-height: 0; vertical-align: -5px; margin-right: 2px; font-style: normal; font-weight: 700; }
.review-quote::after  { content: '\201D'; color: #1d3557; font-size: 22px; line-height: 0; vertical-align: -5px; margin-left:  2px; font-style: normal; font-weight: 700; }

.review-footer { display: flex; flex-direction: column; gap: 5px; border-top: 1px solid #f0f0f0; padding-top: 14px; }

.reviewer-name {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #1d3557;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #28a745;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.verified-badge i { font-size: 11px; }

/* ==========================================================================
   TRUST STRIP / SERVICE CARDS (Why Ship with Lepke)
   ========================================================================== */
.trust-strip {
  background: var(--light-grey);
  padding: 40px 10%;
  text-align: center;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 50px 20px;
}

.service-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 15px;
  text-align: left;
  max-width: 350px;
  margin: 0 auto;
  width: 100%;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.service-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.service-card i {
  font-size: 2rem;
  color: #000080;
  margin-bottom: 14px;
  display: block;
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1d3557;
  margin: 0 0 10px 0;
}

.service-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   STEPS CONTAINER (3 Easy Steps)
   ========================================================================== */
.steps-container {
  display: flex;
  justify-content: space-around;
  padding: 50px 10%;
}

.step-item { text-align: center; max-width: 250px; }
.step-item i { font-size: 40px; color: var(--primary-red); margin-bottom: 15px; }

/* ==========================================================================
   COST SECTION
   ========================================================================== */
.cost-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.cost-box {
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 25px 20px;
  text-align: center;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.cost-box:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.09);
  transform: translateY(-3px);
}

.cost-box i {
  font-size: 2rem;
  color: var(--primary-red);
  display: block;
  margin-bottom: 12px;
}

.cost-box h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #000080;
  margin: 0 0 8px 0;
}

.cost-box p {
  font-size: 0.875rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: #fff;
  border: none;
  padding: 18px 22px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: #1d3557;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s ease;
  font-family: 'Inter', sans-serif;
}

.faq-question:hover {
  background: #f5f7fa;
}

.faq-question.open {
  background: #f0f4ff;
  color: #000080;
  border-bottom: 1px solid #e0e0e0;
}

.faq-icon {
  font-size: 0.85rem;
  color: #e63946;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-question.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 16px 22px;
  background: #fafafa;
}

.faq-answer p {
  margin: 0;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.7;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--dark-blue);
  color: #fff;
  padding: 60px 5% 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 40px;
}

.footer-col h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 16px 0;
  color: #fff;
}

.footer-col p,
.footer-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
}

.footer-col a {
  display: block;
  padding: 4px 0;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #fff;
}

.footer-col .footer-logo {
  max-height: 65px;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-col .footer-phone {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-red);
  display: block;
  margin-top: 10px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 16px;
  transition: background 0.2s;
}

.footer-social a:hover {
  background: var(--primary-red);
}

.footer-badges {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
}

.footer-badges img {
  height: 40px;
  opacity: 0.85;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  text-align: center;
  padding: 20px 5%;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.footer-bottom span {
  margin: 0 8px;
}

/* ==========================================================================
   RESPONSIVE — MOBILE
   ========================================================================== */
@media (max-width: 768px) {
  /* Header */
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .quote-btn-header {
    display: block !important;
    padding: 9px 14px;
    font-size: 13px;
  }

  .phone-num span { display: none; }

  /* Hero */
  .hero {
    flex-direction: column;
    height: auto;
    max-height: none;
    padding: 30px 5%;
    gap: 20px;
    text-align: center;
    justify-content: center;
  }

  .hero-text {
    padding-bottom: 0 !important;
    max-width: 100%;
  }

  .step-funnel {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Page Hero */
  .page-hero {
    height: 160px;
  }

  .page-hero h1 {
    font-size: 1.8rem;
  }

  /* Trust Bar */
  .trust-bar {
    height: auto;
    flex-direction: column;
  }

  .trust-bar-inner {
    flex-direction: column;
  }

  .trust-card-slim {
    padding: 16px 20px;
    border-right: none;
    border-bottom: 1px solid #f0f0f0;
  }

  .trust-card-slim:last-child { border-bottom: none; }

  /* Grids */
  .grid-container { grid-template-columns: 1fr !important; }
  .reviews-grid { grid-template-columns: 1fr; max-width: 480px; }
  .cost-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* Steps */
  .steps-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 30px 5%;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Quote section variant */
  .quote-funnel-section .step-funnel {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .cost-grid { grid-template-columns: 1fr !important; }
}

/* ==========================================================================
   VEHICLE TYPE BUTTONS (Funnel Step 2)
   ========================================================================== */
.vehicle-type-btn {
  flex: 1;
  min-width: 60px;
  padding: 8px;
  border: 2px solid #ccc;
  background: #fff;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  color: #333;
  font-size: 12px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.vehicle-type-btn.selected,
.vehicle-type-btn:active {
  background: #e63946;
  border-color: #e63946;
  color: #fff;
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */
.text-center { text-align: center; }
.section-padding { padding: 60px 10%; }
