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

:root {
  --blue: #1338BE;
  --navy: #0d1b4a;
  --light-blue: #e8eeff;
  --white: #ffffff;
  --gray: #f4f6fa;
  --text: #1a1a2e;
  --muted: #6b7280;
}

html { scroll-behavior: smooth; }

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

/* ── NAV ── */
nav {
  background: var(--navy);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.nav-logo { height: 156px; width: auto; }
.nav-phone {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.5px;
}
.nav-phone:hover { color: #7ea8f0; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a2f6e 60%, #1338BE 100%);
  color: var(--white);
  padding: 0 24px 80px;
  text-align: center;
}
.hero-logo { display: none; }
/* ── REVIEW BADGE ── */
.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 10px 20px;
  margin-top: 24px;
  backdrop-filter: blur(4px);
}
.stars { color: #FBBF24; font-size: 1.15rem; letter-spacing: 2px; }
.review-text { font-size: 0.88rem; color: rgba(255,255,255,0.9); font-weight: 600; }
.review-text strong { color: #fff; font-size: 1rem; font-weight: 900; }

.hero-truck-wrap {
  position: relative;
  margin-bottom: 40px;
}

.hero-truck-wrap img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}
.hero-logo { height: 140px; width: auto; margin-bottom: 32px; }
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero p {
  font-size: 1.2rem;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto 40px;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--white);
  color: var(--blue);
  font-weight: 800;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn-outline {
  border: 2px solid rgba(255,255,255,0.7);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }

/* ── FEATURED SERVICE — DUMP TRAILER ── */
.dump-trailer {
  background: var(--white);
  padding: 80px 24px;
}
.section-inner { max-width: 1080px; margin: 0 auto; }
.section-label {
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--blue);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}
.dt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}
@media (max-width: 768px) { .dt-grid { grid-template-columns: 1fr; gap: 40px; } }

.hook-box {
  background: var(--navy);
  color: var(--white);
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
}
.hook-price {
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.hook-tagline {
  font-size: 1.5rem;
  font-weight: 800;
  color: #7ea8f0;
  margin-bottom: 24px;
  line-height: 1.3;
}
.hook-sub {
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 32px;
}
.hook-cta {
  background: var(--blue);
  color: var(--white);
  font-weight: 800;
  font-size: 1.05rem;
  padding: 16px 36px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.15s;
}
.hook-cta:hover { opacity: 0.88; }

.dt-details h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
}
.dt-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.dt-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: var(--text);
}
.dt-list li::before {
  content: "✓";
  color: var(--blue);
  font-weight: 900;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.dt-note {
  margin-top: 24px;
  padding: 14px 18px;
  background: var(--gray);
  border-left: 4px solid var(--blue);
  border-radius: 4px;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── DUMPSTER RENTAL ── */
.dumpster-rental {
  background: var(--gray);
  padding: 80px 24px;
}
.rental-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.size-box {
  background: var(--navy);
  border-radius: 16px;
  padding: 40px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.size-box .size-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: #7ea8f0;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.size-box .box-price {
  font-size: 3.6rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.size-box .box-tonnage {
  font-size: 0.9rem;
  color: #7ea8f0;
  font-weight: 700;
  margin-bottom: 12px;
}
.size-box .box-tagline {
  font-size: 1.05rem;
  font-weight: 800;
  color: #7ea8f0;
  margin-bottom: 10px;
  line-height: 1.3;
}
.size-box .box-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 28px;
  line-height: 1.5;
}
.size-box .box-cta {
  background: var(--blue);
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  width: 100%;
  display: block;
  transition: opacity 0.15s;
}
.size-box .box-cta:hover { opacity: 0.88; }
.coming-soon-badge {
  display: inline-block;
  background: #fef9c3;
  color: #854d0e;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ── HOW IT WORKS ── */
.how-it-works { padding: 80px 24px; background: var(--white); }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; margin-top: 48px; }
.step { text-align: center; }
.step-num {
  width: 56px; height: 56px;
  background: var(--blue);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step h4 { font-size: 1.05rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.step p { font-size: 0.9rem; color: var(--muted); }

/* ── SERVICE AREA ── */
.service-area { background: var(--navy); color: var(--white); padding: 80px 24px; }
.service-area .section-title { color: var(--white); }
.county-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 48px; }
.county-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 28px 24px;
}
.county-card h4 { font-size: 1.1rem; font-weight: 800; color: #7ea8f0; margin-bottom: 12px; }
.county-card ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.county-card ul li { font-size: 0.9rem; opacity: 0.8; }
.county-card ul li::before { content: "→ "; color: #7ea8f0; }

/* ── BOOKING FORM ── */
.booking-section {
  background: var(--white);
  padding: 80px 24px;
  border-top: 4px solid var(--blue);
}
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 48px;
}
@media (max-width: 768px) { .booking-grid { grid-template-columns: 1fr; gap: 40px; } }
.booking-form {
  background: var(--gray);
  border-radius: 16px;
  padding: 40px 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.82rem; font-weight: 700; color: var(--navy); letter-spacing: 0.5px; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.15s;
  font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
}
.form-submit {
  background: var(--blue);
  color: var(--white);
  font-weight: 800;
  font-size: 1.05rem;
  padding: 16px;
  border: none;
  border-radius: 8px;
  width: 100%;
  cursor: pointer;
  transition: opacity 0.15s;
  margin-top: 8px;
}
.form-submit:hover { opacity: 0.88; }
.booking-info h3 { font-size: 1.4rem; font-weight: 900; color: var(--navy); margin-bottom: 20px; }
.booking-info ul { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.booking-info ul li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem; color: var(--text); }
.booking-info ul li::before { content: "✓"; color: var(--blue); font-weight: 900; font-size: 1.1rem; flex-shrink: 0; }
.phone-backup {
  padding: 20px 24px;
  background: var(--light-blue);
  border-radius: 10px;
}
.phone-backup p { font-size: 0.88rem; color: var(--navy); margin-bottom: 8px; }
.phone-backup a { font-size: 1.2rem; font-weight: 900; color: var(--blue); text-decoration: none; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--blue);
  color: var(--white);
  padding: 64px 24px;
  text-align: center;
}
.cta-band h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 900; margin-bottom: 12px; }
.cta-band p { font-size: 1.1rem; opacity: 0.88; margin-bottom: 32px; }
.cta-band .btn-primary { font-size: 1.1rem; padding: 18px 40px; }

/* ── FOOTER ── */
footer {
  background: #06101f;
  color: rgba(255,255,255,0.6);
  padding: 40px 24px;
  text-align: center;
  font-size: 0.85rem;
}
footer .footer-logo { height: 48px; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: 0.7; }
footer p { margin-bottom: 6px; }
footer a { color: rgba(255,255,255,0.5); text-decoration: none; }
footer a:hover { color: var(--white); }
