/* Styles personnalisés et animations */

.gradient-text {
  background: linear-gradient(135deg, #E91E8C 0%, #F97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-bg {
  background: linear-gradient(135deg, #E91E8C 0%, #F97316 100%);
}

.card-hover {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(233, 30, 140, 0.1);
  border-color: rgba(233, 30, 140, 0.2);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  animation: fadeUp 0.6s ease both;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

.step-line::after {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(50% + 28px);
  width: calc(100% - 56px);
  height: 2px;
  background: linear-gradient(90deg, #E91E8C, #F97316);
  opacity: 0.25;
}

@keyframes countUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.count-anim {
  animation: countUp 0.4s ease both;
}

.pill-active {
  background: linear-gradient(135deg, #E91E8C 0%, #F97316 100%);
  color: white;
  border-color: transparent;
}

.service-pill-active {
  background: #E91E8C;
  color: white;
  border-color: #E91E8C;
}

.msg-chip {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
}

.chip-amical   { background: #10b981; }
.chip-pro      { background: #8b5cf6; }
.chip-rappel   { background: #f59e0b; }
.chip-occasion { background: #E91E8C; }
.chip-promo    { background: #6366f1; }


.scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
