/* Page plomberie - Ets Gabriel */

.page-hero {
  padding: 90px 0;
  background: linear-gradient(135deg, #f4fbff 0%, #ffffff 55%, #fff1ea 100%);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 50px;
  align-items: center;
}

.page-hero-content h1 {
  font-size: clamp(36px, 5vw, 36px);
  line-height: 1.05;
  margin: 18px 0;
  color: #062f44;
}

.page-hero-content p {
  font-size: 17px;
  line-height: 1.8;
  color: #425466;
}

.page-hero-image img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 25px 60px rgba(6, 47, 68, .18);
}

.content-sidebar-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: start;
}

.main-content {
  background: #fff;
  border-radius: 28px;
  padding: 42px;
  box-shadow: 0 20px 45px rgba(6, 47, 68, .08);
}

.main-content h2 {
  color: #062f44;
  margin-top: 32px;
  margin-bottom: 14px;
}

.main-content h2:first-of-type {
  margin-top: 0;
}

.main-content p {
  line-height: 1.85;
  color: #4b5b66;
  margin-bottom: 18px;
}

.sidebar {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 22px;
}

.sidebar-card {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(6, 47, 68, .09);
}

.sidebar-card h3 {
  margin-top: 0;
  color: #062f44;
}

.sidebar-card iframe {
  border-radius: 18px;
}

.sidebar-city-list {
  display: grid;
  gap: 9px;
  max-height: 520px;
  overflow: auto;
  padding-right: 5px;
}

.sidebar-city-list a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  background: #f4f8fb;
  color: #062f44;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.sidebar-city-list a:hover {
  background: #e65124;
  color: #fff;
}

.sidebar-call {
  background: #062f44;
  color: #fff;
}

.sidebar-call h3,
.sidebar-call p {
  color: #fff;
}

/* Avis clients */

.testimonials {
  background: #f6f9fb;
}

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

.testimonial-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(6, 47, 68, .08);
  border: 1px solid rgba(6, 47, 68, .06);
}

.testimonial-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.testimonial-head img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 8px 18px rgba(6, 47, 68, .14);
}

.testimonial-head strong {
  display: block;
  color: #062f44;
  font-size: 18px;
  line-height: 1.2;
}

.testimonial-head span {
  display: block;
  color: #6b7c88;
  font-size: 14px;
  margin-top: 3px;
}

.testimonial-card p {
  line-height: 1.75;
  color: #4b5b66;
  margin-bottom: 0;
}

.stars {
  color: #e65124;
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

@media (max-width: 980px) {
  .page-hero-grid,
  .content-sidebar-grid {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }

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

  .main-content {
    padding: 28px;
  }

  .page-hero-image img {
    height: 330px;
  }
}
