/* ------------------------------
           Cartes des services
        ------------------------------ */

.services {
  padding: 25px 0 90px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 38px;
  border-radius: 22px;
  background-color: #ffffff;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 15px 42px rgba(0, 0, 0, 0.14);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 7px;
  background-color: #d47d3c;
}

.service-icon {
  width: 74px;
  height: 74px;
  margin-bottom: 24px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eef5f2;
  font-size: 2.2rem;
}

.service-card h2 {
  margin-bottom: 14px;
  color: #2e6356;
  font-size: 1.65rem;
}

.service-card > p {
  margin-bottom: 22px;
  color: #666666;
}

.service-list {
  margin-bottom: 26px;
  list-style: none;
}

.service-list li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 26px;
}

.service-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #d47d3c;
  font-weight: bold;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2e6356;
  font-weight: bold;
}

.service-link:hover {
  color: #d47d3c;
}
