/* ============================================================
   coaching.css – Section Coaching Entreprise
   (Version Flexbox + bloc footer violet thématique)
   ============================================================ */

#coaching {
  padding: 4rem 1rem;
  background-color: #F7F5F0;
}

#coaching .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

#coaching .section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: #333;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================================
   Grille de cartes
   ============================================================ */
#coaching .services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

/* Carte individuelle */
#coaching .service-card {
  flex: 1 1 300px;
  max-width: 320px;
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

#coaching .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

/* Titres internes */
#coaching .service-card h4 {
  color: var(--gold);
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
  word-break: break-word;
  hyphens: auto;
  min-height: 2.8em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 0.4rem;
}

/* Texte dans les cartes */
#coaching .service-card p {
  text-align: center;
  color: #444;
  line-height: 1.6;
  font-size: 1rem;
  letter-spacing: 0.2px;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
  margin: 0.8rem auto 0;
  max-width: 90%;
}

/* ============================================================
   Bloc final violet (coaching-footer)
   ============================================================ */

#coaching .coaching-footer {
  margin-top: 3rem;
  padding: 2rem 2.5rem;
  border: 2px solid #9b59b6;
  border-radius: 14px;
  background: linear-gradient(135deg, #faf7ff 0%, #f4edff 100%);
  box-shadow: 0 4px 16px rgba(155, 89, 182, 0.08);
  transition: all 0.3s ease;
}

#coaching .coaching-footer:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(155, 89, 182, 0.15);
}

#coaching .coaching-footer p {
  font-size: 1.1rem;
  font-style: italic;
  color: #6a4fa1;
  text-align: center;
  margin: 0;
  line-height: 1.7;
  letter-spacing: 0.3px;
}

#coaching .coaching-footer::before {
  content: "✨";
  display: block;
  text-align: center;
  font-size: 1.6rem;
  color: #9b59b6;
  margin-bottom: 0.6rem;
  opacity: 0.8;
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1024px) {
  #coaching .section-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  #coaching {
    padding: 3rem 1rem;
  }
  #coaching .section-title {
    font-size: 1.6rem;
  }
  #coaching .service-card {
    padding: 1.5rem;
  }
  #coaching .coaching-footer {
    padding: 1.5rem;
    border-radius: 10px;
  }
  #coaching .coaching-footer p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  #coaching {
    padding: 2rem 1rem;
  }
  #coaching .section-title {
    font-size: 1.4rem;
  }
  #coaching .service-card {
    padding: 1rem;
    flex: 1 1 100%;
    max-width: 100%;
  }
}
