:root {
  --orange: #f47a00;
  --orange-hover: #ff8b18;
  --black: #0b0b0b;
  --card: #111111;
  --card-hover: #181818;
  --white: #ffffff;
  --grey: #c7c7c7;
  --light: #efefef;
  --max: 1400px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  color: #222;
  background: #fff;
}

img { max-width: 100%; }

a { color: inherit; }

.container {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}
#about {
  padding-bottom: 50px;
}
#reviews {          /* or whatever id/class the reviews section has */
  padding-top: 50px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #000;
  border-bottom: 1px solid var(--orange);
}

.header-inner {
  min-height: 94px;
  width: min(1760px, calc(100% - 28px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 220px 1fr auto auto;
  align-items: center;
  gap: 28px;
}

.brand img { display: block; width: 185px; }

.primary-nav {
  display: flex;
  justify-content: center;
  gap: 36px;
}

.primary-nav a,
.header-phone,
.header-cta {
  text-decoration: none;
}

.primary-nav a {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

.primary-nav a:hover { color: var(--orange); }

.header-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.header-phone .fa-phone-volume {
    color: var(--orange);
    font-size: 18px;
    flex-shrink: 0;
}

.header-phone > span:last-child {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.header-phone strong {
    color: #fff !important;
    font-size: 18px;
    font-weight: 700;
}

.header-phone small {
    color: rgba(255,255,255,.75) !important;
    font-size: 13px;
    margin-top: 2px;
}

.header-phone:hover strong {
    color: var(--orange) !important;
}

.header-cta {
  min-height: 56px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: #111;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

.header-cta:hover {
  background: #d97706; /* darker orange */
}
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
}

.hero {
  position: relative;
  min-height: 530px;
  color: #fff;
  background: url("../images/hero-placeholder.jpg") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.67);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1500px, calc(100% - 60px));
  min-height: 530px;
  margin-inline: auto;
  padding: 90px 0 70px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  column-gap: 60px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(42px, 4vw, 70px);
  line-height: 1.15;
  text-transform: uppercase;
}

.hero h1 span {
  display: table;
  margin-bottom: 36px;
  border-bottom: 6px solid var(--orange);
}

.hero-message {
  text-align: left;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.6;
  max-width: 42ch;
  padding-left: 28px;
  border-left: 4px solid var(--orange);
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 26px;
  margin-top: 30px;
}

.button {
  min-width: 275px;
  min-height: 62px;
  padding: 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  transition: .22s ease;
}

.button:hover { transform: translateY(-3px); }

.button-orange {
  color: #fff;
  background: var(--orange);
  border: 2px solid var(--orange);
}

.button-orange:hover { background: var(--orange-hover); border-color: var(--orange-hover); }

.button-outline {
  color: #fff;
  background: transparent;
  border: 2px solid rgba(255,255,255,.9);
}

.button-outline:hover { background: var(--orange); border-color: var(--orange); }

.section { padding: 30px 0; }
.section-light { background: var(--light); }
.section-dark { background: #000; color: #fff; }

.section-heading {
  max-width: 820px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading h2,
.trust-copy h2,
.final-cta h2 {
  margin: 0;
  text-transform: uppercase;
  line-height: 1.08;
}

.section-heading h2 { font-size: clamp(38px, 4vw, 58px); color: #333; }

.section-heading p {
  margin: 16px auto 0;
  color: #666;
  line-height: 1.7;
}

.eyebrow {
  display: block;
  margin-bottom: 16px;
  color: var(--orange);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .6px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  min-height: 445px;
  padding: 40px 28px 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  background: var(--card);
  border-top: 4px solid var(--orange);
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
  transition: .25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  background: var(--card-hover);
  box-shadow: 0 20px 45px rgba(0,0,0,.24);
}

.service-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 24px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 30px;
  line-height: 1;
}

.service-icon i {
  color: inherit;
  font-size: inherit;
}

.service-card:hover .service-icon {
  background: var(--orange);
  color: #fff;
  transform: translateY(-3px);
}

.service-icon {
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.service-card h3 { margin: 0 0 16px; font-size: 23px; }
.service-card p { margin: 0; color: var(--grey); line-height: 1.7; }
.learn-more { margin-top: auto; padding-top: 24px; color: var(--orange); font-weight: 700; }

.trust-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 90px;
  align-items: center;
}

.trust-copy h2 { font-size: clamp(38px, 4vw, 58px); }
.orange-rule { width: 112px; height: 4px; margin: 24px 0 28px; background: var(--orange); }
.trust-copy p { max-width: 680px; margin: 0 0 32px; color: var(--grey); line-height: 1.75; }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
}

.trust-card {
  min-height: 86px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 5px;
}

.trust-card span {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(244,122,0,.85);
  border-radius: 50%;
  color: var(--orange);
  font-size: 22px;
}
.trust-card {
  min-height: 86px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 5px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.trust-card:hover {
  transform: translateY(-5px);
  border-color: rgba(244,122,0,.6);
  box-shadow: 0 12px 24px rgba(0,0,0,.45);
  transition: background-color 0.25s ease, color 0.25s ease;
}
.trust-card:hover span {
  background: var(--orange);
  color: #111;
}

.reviews-grid,
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.review-card,
.project-card {
  background: var(--card);
  color: #fff;
  border-top: 4px solid var(--orange);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0,0,0,.14);
}
.review-card:hover,
.project-card:hover {
  transform: translateY(-5px);
  border-color: rgba(244,122,0,.6);
  box-shadow: 0 12px 24px rgba(0,0,0,.45);
  transition: background-color 0.25s ease, color 0.25s ease;
}

.review-card {
  min-height: 310px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
}

.stars { color: var(--orange); letter-spacing: 4px; margin-bottom: 22px; }
.review-card blockquote { margin: 0 0 28px; line-height: 1.75; }
.review-author { margin-top: auto; display: grid; gap: 3px; }
.review-author span { color: #999; font-size: 13px; }

.before-after {
  display: grid;
  grid-template-columns: 1fr;
}

.before-after figure { position: relative; margin: 0; overflow: hidden; }
.before-after img { display: block; width: 100%; height: 230px; object-fit: cover; }
.before-after figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 6px 10px;
  background: rgba(0,0,0,.82);
  border-left: 3px solid var(--orange);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.project-copy { padding: 26px; }
.project-copy > span { color: var(--orange); text-transform: uppercase; font-size: 13px; font-weight: 700; }
.project-copy h3 { margin: 10px 0 12px; font-size: 22px; }
.project-copy p { margin: 0; color: var(--grey); line-height: 1.7; }

.final-cta {
  padding: 48px 0;
  background: #fff;
}

.final-cta-box {
  padding: 56px 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  color: #fff;
  background: var(--card);
  border-top: 5px solid var(--orange);
  border-radius: 4px;
}

.final-cta h2 { font-size: clamp(38px, 4vw, 56px); }
.final-cta p { max-width: 720px; color: var(--grey); line-height: 1.7; }
.final-actions { display: grid; gap: 14px; }

.site-footer {
  color: var(--grey);
  background: #0b0b0b;
  border-top: 5px solid var(--orange);
  height: auto;
  min-height: 0;
}

.footer-grid {
  padding: 65px 30px 52px;
  display: grid;
  grid-template-columns: 1.7fr .8fr .7fr 1fr;
  gap: 58px;
}

.footer-logo { width: 330px; }
.footer-grid h3 { margin-top: 0; color: #fff; }
.footer-grid a,
.footer-grid span { display: block; margin-bottom: 12px; text-decoration: none; }
.footer-grid a:hover { color: var(--orange); }

.footer-bottom {
  padding: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: #777;
  text-align: center;
  font-size: 13px;
}

@media (max-width: 1100px) {
  .header-inner { grid-template-columns: 190px 1fr auto; }
  .header-phone { display: none; }
  .services-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .trust-layout { grid-template-columns: 1fr; gap: 48px; }
  .reviews-grid, .projects-grid { grid-template-columns: 1fr; max-width: 760px; margin-inline: auto; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 820px) {
  .header-inner { grid-template-columns: 1fr auto; min-height: 78px; }
  .brand img { width: 160px; }
  .header-cta { display: none; }
  .menu-toggle { display: grid; gap: 5px; padding: 10px; cursor: pointer; }
  .menu-toggle span:not(.sr-only) { width: 28px; height: 2px; background: #fff; }
  .primary-nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    background: #000;
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { padding: 16px 24px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .hero-inner { grid-template-columns: 1fr; text-align: center; padding-top: 70px; }
  .hero h1 span { margin-inline: auto; }
  .hero-actions { flex-direction: column; align-items: center; }
  .trust-grid { grid-template-columns: 1fr; }
  .final-cta-box { flex-direction: column; align-items: flex-start; padding: 42px 26px; }
  .final-actions, .final-actions .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .container { width: min(100% - 28px, var(--max)); }
  .section { padding: 60px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .before-after { grid-template-columns: 1fr; }
  .before-after img { height: 220px; }
  .button { width: 100%; min-width: 0; }
  .footer-grid { padding-inline: 10px; }
}

/* ========================================
   Service Pages
======================================== */

.service-hero {
  position: relative;
  display: flex;
  min-height: 620px;
  align-items: center;
  background-color: #202326;
  background-position: center;
  background-size: cover;
  color: #ffffff;
}

.service-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(
      90deg,
      rgba(20, 22, 24, 0.96) 0%,
      rgba(20, 22, 24, 0.78) 50%,
      rgba(20, 22, 24, 0.35) 100%
    );
}

.junk-removal-hero {
  background-image: url("../images/junk-removal-hero.jpg");
}

.service-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 780px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.service-hero h1 {
  max-width: 760px;
  margin: 12px 0 24px;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1;
}

.service-hero-text {
  max-width: 680px;
  margin-bottom: 32px;
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.86);
}

.eyebrow {
  margin-bottom: 10px;
  color: #d8782c;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section {
  padding: 90px 0;
}

.section-light {
  background: #f3f1ed;
}

.section-dark {
  background: #202326;
  color: #ffffff;
}

.narrow-container {
  max-width: 850px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 45px;
}

.section-heading h2,
.narrow-container h2,
.split-content h2 {
  margin-top: 0;
  margin-bottom: 22px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
}

.section-heading-light p,
.section-heading-light h2 {
  color: #ffffff;
}

.service-intro p,
.narrow-container p,
.split-content p {
  font-size: 1.08rem;
  line-height: 1.8;
  color: #555b60;
}

.section-dark p {
  color: rgba(255, 255, 255, 0.76);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card {
  padding: 32px;
  border: 1px solid #ddd9d3;
  background: #ffffff;
  box-shadow: 0 8px 30px rgba(24, 28, 31, 0.05);
}

.feature-card h3 {
  margin: 20px 0 12px;
  color: #22272a;
  font-size: 1.25rem;
}

.feature-card p {
  margin: 0;
  color: #62676b;
  line-height: 1.7;
}

.feature-icon {
  display: flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  background: #d8782c;
  color: #ffffff;
  font-size: 1.4rem;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.8fr);
  gap: 65px;
  align-items: center;
}

.split-panel {
  padding: 38px;
  border-left: 5px solid #d8782c;
  background: #292d30;
  color: #ffffff;
}

.section-light .split-panel {
  background: #ffffff;
  color: #22272a;
  box-shadow: 0 10px 35px rgba(20, 24, 27, 0.08);
}

.split-panel h3 {
  margin-top: 0;
  font-size: 1.55rem;
}

.split-panel p {
  line-height: 1.7;
  color: inherit;
}

.split-panel ul,
.check-list {
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.split-panel li,
.check-list li {
  position: relative;
  margin-bottom: 14px;
  padding-left: 28px;
  line-height: 1.55;
}

.split-panel li::before,
.check-list li::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: #d8782c;
  font-weight: 900;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #292d30;
}

.step-number {
  display: inline-block;
  margin-bottom: 34px;
  color: #d8782c;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.step-card h3 {
  margin: 0 0 14px;
  font-size: 1.35rem;
}

.step-card p {
  margin: 0;
  line-height: 1.7;
}

.notice-box {
  margin-top: 32px;
  padding: 24px 26px;
  border-left: 5px solid #d8782c;
  background: #f3f1ed;
  color: #3e4448;
  line-height: 1.7;
}

.cta-section {
  padding: 70px 0;
  background: #d8782c;
  color: #ffffff;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-section .eyebrow {
  color: #22272a;
}

.cta-section h2 {
  margin: 5px 0 10px;
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.cta-section p {
  margin: 0;
}

.cta-actions {
  display: flex;
  flex-shrink: 0;
  gap: 14px;
}

.button-outline-light {
  border: 2px solid #ffffff;
  color: #ffffff;
  background: transparent;
}

.button-outline-light:hover {
  background: #ffffff;
  color: #22272a;
}

.text-link {
  display: inline-block;
  margin-top: 8px;
  color: #d8782c;
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}


/* ========================================
   Junk Removal Service Page
======================================== */

.service-hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background-color: #111;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.junk-removal-hero {
  background-image: url("../images/junkremovalhero.jpg");
}

.service-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.94) 0%,
      rgba(0, 0, 0, 0.82) 43%,
      rgba(0, 0, 0, 0.42) 75%,
      rgba(0, 0, 0, 0.22) 100%
    );
}

.service-hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 110px;
  padding-bottom: 110px;
}

.service-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(48px, 5.5vw, 84px);
  line-height: 1.02;
  letter-spacing: -2px;
  text-transform: uppercase;
}

.service-hero .orange-rule {
  width: 150px;
  height: 6px;
  margin: 28px 0;
}

.service-hero-text {
  max-width: 730px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 1.5vw, 23px);
  line-height: 1.7;
}

.service-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 38px;
}

.service-hero-actions .button {
  gap: 10px;
}


/* Introduction */

.junk-intro {
  background: #fff;
}

.junk-intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  gap: 80px;
  align-items: center;
}

.junk-intro-copy h2,
.junk-project-copy h2,
.junk-trust-copy h2,
.junk-pricing-copy h2,
.junk-service-area h2 {
  margin: 0;
  color: #252525;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.08;
  text-transform: uppercase;
}

.junk-intro-copy p,
.junk-project-copy p,
.junk-pricing-copy p,
.junk-service-area > div > p {
  max-width: 760px;
  color: #555;
  font-size: 17px;
  line-height: 1.8;
}

.junk-benefits-card {
  padding: 42px;
  color: #fff;
  background: var(--card);
  border-top: 5px solid var(--orange);
  border-radius: 4px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.junk-benefits-card h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.25;
}

.check-list {
  margin: 26px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin-bottom: 15px;
  padding-left: 30px;
  line-height: 1.6;
}

.check-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "✓";
  color: var(--orange);
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover {
  color: var(--orange-hover);
}


/* Section heading */

.junk-section-heading {
  max-width: 1000px;
}

.junk-section-heading h2 {
  font-size: clamp(38px, 4.5vw, 62px);
}

.junk-section-heading p {
  max-width: 760px;
}


/* Items removed */

.junk-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.junk-service-card {
  min-height: 320px;
  padding: 38px 32px;
  background: #fff;
  border-top: 4px solid var(--orange);
  border-radius: 4px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.09);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.junk-service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.15);
}

.junk-service-icon {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  color: var(--orange);
  border: 2px solid var(--orange);
  border-radius: 50%;
  font-size: 27px;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.junk-service-card:hover .junk-service-icon {
  color: #fff;
  background: var(--orange);
}

.junk-service-card h3 {
  margin: 24px 0 14px;
  color: #222;
  font-size: 23px;
}

.junk-service-card p {
  margin: 0;
  color: #666;
  line-height: 1.75;
}


/* Project section */

.junk-project-section {
  color: #fff;
  background: #0b0b0b;
}

.junk-project-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(500px, 1.15fr);
  gap: 70px;
  align-items: center;
}

.junk-project-copy h2 {
  color: #fff;
}

.junk-project-copy p {
  color: var(--grey);
}

.junk-project-copy .button {
  margin-top: 18px;
}

.junk-before-after {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border-top: 5px solid var(--orange);
  border-radius: 4px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.45);
}

.junk-before-after figure {
  position: relative;
  min-height: 440px;
  margin: 0;
  overflow: hidden;
}

.junk-before-after img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  display: block;
  object-fit: cover;
}

.junk-before-after figcaption {
  position: absolute;
  bottom: 18px;
  left: 18px;
  padding: 8px 14px;
  color: #fff;
  background: rgba(0, 0, 0, 0.84);
  border-left: 4px solid var(--orange);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}


/* Trust section */

.junk-trust-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.junk-trust-copy h2 {
  color: #fff;
}

.junk-trust-copy p {
  max-width: 650px;
  color: var(--grey);
  font-size: 17px;
  line-height: 1.8;
}

.junk-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.junk-trust-card {
  min-height: 92px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 17px;
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 5px;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.junk-trust-card:hover {
  transform: translateY(-5px);
  border-color: rgba(244, 122, 0, 0.65);
}

.junk-trust-card span {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--orange);
  border: 1px solid var(--orange);
  border-radius: 50%;
}

.junk-trust-card:hover span {
  color: #111;
  background: var(--orange);
}


/* Steps */

.junk-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.junk-step-card {
  position: relative;
  min-height: 340px;
  padding: 36px;
  overflow: hidden;
  color: #fff;
  background: var(--card);
  border-top: 4px solid var(--orange);
  border-radius: 4px;
}

.junk-step-number {
  position: absolute;
  top: 18px;
  right: 24px;
  color: rgba(255, 255, 255, 0.1);
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
}

.junk-step-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  color: var(--orange);
  border: 2px solid var(--orange);
  border-radius: 50%;
  font-size: 25px;
}

.junk-step-card h3 {
  position: relative;
  margin: 28px 0 14px;
  font-size: 24px;
}

.junk-step-card p {
  position: relative;
  margin: 0;
  color: var(--grey);
  line-height: 1.75;
}


/* Pricing */

.junk-pricing-section {
  background: #fff;
}

.junk-pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 80px;
  align-items: center;
}

.junk-price-factors {
  padding: 40px;
  color: #fff;
  background: var(--card);
  border-top: 5px solid var(--orange);
  border-radius: 4px;
}

.junk-price-factors h3 {
  margin: 0 0 20px;
  font-size: 28px;
}

.junk-price-factors .check-list {
  margin-bottom: 0;
}

.junk-notice {
  margin-top: 50px;
  padding: 25px 28px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #f2f2f2;
  border-left: 5px solid var(--orange);
}

.junk-notice i {
  margin-top: 4px;
  color: var(--orange);
  font-size: 24px;
}

.junk-notice p {
  margin: 0;
  color: #555;
  line-height: 1.7;
}


/* Service area */

.junk-service-area {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 80px;
  align-items: center;
}

.junk-question-card {
  padding: 42px;
  color: #fff;
  background: var(--card);
  border-top: 5px solid var(--orange);
  border-radius: 4px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
}

.junk-question-icon {
  margin-bottom: 22px;
  color: var(--orange);
  font-size: 38px;
}

.junk-question-card h3 {
  margin: 0 0 16px;
  font-size: 27px;
  line-height: 1.3;
}

.junk-question-card p {
  margin: 0 0 26px;
  color: var(--grey);
  line-height: 1.75;
}

.junk-question-card .button {
  width: 100%;
  min-width: 0;
}


/* ========================================
   Junk Removal Responsive
======================================== */

@media (max-width: 1100px) {
  .junk-intro-layout,
  .junk-project-layout,
  .junk-trust-layout,
  .junk-pricing-layout,
  .junk-service-area {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .junk-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .junk-project-copy {
    max-width: 800px;
  }
}

@media (max-width: 820px) {
  .service-hero {
    min-height: 620px;
  }

  .service-hero-overlay {
    background: rgba(0, 0, 0, 0.76);
  }

  .service-hero-inner {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .service-hero h1 {
    font-size: clamp(42px, 10vw, 66px);
    letter-spacing: -1px;
  }

  .service-hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-hero-actions .button {
    width: min(100%, 360px);
  }

  .junk-trust-grid {
    grid-template-columns: 1fr;
  }

  .junk-steps-grid {
    grid-template-columns: 1fr;
  }

  .junk-step-card {
    min-height: auto;
  }
}

@media (max-width: 650px) {
  .service-hero {
    min-height: 570px;
    background-position: 62% center;
  }

  .service-hero-inner {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .service-hero h1 {
    font-size: 42px;
  }

  .service-hero-text {
    font-size: 17px;
  }

  .junk-services-grid {
    grid-template-columns: 1fr;
  }

  .junk-service-card {
    min-height: auto;
  }

  .junk-benefits-card,
  .junk-price-factors,
  .junk-question-card {
    padding: 30px 24px;
  }

  .junk-before-after {
    grid-template-columns: 1fr;
  }

  .junk-before-after figure,
  .junk-before-after img {
    min-height: 310px;
  }

  .junk-notice {
    flex-direction: column;
  }
}
