/* ───────── DUMP IT EXPRESS · Logo-Tailored Design System ───────── */
/* Palette pulled directly from the logo:
   - Black background        #0A0A0A
   - Truck green              #5BB540
   - Sky teal                 #3FB6E0
   - Sun gold/orange          #F5A623
*/
:root {
  --ink: #0A0A0A;             /* logo black — primary dark surface */
  --steel: #161616;           /* near-black surface */
  --graphite: #2A2A2A;
  --muted: #6B7280;
  --muted-soft: #9CA3AF;
  --line: #E5E7EB;
  --line-soft: #F3F4F6;
  --surface: #FAFAF7;         /* warm off-white */
  --surface-2: #F1F4EE;       /* subtle green-tinted alt bg */
  --white: #FFFFFF;
  --brand: #5BB540;           /* logo truck green */
  --brand-bright: #7DCB52;    /* lighter green hover */
  --brand-dark: #3F8C2D;      /* deeper green active */
  --brand-soft: rgba(91,181,64,0.10);
  --brand-glow: rgba(91,181,64,0.28);
  --accent-warm: #F5A623;     /* logo sun gold */
  --accent-warm-soft: rgba(245,166,35,0.14);
  --accent-sky: #3FB6E0;      /* logo sky teal */
  --accent-sky-soft: rgba(63,182,224,0.14);
  --success: #5BB540;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 28px; }

/* ───────── Announce bar ───────── */
.announce {
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  padding: 9px 0;
  font-size: 12px;
  letter-spacing: 0.3px;
}
.announce-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; flex-wrap: wrap;
}
.announce a {
  display: inline-flex; align-items: center; gap: 7px;
  transition: color 0.2s;
  font-weight: 500;
}
.announce a:hover { color: #fff; }
.announce svg { width: 13px; height: 13px; color: var(--brand-bright); }
.announce-left { display: flex; gap: 22px; flex-wrap: wrap; }
.announce-right {
  color: var(--brand-bright);
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-size: 11px;
}

/* ───────── Brand mark — actual logo image on black puck ───────── */
.brand-mark {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.brand-logo {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  background: var(--ink);
  border-radius: 12px;
  flex-shrink: 0;
  padding: 5px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
  transition: transform 0.2s, box-shadow 0.2s;
}
.brand-logo img { width: 100%; height: 100%; object-fit: contain; display: block; }
.brand-mark:hover .brand-logo { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(0,0,0,0.25); }
.brand-mark-text { display: flex; flex-direction: column; gap: 2px; }
.brand-mark-name { font-size: 17px; font-weight: 800; letter-spacing: -0.02em; line-height: 1; color: var(--ink); }
.brand-mark-tag { font-size: 9.5px; font-weight: 700; letter-spacing: 2.2px; text-transform: uppercase; color: var(--brand-dark); line-height: 1; }
.footer .brand-mark-name { color: #fff; }
.footer .brand-mark-tag { color: var(--brand-bright); }

/* ───────── Nav ───────── */
.nav-wrap {
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  position: sticky; top: 0; z-index: 80;
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 18px; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-link {
  color: var(--graphite);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--brand); }
.nav-right { display: flex; gap: 14px; align-items: center; }
.nav-phone {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  display: inline-flex; align-items: center; gap: 8px;
  transition: color 0.2s;
}
.nav-phone:hover { color: var(--brand); }
.nav-phone svg { width: 16px; height: 16px; color: var(--brand); }

/* ───────── Buttons ───────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
  padding: 13px 24px;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.22s ease;
  white-space: nowrap;
}
.btn-brand {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 6px 18px var(--brand-glow);
}
.btn-brand:hover {
  background: var(--brand-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px var(--brand-glow);
}
.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover {
  background: var(--steel);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15,23,42,0.18);
}
.btn-ghost-light {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.22);
}
.btn-ghost-light:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
  transform: translateY(-2px);
}
.btn-ghost-dark {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost-dark:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  transform: translateY(-2px);
}
.btn-lg { padding: 16px 30px; font-size: 15px; }
.btn-xl { padding: 18px 36px; font-size: 16px; }

/* ───────── Burger / Drawer ───────── */
.burger {
  display: none;
  background: 0; border: 0;
  width: 44px; height: 44px;
  color: var(--ink);
  cursor: pointer;
}
.burger svg { width: 24px; height: 24px; }
.drawer {
  position: fixed; inset: 0;
  z-index: 200;
  background: var(--white);
  padding: 88px 28px 36px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex; flex-direction: column; gap: 4px;
  border-left: 4px solid var(--brand);
}
.drawer.open { transform: translateX(0); }
.drawer a {
  color: var(--ink);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.02em;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.drawer a:hover { color: var(--brand); }
.drawer-close {
  position: absolute; top: 18px; right: 18px;
  background: 0; border: 0;
  width: 44px; height: 44px;
  color: var(--ink);
  font-size: 26px;
  cursor: pointer;
}
.drawer-phone { color: var(--brand) !important; }
.drawer-cta { margin-top: 22px; }

/* ───────── Section base ───────── */
.sec { padding: 110px 0; position: relative; }
.sec-white { background: var(--white); }
.sec-surface { background: var(--surface); }
.sec-surface-2 { background: var(--surface-2); }
.sec-dark { background: var(--ink); color: #fff; }
.sec-dark h1, .sec-dark h2, .sec-dark h3 { color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--brand);
}

.h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  color: var(--ink);
}
.h2 em { font-style: normal; color: var(--brand); }
.sec-dark .h2 em { color: var(--brand-bright); }

.sec-head { max-width: 720px; margin-bottom: 56px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }
.sec-head p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  margin-top: 8px;
}
.sec-dark .sec-head p { color: rgba(255,255,255,0.72); }

/* ───────── Page hero (sub-pages) ───────── */
.page-hero {
  background: var(--ink);
  color: #fff;
  padding: 96px 0 76px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 540px; height: 540px;
  background: radial-gradient(circle, var(--brand-glow) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 800px; }
.breadcrumb {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
  font-weight: 600;
}
.breadcrumb a { color: var(--brand-bright); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { margin: 0 10px; color: rgba(255,255,255,0.25); }
.page-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--brand-bright);
  margin-bottom: 22px;
}
.page-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--brand-bright); }
.page-hero h1 {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.0;
  color: #fff;
}
.page-hero h1 em { font-style: normal; color: var(--brand-bright); }
.page-hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  margin-top: 22px;
  max-width: 620px;
}

/* ───────── Sticky mobile CTA ───────── */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  display: none;
  gap: 0;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 32px rgba(15,23,42,0.08);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.mobile-sticky-cta.show { transform: translateY(0); }
.mcta-btn {
  flex: 1;
  padding: 16px 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
}
.mcta-btn svg { width: 16px; height: 16px; }
.mcta-call { background: var(--ink); color: #fff; }
.mcta-quote { background: var(--brand); color: #fff; }
.mcta-call svg, .mcta-quote svg { color: #fff; }

/* ───────── Footer ───────── */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 28px;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 44px;
  margin-bottom: 44px;
}
.footer-brand-mark .brand-mark-name { color: #fff; }
.footer-about {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 340px;
  margin-top: 16px;
}
.footer-heading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--brand-bright);
  margin-bottom: 18px;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--brand-bright); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 16px;
}
.footer-contact-item svg {
  width: 17px; height: 17px;
  color: var(--brand-bright);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-item .l {
  font-size: 10.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-weight: 700;
  margin-bottom: 3px;
}
.footer-contact-item .v {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  line-height: 1.45;
}
.footer-contact-item a:hover { color: var(--brand-bright); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 22px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.42);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

/* ───────── Form ───────── */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 24px 48px rgba(15,23,42,0.06);
  position: relative;
}
.form-card h2 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
  color: var(--ink);
}
.form-card > p {
  font-size: 14.5px;
  color: var(--muted);
  margin-bottom: 26px;
  line-height: 1.65;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-group { display: flex; flex-direction: column; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--graphite);
  font-weight: 700;
  margin-bottom: 6px;
}
.form-group .req { color: var(--brand); }
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 13px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--ink);
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: 0;
  background: #fff;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-soft);
}
.form-textarea { resize: vertical; min-height: 110px; line-height: 1.55; }
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted-soft); }
.form-note {
  font-size: 12.5px;
  color: var(--graphite);
  background: var(--brand-soft);
  border-left: 2px solid var(--brand);
  padding: 10px 14px;
  line-height: 1.55;
  margin-bottom: 14px;
  border-radius: 6px;
}
.form-submit {
  width: 100%;
  padding: 16px 26px;
  background: var(--brand);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 22px var(--brand-glow);
}
.form-submit:hover { background: var(--brand-bright); transform: translateY(-2px); box-shadow: 0 12px 32px var(--brand-glow); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-success {
  display: none;
  padding: 26px 28px;
  background: rgba(16,185,129,0.08);
  border: 1px solid var(--success);
  color: var(--ink);
  border-radius: 12px;
}
.form-success.show { display: block; }
.form-success h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
  color: var(--success);
}
.form-success p { font-size: 14.5px; line-height: 1.6; color: var(--graphite); }

/* ───────── Reveal ───────── */
.reveal { opacity: 0; transform: translateY(20px); transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.show { opacity: 1; transform: translateY(0); }

/* ═════════════════ RESPONSIVE ═════════════════ */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .sec { padding: 80px 0; }
}
@media (max-width: 840px) {
  .container { padding: 0 18px; }
  .nav-links { display: none; }
  .nav-right .nav-phone { display: none; }
  .burger { display: inline-flex; align-items: center; justify-content: center; }
  .brand-mark-tag { display: none; }
  .brand-mark-name { font-size: 15px; }
  .brand-logo { width: 44px; height: 44px; border-radius: 10px; padding: 4px; }
  .announce { padding: 9px 0; font-size: 11px; }
  .announce-left { gap: 14px; }
  .announce a { font-size: 11px; }
  .announce-right { font-size: 10px; letter-spacing: 1.5px; }

  .sec { padding: 56px 0; }
  .sec-head { margin-bottom: 32px; }
  .h2 { font-size: 30px; }

  .page-hero { padding: 56px 0 44px; }
  .page-hero h1 { font-size: 38px; line-height: 1.0; }
  .page-hero-sub { font-size: 14.5px; margin-top: 16px; }
  .page-eyebrow { font-size: 10px; letter-spacing: 2.5px; margin-bottom: 14px; }
  .page-eyebrow::before { width: 22px; }
  .breadcrumb { font-size: 10px; letter-spacing: 1.8px; margin-bottom: 12px; }

  .form-card { padding: 26px 22px; border-radius: 12px; }
  .form-card h2 { font-size: 22px; }
  .form-card > p { font-size: 13.5px; margin-bottom: 18px; }
  .form-row { grid-template-columns: 1fr; gap: 10px; margin-bottom: 10px; }
  .form-input, .form-select, .form-textarea { padding: 12px; font-size: 14px; }
  .form-submit { padding: 14px 22px; font-size: 14px; }

  .footer { padding: 56px 0 18px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 28px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { font-size: 11px; flex-direction: column; gap: 6px; text-align: center; }

  .btn { padding: 11px 20px; font-size: 13px; }
  .btn-lg { padding: 14px 26px; font-size: 14px; }
  .btn-xl { padding: 16px 30px; font-size: 14.5px; }

  .mobile-sticky-cta { display: flex; }
  body { padding-bottom: 60px; }
}
@media (max-width: 480px) {
  .h2 { font-size: 26px; }
  .footer-grid { grid-template-columns: 1fr; }
}
