:root {
  --primary-blue: #1e3a8a;
  --accent-blue: #2563eb;
  --text-gray: #4b5563;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-gray);
}

.navbar {
  background-color: #fff;
  border-bottom: 1px solid #e5e7eb;
}

.navbar-brand {
  font-weight: 700;
  color: var(--primary-blue);
  font-size: 1.5rem;
}

.nav-link {
  font-weight: 500;
  color: var(--text-gray);
  margin: 0 0.5rem;
}

.nav-link.active {
  color: var(--accent-blue) !important;
}

.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../../assets/img/CombieasyIDP.jpg') center/cover no-repeat;
  min-height: 85vh;
  display: flex;
  align-items: center;
  color: white;
  text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}

.btn-primary {
  background-color: var(--accent-blue);
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: #1d4ed8;
}

.section-title {
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
}

.service-icon {
  color: var(--accent-blue);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.footer {
  background-color: var(--primary-blue);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-link {
  color: #9ca3af;
  text-decoration: none;
}

.footer-link:hover {
  color: white;
}

/* Fond d'écran très léger pour le back-office */

body {
  background-color: #f4f6f9;
}

/* Curseur personnalisé pour les lignes du tableau */

.table-hover tbody tr {
  cursor: pointer;
  transition: background-color 0.2s;
}

.sidebar-link {
  color: rgba(255, 255, 255, 0.75);
  transition: all 0.2s ease-in-out;
  border-radius: 6px;
  cursor: pointer;
}

.sidebar-link:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.15);
}

.sidebar-link.active {
  background-color: #0d6efd !important;
  color: #ffffff !important;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* Suppression des flèches pour les champs de type number (Chrome, Safari, Edge, Opera) */

input[type="number"]::-webkit-outer-spin-button, input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Suppression des flèches pour les champs de type number (Firefox) */

input[type="number"] {
  -moz-appearance: textfield;
}

/* --- PERSONNALISATION DU STEPPER LUX PRUDENTIA --- */

/* 1. Apparence par défaut (Étapes inactives à venir) */

.md-stepper-horizontal .md-step .md-step-circle {
  background-color: #e9ecef !important;
  color: #6c757d !important;
}

/* 2. Apparence de l'étape en cours (Active) et terminées (Done) */

.md-stepper-horizontal .md-step.active .md-step-circle, .md-stepper-horizontal .md-step.done .md-step-circle {
  background-color: #1e3a8a !important;
  color: #ffffff !important;
}

/* 3. Mettre le texte en gras pour les étapes terminées/actives */

.md-stepper-horizontal .md-step.active .md-step-title, .md-stepper-horizontal .md-step.done .md-step-title {
  font-weight: 800 !important;
  color: #1e3a8a !important;
}

/* Animation d'apparition de l'entonnoir */

.fade-in-bloc {
  animation: fadeInAnimation 0.6s ease-out forwards;
}

@keyframes fadeInAnimation {
  0% {
    opacity: 0;
    transform: translateY(-15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

