/* =========================
   HERO PAGE SERVICES
========================= */

.hero-services {
  min-height: 70vh;
  background:
    linear-gradient(
      to bottom,
      rgba(15, 23, 42, 0.75),
      rgba(15, 23, 42, 0.85)
    ),
    url("../images/services/services-hero.jpeg") center/cover no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Ajustement texte */
.hero-services .hero-content {
  max-width: 900px;
  color: white;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-services {
    min-height: 60vh;
  }

  .hero-services h1 {
    font-size: 34px;
  }

  .hero-services p {
    font-size: 16px;
  }
}

.services-section {
  padding: 100px 0;
  background: #ffffff;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}

.service-row.reverse {
  grid-template-columns: 1fr 1fr;
}

.service-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.service-content {
  max-width: 520px;
}

.service-tag {
  display: inline-block;
  color: var(--orange);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.service-content h3 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 20px;
}

.service-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 25px;
}

.service-list {
  list-style: none;
  padding: 0;
}

.service-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 15px;
  color: #374151;
}

.service-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
  font-weight: bold;
}

/* Responsive */
@media (max-width: 900px) {
  .service-row,
  .service-row.reverse {
    grid-template-columns: 1fr;
  }

  .service-row.reverse {
    direction: rtl;
  }

  .service-row.reverse > * {
    direction: ltr;
  }
}
