.services-section {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
}

/* Wrapper pour chaque bloc */
.service-wrapper {
  padding: 5rem 2rem;
}

.service-wrapper:nth-child(even) {
  background-color: white;
}

/* Bloc de service */
.service-block {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.service-block.reverse {
  flex-direction: row-reverse;
}

/* Images */
.service-images {
  flex: 1 1 50%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.service-images img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-images img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Texte */
.service-text {
  flex: 1 1 45%;
}

.service-text h2 {
  font-size: 2rem;
  color: #1c2c23;
  margin-bottom: 1rem;
}

.service-text .num {
  font-size: 3rem;
  color: #e0e0e0;
  margin-right: 0.8rem;
  display: inline-block;
  vertical-align: middle;
}

.service-text .intro {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.service-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-text ul li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
  font-size: 1rem;
  color: #444;
  line-height: 1.5;
}

.service-text ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #4CAF50;
  font-weight: bold;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.lightbox .close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}
.google-rating-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 2rem;
}

.google-rating-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  padding: 1rem 5rem;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  display: inline-block;
  max-width: fit-content;
  margin: 2rem auto;
}

.google-rating-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.stars {
  color: #fbbc04;
  font-size: 2rem;
  display: flex;
  justify-content: center;
  gap: 2px;
}

.stars span {
  color: #fbbc04;
  transition: transform 0.2s ease;
  display: inline-block;
  cursor: default;
}

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


.google-logo {
  height: 40px;
  width: auto;
}

.note {
  font-weight: bold;
  color: #333;
  font-size: 1rem;
}

.total {
  color: #777;
  font-size: 1rem;
}

.avis-link {
  display: block;
  margin-top: 0.4rem;
  color: #4CAF50;
  font-size: 0.85rem;
  text-decoration: none;
  font-weight: 600;
}

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


/* Responsive */
@media (max-width: 1024px) {
  .service-block {
    flex-direction: column;
  }

  .service-images {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-text {
    text-align: center;
  }

  .service-text h2 {
    font-size: 1.6rem;
  }

  .service-text .num {
    font-size: 2.5rem;
  }
}
