/* ==========================================================================
   PAGE-SERVICES.CSS — Styles spécifiques à la page “Services”
   ========================================================================== */


/* =====================================================
   GRILLE DES SERVICES
   ----------------------------------------------------- */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.2rem;
  margin-top: 2rem;
}


/* =====================================================
   CARTE SERVICE — CARD PREMIUM
   ----------------------------------------------------- */

.service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);

  /* Animation d’apparition */
  opacity: 0;
  transform: translateY(12px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

/* Active l’animation au scroll (via JS) */
.service-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}


/* =====================================================
   HOVER — Effet premium propre et subtil
   ----------------------------------------------------- */

.service-card:hover {
  transform: translateY(-6px);
  border-color: #d1d5db;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}


/* =====================================================
   ICÔNE DANS BUBBLE (Lucide)
   ----------------------------------------------------- */

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;

  background: #fff4e6;  /* orange pastel */
  color: #ff8c00;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 1.2rem;
}

.service-icon svg,
.service-icon i {
  width: 28px;
  height: 28px;
}


/* =====================================================
   TITRES SERVICE
   ----------------------------------------------------- */

.service-card h2 {
  font-size: 1.28rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: #1a1a1a;
}


/* =====================================================
   PARAGRAPHE SERVICE
   ----------------------------------------------------- */

.service-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}


/* =====================================================
   RESPONSIVE
   ----------------------------------------------------- */

@media (max-width: 600px) {
  .service-card {
    padding: 1.5rem;
  }
}
