/* Spokane WA Junk Removal — Core Design System Tokens */
:root {
  --green-dark: #1b3a2d;
  --green-mid: #1e4534;
  --green-light: #2a5a44;
  --jrs-primary: #14532d;
  --jrs-primary-deep: #0b3a1f;
  --amber: #e8890c;
  --amber-dark: #c97408;
  --amber-light: #fff8ee;
  --warm-gray: #f5f3ef;
  --warm-gray-2: #e8e5e0;
  --jrs-bg: #faf7f1;
  --jrs-surface: #ffffff;
  --jrs-ink: #1b2a20;
  --jrs-muted: #5c6b60;
  --jrs-line: #e8e0d0;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-muted: #555555;
  --border-color: #e2dfd9;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Bricolage Grotesque', Georgia, serif;
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
}

.section-title {
  font-size: 2.4rem;
  color: var(--green-dark);
  text-align: center;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 780px;
  margin: 0 auto 40px auto;
}

/* Common Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}

.btn-amber {
  background-color: var(--amber);
  color: var(--white);
  padding: 16px 32px;
  font-size: 1.05rem;
  box-shadow: 0 6px 20px rgba(232, 137, 12, 0.3);
}

.btn-amber:hover {
  background-color: var(--amber-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(201, 116, 8, 0.4);
}

/* ================= LIVE HEADER STYLES ================= */
.jrs-head-root {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 99999;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.jrs-head {
  background: rgba(250, 247, 241, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--jrs-line);
  position: relative;
  z-index: 1000;
  color: var(--jrs-ink);
  width: 100%;
}

.jrs-head-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px;
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  width: 100%;
}

.jrs-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  max-width: 240px;
}

.jrs-logo-img {
  height: 48px;
  width: auto;
  max-width: 230px;
  object-fit: contain;
  display: block;
}

.jrs-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--jrs-primary);
  line-height: 1.2;
  white-space: nowrap;
}

.jrs-logo span {
  color: var(--amber-dark);
}

.jrs-call-short {
  display: none;
}

.jrs-burger {
  display: none !important;
}

.jrs-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 2px solid var(--amber);
  box-shadow: 0 16px 36px rgba(0,0,0,0.15);
  padding: 16px 20px 24px;
  z-index: 1001;
}

.jrs-burger:checked ~ .jrs-nav {
  display: block !important;
}

.jrs-nav > ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.jrs-nav > ul > li > a,
.jrs-nav-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  font-weight: 800;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  color: var(--jrs-ink);
  border-radius: 8px;
  background: #faf8f5;
  border: 1px solid var(--jrs-line);
  cursor: pointer;
}

.jrs-nav > ul > li > a:hover {
  background: var(--jrs-primary);
  color: #ffffff;
}

.jrs-sub {
  list-style: none;
  padding: 6px 0 6px 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.jrs-sub a {
  display: block;
  padding: 9px 12px;
  font-size: 0.94rem;
  color: var(--jrs-muted);
  font-weight: 600;
  border-radius: 6px;
}

.jrs-sub a:hover {
  background: rgba(20, 83, 45, 0.08);
  color: var(--jrs-primary);
}

.jrs-head-root .jrs-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #9a3412;
  color: #ffffff !important;
  font-weight: 800;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  padding: 0 18px;
  border-radius: 999px;
  box-shadow: 0 4px 14px -4px rgba(154, 52, 18, .55);
  transition: all .2s;
  height: 42px;
  white-space: nowrap;
}

.jrs-head-root .jrs-call:hover {
  background: #7c2d12;
  transform: translateY(-1px);
}

.jrs-head-root .jrs-call svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.jrs-burger-btn {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  background: rgba(20, 83, 45, 0.08);
  border: 1px solid var(--jrs-line);
  border-radius: 8px;
  cursor: pointer;
  z-index: 1002;
}

.jrs-burger-btn i {
  display: block;
  width: 22px;
  height: 3px;
  border-radius: 2px;
  background: var(--jrs-primary);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.jrs-burger:checked ~ .jrs-burger-btn i:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.jrs-burger:checked ~ .jrs-burger-btn i:nth-child(2) {
  opacity: 0;
}
.jrs-burger:checked ~ .jrs-burger-btn i:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Header Desktop */
@media (min-width: 1024px) {
  .jrs-head-in {
    padding: 14px 28px !important;
    gap: 28px !important;
  }
  .jrs-logo {
    font-size: 1.35rem !important;
  }
  .jrs-burger-btn {
    display: none !important;
  }
  .jrs-nav {
    display: block !important;
    position: static !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 auto !important;
  }
  .jrs-nav > ul {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }
  .jrs-nav > ul > li {
    position: relative;
  }
  .jrs-nav > ul > li > a,
  .jrs-nav-label {
    padding: 10px 14px;
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--jrs-ink);
    background: transparent;
    border: none;
    white-space: nowrap;
    border-radius: 8px;
    transition: background 0.15s, color 0.15s;
  }
  .jrs-nav > ul > li > a:hover,
  .jrs-nav-label:hover {
    background: rgba(20, 83, 45, 0.08);
    color: var(--jrs-primary);
  }
  .jrs-sub {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 270px;
    background: var(--white);
    border: 1px solid var(--jrs-line);
    border-radius: var(--radius-sm);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 1005;
  }
  .jrs-nav li:hover > .jrs-sub,
  .jrs-nav li:focus-within > .jrs-sub {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
}

/* ================= 12-SECTION SERVICE PAGE STYLES ================= */

/* Section 1: Hero & Integrated Breadcrumb */
.service-hero {
  background: linear-gradient(135deg, rgba(27, 58, 45, 0.96) 0%, rgba(30, 69, 52, 0.92) 100%),
              url('/uploads/full-load-junk-removal-spokane.jpg') center/cover no-repeat;
  color: var(--white);
  padding: 40px 0 80px 0;
  position: relative;
}

.hero-breadcrumb {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 24px;
}

.hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s;
}

.hero-breadcrumb a:hover {
  color: var(--amber);
}

.hero-breadcrumb .active-crumb {
  color: var(--amber);
  font-weight: 700;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.hero-tag {
  display: inline-block;
  color: var(--amber);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-content h1 {
  font-size: 3.1rem;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
  color: var(--white);
}

.hero-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 25px;
  line-height: 1.6;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 25px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-pill svg {
  width: 16px;
  height: 16px;
  fill: var(--amber);
}

/* Hero 5-Field Quote Card */
.hero-form-card {
  background: var(--white);
  color: var(--text-dark);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-form-card h3 {
  color: var(--green-dark);
  font-size: 1.6rem;
  margin-bottom: 6px;
  text-align: center;
}

.hero-form-card p.form-sub {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 20px;
  text-align: center;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--text-dark);
  background-color: #fdfdfd;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(232, 137, 12, 0.15);
}

.form-submit-btn {
  width: 100%;
  background: var(--amber);
  color: var(--white);
  padding: 15px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 15px rgba(232, 137, 12, 0.35);
  margin-top: 4px;
}

.form-submit-btn:hover {
  background: var(--amber-dark);
  transform: translateY(-1px);
}

.form-response {
  margin-top: 14px;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
  display: none;
}

/* Mandatory hover link fix: dark amber */
.hero-form-card a[href^="tel"]:hover,
.form-response a:hover,
.thank-you-box a:hover {
  color: var(--amber-dark) !important;
}

/* Section 2: What We Accept */
.section-items {
  padding: 90px 0;
  background: var(--white);
}

.items-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 50px;
}

.item-card {
  background: var(--warm-gray);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.item-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--amber);
}

.item-card-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: inline-block;
}

.item-card h3 {
  font-size: 1.35rem;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.item-card p {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.specs-table-wrapper {
  overflow-x: auto;
  margin-top: 40px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.95rem;
}

.specs-table th {
  background: var(--green-dark);
  color: #fff;
  padding: 16px 20px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
}

.specs-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-dark);
}

.specs-table tr:last-child td {
  border-bottom: none;
}

.specs-table tr:nth-child(even) {
  background: var(--warm-gray);
}

.advisory-card {
  margin-top: 40px;
  background: var(--amber-light);
  border-left: 5px solid var(--amber);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  font-size: 0.95rem;
  color: #5c3a00;
}

.advisory-card strong {
  color: var(--amber-dark);
}

/* Section 3: Transparent Pricing */
.section-pricing {
  padding: 90px 0;
  background: var(--warm-gray);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 22px;
  border: 1px solid var(--border-color);
  text-align: center;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
  border: 2px solid var(--amber);
  box-shadow: 0 10px 30px rgba(232, 137, 12, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 999px;
  text-transform: uppercase;
}

.pricing-card h3 {
  font-size: 1.3rem;
  color: var(--green-dark);
  margin-bottom: 12px;
}

.pricing-range {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--amber-dark);
  font-family: var(--font-heading);
  margin-bottom: 14px;
}

.pricing-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 18px;
}

.pricing-card ul {
  list-style: none;
  text-align: left;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 22px;
}

.pricing-card ul li {
  padding: 6px 0;
  border-bottom: 1px dashed var(--border-color);
}

.pricing-card ul li:before {
  content: '✓ ';
  color: var(--green-light);
  font-weight: 800;
}

/* Comparison Tables */
.diy-pro-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  margin-top: 30px;
}

.diy-pro-table th {
  background: var(--green-dark);
  color: #fff;
  padding: 16px 20px;
  text-align: left;
  font-family: var(--font-heading);
}

.diy-pro-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.95rem;
}

.diy-pro-table tr:last-child td {
  border-bottom: none;
}

/* Section 4: Image Break Banner */
.image-break-banner {
  padding: 90px 0;
  background: linear-gradient(rgba(27, 58, 45, 0.88), rgba(27, 58, 45, 0.88)),
              url('/uploads/residential-junk-cleanout-truck-spokane.jpg') center/cover fixed;
  color: var(--white);
  text-align: center;
}

.image-break-banner h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--white);
}

.image-break-banner p {
  font-size: 1.2rem;
  max-width: 720px;
  margin: 0 auto 30px auto;
  color: rgba(255, 255, 255, 0.9);
}

/* Section 5: The Process */
.section-process {
  padding: 90px 0;
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-step {
  background: var(--warm-gray);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  border-top: 4px solid var(--amber);
  position: relative;
}

.step-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 12px;
}

.process-step h3 {
  font-size: 1.25rem;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Sections 6 & 8: Split Sections */
.split-section {
  padding: 85px 0;
}

.split-section.bg-dark {
  background: var(--green-dark);
  color: var(--white);
}

.split-section.bg-warm {
  background: var(--warm-gray);
  color: var(--text-dark);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.split-grid.reverse {
  grid-template-columns: 1fr 1fr;
}

.split-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.split-content h2 {
  font-size: 2.3rem;
  margin-bottom: 18px;
}

.split-section.bg-dark .split-content h2 {
  color: var(--white);
}

.split-section.bg-warm .split-content h2 {
  color: var(--green-dark);
}

.split-content p {
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 22px;
}

.split-section.bg-dark .split-content p {
  color: rgba(255, 255, 255, 0.88);
}

.split-section.bg-warm .split-content p {
  color: var(--text-muted);
}

.split-checklist {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 25px;
}

.split-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.98rem;
  font-weight: 600;
}

.split-checklist li svg {
  width: 20px;
  height: 20px;
  fill: var(--amber);
  flex: none;
  margin-top: 3px;
}

/* Section 7: Eco Disposal / Recycling Matrix */
.section-recycling {
  padding: 90px 0;
  background: var(--white);
}

.recycling-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 45px;
}

.recycling-card {
  background: var(--warm-gray);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px;
}

.recycling-card h3 {
  font-size: 1.3rem;
  color: var(--green-dark);
  margin-bottom: 12px;
}

.recycling-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Section 9: Gallery / Our Work */
.section-gallery {
  padding: 90px 0;
  background: var(--green-dark);
  color: var(--white);
}

.section-gallery .section-title {
  color: var(--white);
}

.section-gallery .section-subtitle {
  color: rgba(255, 255, 255, 0.82);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  height: 270px;
  box-shadow: var(--shadow-md);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(11, 58, 31, 0.92) 0%, rgba(11, 58, 31, 0) 100%);
  padding: 30px 18px 14px 18px;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
}

/* Section 10: Related Services */
.section-related {
  padding: 85px 0;
  background: var(--warm-gray);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.related-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--amber);
}

.related-card h3 {
  font-size: 1.25rem;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.related-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}

.related-link {
  color: var(--amber-dark);
  font-weight: 800;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.related-link:hover {
  text-decoration: underline;
}

/* Section 11: CTA Section */
.section-cta {
  padding: 80px 0;
  background: var(--green-dark);
  color: var(--white);
  text-align: center;
}

.cta-h2 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 14px;
  white-space: normal;
  word-break: break-word;
  line-height: 1.25;
}

.cta-para {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 720px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
}

.cta-single-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--amber);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  font-family: var(--font-heading);
  padding: 18px 42px;
  border-radius: 999px;
  box-shadow: 0 8px 25px rgba(232, 137, 12, 0.45);
  transition: all 0.2s;
}

.cta-single-btn:hover {
  background: var(--amber-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(201, 116, 8, 0.55);
}

.cta-single-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* Section 12: FAQ Accordion */
.section-faq {
  padding: 90px 0;
  background: var(--white);
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: var(--warm-gray);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.open {
  border-color: var(--amber);
}

.faq-question {
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--green-dark);
  user-select: none;
}

.faq-toggle {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--amber-dark);
  transition: transform 0.25s ease;
  line-height: 1;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 22px 20px 22px;
  font-size: 0.98rem;
  color: var(--text-dark);
  line-height: 1.65;
  background: var(--warm-gray);
}

.faq-item.open .faq-answer {
  display: block;
}

/* ================= LIVE FOOTER STYLES ================= */
.jrs-foot {
  background: var(--jrs-primary-deep);
  color: rgba(246,243,234,.78);
  padding: 56px 0 120px;
  font-size: 0.9rem;
  line-height: 1.65;
  width: 100%;
}

.jrs-foot-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 34px;
}

.jrs-foot h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 14px;
  font-family: var(--font-heading);
  font-weight: 700;
}

.jrs-foot ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.jrs-foot a:hover {
  color: var(--amber);
}

.jrs-foot .jrs-logo {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 12px;
}

.jrs-foot-bar {
  border-top: 1px solid rgba(255,255,255,.14);
  margin-top: 40px;
  padding-top: 24px;
  font-size: 0.88rem;
  color: rgba(246,243,234,.75);
  text-align: center;
}

/* Sticky Mobile Call Bar */
.jrs-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(250,247,241,.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--jrs-line);
  transform: translateY(110%);
  transition: transform .3s ease;
}

.jrs-sticky.on {
  transform: translateY(0);
}

.jrs-sticky .jrs-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--amber);
  color: #231603;
  font-weight: 800;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  padding: 14px 20px;
  border-radius: 999px;
  box-shadow: 0 8px 22px -8px rgba(217,119,6,.55);
  width: 100%;
}

.jrs-sticky .jrs-call svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

@media (min-width: 1024px) {
  .jrs-sticky {
    display: none !important;
  }
}

/* ================= ADVANCED MOBILE RESPONSIVE SYSTEM ================= */

/* General Container & Root Fixes */
html, body {
  overflow-x: clip;
  max-width: 100vw;
  width: 100%;
}

img, video, iframe {
  max-width: 100%;
  height: auto;
}

/* Tablet & Smaller (< 1024px) */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .items-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .split-grid, .split-grid.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .split-media img {
    height: 320px;
  }
  .recycling-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .jrs-foot-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .cta-h2 {
    font-size: 2.1rem;
    white-space: normal;
  }
}

/* Mobile & Phablets (< 768px) */
@media (max-width: 768px) {
  /* Container Padding */
  .container {
    padding: 0 16px;
  }

  /* Header Optimization */
  .jrs-head-in {
    padding: 10px 14px;
    gap: 10px;
    justify-content: space-between;
  }
  .jrs-logo-img {
    height: 38px;
    max-width: 175px;
  }
  .jrs-head-root .jrs-call {
    height: 36px;
    padding: 0 12px;
    font-size: 0.84rem;
    gap: 6px;
  }
  .jrs-call-text {
    display: none;
  }
  .jrs-call-short {
    display: inline;
    font-weight: 800;
  }
  .jrs-burger-btn {
    width: 38px;
    height: 38px;
    padding: 6px;
    flex-shrink: 0;
  }

  /* Mobile Navigation Drawer */
  .jrs-nav {
    max-height: 80vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 14px 16px 24px;
  }

  /* Hero Section */
  .service-hero {
    padding: 24px 0 45px 0;
  }
  .hero-breadcrumb {
    font-size: 0.84rem;
    margin-bottom: 16px;
    word-break: break-word;
  }
  .hero-content h1 {
    font-size: 1.95rem;
    line-height: 1.22;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
    word-break: break-word;
  }
  .hero-content p {
    font-size: 0.98rem;
    line-height: 1.5;
    margin-bottom: 18px;
  }
  .hero-pills {
    gap: 8px;
    margin-bottom: 20px;
  }
  .hero-pill {
    padding: 6px 12px;
    font-size: 0.84rem;
  }

  /* Quote Form Card */
  .hero-form-card {
    padding: 22px 18px;
    border-radius: 10px;
  }
  .hero-form-card h3 {
    font-size: 1.35rem;
  }
  .hero-form-card p.form-sub {
    font-size: 0.85rem;
    margin-bottom: 16px;
  }
  .form-grid-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .form-group {
    margin-bottom: 12px;
  }
  .form-group label {
    font-size: 0.74rem;
    margin-bottom: 4px;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px !important; /* Prevents auto-zoom on iOS Safari */
    padding: 11px 12px;
    border-radius: 6px;
  }
  .form-submit-btn {
    padding: 13px;
    font-size: 0.96rem;
  }

  /* Sections & Headings */
  .section-title {
    font-size: 1.85rem;
    margin-bottom: 10px;
  }
  .section-subtitle {
    font-size: 0.96rem;
    margin-bottom: 28px;
    padding: 0 4px;
  }
  .section-items,
  .section-pricing,
  .section-process,
  .split-section,
  .section-recycling,
  .section-gallery,
  .section-related,
  .section-cta,
  .section-faq {
    padding: 50px 0;
  }

  /* Single Column Grids on Mobile */
  .items-grid,
  .pricing-grid,
  .process-grid,
  .recycling-grid,
  .gallery-grid,
  .related-grid,
  .jrs-foot-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Tables — Horizontal Inertial Scroll */
  .specs-table-wrapper,
  .pricing-table-wrapper,
  .diy-table-wrapper,
  .table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 20px 0;
    border-radius: 8px;
    border: 1px solid var(--border-color);
  }
  .specs-table,
  .pricing-table,
  .diy-table,
  .diy-pro-table {
    min-width: 540px;
    font-size: 0.88rem;
  }
  .specs-table th,
  .specs-table td,
  .pricing-table th,
  .pricing-table td,
  .diy-table th,
  .diy-table td,
  .diy-pro-table th,
  .diy-pro-table td {
    padding: 12px 14px;
  }

  /* Split Sections Mobile */
  .split-media img {
    height: 240px;
  }
  .split-content h2 {
    font-size: 1.75rem;
    line-height: 1.25;
  }
  .split-content p {
    font-size: 0.95rem;
  }

  /* CTA Section Mobile */
  .cta-h2 {
    font-size: 1.75rem;
    line-height: 1.25;
    white-space: normal;
    word-break: break-word;
  }
  .cta-para {
    font-size: 0.96rem;
    padding: 0 8px;
  }
  .cta-single-btn {
    font-size: 1.05rem;
    padding: 15px 28px;
    width: 100%;
    max-width: 320px;
  }

  /* FAQs Mobile */
  .faq-question {
    padding: 14px 16px;
    font-size: 0.96rem;
  }
  .faq-answer {
    padding: 0 16px 16px 16px;
    font-size: 0.92rem;
  }
}

/* Extra Small Screens (Samsung Galaxy S8+, iPhone SE, 360px) */
@media (max-width: 420px) {
  .container {
    padding: 0 12px;
  }
  .jrs-head-in {
    padding: 8px 10px;
    gap: 6px;
  }
  .jrs-logo-img {
    height: 32px;
    max-width: 145px;
  }
  .jrs-head-root .jrs-call {
    height: 34px;
    padding: 0 10px;
    font-size: 0.78rem;
  }
  .jrs-burger-btn {
    width: 34px;
    height: 34px;
    padding: 5px;
  }
  .hero-content h1 {
    font-size: 1.7rem;
    line-height: 1.2;
  }
  .hero-form-card {
    padding: 18px 12px;
  }
  .hero-form-card h3 {
    font-size: 1.22rem;
  }
  .cta-h2 {
    font-size: 1.55rem;
  }
}

/* Blog Filter Pills & Card Hover Effects */
.filter-pill {
  background: rgba(255,255,255,0.15);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 6px 16px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-pill:hover, .filter-pill.active {
  background: #0f3923;
  border-color: #22c55e;
  color: #ffffff;
  font-weight: 700;
  transform: translateY(-1px);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12) !important;
}
.blog-card:hover img {
  transform: scale(1.05);
}

/* Single Blog Post Prose & Layout Styling */
.prose-content h2 {
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  color: var(--green-dark);
  font-weight: 800;
  margin-top: 42px;
  margin-bottom: 16px;
  line-height: 1.3;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--warm-gray-2);
}
.prose-content h3 {
  font-size: clamp(1.25rem, 2vw, 1.45rem);
  color: var(--green-mid);
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 12px;
  line-height: 1.35;
}
.prose-content p {
  margin-bottom: 22px;
}
.prose-content ul, .prose-content ol {
  margin-bottom: 26px;
  padding-left: 26px;
}
.prose-content li {
  margin-bottom: 10px;
}
.prose-content a {
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--amber);
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.prose-content a:hover {
  color: var(--amber);
}

/* 1. Direct Answer / Featured Key Takeaway Box */
.direct-answer-card {
  background: #f8fafc;
  border: 2px solid var(--amber);
  border-left-width: 6px;
  border-radius: 12px;
  padding: 26px 28px;
  margin: 28px 0 38px 0;
  box-shadow: 0 6px 22px rgba(232, 137, 12, 0.09);
}
.direct-answer-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.direct-answer-icon {
  font-size: 1.6rem;
  line-height: 1;
}
.direct-answer-title {
  margin: 0;
  font-size: 1.25rem;
  color: var(--green-dark);
  font-family: var(--font-heading);
  font-weight: 800;
}
.direct-answer-text {
  font-size: 1.15rem;
  line-height: 1.75;
  color: #1e293b;
  margin: 0;
}

/* 2. Alert / Warning Callout Box */
.prose-alert-box {
  display: flex;
  gap: 18px;
  border-radius: 10px;
  padding: 22px 24px;
  margin: 32px 0;
  align-items: flex-start;
}
.prose-alert-box.alert-warning {
  background: #fffbeb;
  border: 1px solid #fcd34d;
  border-left: 5px solid #f59e0b;
}
.prose-alert-box .alert-icon {
  font-size: 1.8rem;
  line-height: 1;
}
.prose-alert-box .alert-heading {
  margin: 0 0 6px 0;
  color: #92400e;
  font-size: 1.12rem;
  font-family: var(--font-heading);
  font-weight: 800;
}
.prose-alert-box .alert-desc {
  margin: 0;
  font-size: 0.98rem;
  color: #78350f;
  line-height: 1.65;
}

/* 3. Facility Location Cards */
.facility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 30px 0 36px 0;
}
.facility-card {
  background: var(--warm-gray);
  border: 1px solid var(--warm-gray-2);
  border-radius: 12px;
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.facility-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}
.facility-badge {
  display: inline-block;
  background: var(--green-dark);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.facility-name {
  margin: 0 0 8px 0;
  font-size: 1.18rem;
  color: var(--green-dark);
  font-family: var(--font-heading);
  font-weight: 800;
}
.facility-address, .facility-hours {
  font-size: 0.92rem;
  color: #334155;
  margin: 0 0 6px 0;
  font-weight: 600;
}
.facility-details {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.55;
  margin: 10px 0 0 0;
}

/* 4. Responsive Comparison Table */
.table-responsive-container {
  overflow-x: auto;
  margin: 34px 0;
  border-radius: 10px;
  border: 1px solid var(--warm-gray-2);
  box-shadow: 0 4px 18px rgba(0,0,0,0.05);
}
.table-scroll-hint {
  display: none;
  background: #f1f5f9;
  text-align: center;
  font-size: 0.8rem;
  color: #64748b;
  padding: 6px 12px;
  font-weight: 600;
  border-bottom: 1px solid var(--warm-gray-2);
}
.prose-content table,
.prose-data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.96rem;
  margin: 28px 0;
  display: block;
  max-width: 100% !important;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch;
}
.prose-content table th,
.prose-data-table th {
  background: var(--green-dark);
  color: #ffffff;
  padding: 14px 18px;
  text-align: left;
  font-weight: 800;
  font-size: 0.95rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  white-space: nowrap;
}
.prose-content table th:last-child,
.prose-data-table th:last-child {
  border-right: none;
}
.prose-content table td,
.prose-data-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--warm-gray-2);
  color: #1e293b;
  border-right: 1px solid var(--warm-gray-2);
  line-height: 1.55;
  white-space: nowrap;
}
.prose-content table td:last-child,
.prose-data-table td:last-child {
  border-right: none;
}
.prose-content table tr:nth-child(even) td,
.prose-data-table tr:nth-child(even) td {
  background: #fbfbf9;
}
.prose-content table tr:hover td,
.prose-data-table tr:hover td {
  background: #f1f5f3;
}

@media (max-width: 768px) {
  .prose-content table td,
  .prose-data-table td {
    white-space: normal;
    min-width: 120px;
    padding: 10px 12px;
    font-size: 0.88rem;
  }
}

/* 5. Procedure Step Cards */
.procedure-steps-container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 32px 0;
}
.procedure-step-card {
  display: flex;
  gap: 20px;
  background: #ffffff;
  border: 1px solid var(--warm-gray-2);
  border-left: 5px solid var(--green-dark);
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  transition: transform 0.2s ease;
}
.procedure-step-card:hover {
  transform: translateX(4px);
}
.step-num-badge {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: var(--green-dark);
  color: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
  font-family: var(--font-heading);
}
.step-title {
  margin: 0 0 6px 0;
  color: var(--green-dark);
  font-size: 1.18rem;
  font-family: var(--font-heading);
  font-weight: 800;
}
.step-desc {
  margin: 0;
  font-size: 1rem;
  color: #334155;
  line-height: 1.65;
}

/* 6. Mid-Content Problem Solving CTA */
.prose-cta-card {
  margin: 44px 0;
  padding: 34px 30px;
  background: linear-gradient(135deg, var(--green-dark) 0%, #152e22 100%);
  border-radius: 12px;
  color: #ffffff;
  text-align: center;
  box-shadow: 0 8px 26px rgba(27,58,45,0.14);
}
.prose-cta-badge {
  display: inline-block;
  background: rgba(232, 137, 12, 0.25);
  color: #f59e0b;
  border: 1px solid rgba(232, 137, 12, 0.4);
  padding: 4px 14px;
  border-radius: 20px;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.prose-cta-title {
  color: #ffffff;
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  margin: 14px 0 10px 0;
  font-weight: 800;
}
.prose-cta-text {
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto 24px auto;
  line-height: 1.6;
}
.prose-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.prose-cta-btn-primary {
  background: var(--amber);
  color: #ffffff;
  padding: 13px 26px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 1.02rem;
  text-decoration: none;
  transition: background 0.2s ease;
  box-shadow: 0 4px 14px rgba(232,137,12,0.3);
}
.prose-cta-btn-primary:hover {
  background: var(--amber-dark);
}
.prose-cta-btn-secondary {
  background: rgba(255,255,255,0.15);
  color: #ffffff;
  padding: 13px 24px;
  border-radius: 6px;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.3);
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s ease;
}
.prose-cta-btn-secondary:hover {
  background: rgba(255,255,255,0.25);
}

/* 7. Inline Dimensioned Media Figures */
.prose-media-figure {
  margin: 36px 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.07);
  background: #1b2a20;
}
.prose-media-figure figcaption {
  padding: 12px 18px;
  font-size: 0.88rem;
  color: #64748b;
  background: var(--warm-gray);
  border-top: 1px solid var(--warm-gray-2);
  font-style: italic;
  line-height: 1.5;
}

/* 8. Interactive FAQ Accordion */
.faq-accordion-blog {
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item-blog {
  background: var(--warm-gray);
  border: 1px solid var(--warm-gray-2);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.faq-item-blog.open {
  border-color: var(--amber);
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.faq-question-blog {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
  text-align: left;
  font-family: var(--font-heading);
}
.faq-toggle-icon {
  font-size: 1.4rem;
  color: var(--amber);
  font-weight: 800;
  min-width: 24px;
  text-align: right;
  line-height: 1;
}
.faq-answer-blog {
  padding: 0 22px 20px 22px;
  font-size: 1.02rem;
  line-height: 1.75;
  color: #334155;
}
.faq-answer-blog p {
  margin: 0;
}

/* 9. Statutory Citations Box */
.citations-card {
  background: var(--warm-gray);
  border: 1px solid var(--warm-gray-2);
  border-left: 5px solid var(--green-dark);
  border-radius: 10px;
  padding: 26px;
  margin: 44px 0;
  font-size: 0.94rem;
}
.citations-badge {
  font-weight: 800;
  color: var(--green-dark);
  font-size: 1.05rem;
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-heading);
}
.citations-intro {
  color: #64748b;
  margin-bottom: 14px;
}
.citations-list {
  margin: 0;
  padding-left: 20px;
  color: #475569;
  line-height: 1.75;
}

/* 10. TOC ScrollSpy Links */
.toc-link {
  color: #475569;
  text-decoration: none;
  display: block;
  padding: 6px 10px;
  border-left: 3px solid transparent;
  border-radius: 0 4px 4px 0;
  transition: all 0.2s ease;
  font-weight: 500;
}
.toc-link:hover {
  color: var(--amber);
  border-left-color: var(--amber);
  background: rgba(232, 137, 12, 0.05);
}
.toc-link.active {
  color: var(--amber-dark);
  font-weight: 700;
  border-left-color: var(--amber);
  background: rgba(232, 137, 12, 0.1);
}
.toc-link.toc-sub {
  font-size: 0.85rem;
}

/* 11. Responsive Layout & Mobile Polish */
@media (max-width: 991px) {
  .article-layout-grid {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }
  .article-sidebar {
    position: static !important;
    margin-top: 20px;
  }
  .desktop-toc-box {
    display: none !important;
  }
  .mobile-toc-box {
    display: block !important;
  }
  .table-scroll-hint {
    display: block;
  }
}

@media (max-width: 768px) {
  .article-hero h1 {
    font-size: 1.85rem !important;
    line-height: 1.25 !important;
  }
  .article-hero-meta {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
  }
  .article-body table {
    display: block !important;
    width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    margin-bottom: 24px !important;
  }
  .article-body table th,
  .article-body table td {
    padding: 8px 12px !important;
    font-size: 0.85rem !important;
    white-space: nowrap !important;
  }
  .step-card {
    padding: 16px !important;
  }
  .step-num {
    width: 32px !important;
    height: 32px !important;
    font-size: 0.95rem !important;
  }
  .blog-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .blog-filters {
    overflow-x: auto !important;
    justify-content: flex-start !important;
    padding-bottom: 8px !important;
    -webkit-overflow-scrolling: touch !important;
    flex-wrap: nowrap !important;
  }
  .blog-filters .filter-pill {
    flex-shrink: 0 !important;
  }
}

@media (max-width: 480px) {
  .article-hero {
    padding: 30px 0 !important;
  }
  .article-hero h1 {
    font-size: 1.6rem !important;
  }
  .blog-search-form {
    flex-direction: column !important;
    border-radius: 12px !important;
    padding: 8px !important;
  }
  .blog-search-form input {
    width: 100% !important;
    padding: 10px 14px !important;
  }
  .blog-search-form button {
    width: 100% !important;
    border-radius: 8px !important;
    padding: 10px !important;
  }
  .callout-box, .warning-box, .tip-box {
    padding: 14px 16px !important;
  }
}

/* ==========================================================================
   Industry-Standard Dedicated Homepage Styles & Components
   ========================================================================== */
.home-hero {
  background: linear-gradient(135deg, rgba(20, 42, 32, 0.96) 0%, rgba(27, 58, 45, 0.92) 100%),
              url('/uploads/full-load-junk-removal-spokane.webp') center/cover no-repeat;
  color: #ffffff;
  padding: 50px 0 90px 0;
  position: relative;
  overflow: hidden;
}

.home-hero .hero-content h1 {
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  line-height: 1.18;
  font-weight: 800;
  margin-bottom: 20px;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.home-hero .hero-content h1 span {
  color: var(--amber);
}

.home-hero .hero-content p {
  font-size: 1.18rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 28px;
  max-width: 650px;
}

/* Dedicated 8-Card Services Grid */
.home-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.home-service-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.home-service-card:hover {
  transform: translateY(-5px);
  border-color: var(--amber);
  box-shadow: 0 14px 32px rgba(27, 58, 45, 0.12);
}

.home-service-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  background: var(--amber-light);
  border: 1px solid rgba(232, 137, 12, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--amber-dark);
}

.home-service-icon-box svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.home-service-card h3 {
  font-size: 1.35rem;
  color: var(--green-dark);
  margin-bottom: 10px;
  font-weight: 800;
}

.home-service-card p {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
  flex-grow: 1;
}

.home-service-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: grid;
  gap: 7px;
  font-size: 0.88rem;
  color: #334155;
  font-weight: 600;
}

.home-service-bullets li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.home-service-bullets li svg {
  width: 15px;
  height: 15px;
  fill: var(--green-light);
  flex-shrink: 0;
}

.home-service-link {
  color: var(--amber-dark);
  font-weight: 800;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: gap 0.2s ease;
}

.home-service-link:hover {
  text-decoration: underline;
  gap: 10px;
}

/* Compact Service Area Grid (Clean, Non-Lengthy Cards) */
.service-area-compact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.service-area-compact-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.service-area-compact-card:hover {
  border-color: var(--amber);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  background: var(--amber-light);
}

.service-area-compact-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-area-pin {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(20, 83, 45, 0.08);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.service-area-compact-card:hover .service-area-pin {
  background: var(--amber);
  color: #ffffff;
}

.service-area-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--green-dark);
  display: block;
}

.service-area-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

.service-area-arrow {
  font-size: 1.1rem;
  color: var(--amber-dark);
  transition: transform 0.2s;
}

.service-area-compact-card:hover .service-area-arrow {
  transform: translateX(4px);
}

/* Items Accepted Matrix */
.accept-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}

.accept-category-card {
  background: var(--warm-gray);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
}

.accept-category-card h3 {
  font-size: 1.25rem;
  color: var(--green-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.accept-category-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  font-size: 0.92rem;
  color: #334155;
}

.accept-category-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.45;
}

.accept-category-list li:before {
  content: '✓';
  color: var(--green-light);
  font-weight: 800;
  flex-shrink: 0;
}

/* Recent Spokane Projects Grid */
.home-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}

.home-gallery-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

.home-gallery-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.home-gallery-content {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.home-gallery-content h4 {
  font-size: 1.15rem;
  color: var(--green-dark);
  margin-bottom: 6px;
}

.home-gallery-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* Responsive Breakpoints for Homepage */
@media (max-width: 1100px) {
  .home-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-area-compact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .home-services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .service-area-compact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .accept-categories-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .home-gallery-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .home-hero .hero-content h1 {
    font-size: 1.95rem;
    line-height: 1.2;
  }
  .home-hero .hero-content p {
    font-size: 1rem;
  }
}

@media (max-width: 440px) {
  .service-area-compact-grid {
    grid-template-columns: 1fr;
  }
}



