/* ===========================================
    PRESTATIONS 5 - TABS DETAILED
    =========================================== */
.prestations-5 {
  padding: 100px 5%;
  background: color-mix(in srgb, var(--gray-light) 40%, var(--white));
}
.prestations-5 .container {
  max-width: 1100px;
  margin: 0 auto;
}
.prestations-5 .header {
  text-align: center;
  margin-bottom: 50px;
}
.prestations-5 .eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}
.prestations-5 h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--primary);
}
.prestations-5 .tabs-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.prestations-5 .tab-btn {
  padding: 14px 24px;
  background: var(--white);
  border: 2px solid var(--gray-light);
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-dark);
  cursor: pointer;
  transition: all 0.3s ease;
}
.prestations-5 .tab-btn:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}
/* Neutralise le contour bleu par défaut (thème WP / navigateur) — CLAUDE.md §4.6 */
.prestations-5 .tab-btn:focus {
  outline: none;
}
.prestations-5 .tab-btn:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--secondary) 60%, transparent);
  outline-offset: 2px;
  border-color: var(--secondary);
  color: var(--secondary);
}
.prestations-5 .tab-btn.active {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
}
.prestations-5 .tab-content {
  display: none;
  animation: fadeIn 0.4s ease;
}
.prestations-5 .tab-content.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.prestations-5 .tab-image {
  height: 400px;
  overflow: hidden;
}
.prestations-5 .tab-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.prestations-5 .tab-info h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--black);
  margin-bottom: 16px;
}
.prestations-5 .tab-info > p {
  font-size: 1rem;
  color: var(--gray-dark);
  line-height: 1.9;
  margin-bottom: 24px;
}
.prestations-5 .tab-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}
.prestations-5 .tab-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--white);
  font-size: 0.9rem;
  color: var(--gray-dark);
}
.prestations-5 .tab-feature svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  color: var(--black);
}
@media (max-width: 1024px) {
  .prestations-5 .tab-content.active {
    grid-template-columns: 1fr;
  }
  .prestations-5 .tab-image {
    height: 300px;
    order: -1;
  }
}
@media (max-width: 640px) {
  .prestations-5 .tab-features {
    grid-template-columns: 1fr;
  }
}
