/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #16a34a;
  --primary-dark: #15803d;
  --dark: #111827;
  --gray: #6b7280;
  --light: #f9fafb;
  --white: #ffffff;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  line-height: 1.6;
  background: var(--white);
}

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

/* ===== PROMO BAR ===== */
.promo-bar {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.9rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  transition: all 0.2s;
  text-align: center;
}
.btn-sm { padding: 8px 16px; font-size: 0.9rem; }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: white; border: 2px solid white; }
.btn-outline:hover { background: white; color: var(--dark); }
.btn-ghost { background: rgba(255,255,255,0.1); color: white; border: 1px solid rgba(255,255,255,0.3); }
.btn-ghost:hover { background: rgba(255,255,255,0.2); }
.btn-ghost-light { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.4); display: block; }
.btn-ghost-light:hover { background: rgba(255,255,255,0.1); }

/* ===== NAV ===== */
.nav {
  background: var(--white);
  border-bottom: 1px solid #e5e7eb;
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo { font-size: 1.15rem; color: var(--dark); }
.nav-actions { display: flex; gap: 10px; align-items: center; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #14532d 0%, #052e16 100%);
  color: white;
  padding: 80px 0 60px;
  text-align: center;
}
.badge {
  display: inline-block;
  background: rgba(34,197,94,0.2);
  color: #4ade80;
  border: 1px solid rgba(34,197,94,0.4);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}
.subtitle {
  font-size: 1.1rem;
  color: #86efac;
  max-width: 600px;
  margin: 0 auto 32px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.trust-bar {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: #86efac;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
}
.trust-bar span { font-weight: 500; }

/* ===== QUOTE WAYS ===== */
.quote-ways { padding: 64px 0; background: var(--light); }
.quote-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
}
.quote-card.highlight {
  border-color: var(--primary);
  position: relative;
}
.quote-card.highlight::before {
  content: "Most Popular";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 2px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
}
.quote-card .icon { font-size: 2.5rem; margin-bottom: 16px; }
.quote-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.quote-card p { color: var(--gray); font-size: 0.95rem; }

/* ===== PRICING ===== */
.pricing { padding: 72px 0; }
.pricing-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.pricing-text p { color: var(--gray); margin-bottom: 16px; font-size: 1rem; }
.pricing-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.pricing-list li { font-size: 0.95rem; }
.truck-card {
  background: var(--dark);
  color: white;
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
}
.truck-icon { font-size: 3rem; margin-bottom: 12px; }
.truck-card h3 { color: #9ca3af; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.truck-stat { font-size: 3rem; font-weight: 800; color: var(--primary); line-height: 1; }
.truck-stat span { font-size: 1rem; font-weight: 400; color: #9ca3af; }
.truck-card > p { color: #9ca3af; font-size: 0.9rem; margin: 12px 0 24px; }
.truck-prices { display: flex; flex-direction: column; gap: 10px; }
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #1f2937;
  font-size: 0.95rem;
  color: #d1d5db;
}
.price { font-weight: 700; color: #4ade80; }

/* ===== SECTIONS ===== */
section { padding: 72px 0; }
h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: 12px; text-align: center; }
.section-sub { color: var(--gray); text-align: center; margin-bottom: 48px; font-size: 1rem; }

/* ===== SERVICES ===== */
.services { background: var(--light); }
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.2s;
}
.card:hover { transform: translateY(-4px); }
.icon { font-size: 2.2rem; margin-bottom: 14px; }
.card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.card p { color: var(--gray); font-size: 0.9rem; }

/* ===== HOW IT WORKS ===== */
.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.step {
  background: var(--light);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  max-width: 260px;
  flex: 1;
  min-width: 200px;
}
.step-num {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { color: var(--gray); font-size: 0.9rem; }
.step-arrow { font-size: 2rem; color: var(--gray); flex-shrink: 0; }

/* ===== SERVICE AREAS ===== */
.areas { background: var(--light); }
.area-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 16px;
}
.area-grid span {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* ===== REVIEWS ===== */
.review-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 24px;
}
.rating-badge {
  background: var(--dark);
  color: white;
  border-radius: var(--radius);
  padding: 20px 28px;
  text-align: center;
  flex-shrink: 0;
}
.big-stars { font-size: 1.4rem; margin-bottom: 4px; }
.big-rating { font-size: 2rem; font-weight: 800; color: #fbbf24; }
.review-count { font-size: 0.8rem; color: #9ca3af; margin-top: 4px; }
.review-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 28px;
  border-left: 4px solid var(--primary);
}
.stars { font-size: 1rem; margin-bottom: 12px; }
.review-card p { color: #374151; font-style: italic; margin-bottom: 12px; font-size: 0.95rem; }
.review-card strong { font-size: 0.9rem; color: var(--gray); }

/* ===== CONTACT ===== */
.contact { background: var(--dark); color: white; }
.contact h2 { color: white; text-align: left; }
.discount-badge {
  display: inline-block;
  background: rgba(34,197,94,0.2);
  color: #4ade80;
  border: 1px solid rgba(34,197,94,0.4);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-text p { color: #94a3b8; margin-bottom: 24px; }
.contact-list { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.contact-list li { color: #cbd5e1; font-size: 0.9rem; }
.contact-form { display: flex; flex-direction: column; gap: 12px; }
.form-badge {
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.3);
  color: #4ade80;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 13px 16px;
  border-radius: 8px;
  border: 1px solid #374151;
  background: #1f2937;
  color: white;
  font-family: inherit;
  font-size: 0.95rem;
  width: 100%;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #6b7280; }
.contact-form select { color: #6b7280; }
.contact-form select option { color: white; background: #1f2937; }
.form-note { color: #6b7280; font-size: 0.8rem; text-align: center; margin-top: 4px; }

/* ===== FOOTER ===== */
.footer {
  background: #0f172a;
  color: #6b7280;
  padding: 32px 0;
  text-align: center;
  font-size: 0.88rem;
}
.footer p + p { margin-top: 6px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact h2 { text-align: center; }
  .pricing-inner { grid-template-columns: 1fr; }
  .step-arrow { transform: rotate(90deg); }
  .hero-cta { flex-direction: column; align-items: center; }
  .nav-actions .btn-ghost { display: none; }
  .review-header { flex-direction: column; }
}
