/* ============================================
   NOS-SERVICES.CSS
============================================ */

/* ── Barre d'onglets sticky ───────────────── */
.services-nav-sticky {
  position: sticky;
  top: var(--nav-height);
  z-index: 100;
  background: var(--blanc);
  border-bottom: 1px solid var(--ivoire-dark);
  box-shadow: 0 2px 16px rgba(107,30,46,0.06);
}

.services-onglets {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.services-onglets::-webkit-scrollbar { display: none; }

.onglet {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 1.1rem 1.75rem;
  font-family: var(--font-corps);
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--gris-texte);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.onglet i { font-size: 18px; transition: color var(--transition); }

.onglet:hover {
  color: var(--bordeaux);
  background: var(--ivoire);
}

.onglet.actif {
  color: var(--bordeaux-dark);
  border-bottom-color: var(--or);
  font-weight: 600;
}

.onglet.actif i { color: var(--or); }


/* ── Sections services ────────────────────── */
.service-section { background: var(--ivoire); }
.service-section-alt { background: var(--gris-clair); }

.service-header {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.service-header-icone {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--bordeaux-dark), var(--bordeaux));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--or);
  font-size: 32px;
  flex-shrink: 0;
  box-shadow: var(--ombre-douce);
}

.service-header h2 { margin-bottom: 0.5rem; }


/* ── Items de service ─────────────────────── */
.service-items { margin-top: 0; }

.service-item {
  background: var(--blanc);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--ombre-douce);
  transition: transform var(--transition), box-shadow var(--transition), border-left var(--transition);
  border-left: 3px solid transparent;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--ombre-forte);
  border-left-color: var(--or);
}

.service-item-icone {
  width: 44px;
  height: 44px;
  background: var(--or-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bordeaux);
  font-size: 20px;
  margin-bottom: 1rem;
  transition: background var(--transition), color var(--transition);
}

.service-item:hover .service-item-icone {
  background: var(--bordeaux-dark);
  color: var(--or);
}

.service-item h4 {
  margin-bottom: 0.6rem;
  font-size: var(--t-base);
  color: var(--bordeaux-dark);
}

.service-item p {
  font-size: var(--t-sm);
  line-height: 1.65;
}


/* ── Responsive ───────────────────────────── */
@media (max-width: 1024px) {
  .service-header { flex-direction: column; gap: var(--space-md); }
}

@media (max-width: 768px) {
  .onglet span { display: none; }
  .onglet { padding: 1rem 1.25rem; }
  .service-items { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .services-onglets { justify-content: space-between; }
}