/* ===== Service page: Metal Roofing ===== */

/* ----- Hero ----- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 5rem 1.5rem 5rem;
  background: #fff;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.06), transparent);
  pointer-events: none;
}

.hero__gradient {
  display: none;
}

.hero__inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 4.5rem;
  align-items: center;
}

.hero__content {
  padding-left: 0.5rem;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #2c5f6f;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(44, 95, 111, 0.25);
}

.hero__label i {
  font-size: 0.85rem;
  opacity: 0.9;
}

.hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: #1a1a1a;
  margin: 0 0 1.75rem;
  letter-spacing: -0.02em;
}

.hero__text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4a4a4a;
  margin: 0 0 2.25rem;
  max-width: 460px;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 6px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: #c47646;
  color: #fff;
  border: none;
  box-shadow: 0 4px 14px rgba(196, 118, 70, 0.35);
}

.btn--primary:hover {
  box-shadow: 0 6px 20px rgba(196, 118, 70, 0.45);
}

.btn--secondary {
  background: #fff;
  color: #3d2c5c;
  border: 2px solid #3d2c5c;
}

.btn--secondary:hover {
  background: #f5f5f5;
}

.btn--large {
  padding: 1rem 2.5rem;
  font-size: 0.85rem;
}

.hero__visual {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.hero__image-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.14), 0 8px 24px rgba(0, 0, 0, 0.08);
}

.hero__image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

.hero__image {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

.hero__why {
  background: #fff;
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.hero__why-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.5rem;
  letter-spacing: 0.02em;
}

.hero__why-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

/* ----- Sections ----- */
.section {
  padding: 4rem 1.5rem;
  background: #fff;
}

.section--light {
  background: #fff;
}

.section--split {
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  padding-left: 0;
  padding-right: 0;
}

.section--steps {
  background: linear-gradient(180deg, #fff 0%, #f0f7f9 50%, #fff 100%);
}

.section--cards {
  background: linear-gradient(180deg, #fafbff 0%, #fff 100%);
}

.section.testimonials {
  background: linear-gradient(180deg, #fff 0%, #faf8f6 100%);
}

.section--faq {
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.section__inner {
  max-width: 800px;
  margin: 0 auto;
}

.section__inner--wide {
  max-width: 1100px;
}

.section__inner--narrow {
  max-width: 900px;
}

.section__accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #2c5f6f, rgba(44, 95, 111, 0.4));
  border-radius: 2px;
}

.section__accent--inline {
  position: static;
  display: inline-block;
  width: 40px;
  height: 4px;
  margin-bottom: 0.75rem;
  vertical-align: middle;
  background: #2c5f6f;
  border-radius: 2px;
}

.section__title--small {
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}

/* ----- Split section (What to expect + Benefits) ----- */
.section--split .section__inner {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.split-grid__left {
  position: relative;
  padding-left: 1.5rem;
}

.split-grid__left .section__accent {
  top: 0.25rem;
  bottom: 0.25rem;
}

.split-grid__left .section__title {
  margin-top: 0;
}

.split-grid__left p {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  margin: 0 0 1rem;
}

.split-grid__left p:last-child {
  margin-bottom: 0;
}

.benefits-list--compact .benefits-list__item {
  padding: 1rem 0;
}

.benefits-list--compact .benefits-list__icon {
  width: 44px;
  height: 44px;
  font-size: 1rem;
}

.benefits-list--compact .benefits-list__item:nth-child(1) .benefits-list__icon { border-radius: 12px; }
.benefits-list--compact .benefits-list__item:nth-child(2) .benefits-list__icon { border-radius: 50%; }
.benefits-list--compact .benefits-list__item:nth-child(3) .benefits-list__icon { border-radius: 12px; }
.benefits-list--compact .benefits-list__item:nth-child(4) .benefits-list__icon { border-radius: 8px; }

/* ----- Steps section with side block ----- */
.section--steps .section__inner {
  max-width: 1100px;
}

.steps-wrap {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  align-items: start;
}

.steps-side {
  position: sticky;
  top: 140px;
}

.steps-side__highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background: linear-gradient(145deg, #2c5f6f 0%, #1e4552 50%, #163a47 100%);
  color: #fff;
  border-radius: 20px;
  margin-top: 1.5rem;
  box-shadow: 0 10px 30px rgba(44, 95, 111, 0.35), inset 0 1px 0 rgba(255,255,255,0.15);
}

.steps-side__num {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.steps-side__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-top: 0.25rem;
}

.steps-main {
  min-width: 0;
}

/* ----- Cards section intro ----- */
.cards-intro {
  margin-bottom: 2rem;
}

.cards-intro__text .section__accent--inline {
  display: block;
}

.section__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 1.5rem;
}

.section__title--large {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}

.section__lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
  margin: 0 0 2.5rem;
}

.section__content {
  font-size: 1rem;
  line-height: 1.75;
  color: #444;
}

.section__content p {
  margin: 0 0 1.25rem;
}

.section__content p:last-child {
  margin-bottom: 0;
}

.section__cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ----- Benefits list ----- */
.benefits-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.benefits-list__item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.benefits-list__item:last-child {
  border-bottom: none;
}

.benefits-list__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  border-radius: 12px;
}

.benefits-list__item:nth-child(1) .benefits-list__icon {
  background: linear-gradient(135deg, #2c5f6f 0%, #1e4552 100%);
  box-shadow: 0 4px 12px rgba(44, 95, 111, 0.35);
}

.benefits-list__item:nth-child(2) .benefits-list__icon {
  background: linear-gradient(135deg, #c47646 0%, #a86238 100%);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(196, 118, 70, 0.35);
}

.benefits-list__item:nth-child(3) .benefits-list__icon {
  background: #fff;
  color: #2c5f6f;
  border: 2px solid #2c5f6f;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.benefits-list__item:nth-child(4) .benefits-list__icon {
  background: linear-gradient(135deg, #5a4d7a 0%, #3d3555 100%);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(90, 77, 122, 0.3);
}

.benefits-list__item div {
  font-size: 1rem;
  line-height: 1.65;
  color: #444;
}

.benefits-list__item strong {
  color: #1a1a1a;
}

/* ----- Steps (How we work) ----- */
.steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.step__num {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(44, 95, 111, 0.3);
}

.step:nth-child(1) .step__num {
  background: linear-gradient(145deg, #2c5f6f 0%, #1e4552 100%);
}

.step:nth-child(2) .step__num {
  background: linear-gradient(145deg, #c47646 0%, #a86238 100%);
  box-shadow: 0 4px 14px rgba(196, 118, 70, 0.35);
}

.step:nth-child(3) .step__num {
  background: linear-gradient(145deg, #3d6b5b 0%, #2d5246 100%);
  box-shadow: 0 4px 14px rgba(61, 107, 91, 0.35);
}

.step__body {
  flex: 1;
}

.step__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.5rem;
}

.step__body p {
  font-size: 1rem;
  line-height: 1.65;
  color: #444;
  margin: 0;
}

/* ----- Cards (When metal makes sense) ----- */
.cards--four {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  border-radius: 12px;
}

.card:nth-child(1) .card__icon {
  background: linear-gradient(135deg, #2c5f6f 0%, #1e4552 100%);
  box-shadow: 0 4px 12px rgba(44, 95, 111, 0.3);
}

.card:nth-child(2) .card__icon {
  background: linear-gradient(135deg, #c47646 0%, #a86238 100%);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(196, 118, 70, 0.3);
}

.card:nth-child(3) .card__icon {
  background: linear-gradient(135deg, #3d6b5b 0%, #2d5246 100%);
  box-shadow: 0 4px 12px rgba(61, 107, 91, 0.3);
}

.card:nth-child(4) .card__icon {
  background: linear-gradient(135deg, #5a4d7a 0%, #3d3555 100%);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(90, 77, 122, 0.3);
}

.card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

.card__text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

/* ----- Testimonials ----- */
.testimonials__lead {
  text-align: center;
  margin-bottom: 2.5rem;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.testimonial {
  background: #fff;
  border-radius: 12px;
  padding: 1.75rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}

.testimonial:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.testimonial__quote-wrap {
  position: relative;
  margin-bottom: 1.5rem;
}

.testimonial__icon {
  color: #2c5f6f;
  opacity: 0.4;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  display: block;
}

.testimonial__text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #444;
  margin: 0;
  font-style: italic;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(44, 95, 111, 0.2);
}

.testimonial__name {
  display: block;
  font-size: 1rem;
  color: #1a1a1a;
  margin-bottom: 0.2rem;
}

.testimonial__location {
  font-size: 0.85rem;
  color: #666;
}

/* ----- FAQ ----- */
.section--faq .section__lead {
  margin-bottom: 2rem;
}

.faq-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item__q {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  padding: 1.25rem 0 0.5rem;
  cursor: default;
}

.faq-item__a {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #555;
  margin: 0 0 1rem;
  padding-left: 0;
}

/* ----- Responsive ----- */
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .hero__content {
    padding-left: 0;
  }

  .hero__text {
    max-width: none;
  }

  .hero__buttons {
    justify-content: center;
  }

  .hero__why {
    text-align: left;
  }

  .hero__gradient {
    width: 100%;
    height: 50%;
    opacity: 0.7;
  }

  .split-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .split-grid__left {
    padding-left: 1rem;
  }

  .split-grid__left .section__accent {
    width: 3px;
    left: 0;
  }

  .steps-wrap {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .steps-side {
    position: static;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .steps-side__highlight {
    margin-top: 0;
  }
}

@media (max-width: 700px) {
  .section__inner--wide {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section--split .section__inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: auto;
    padding: 3rem 1rem 3rem;
  }

  .hero__buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .cards--four {
    grid-template-columns: 1fr;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .section,
  .section--light {
    padding: 3rem 1rem;
  }

  .section--split .section__inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .step {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .steps-side__highlight {
    width: 80px;
    height: 80px;
  }

  .steps-side__num {
    font-size: 2rem;
  }
}
