/* D2 Dumps — shared site styles */

:root {
  --blue: #1F5CA6;
  --blue-dark: #123A6B;
  --blue-light: #EAF1FB;
  --black: #191919;
  --gray: #5B5F66;
  --gray-bg: #F5F7FA;
  --white: #FFFFFF;
  --border: #E1E5EB;
  --radius: 10px;
  --shadow: 0 2px 10px rgba(18, 58, 107, 0.08);
  --maxw: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

a { color: var(--blue); }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--blue);
  color: #fff;
  padding: 10px 16px;
  z-index: 999;
}
.skip-link:focus { left: 10px; top: 10px; }

/* Top utility bar */
.topbar {
  background: var(--black);
  color: #fff;
  font-size: 14px;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 6px;
  padding-bottom: 6px;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a { color: #fff; text-decoration: none; }
.topbar a:hover { text-decoration: underline; }
.topbar .hours { color: #cfd6de; }

/* Header */
header.site-header {
  border-bottom: 1px solid var(--border);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}
header.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 16px;
}
.logo-link { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-link img { height: 56px; width: auto; }

nav.primary-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
nav.primary-nav a {
  color: var(--black);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}
nav.primary-nav a:hover,
nav.primary-nav a[aria-current="page"] { color: var(--blue); }

.call-now-btn {
  background: var(--blue);
  color: #fff !important;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: var(--shadow);
}
.call-now-btn:hover { background: var(--blue-dark); }

.call-now-alt {
  color: var(--blue);
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
}
.call-now-alt:hover { text-decoration: underline; }

.btn-call-alt {
  display: inline-block;
  color: var(--gray);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  align-self: center;
}
.btn-call-alt:hover { text-decoration: underline; }

.cta-alt { margin: 12px 0 0; }
.cta-banner .btn-call-alt { color: #cfe0f5; }
.cta-banner .btn-call-alt:hover { color: #fff; }

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--black);
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 20px;
  cursor: pointer;
}

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--blue-light) 0%, #fff 100%);
  padding: 56px 0 48px;
}
.hero .hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero h1 {
  font-size: 38px;
  line-height: 1.15;
  margin: 0 0 16px;
  color: var(--black);
}
.hero h1 span { color: var(--blue); }
.hero p.lead {
  font-size: 18px;
  color: var(--gray);
  margin: 0 0 26px;
  max-width: 46ch;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 16px;
  border: 2px solid transparent;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); }
.btn-outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue-light); }
.hero-photo img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: 340px;
  object-fit: cover;
}

/* Sections */
section { padding: 56px 0; }
section.alt { background: var(--gray-bg); }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 40px; }
.section-head .eyebrow {
  color: var(--blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 13px;
}
.section-head h2 { font-size: 30px; margin: 8px 0 10px; }
.section-head p { color: var(--gray); margin: 0; }

/* Dumpster size cards */
.size-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.size-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  padding: 26px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.size-card h3 { margin: 0 0 4px; font-size: 22px; }
.size-card .tagline { color: var(--gray); font-size: 14px; margin-bottom: 18px; }
.size-card .price-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid var(--border);
  font-size: 15px;
}
.size-card .price-row:first-of-type { border-top: none; }
.size-card .price-row .term { color: var(--gray); }
.size-card .price-row .price { font-weight: 700; }
.size-card .btn { margin-top: 18px; text-align: center; }

/* Pricing tables (catalog page) */
table.pricing {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 36px;
}
table.pricing caption {
  text-align: left;
  font-weight: 700;
  font-size: 18px;
  padding: 14px 18px;
  background: var(--blue);
  color: #fff;
  caption-side: top;
}
table.pricing th, table.pricing td {
  padding: 12px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
table.pricing th { background: var(--gray-bg); font-weight: 700; }
table.pricing tr:last-child td { border-bottom: none; }

.fee-note {
  background: var(--blue-light);
  border-left: 4px solid var(--blue);
  padding: 16px 20px;
  border-radius: 6px;
  margin: 24px 0;
  font-size: 15px;
}
.fee-note strong { color: var(--blue-dark); }

/* Two column feature list */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-card {
  padding: 22px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  scroll-margin-top: 90px;
}
.feature-card h3 { margin: 0 0 8px; font-size: 17px; }
.feature-card p { margin: 0; color: var(--gray); font-size: 14.5px; }

/* We take / don't take lists */
.take-lists { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.take-list { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.take-list h3 { margin-top: 0; }
.take-list.no h3 { color: #B3261E; }
.take-list.yes h3 { color: var(--blue); }
.take-list ul { margin: 0; padding-left: 20px; }
.take-list li { margin-bottom: 6px; }

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.testimonial p.quote { font-style: italic; color: var(--black); margin: 0 0 14px; }
.testimonial p.author { margin: 0; font-weight: 700; color: var(--blue); font-size: 14px; }

/* CTA banner */
.cta-banner {
  background: var(--blue-dark);
  color: #fff;
  text-align: center;
  padding: 48px 0;
}
.cta-banner h2 { margin: 0 0 10px; font-size: 28px; }
.cta-banner p { margin: 0 0 22px; color: #cfe0f5; }
.cta-banner .btn-primary { background: #fff; color: var(--blue-dark); }
.cta-banner .btn-primary:hover { background: var(--gray-bg); }

/* Contact / forms */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.contact-card dt { font-weight: 700; margin-top: 16px; }
.contact-card dt:first-child { margin-top: 0; }
.contact-card dd { margin: 2px 0 0; color: var(--gray); }
.contact-card a { text-decoration: none; }
.contact-card a:hover { text-decoration: underline; }

form.simple-form { display: flex; flex-direction: column; gap: 14px; }
form.simple-form label { font-weight: 600; font-size: 14px; }
form.simple-form input, form.simple-form textarea, form.simple-form select {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
}
form.simple-form button { margin-top: 6px; }

/* Terms / policy page */
.policy-block { max-width: 820px; margin: 0 auto; }
.policy-block h2 { color: var(--blue-dark); margin-top: 42px; }
.policy-block h2:first-child { margin-top: 0; }
.policy-block blockquote {
  background: var(--blue-light);
  border-left: 4px solid var(--blue);
  margin: 18px 0;
  padding: 16px 20px;
  border-radius: 6px;
  font-style: italic;
}
.policy-block table { width: 100%; border-collapse: collapse; margin: 18px 0; }
.policy-block th, .policy-block td { border: 1px solid var(--border); padding: 10px 14px; text-align: left; }
.policy-block th { background: var(--gray-bg); }

/* Breadcrumb */
.breadcrumb {
  font-size: 13px;
  color: var(--gray);
  padding: 14px 0;
}
.breadcrumb a { color: var(--gray); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span[aria-current] { color: var(--black); font-weight: 600; }

/* Map placeholder */
.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  max-width: 560px;
  margin: 0 auto;
  aspect-ratio: 1 / 1.08;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Footer */
footer.site-footer {
  background: var(--black);
  color: #cfd3d8;
  padding: 48px 0 24px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-grid h4 { color: #fff; margin: 0 0 14px; font-size: 15px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a { color: #cfd3d8; text-decoration: none; font-size: 14.5px; }
.footer-grid a:hover { color: #fff; text-decoration: underline; }
.footer-logo img { height: 48px; margin-bottom: 12px; filter: brightness(0) invert(1); }
.footer-bottom {
  border-top: 1px solid #33363b;
  padding-top: 20px;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  color: #9aa0a8;
}
.footer-bottom a { color: #9aa0a8; }

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .hero .hero-grid { grid-template-columns: 1fr; }
  .hero-photo { order: -1; }
  .size-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .take-lists { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  nav.primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 20px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    gap: 16px;
    display: none;
  }
  nav.primary-nav.open { display: flex; }
  .nav-toggle { display: inline-flex; align-items: center; }
  header.site-header .wrap { position: relative; flex-wrap: wrap; }
  .header-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
  .call-now-btn { padding: 10px 16px; font-size: 14px; }
  .call-now-alt { font-size: 12px; }
  .hero h1 { font-size: 30px; }
  .hero-photo img { height: 220px; }
}

@media (min-width: 761px) {
  .header-actions { display: flex; align-items: center; gap: 18px; }
}
