/* =========================================
   Junk Removal Page
========================================= */

.service-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 700px;

    background-image: url("https://iron-ridge.ca/images/junkremovalhero.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;

    color: #fff;
    overflow: hidden;
}

.service-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.84) 45%,
    rgba(0, 0, 0, 0.42) 78%,
    rgba(0, 0, 0, 0.25) 100%
  );
}

.service-hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
  padding-top: 110px;
  padding-bottom: 110px;
}

.service-hero h1 {
  max-width: 900px;
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 5.5vw, 84px);
  line-height: 1.03;
  letter-spacing: -2px;
  text-transform: uppercase;
}

.service-hero .eyebrow {
  margin-bottom: 20px;
}

.service-hero .orange-rule {
  width: 150px;
  height: 6px;
  margin: 28px 0;
  background: var(--orange);
}

.service-hero-text {
  max-width: 760px;
  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 {
  padding: 90px 0;
  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 .orange-rule,
.junk-project-copy .orange-rule,
.junk-trust-copy .orange-rule,
.junk-pricing-copy .orange-rule,
.junk-service-area .orange-rule {
  width: 112px;
  height: 4px;
  margin: 24px 0 28px;
  background: var(--orange);
}

.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;
  color: #fff;
  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;
  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;
  margin-inline: auto;
  text-align: center;
}

.junk-section-heading h2 {
  font-size: clamp(38px, 4.5vw, 62px);
}

.junk-section-heading p {
  max-width: 760px;
  margin-inline: auto;
}


/* =========================================
   What We Remove
========================================= */

.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;
}


/* =========================================
   Demolition Project
========================================= */

.junk-project-section {
  padding: 90px 0;
  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);
}


/* =========================================
   Three 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;
  color: #fff;
  font-size: 24px;
}

.junk-step-card p {
  position: relative;
  margin: 0;
  color: var(--grey);
  line-height: 1.75;
}


/* =========================================
   Pricing
========================================= */

.junk-pricing-section {
  padding: 90px 0;
  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;
  color: #fff;
  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;
  color: #fff;
  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;
}


/* =========================================
   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.78);
  }

  .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,
  .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 {
    width: min(100% - 28px, var(--max));
    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;
  }
}