/* =============================================================
   RÉNOVATION LABRIE v2 — service-page.css
   Pages individuelles de service
   ============================================================= */

/* ── SERVICE DETAIL SECTION ── */
.svc-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}
.svc-detail__img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(28,26,23,.10);
}
.svc-detail__img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .7s var(--ease);
}
.svc-detail__img:hover img { transform: scale(1.03); }
.svc-detail__img::after {
  content: '';
  position: absolute;
  bottom: -1px; right: -1px;
  width: 48px; height: 48px;
  border-bottom: 3px solid var(--orange);
  border-right: 3px solid var(--orange);
  border-radius: 0 0 var(--radius) 0;
}
.svc-detail__body { display: flex; flex-direction: column; }
.svc-detail__desc {
  font-size: .94rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}
.svc-detail__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.svc-detail__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--text-secondary);
}
.svc-detail__list li i {
  color: var(--orange);
  font-size: .82rem;
  flex-shrink: 0;
}
.svc-detail__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.svc-detail__zones {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-top: 8px;
}
.svc-detail__zones-title {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.svc-detail__zones p {
  font-size: .86rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── NOTRE APPROCHE (4 steps) ── */
.approach-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.approach-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px 28px;
  position: relative;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.approach-step:hover {
  border-color: var(--orange-border);
  box-shadow: 0 6px 24px rgba(217,95,43,.07);
  transform: translateY(-2px);
}
.approach-step__num {
  width: 40px; height: 40px;
  background: var(--orange);
  color: #fff;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 18px;
}
.approach-step__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.approach-step__desc {
  font-size: .84rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── FAQ ── */
.faq-list {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.faq-item:hover {
  border-color: var(--orange-border);
}
.faq-item.open {
  border-color: var(--orange-border);
  box-shadow: 0 4px 20px rgba(217,95,43,.06);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--text-primary);
  text-align: left;
  transition: color .2s;
}
.faq-question:hover { color: var(--orange); }
.faq-question i {
  color: var(--orange);
  font-size: .75rem;
  flex-shrink: 0;
  transition: transform .3s var(--ease);
}
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease), padding .35s;
}
.faq-item.open .faq-answer {
  max-height: 400px;
}
.faq-answer__inner {
  padding: 0 24px 22px;
  font-size: .9rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .svc-detail { grid-template-columns: 1fr; gap: 36px; }
  .svc-detail__img img { height: 300px; }
  .approach-steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .approach-steps { grid-template-columns: 1fr; }
  .faq-question { padding: 18px 18px; font-size: .92rem; }
  .faq-answer__inner { padding: 0 18px 18px; }
}
