/* ══════════════════════════════════════════════════════════════════
   Haul Hogs Dumpsters — Shared Stylesheet
   Brand: Black #111 · Yellow #F5C100 · Red #CC2200
   ══════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800&family=Barlow:wght@300;400;500;600&display=swap');

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

:root {
  --black:      #111111;
  --black-mid:  #1a1a1a;
  --black-soft: #242424;
  --black-card: #1e1e1e;
  --yellow:     #F5C100;
  --yellow-dim: #a07e00;
  --yellow-soft:#fff8d6;
  --red:        #CC2200;
  --red-dim:    #7a1500;
  --white:      #ffffff;
  --off-white:  #f2f2f2;
  --gray:       #888888;
  --gray-light: #cccccc;
  --text:       #e8e8e8;
  --font-head:  'Barlow Condensed', Arial, sans-serif;
  --font-body:  'Barlow', Arial, sans-serif;
  --radius:     6px;
  --max-w:      1200px;
  --nav-h:      68px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-body); }

/* ── NAVIGATION ──────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(17,17,17,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 3px solid var(--yellow);
  height: var(--nav-h);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 100%;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 48px; width: auto; }
.nav-logo-text {
  font-family: var(--font-head);
  font-size: 20px; font-weight: 800; letter-spacing: 1px;
  color: var(--white); line-height: 1.1; text-transform: uppercase;
}
.nav-logo-text span { color: var(--yellow); }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-family: var(--font-head); font-size: 14px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--gray-light); padding: 8px 14px; border-radius: var(--radius);
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--yellow); background: rgba(245,193,0,.08); }
.nav-links a.active { color: var(--yellow); }
.nav-cta {
  font-family: var(--font-head); font-size: 14px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  background: var(--red); color: var(--white);
  padding: 10px 22px; border-radius: var(--radius);
  border: none; transition: background .15s, transform .1s;
}
.nav-cta:hover { background: #aa1c00; transform: translateY(-1px); }

/* ── BUTTONS ─────────────────────────────────────────────────────── */
.btn {
  display: inline-block; font-family: var(--font-head);
  font-size: 15px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 14px 32px; border-radius: var(--radius); border: none;
  cursor: pointer; transition: transform .12s, box-shadow .12s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.4); }
.btn-yellow { background: var(--yellow); color: var(--black); }
.btn-red    { background: var(--red); color: var(--white); }
.btn-outline {
  background: transparent; color: var(--yellow);
  border: 2px solid var(--yellow);
}
.btn-outline:hover { background: rgba(245,193,0,.1); }
.btn-sm { padding: 9px 20px; font-size: 13px; }

/* ── SECTION CHROME ──────────────────────────────────────────────── */
.section { padding: 80px 24px; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-tag {
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--yellow);
  border-left: 3px solid var(--red); padding-left: 10px;
  margin-bottom: 10px; display: inline-block;
}
.section-title {
  font-family: var(--font-head); font-size: 42px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px; color: var(--white);
  line-height: 1; margin-bottom: 16px;
}
.section-sub {
  font-size: 16px; color: var(--gray); max-width: 560px; line-height: 1.6;
}
.section-light  { background: var(--black-soft); }
.section-yellow { background: var(--yellow); color: var(--black); }
.section-yellow .section-title { color: var(--black); }
.section-yellow .section-sub   { color: rgba(0,0,0,.6); }

/* ── HERO ────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: var(--black); position: relative; overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, #111 40%, #1e0d00 100%);
}
.hero-bg-stripe {
  position: absolute; top: 0; right: 0;
  width: 42%; height: 100%;
  background: var(--yellow);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: .06;
}
.hero-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-eyebrow {
  font-family: var(--font-head); font-size: 12px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 16px;
}
.hero-title {
  font-family: var(--font-head); font-size: 80px; font-weight: 800;
  text-transform: uppercase; line-height: .95; letter-spacing: -1px;
  color: var(--white); margin-bottom: 24px;
}
.hero-title span { color: var(--yellow); }
.hero-title em   { color: var(--red); font-style: normal; }
.hero-sub {
  font-size: 17px; color: var(--gray-light); max-width: 480px;
  line-height: 1.7; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex; gap: 32px;
}
.stat-item { }
.stat-num {
  font-family: var(--font-head); font-size: 36px; font-weight: 800;
  color: var(--yellow); line-height: 1;
}
.stat-label {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gray); margin-top: 3px;
}
.hero-image { display: flex; justify-content: center; align-items: center; }
.hero-image img {
  max-width: 420px; width: 100%;
  filter: drop-shadow(0 20px 60px rgba(245,193,0,.25));
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

/* ── ICON CARDS ──────────────────────────────────────────────────── */
.cards-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 20px;
  margin-top: 48px;
}
.card {
  background: var(--black-card); border: 1px solid #333;
  border-radius: 10px; padding: 28px 24px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.card:hover {
  border-color: var(--yellow); transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(245,193,0,.1);
}
.card-icon { font-size: 36px; margin-bottom: 14px; }
.card-title {
  font-family: var(--font-head); font-size: 18px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px; color: var(--white);
  margin-bottom: 8px;
}
.card-body { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ── PRICING TABLE ───────────────────────────────────────────────── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 20px; margin-top: 48px;
}
.pricing-card {
  background: var(--black-card); border: 1px solid #333;
  border-radius: 10px; padding: 32px 24px; text-align: center;
  position: relative; transition: transform .2s, box-shadow .2s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.5); }
.pricing-card.featured {
  border: 2px solid var(--yellow);
  box-shadow: 0 0 40px rgba(245,193,0,.12);
}
.pricing-card .featured-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--yellow); color: var(--black);
  font-family: var(--font-head); font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 3px 14px; border-radius: 20px;
}
.pricing-duration {
  font-family: var(--font-head); font-size: 14px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--gray);
  margin-bottom: 10px;
}
.pricing-amount {
  font-family: var(--font-head); font-size: 54px; font-weight: 800;
  color: var(--white); line-height: 1; margin-bottom: 4px;
}
.pricing-amount sup { font-size: 28px; vertical-align: super; }
.pricing-desc { font-size: 13px; color: var(--gray); margin-bottom: 20px; }
.pricing-features { list-style: none; text-align: left; margin-bottom: 24px; }
.pricing-features li {
  font-size: 13px; padding: 6px 0;
  border-bottom: 1px solid #2a2a2a; color: var(--gray-light);
  display: flex; align-items: center; gap: 8px;
}
.pricing-features li::before { content: '✓'; color: var(--yellow); font-weight: 700; }
.pricing-features li:last-child { border-bottom: none; }

/* ── SERVICE AREA BANNER ─────────────────────────────────────────── */
.area-banner {
  background: var(--red);
  padding: 18px 24px; text-align: center;
}
.area-banner p {
  font-family: var(--font-head); font-size: 15px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--white);
}
.area-banner span { color: var(--yellow); }

/* ── CTA BAND ────────────────────────────────────────────────────── */
.cta-band {
  background: var(--yellow); padding: 64px 24px; text-align: center;
}
.cta-band h2 {
  font-family: var(--font-head); font-size: 52px; font-weight: 800;
  text-transform: uppercase; color: var(--black); line-height: 1; margin-bottom: 8px;
}
.cta-band p {
  font-size: 16px; color: rgba(0,0,0,.6); margin-bottom: 28px;
}
.cta-band .btn-red { box-shadow: 0 6px 24px rgba(0,0,0,.3); }

/* ── FOOTER ──────────────────────────────────────────────────────── */
.footer {
  background: #0a0a0a; border-top: 3px solid var(--yellow);
  padding: 56px 24px 24px;
}
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 40px;
}
.footer-brand img   { height: 52px; width: auto; margin-bottom: 14px; }
.footer-brand p     { font-size: 13px; color: var(--gray); max-width: 280px; line-height: 1.7; }
.footer-brand .tagline {
  font-family: var(--font-head); font-size: 13px; font-weight: 700;
  letter-spacing: 1px; color: var(--red); text-transform: uppercase; margin-bottom: 8px;
}
.footer-col h4 {
  font-family: var(--font-head); font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--yellow);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: 13px; color: var(--gray);
  transition: color .15s;
}
.footer-col ul li a:hover { color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid #222; padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 12px; color: #555; }
.footer-bottom a { color: var(--yellow); }

/* ── PORTAL LAYOUTS ──────────────────────────────────────────────── */
.portal-wrap {
  display: grid; grid-template-columns: 240px 1fr; min-height: 100vh;
}
.portal-sidebar {
  background: var(--black-mid); border-right: 1px solid #2a2a2a;
  position: fixed; top: 0; left: 0; width: 240px; height: 100vh;
  overflow-y: auto; display: flex; flex-direction: column;
}
.portal-sidebar-brand {
  padding: 20px 20px 16px;
  border-bottom: 1px solid #2a2a2a;
}
.portal-sidebar-brand img { height: 40px; margin-bottom: 8px; }
.portal-sidebar-brand .role-badge {
  font-family: var(--font-head); font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 3px 10px; border-radius: 20px; display: inline-block;
}
.role-customer    { background: rgba(245,193,0,.15); color: var(--yellow); border: 1px solid var(--yellow-dim); }
.role-admin       { background: rgba(204,34,0,.15);  color: var(--red);    border: 1px solid var(--red-dim); }
.role-driver      { background: rgba(46,204,113,.15); color: #2ecc71;      border: 1px solid rgba(46,204,113,.3); }
.role-contractor  { background: rgba(61,155,233,.15); color: #3d9be9;      border: 1px solid rgba(61,155,233,.3); }
.portal-nav { padding: 16px 12px; flex: 1; }
.portal-nav-section {
  font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: #444; padding: 0 8px; margin: 18px 0 6px;
}
.portal-nav a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: var(--radius);
  font-size: 13px; color: var(--gray); font-weight: 500;
  transition: background .15s, color .15s;
  margin-bottom: 2px;
}
.portal-nav a .nav-icon { font-size: 16px; width: 20px; text-align: center; }
.portal-nav a:hover  { background: #252525; color: var(--off-white); }
.portal-nav a.active { background: rgba(245,193,0,.12); color: var(--yellow); }
.portal-main {
  margin-left: 240px; padding: 32px 36px;
  background: var(--black); min-height: 100vh;
}
.portal-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid #222;
}
.portal-header h1 {
  font-family: var(--font-head); font-size: 30px; font-weight: 800;
  text-transform: uppercase; color: var(--white);
}
.portal-header p { font-size: 13px; color: var(--gray); margin-top: 4px; }
.kpi-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
  gap: 16px; margin-bottom: 32px;
}
.kpi {
  background: var(--black-card); border: 1px solid #2a2a2a;
  border-radius: 10px; padding: 20px 22px;
}
.kpi-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); margin-bottom: 6px; }
.kpi-value {
  font-family: var(--font-head); font-size: 34px; font-weight: 800;
  color: var(--white); line-height: 1;
}
.kpi-sub   { font-size: 11px; color: var(--gray); margin-top: 4px; }
.kpi.c-yellow { border-top: 3px solid var(--yellow); }
.kpi.c-red    { border-top: 3px solid var(--red); }
.kpi.c-green  { border-top: 3px solid #2ecc71; }
.kpi.c-blue   { border-top: 3px solid #3d9be9; }
.panel {
  background: var(--black-card); border: 1px solid #2a2a2a;
  border-radius: 10px; padding: 24px; margin-bottom: 24px;
}
.panel-title {
  font-family: var(--font-head); font-size: 14px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray-light);
  margin-bottom: 18px; display: flex; align-items: center; gap: 8px;
}
.panel-title span { color: var(--yellow); }
.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
  text-align: left; font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gray);
  padding: 8px 12px; border-bottom: 1px solid #252525;
}
.data-table td {
  padding: 12px; border-bottom: 1px solid #1e1e1e;
  font-size: 13px; color: var(--gray-light);
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td      { background: #1c1c1c; }
.status-pill {
  display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; padding: 3px 10px; border-radius: 20px;
}
.s-scheduled  { background: rgba(245,193,0,.15);  color: var(--yellow); border: 1px solid var(--yellow-dim); }
.s-delivered  { background: rgba(61,155,233,.15); color: #3d9be9;       border: 1px solid rgba(61,155,233,.3); }
.s-active     { background: rgba(46,204,113,.15); color: #2ecc71;       border: 1px solid rgba(46,204,113,.3); }
.s-pickup     { background: rgba(204,34,0,.15);   color: var(--red);    border: 1px solid var(--red-dim); }
.s-complete   { background: rgba(100,100,100,.2); color: #888;          border: 1px solid #444; }

/* ── MISC ────────────────────────────────────────────────────────── */
.page-hero {
  background: var(--black-mid);
  border-bottom: 3px solid var(--yellow);
  padding: calc(var(--nav-h) + 48px) 24px 56px;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-head); font-size: 60px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px; color: var(--white);
}
.page-hero p { font-size: 16px; color: var(--gray); margin-top: 10px; max-width: 520px; margin-left: auto; margin-right: auto; }
.divider { border: none; border-top: 1px solid #2a2a2a; margin: 48px 0; }
.tag {
  display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 3px 10px; border-radius: 20px;
  background: rgba(245,193,0,.12); color: var(--yellow);
  border: 1px solid var(--yellow-dim);
}

/* ── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-image { display: none; }
  .hero-title { font-size: 56px; }
  .hero-stats { justify-content: center; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .portal-wrap { grid-template-columns: 1fr; }
  .portal-sidebar { display: none; }
  .portal-main { margin-left: 0; }
}
@media (max-width: 600px) {
  .hero-title { font-size: 42px; }
  .section-title { font-size: 32px; }
  .footer-inner { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════════
   ADDITIONS — mobile nav, reviews, FAQ, service areas, local content
   ══════════════════════════════════════════════════════════════════ */

/* ── MOBILE NAV (CSS-only hamburger) ─────────────────────────────── */
.nav-toggle { display: none; }
.nav-burger { display: none; cursor: pointer; width: 30px; height: 22px; position: relative; }
.nav-burger span {
  position: absolute; left: 0; width: 100%; height: 3px; border-radius: 3px;
  background: var(--yellow); transition: transform .2s, opacity .2s;
}
.nav-burger span:nth-child(1) { top: 0; }
.nav-burger span:nth-child(2) { top: 9px; }
.nav-burger span:nth-child(3) { top: 18px; }
.nav-call {
  font-family: var(--font-head); font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--yellow) !important;
}

@media (max-width: 900px) {
  .nav-burger { display: block; }
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(17,17,17,0.98); backdrop-filter: blur(8px);
    border-bottom: 3px solid var(--yellow);
    max-height: 0; overflow: hidden; transition: max-height .25s ease;
  }
  .nav-links a { padding: 14px 24px; border-bottom: 1px solid #222; border-radius: 0; }
  .nav-toggle:checked ~ .nav-links { max-height: 70vh; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
  .nav-cta { display: none; }
}

/* ── BREADCRUMB ──────────────────────────────────────────────────── */
.breadcrumb { max-width: var(--max-w); margin: 0 auto; padding: 16px 24px 0; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; font-size: 12px; color: var(--gray); }
.breadcrumb a { color: var(--gray-light); }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb li::after { content: '›'; margin-left: 6px; color: #555; }
.breadcrumb li:last-child::after { content: ''; }

/* ── PROSE / LOCAL CONTENT ───────────────────────────────────────── */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 {
  font-family: var(--font-head); font-size: 32px; font-weight: 800;
  text-transform: uppercase; color: var(--white); line-height: 1.05;
  margin: 40px 0 14px;
}
.prose h3 {
  font-family: var(--font-head); font-size: 20px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px; color: var(--yellow);
  margin: 28px 0 10px;
}
.prose p { font-size: 16px; color: var(--gray-light); margin-bottom: 16px; line-height: 1.8; }
.prose ul { margin: 0 0 18px 0; padding-left: 0; list-style: none; }
.prose ul li {
  font-size: 15px; color: var(--gray-light); padding: 6px 0 6px 26px;
  position: relative; line-height: 1.6;
}
.prose ul li::before { content: '▸'; position: absolute; left: 0; color: var(--yellow); font-weight: 700; }
/* photo floated beside prose text (cuts scrolling on city pages) */
.prose-photo {
  float: right; width: 320px; max-width: 42%;
  margin: 4px 0 18px 28px; border-radius: 14px;
  border: 1px solid #2a2a2a; box-shadow: 0 16px 50px rgba(0,0,0,.5);
}
@media (max-width: 700px) { .prose-photo { float: none; width: 100%; max-width: 100%; margin: 8px 0 22px; } }
.prose strong { color: var(--white); }
.prose a { color: var(--yellow); text-decoration: underline; text-underline-offset: 3px; }
/* buttons inside prose must keep their own styling, not the in-text link style */
.prose a.btn { text-decoration: none; }
.prose a.btn-yellow { color: var(--black); }
.prose a.btn-outline { color: var(--yellow); }
.prose a.btn-red { color: var(--white); }

/* ── REVIEWS ─────────────────────────────────────────────────────── */
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 20px;
  margin-top: 48px;
}
.review-card {
  background: var(--black-card); border: 1px solid #333; border-radius: 10px;
  padding: 26px 24px; display: flex; flex-direction: column;
}
.review-stars { color: var(--yellow); font-size: 16px; letter-spacing: 2px; margin-bottom: 12px; }
.review-text { font-size: 14px; color: var(--gray-light); line-height: 1.7; flex: 1; font-style: italic; }
.review-author {
  font-family: var(--font-head); font-size: 13px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--white); margin-top: 16px;
}
.review-meta { font-size: 12px; color: var(--gray); margin-top: 2px; }

/* ── FAQ ACCORDION ───────────────────────────────────────────────── */
.faq-list { max-width: 820px; margin: 40px auto 0; }
.faq-item { border: 1px solid #2a2a2a; border-radius: 10px; margin-bottom: 12px; background: var(--black-card); overflow: hidden; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 20px 24px;
  font-family: var(--font-head); font-size: 17px; font-weight: 700;
  letter-spacing: .5px; color: var(--white);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--yellow); font-size: 26px; font-weight: 400; flex-shrink: 0; transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 24px 22px; font-size: 15px; color: var(--gray-light); line-height: 1.8; }

/* ── SERVICE-AREA GRID ───────────────────────────────────────────── */
.area-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 20px; margin-top: 48px; }
.area-card {
  background: var(--black-card); border: 1px solid #333; border-radius: 10px;
  padding: 28px 24px; transition: border-color .2s, transform .2s, box-shadow .2s;
  display: block;
}
.area-card:hover { border-color: var(--yellow); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(245,193,0,.1); }
.area-card .area-city {
  font-family: var(--font-head); font-size: 24px; font-weight: 800;
  text-transform: uppercase; color: var(--white); margin-bottom: 6px;
}
.area-card .area-county { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--yellow); margin-bottom: 12px; }
.area-card .area-desc { font-size: 14px; color: var(--gray); line-height: 1.6; }
.area-card .area-link { font-family: var(--font-head); font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--yellow); margin-top: 14px; display: inline-block; }

/* ── INLINE BANNER VARIANTS ──────────────────────────────────────── */
.callout {
  background: var(--black-soft); border-left: 4px solid var(--yellow);
  border-radius: var(--radius); padding: 20px 24px; margin: 24px 0;
}
.callout p { font-size: 15px; color: var(--gray-light); }
.center { text-align: center; }
.mt-32 { margin-top: 32px; }

/* ── LOGO (transparent yellow logo, no plate needed on dark) ─────── */
.nav-logo img { height: 46px; }
.hero-image img {
  background: none; padding: 0;
  filter: drop-shadow(0 18px 50px rgba(245,193,0,.22));
}

/* ══════════════════════════════════════════════════════════════════
   YELLOW SVG ICON LIBRARY  (mask-based — recolor via background-color)
   Usage: <span class="ico ico-NAME"></span>
   ══════════════════════════════════════════════════════════════════ */
.ico{display:inline-block;width:24px;height:24px;background-color:var(--yellow);
  -webkit-mask:var(--ico) no-repeat center/contain;mask:var(--ico) no-repeat center/contain;
  vertical-align:middle;flex-shrink:0;}
.ico-red{background-color:var(--red);}
.card-icon{display:flex;align-items:center;}
.card-icon .ico{width:40px;height:40px;}
.ci-icon .ico{width:28px;height:28px;}
.hero-eyebrow .ico,.area-banner .ico{width:1em;height:1em;margin-right:6px;}
.area-banner .ico{background-color:var(--white);}
.num-badge{display:inline-flex;align-items:center;justify-content:center;width:46px;height:46px;
  background:var(--yellow);color:var(--black);border-radius:50%;font-family:var(--font-head);
  font-size:22px;font-weight:800;line-height:1;}
.ico-bolt{--ico:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpolyline%20points%3D%2213%202%203%2014%2012%2014%2011%2022%2021%2010%2012%2010%2013%202%22%2F%3E%3C%2Fsvg%3E");}
.ico-pin{--ico:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%22M21%2010c0%207-9%2013-9%2013s-9-6-9-13a9%209%200%200%201%2018%200z%22%2F%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2210%22%20r%3D%223%22%2F%3E%3C%2Fsvg%3E");}
.ico-truck{--ico:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Crect%20x%3D%221%22%20y%3D%223%22%20width%3D%2215%22%20height%3D%2213%22%2F%3E%3Cpolygon%20points%3D%2216%208%2020%208%2023%2011%2023%2016%2016%2016%2016%208%22%2F%3E%3Ccircle%20cx%3D%225.5%22%20cy%3D%2218.5%22%20r%3D%222.5%22%2F%3E%3Ccircle%20cx%3D%2218.5%22%20cy%3D%2218.5%22%20r%3D%222.5%22%2F%3E%3C%2Fsvg%3E");}
.ico-dollar{--ico:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cline%20x1%3D%2212%22%20y1%3D%221%22%20x2%3D%2212%22%20y2%3D%2223%22%2F%3E%3Cpath%20d%3D%22M17%205H9.5a3.5%203.5%200%200%200%200%207h5a3.5%203.5%200%200%201%200%207H6%22%2F%3E%3C%2Fsvg%3E");}
.ico-calendar{--ico:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Crect%20x%3D%223%22%20y%3D%224%22%20width%3D%2218%22%20height%3D%2218%22%20rx%3D%222%22%20ry%3D%222%22%2F%3E%3Cline%20x1%3D%2216%22%20y1%3D%222%22%20x2%3D%2216%22%20y2%3D%226%22%2F%3E%3Cline%20x1%3D%228%22%20y1%3D%222%22%20x2%3D%228%22%20y2%3D%226%22%2F%3E%3Cline%20x1%3D%223%22%20y1%3D%2210%22%20x2%3D%2221%22%20y2%3D%2210%22%2F%3E%3C%2Fsvg%3E");}
.ico-hardhat{--ico:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%22M2%2019h20v2H2z%22%2F%3E%3Cpath%20d%3D%22M4%2019v-3a8%208%200%200%201%2016%200v3%22%2F%3E%3Cpath%20d%3D%22M10%207V5a2%202%200%200%201%204%200v2%22%2F%3E%3C%2Fsvg%3E");}
.ico-home{--ico:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%22M3%209l9-7%209%207v11a2%202%200%200%201-2%202H5a2%202%200%200%201-2-2z%22%2F%3E%3Cpolyline%20points%3D%229%2022%209%2012%2015%2012%2015%2022%22%2F%3E%3C%2Fsvg%3E");}
.ico-leaf{--ico:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%22M11%2020A7%207%200%200%201%209.8%206.1C15.5%205%2017%204.48%2019%202c1%202%202%204.18%202%208%200%205.5-4.78%2010-10%2010z%22%2F%3E%3Cpath%20d%3D%22M2%2021c0-3%201.85-5.36%205.08-6%22%2F%3E%3C%2Fsvg%3E");}
.ico-trash{--ico:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpolyline%20points%3D%223%206%205%206%2021%206%22%2F%3E%3Cpath%20d%3D%22M19%206v14a2%202%200%200%201-2%202H7a2%202%200%200%201-2-2V6m3%200V4a2%202%200%200%201%202-2h4a2%202%200%200%201%202%202v2%22%2F%3E%3Cline%20x1%3D%2210%22%20y1%3D%2211%22%20x2%3D%2210%22%20y2%3D%2217%22%2F%3E%3Cline%20x1%3D%2214%22%20y1%3D%2211%22%20x2%3D%2214%22%20y2%3D%2217%22%2F%3E%3C%2Fsvg%3E");}
.ico-anchor{--ico:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%225%22%20r%3D%223%22%2F%3E%3Cline%20x1%3D%2212%22%20y1%3D%2222%22%20x2%3D%2212%22%20y2%3D%228%22%2F%3E%3Cpath%20d%3D%22M5%2012H2a10%2010%200%200%200%2020%200h-3%22%2F%3E%3C%2Fsvg%3E");}
.ico-check{--ico:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%22M22%2011.08V12a10%2010%200%201%201-5.93-9.14%22%2F%3E%3Cpolyline%20points%3D%2222%204%2012%2014.01%209%2011.01%22%2F%3E%3C%2Fsvg%3E");}
.ico-users{--ico:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%22M17%2021v-2a4%204%200%200%200-4-4H5a4%204%200%200%200-4%204v2%22%2F%3E%3Ccircle%20cx%3D%229%22%20cy%3D%227%22%20r%3D%224%22%2F%3E%3Cpath%20d%3D%22M23%2021v-2a4%204%200%200%200-3-3.87%22%2F%3E%3Cpath%20d%3D%22M16%203.13a4%204%200%200%201%200%207.75%22%2F%3E%3C%2Fsvg%3E");}
.ico-phone{--ico:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%22M22%2016.92v3a2%202%200%200%201-2.18%202%2019.79%2019.79%200%200%201-8.63-3.07%2019.5%2019.5%200%200%201-6-6%2019.79%2019.79%200%200%201-3.07-8.67A2%202%200%200%201%204.11%202h3a2%202%200%200%201%202%201.72%2012.84%2012.84%200%200%200%20.7%202.81%202%202%200%200%201-.45%202.11L8.09%209.91a16%2016%200%200%200%206%206l1.27-1.27a2%202%200%200%201%202.11-.45%2012.84%2012.84%200%200%200%202.81.7A2%202%200%200%201%2022%2016.92z%22%2F%3E%3C%2Fsvg%3E");}
.ico-mail{--ico:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Crect%20x%3D%222%22%20y%3D%224%22%20width%3D%2220%22%20height%3D%2216%22%20rx%3D%222%22%2F%3E%3Cpolyline%20points%3D%2222%2C6%2012%2C13%202%2C6%22%2F%3E%3C%2Fsvg%3E");}
.ico-instagram{--ico:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Crect%20x%3D%222%22%20y%3D%222%22%20width%3D%2220%22%20height%3D%2220%22%20rx%3D%225%22%20ry%3D%225%22%2F%3E%3Cpath%20d%3D%22M16%2011.37A4%204%200%201%201%2012.63%208%204%204%200%200%201%2016%2011.37z%22%2F%3E%3Cline%20x1%3D%2217.5%22%20y1%3D%226.5%22%20x2%3D%2217.51%22%20y2%3D%226.5%22%2F%3E%3C%2Fsvg%3E");}
.ico-warning{--ico:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27black%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%22M10.29%203.86L1.82%2018a2%202%200%200%200%201.71%203h16.94a2%202%200%200%200%201.71-3L13.71%203.86a2%202%200%200%200-3.42%200z%22%2F%3E%3Cline%20x1%3D%2212%22%20y1%3D%229%22%20x2%3D%2212%22%20y2%3D%2213%22%2F%3E%3Cline%20x1%3D%2212%22%20y1%3D%2217%22%20x2%3D%2212.01%22%20y2%3D%2217%22%2F%3E%3C%2Fsvg%3E");}

/* ══════════════════════════════════════════════════════════════════
   PHOTO + PARALLAX
   ══════════════════════════════════════════════════════════════════ */
.hero-bg.hero-photo {
  background: linear-gradient(rgba(17,17,17,.74), rgba(17,17,17,.86)),
              url('../images/photos/fleet.jpg') center/cover no-repeat;
  background-attachment: fixed;
}
.hero-bg.hero-photo .hero-bg-stripe { display: none; }

/* full-bleed parallax band: set --px via inline style */
.parallax {
  position: relative; padding: 130px 24px; text-align: center;
  background: linear-gradient(rgba(17,17,17,.5), rgba(17,17,17,.72)),
              var(--px) center/cover no-repeat;
  background-attachment: fixed;
  border-top: 3px solid var(--yellow); border-bottom: 3px solid var(--yellow);
}
.parallax .parallax-inner { max-width: 860px; margin: 0 auto; position: relative; z-index: 1; }
.parallax h2 {
  font-family: var(--font-head); font-size: 50px; font-weight: 800;
  text-transform: uppercase; color: var(--white); line-height: 1; margin-bottom: 14px;
  text-shadow: 0 4px 24px rgba(0,0,0,.6);
}
.parallax p { font-size: 18px; color: var(--gray-light); margin-bottom: 28px; }
.parallax .px-stats { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; margin-top: 8px; }
.parallax .px-stat .n { font-family: var(--font-head); font-size: 44px; font-weight: 800; color: var(--yellow); line-height: 1; }
.parallax .px-stat .l { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--gray-light); margin-top: 4px; }

/* photo in a content column */
.photo-frame {
  width: 100%; border-radius: 14px; border: 1px solid #2a2a2a;
  box-shadow: 0 18px 55px rgba(0,0,0,.55); object-fit: cover; display: block;
}
.photo-frame.tall { max-height: 560px; }

@media (max-width: 900px) {
  .hero-bg.hero-photo, .parallax { background-attachment: scroll; }
  .parallax h2 { font-size: 36px; }
  .parallax .px-stats { gap: 28px; }
}

/* photo page-hero variant (interior pages): set --ph inline */
.page-hero.photo-hero {
  background: linear-gradient(rgba(17,17,17,.72), rgba(17,17,17,.87)),
              var(--ph) center/cover no-repeat;
  background-attachment: fixed;
}
.page-hero.photo-hero h1 { text-shadow: 0 4px 24px rgba(0,0,0,.6); }
@media (max-width: 900px) { .page-hero.photo-hero { background-attachment: scroll; } }
