/**Service accompagnament **/
/* Effets stylés sur les cartes  */
.service-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  height: 100%;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}
.service-img img {
  transition: transform 0.5s ease;
  height: 250px;
  object-fit: cover;
}
.service-card:hover .service-img img {
  transform: scale(1.1);
}
.service-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.05));
  opacity: 0.9;
}
.text-safari {
  color: #f4b41a;
}

/*  Styles Section Offres */

.promo-card {
  height: 100%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.promo-card img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.promo-card:hover img {
  transform: scale(1.08);
}

.promo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
  height: 100%;
  opacity: 1;
  transition: all 0.4s ease-in-out;
}

.promo-card:hover .promo-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.1));
}

.btn-safari {
  background: #f4b41a;
  color: #fff;
  font-weight: 600;
  border: none;
}

.btn-safari:hover {
  background: #d89c15;
  color: #fff;
}

.object-fit-cover {
  object-fit: cover;
}
/*  end Styles Section Offres */
/** end Service accompagnement **/