/* Reset simple */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #111827;
  background-color: #f8fafc;
  overflow-x: hidden;
}

/* Animations globales */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Layout de base */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}
/* ========================================
   HEADER BLEU MODERNE COMPACT - VERSION FINALE
   Combine : Style bleu moderne + Hauteur réduite
   REMPLACEZ VOTRE CODE .topbar PAR CELUI-CI
   ======================================== */

/* Header bleu dégradé moderne et compact */
.topbar {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
  background-size: 200% 200%;
  color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 4px 15px rgba(30, 64, 175, 0.25);
  border-bottom: none;
  transition: all 0.3s ease;
}

/* Container compact */
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0; /* Réduit ! */
  gap: 24px; /* Réduit ! */
}

/* Logo compact */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-image,
.custom-logo {
  height: 45px; /* Réduit de 55px à 45px */
  width: auto;
  display: block;
  filter: brightness(1.1);
  transition: filter 0.3s ease;
}

.logo:hover .logo-image,
.logo:hover .custom-logo {
  filter: brightness(1.3);
}

/* Navigation compacte - Liens blancs élégants */
.nav {
  display: flex;
  gap: 24px; /* Réduit de 32px */
  flex-wrap: wrap;
  align-items: center;
}

.nav a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.95rem; /* Légèrement réduit */
  position: relative;
  transition: all 0.3s ease;
  font-weight: 500;
  padding: 6px 0; /* Réduit de 8px */
  letter-spacing: 0.3px;
}

/* Effet hover - texte blanc pur */
.nav a:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

/* Barre de soulignement - Jaune/Orange pour contraste */
.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px; /* Réduit de 3px */
  background: linear-gradient(90deg, #fad677, #f59e0b);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav a:hover::after {
  width: 100%;
}

/* Lien actif - blanc pur avec soulignement jaune */
.nav a.active {
  color: #ffffff;
  font-weight: 600;
}

.nav a.active::after {
  width: 100%;
  background: linear-gradient(90deg, #fad677, #f59e0b);
}

/* Bouton d'appel compact - Jaune/Orange pour contraste */
.btn-call {
  background: linear-gradient(135deg, #fad677, #f59e0b);
  color: #1e40af;
  padding: 8px 20px; /* Réduit de 12px 24px */
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.9rem; /* Réduit de 0.95rem */
  white-space: nowrap;
  box-shadow: 0 3px 12px rgba(250, 214, 119, 0.35);
  transition: all 0.3s ease;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(250, 214, 119, 0.5);
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #1e3a8a;
}

/* Responsive */
/* ========================================
   MOBILE COMPACT - Réduction des espaces
   À REMPLACER dans style.css : le @media (max-width: 900px) existant
   ======================================== */

@media (max-width: 900px) {
  .topbar-inner {
    flex-direction: column !important;
    align-items: center !important;
    padding: 8px 0 !important;
    gap: 8px !important;
  }

  .logo {
    display: flex;
    justify-content: center;
    width: 100%;
    order: 1;
    margin: 0 !important;
  }

  .logo-image,
  .custom-logo {
    height: 40px;
  }

  .nav {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 6px !important;
    width: 100% !important;
    order: 2;
    position: relative !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    transform: none !important;
  }

  .nav a {
    color: #ffffff !important;
    font-size: 0.85rem !important;
    padding: 6px 12px !important;
    border-radius: 6px !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    background: transparent !important;
    border: none !important;
    font-weight: 500 !important;
    position: relative !important;
  }

  .nav a:hover {
    background: rgba(255, 255, 255, 0.15) !important;
  }

  /* Lien actif mobile - fond blanc léger comme desktop hover */
  .nav a.active {
    background: rgba(255, 255, 255, 0.2) !important;
    font-weight: 600 !important;
  }

  /* Supprimer le soulignement sur mobile (pas assez d'espace) */
  .nav a::after {
    display: none !important;
  }

  .menu-toggle {
    display: none !important;
  }

  .nav-overlay {
    display: none !important;
  }

  .btn-call {
    display: none !important;
  }
}

/* Mobile très petit */
@media (max-width: 600px) {
  .topbar-inner {
    padding: 6px 0 !important;
    gap: 6px !important;
  }

  .logo-image,
  .custom-logo {
    height: 35px !important;
  }

  .nav {
    gap: 4px !important;
  }

  .nav a {
    font-size: 0.8rem !important;
    padding: 5px 10px !important;
  }
}

@media (max-width: 600px) {
  .topbar-inner {
    padding: 6px 0;
  }
  
  .logo-image,
  .custom-logo {
    height: 35px;
  }
}
/* Hero */
.hero-section {
  background: linear-gradient(135deg, #4A8AC7 0%, #3b82f6 50%, #7DB3E0 100%);
  background-size: 200% 200%;
  /* animation: gradient-shift 15s ease infinite; */
  color: white;
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(250,214,119,0.1)"/></svg>');
  opacity: 0.3;
  /* animation: float 20s ease-in-out infinite;*/
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}


.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-text p {
  color: #e0e7ff;
  margin-bottom: 24px;
  font-size: 1.1rem;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-text {
  text-align: center;
}

.hero-buttons {
  justify-content: center;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

.btn-primary {
  background: linear-gradient(135deg, #3b82f6, #7DB3E0);
  color: white;
  box-shadow: 0 4px 15px rgba(91, 155, 213, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(91, 155, 213, 0.4);
}

.btn-secondary {
  border:none;
  color: #e0e7ff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.hero-image {
  animation: fadeInUp 0.8s ease 0.3s both;
}

/* ========================================
   BADGE LOCALISATION HERO
   ======================================== */

.hero-location-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.1s both;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.hero-location-badge i {
  color: #ffffff;
  font-size: 16px;
}

.hero-location-badge span {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.hero-location-badge:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Sections génériques */
.section {
  padding: 80px 0;
}


.section-alt {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.section-header h2,
.section h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  text-align: center;
  background: linear-gradient(135deg, #4A8AC7, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.section-header p,
.section-intro {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
  color: #64748b;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Services */
.services-section {
  background: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.service-card {
  text-align: center;
  background: white;
  border-radius: 24px;
  padding: 32px 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(59, 130, 246, 0.1);
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }
.service-card:nth-child(7) { animation-delay: 0.7s; }
.service-card:nth-child(8) { animation-delay: 0.8s; }
.service-card:nth-child(9) { animation-delay: 0.9s; }
.service-card:nth-child(10) { animation-delay: 1s; }

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #7DB3E0);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 50px rgba(91, 155, 213, 0.2);
  border-color: rgba(91, 155, 213, 0.3);
}

.service-card:nth-child(3n+1) .service-icon {
  background: linear-gradient(135deg, #E3F2FD, #BBDEFB);
}

.service-card:nth-child(3n+2) .service-icon {
  background: linear-gradient(135deg, #FFE8E6, #FFC5C0);
}

.service-card:nth-child(3n+3) .service-icon {
  background: linear-gradient(135deg, #FFF8E1, #FFECB3);
}

.service-card:nth-child(3n+1):hover .service-icon {
  background: linear-gradient(135deg, #3b82f6, #7DB3E0);
}

.service-card:nth-child(3n+2):hover .service-icon {
  background: linear-gradient(135deg, #f37e79, #f59893);
}

.service-card:nth-child(3n+3):hover .service-icon {
  background: linear-gradient(135deg, #fad677, #fce08f);
}

.service-card:nth-child(3n+1) .service-icon i {
  color: #3b82f6;
}

.service-card:nth-child(3n+2) .service-icon i {
  color: #f37e79;
}

.service-card:nth-child(3n+3) .service-icon i {
  color: #fad677;
}

.service-card:hover .service-icon i {
  color: white;
}

.service-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 20px;
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-icon i {
  font-size: 36px;
  transition: all 0.4s ease;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #1e293b;
  font-weight: 600;
}

.service-card p {
  color: #64748b;
  line-height: 1.7;
  font-size: 0.95rem;
}

.services-grid > .service-card:last-child:nth-child(3n + 1) {
  grid-column: 2;
}

/* Tarifs */
#tarifs {
  background: #f8f9fa;
  position: relative;
}

/* Bouton aide centré entre les cartes */
.pricing-help-center {
  display: flex;
  justify-content: center;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  pointer-events: none;
}

.pricing-help-btn {
  pointer-events: auto;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid #3b82f6;
  background: white;
  color: #3b82f6;
  font-size: 32px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

/* Vague sonar 1 */
.pricing-help-btn::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid #3b82f6;
  opacity: 0;
  z-index: -1;
  animation: sonarWave 2s ease-out infinite;
}

/* Vague sonar 2 */
.pricing-help-btn::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid #3b82f6;
  opacity: 0;
  z-index: -1;
  animation: sonarWave 2s ease-out infinite 1s;
}

.pricing-help-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(59, 130, 246, 0.3);
  background: #3b82f6;
  color: white;
}

.pricing-help-btn i {
  animation: blink 2s infinite;
}

@keyframes sonarWave {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}


.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  margin-top: 40px;
  align-items: stretch;
}


.card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(59, 130, 246, 0.1);
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.pricing-card {
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}


.pricing-card:nth-child(1) { animation-delay: 0.1s; }
.pricing-card:nth-child(2) { animation-delay: 0.3s; }

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.2);
}

.pricing-card-header {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  color: #ffffff;
  padding: 20px 24px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 20px 20px 0 0;
  position: relative;
  overflow: hidden;
  justify-content: center;
  text-align: center;
}

.pricing-card-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: float 15s ease-in-out infinite;
}

.pricing-header-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.pricing-card:hover .pricing-header-icon {
  transform: rotate(360deg);
  background-color: rgba(255, 255, 255, 0.3);
}

.pricing-header-icon i {
  font-size: 20px;
}

.pricing-card-body {
  padding: 32px 28px 36px;
  flex: 1;
  display: flex;
  flex-direction: column;
}


.pricing-two-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.pricing-col {
  text-align: center;
  padding: 0;
  background: transparent;
  border-radius: 0;
  transition: all 0.3s ease;
}

.pricing-col:hover {
  background: transparent;
  transform: scale(1.02);
}

.pricing-col-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, #3b82f6, #7DB3E0);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: all 0.3s ease;
}

.pricing-col:hover .pricing-col-icon {
  background: linear-gradient(135deg, #4A8AC7, #3b82f6);
  color: white;
  transform: scale(1.05);
}

.pricing-col-icon i {
  font-size: 24px;
}

.pricing-col h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #1e293b;
  font-weight: 600;
}

.pricing-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: #3b82f6;
  margin-bottom: 4px;
  line-height: 1;
}

.pricing-unit {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 12px;
}

.pricing-note {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.5;
}

/* Info box avec icône i */
.pricing-info-box {
  margin-top: 30px;
  padding: 14px 18px;
  background: linear-gradient(135deg, #FFF8E1, #FFECB3);
  border-radius: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  border: none;
  border-left: 3px solid #fad677;
  text-align: center;
}
.pricing-info-box div {
  text-align: center;
}

.pricing-info-box i {
  color: #fad677;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-info-box p {
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

.pricing-info-box p:first-child {
  margin-bottom: 2px;
}

.pricing-small-text {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e2e8f0;
  font-size: 0.85rem;
  color: #64748b;
  text-align: center;
}

.pricing-card-footer {
  margin-top: auto;
  display: flex;
  justify-content: center;
}


.pricing-main-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  border-radius: 999px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.pricing-main-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.pricing-pack-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.pricing-pack-icon i {
  font-size: 28px;
}

.pricing-card:hover .pricing-pack-icon {
  transform: scale(1.05) rotate(5deg);
}

.pricing-pack-title {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 24px;
  color: #1e293b;
  font-weight: 600;
}

/* Liste des avantages - Packs Assistance */
.pricing-pack-list {
  list-style: none;
  margin: 0 0 24px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.pricing-pack-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f1f5f9;
  padding: 10px 18px;
  border-radius: 10px;
  width: 100%;
  max-width: 360px;
  text-align: left;
}
.pricing-pack-list li:hover {
  background: #f9fafb;
  transform: translateX(4px);
}

.pricing-pack-list i {
  color: #3b82f6;
  min-width: 18px;
  font-size: 18px;
  flex-shrink: 0;
}


.pricing-help-link {
  margin-top: 20px;
  border: none;
  background: transparent;
  color: #3b82f6;
  font-size: 0.95rem;
  display: none;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.pricing-help-link i {
  animation: blink 2s infinite;
  font-size: 18px;
}

.pricing-help-link:hover {
  color: #2563eb;
  transform: translateX(5px);
}

.pricing-help-link:hover i {
  animation: pulse 0.5s infinite;
}

/* Modal */
.pricing-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pricing-modal.is-open {
  display: block;
  opacity: 1;
}

.pricing-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(5px);
}

.pricing-modal-dialog {
  position: relative;
  max-width: 1000px;
  margin: 60px auto;
  background: white;
  border-radius: 24px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
  padding: 32px 36px 40px;
  overflow-y: auto;
  max-height: calc(100vh - 120px);
  animation: fadeInUp 0.4s ease;
}

.pricing-modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  border: none;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  width: 36px;
  height: 36px;
  border-radius: 12px;
  font-size: 20px;
  cursor: pointer;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.pricing-modal-close:hover {
  transform: rotate(90deg);
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
}

.pricing-modal-title {
  font-size: 1.8rem;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.pricing-modal-intro {
  margin-bottom: 24px;
  font-size: 1rem;
  color: #475569;
  line-height: 1.6;
}

.pricing-modal-table-wrapper {
  margin-top: 20px;
  overflow-x: auto;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pricing-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.pricing-compare-table th,
.pricing-compare-table td {
  border: 1px solid #e2e8f0;
  padding: 12px 16px;
  text-align: left;
}

.pricing-compare-table thead th {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  color: #ffffff;
  font-weight: 600;
}

.pricing-compare-table tbody tr:hover {
  background-color: #f8fafc;
}

.pricing-help-cta {
  margin-top: 32px;
  padding: 24px;
  border-radius: 20px;
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  color: white;
  text-align: center;
}

/* About Section */
.about-section {
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
  margin-top: 40px;
}

.about-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Testimonials Carousel */
.testimonials-section {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.testimonials-carousel {
  position: relative;
  max-width: 1100px;
  margin: 40px auto 0;
  padding: 0 60px;
}

.testimonials-wrapper {
  overflow: hidden;
  border-radius: 20px;
  padding: 20px 0;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 10px 0;
}

.testimonial-slide {
  min-width: 33.333%;
  padding: 10px 12px;
  box-sizing: border-box;
}

.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(91, 155, 213, 0.15);
  border-color: #3b82f6;
}

.testimonial-quote {
  color: #fad677;
  font-size: 32px;
  margin-bottom: 16px;
  opacity: 0.5;
}

.testimonial-text {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1;
}

.testimonial-author h4 {
  color: #3b82f6;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.testimonial-author p {
  color: #94a3b8;
  font-size: 0.85rem;
}

/* Boutons carousel */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #3b82f6;
  background: white;
  color: #3b82f6;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(91, 155, 213, 0.2);
}

.carousel-btn:hover {
  background: #3b82f6;
  color: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(91, 155, 213, 0.3);
}

.prev-btn {
  left: 0;
}

.next-btn {
  right: 0;
}

/* Indicateurs */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #3b82f6;
  width: 32px;
  border-radius: 5px;
}

.indicator:hover {
  background: #3b82f6;
  opacity: 0.7;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

/* Features Section */
.features-section {
  background: white;
}

.features-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.features-list {
  list-style: none;
  padding: 0;
}

.feature-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding: 16px;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: white;
}

.feature-item:hover {
  background: #f8fafc;
  transform: translateX(5px);
}

.feature-item:nth-child(1) .feature-icon {
  background: linear-gradient(135deg, #E3F2FD, #BBDEFB);
  color: #3b82f6;
}

.feature-item:nth-child(2) .feature-icon {
  background: linear-gradient(135deg, #FFE8E6, #FFC5C0);
  color: #f37e79;
}

.feature-item:nth-child(3) .feature-icon {
  background: linear-gradient(135deg, #FFF8E1, #FFECB3);
  color: #fad677;
}

.feature-item:nth-child(4) .feature-icon {
  background: linear-gradient(135deg, #E3F2FD, #BBDEFB);
  color: #3b82f6;
}

.feature-item:nth-child(1):hover .feature-icon {
  background: linear-gradient(135deg, #3b82f6, #7DB3E0);
  color: white;
}

.feature-item:nth-child(2):hover .feature-icon {
  background: linear-gradient(135deg, #f37e79, #f59893);
  color: white;
}

.feature-item:nth-child(3):hover .feature-icon {
  background: linear-gradient(135deg, #fad677, #fce08f);
  color: white;
}

.feature-item:nth-child(4):hover .feature-icon {
  background: linear-gradient(135deg, #3b82f6, #7DB3E0);
  color: white;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  transform: scale(1.05);
}

.feature-icon i {
  font-size: 24px;
}

.feature-text h4 {
  color: #1e293b;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.feature-text p {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Stats */
.stats-section {
  display: none;
}

.stats-container {
  display: none;
}

.stat-item {
  display: none;
}

/* CTA */
.cta-section {
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: white;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: #e0e7ff;
}

/* FAQ - Version avec fond bleu pâle */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #eff6ff; /* Bleu très pâle */
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #dbeafe;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.15);
  border-color: #bfdbfe;
}

/* Question */
.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
  background: transparent;
}

.faq-question:hover {
  background: #dbeafe; /* Bleu pâle un peu plus foncé au hover */
}

.faq-question h3 {
  font-size: 1.05rem;
  color: #0c4a6e; /* Bleu foncé pour le texte */
  font-weight: 600;
  margin: 0;
}

.faq-question i {
  color: #3b82f6; /* Bleu principal */
  font-size: 18px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

/* Item actif (ouvert) */
.faq-item.active {
  background: linear-gradient(135deg, #3b82f6, #60a5fa); /* Fond bleu dégradé quand ouvert */
  border-color: #3b82f6;
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.25);
}

.faq-item.active .faq-question {
  background: transparent;
}

.faq-item.active .faq-question h3 {
  color: #ffffff; /* Texte blanc quand ouvert */
}

.faq-item.active .faq-question i {
  color: #ffffff; /* Icône blanche quand ouvert */
  transform: rotate(180deg);
}

/* Réponse */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
  background: white; /* Fond blanc pour la réponse */
}

.faq-item.active .faq-answer {
  max-height: 800px; /* Augmenté pour votre longue réponse sur les zones */
  padding: 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.faq-answer p {
  color: #475569;
  line-height: 1.7;
  margin: 0 0 12px 0;
  font-size: 0.95rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer p strong {
  color: #1e293b;
  font-weight: 600;
}

.faq-answer p em {
  color: #64748b;
  font-style: italic;
}


/* ===================================================
   SECTION CONTACT - VERSION BLEUE MODERNE
   =================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}

.contact-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.2);
}

.contact-card-header {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  color: #ffffff;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: center;  /* ← AJOUTEZ CETTE LIGNE */
  gap: 12px;
  font-weight: 600;
  font-size: 1.05rem;
}

.contact-card-header i {
  font-size: 20px;
}

.contact-card-body {
  padding: 28px;
}

/* ========== CARTE TÉLÉPHONE ========== */

.contact-card-phone {
  text-align: center;
}

.contact-phone-main {
  margin: 24px auto 28px;
  padding: 20px 36px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.15);
  border: 2px solid #e0f2fe;
  transition: all 0.3s ease;
}

.contact-phone-main:hover {
  border-color: #3b82f6;
  box-shadow: 0 6px 30px rgba(59, 130, 246, 0.25);
  transform: scale(1.02);
}

.contact-phone-main a {
  color: #0c4a6e;
  text-decoration: none;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.contact-hours-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 18px;
  text-align: center;
}

.contact-hours-table {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 18px;
  border-radius: 12px;
  font-size: 0.92rem;
  background: #f8fafc;
  color: #64748b;
  transition: all 0.2s ease;
}

.contact-hours-row:hover {
  background: #eff6ff;
  transform: translateX(3px);
}

.contact-hours-row .day {
  font-weight: 600;
  color: #475569;
}

.contact-hours-row .hours {
  color: #3b82f6;
  font-weight: 500;
}

.contact-hours-row.is-today {
  border-left: 4px solid #3b82f6;
  background: #eff6ff;
  font-weight: 600;
}

.contact-hours-row.is-today .day {
  color: #3b82f6;
}

.contact-hours-row.is-closed {
  opacity: 0.6;
  font-style: italic;
}

.contact-hours-row.is-closed .hours {
  color: #94a3b8;
}

/* ========== CARTE FORMULAIRE ========== */

.contact-card-form .contact-card-body {
  padding: 24px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form-row-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.contact-form .form-group {
  margin-bottom: 0;
}

.contact-form .form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1e293b;
  display: block;
}

.contact-form .form-group input,
.contact-form .form-group textarea,
.contact-form .form-group select {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  font-family: inherit;
  background: #ffffff;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus,
.contact-form .form-group select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

/* Champ téléphone avec préfixe */
.contact-phone-group .phone-input-wrapper {
  display: flex;
  align-items: stretch;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  overflow: hidden;
  background: #ffffff;
  transition: all 0.3s ease;
}

.contact-phone-group .phone-input-wrapper:focus-within {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.phone-prefix {
  padding: 12px 14px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  color: #1e40af;
  font-weight: 600;
  font-size: 0.92rem;
  border-right: 1px solid #bfdbfe;
  display: flex;
  align-items: center;
  gap: 6px;
}

.phone-prefix img {
  width: 20px;
  height: auto;
}

.phone-input-wrapper input {
  border: none !important;
  border-radius: 0 !important;
  flex: 1;
  padding: 12px 14px !important;
}

.phone-input-wrapper input:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* Bouton envoyer */
.contact-submit-btn {
  width: 100%;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(59, 130, 246, 0.4);
  background: linear-gradient(135deg, #2563eb, #3b82f6);
}

.contact-submit-btn i {
  font-size: 16px;
}

/* Responsive contact */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-form-row-2 {
    grid-template-columns: 1fr;
  }
}


/* Responsive */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .section h2 {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-grid > .service-card:last-child:nth-child(3n + 1) {
    grid-column: auto;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .pricing-help-center {
    margin: 20px 0;
  }

  .pricing-help-btn {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }

  .pricing-two-columns {
    grid-template-columns: 1fr;
  }

  .features-container {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-slide {
    min-width: 100%;
  }

  .testimonials-carousel {
    padding: 0 50px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 50px 0;
  }

  .topbar-inner {
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 20px;
  }

  .nav a {
    font-size: 0.9rem;
  }
}

@media (max-width: 600px) {
  .hero-section {
    padding: 32px 0 50px;
  }

  .hero-text h1 {
    font-size: 1.75rem;
  }

  .section h2 {
    font-size: 1.75rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 20px;
  }

  .service-card {
    padding: 24px 20px;
  }

  .stats-container {
    grid-template-columns: 1fr;
  }

  .stat-item h3 {
    font-size: 2.5rem;
  }

  .pricing-modal-dialog {
    margin: 20px 12px;
    padding: 20px 16px;
  }
}

/* ========================================
   MODAL AMÉLIORÉE - PROFILS & PACKS
   ======================================== */

/* Texte d'intro après le tableau */
.pricing-modal-intro-after {
  margin: 24px auto;
  max-width: 800px;
  text-align: center;
  color: #475569;
  font-size: 1rem;
  line-height: 1.6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  background: #f8fafc;
  border-radius: 12px;
}

.pricing-modal-intro-after i {
  color: #3b82f6;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Séparateur avec icône bleue et sans bordure */
.pricing-modal-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 40px 0 24px;
  padding: 16px;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border-radius: 12px;
  border: none;
}

.pricing-modal-separator i {
  color: #3b82f6;
  font-size: 24px;
}

.pricing-modal-separator span {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e293b;
}

/* Tableau des tarifs détaillés - Headers en bleu dégradé */
.pricing-modal-table-wrapper {
  margin-top: 24px;
  margin-bottom: 24px;
  overflow-x: auto;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pricing-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  background: white;
}

.pricing-compare-table th,
.pricing-compare-table td {
  border: 1px solid #e2e8f0;
  padding: 14px 16px;
  text-align: center;
}

/* Headers principaux (Particuliers / Pros) */
.pricing-compare-table thead tr:first-child th {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px;
}
/* Headers secondaires (Heures / Prix / Réduction) - BLEU PÂLE */
.pricing-compare-table thead tr:nth-child(2) th {
  background: #dbeafe; /* Bleu pâle */
  color: #1e40af; /* Texte bleu foncé */
  font-weight: 600;
  font-size: 0.95rem;
}

/* ========================================
   TABLEAU DÉTAILLÉ DES TARIFS - HEADERS COLORÉS
   ======================================== */

.pricing-table-detailed .pricing-compare-table thead tr:first-child th {
  background: linear-gradient(135deg, #3b82f6, #60a5fa) !important;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px;
}

.pricing-table-detailed .pricing-compare-table thead tr:nth-child(2) th {
  background: #dbeafe !important; /* Bleu pâle */
  color: #1e40af !important; /* Texte bleu foncé */
  font-weight: 600;
  font-size: 0.95rem;
}

/* ========================================
   FIN TABLEAU DÉTAILLÉ
   ======================================== */

.pricing-compare-table tbody tr {
  transition: all 0.2s ease;
}
/* ========================================
   TOUS LES TABLEAUX DE LA MODAL - HEADERS COLORÉS
   ======================================== */

.pricing-modal .pricing-compare-table thead tr:first-child th {
  background: linear-gradient(135deg, #3b82f6, #60a5fa) !important;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px;
}

.pricing-modal .pricing-compare-table thead tr:nth-child(2) th {
  background: #dbeafe !important;
  color: #1e40af !important;
  font-weight: 600;
  font-size: 0.95rem;
}

/* ========================================
   FIN HEADERS MODAL
   ======================================== */

.pricing-compare-table tbody tr:hover {
  background-color: #f8fafc;
}

.pricing-compare-table tbody td:first-child,
.pricing-compare-table tbody td:nth-child(4) {
  font-weight: 700;
  color: #1e293b;
}

.pricing-compare-table tbody td:nth-child(3) {
  font-weight: normal;
}

/* CTA Final - Version discrète et professionnelle */
.pricing-help-cta {
  margin-top: 32px;
  padding: 20px 28px;
  border-radius: 12px;
  background: #f8fafc;
  border: 2px solid #e0f2fe;
  text-align: center;
  transition: all 0.3s ease;
}

.pricing-help-cta:hover {
  border-color: #3b82f6;
  background: #eff6ff;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.1);
}

.pricing-help-cta h4 {
  font-size: 1.05rem;
  margin-bottom: 14px;
  color: #475569;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.pricing-help-cta h4 i {
  color: #3b82f6;
  font-size: 18px;
}

.pricing-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  color: white !important;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
}

.pricing-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.pricing-cta-btn i {
  font-size: 14px;
}

/* Bouton de fermeture avec couleur rouge */
.pricing-modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  border: none;
  background: #f37e79;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(243, 126, 121, 0.3);
}

.pricing-modal-close:hover {
  transform: rotate(90deg) scale(1.1);
  background: #ef4444;
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

/* Titre de la modal SANS icône */
.pricing-modal-title {
  font-size: 2rem;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  text-align: center;
}

/* Responsive */
@media (max-width: 900px) {
  .pricing-profiles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .pricing-profiles-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-modal-dialog {
    margin: 20px 12px;
    padding: 24px 16px;
  }
  
  .pricing-modal-title {
    font-size: 1.5rem;
  }
  
  .pricing-help-cta h4 {
    font-size: 1.2rem;
  }
}
/* Message de confirmation contact - VERSION BLEUE */
.contact-message-success {
  max-width: 700px;
  margin: 0 auto 32px;
  padding: 18px 24px;
  border-radius: 12px;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe); /* Bleu clair */
  color: #1e3a8a; /* Bleu foncé */
  border: 2px solid #3b82f6; /* Bleu principal */
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  animation: slideDown 0.5s ease;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2); /* Ombre bleue */
}

.contact-message-success i {
  font-size: 28px;
  color: #3b82f6; /* Icône bleue */
  flex-shrink: 0;
}

.contact-message-success p {
  margin: 0;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ----- FOOTER PRINCIPAL ----- */
.talbiso-footer {
  margin-top: 60px;
  padding: 40px 0 10px;
  background: linear-gradient(135deg, #4A8AC7 0%, #3b82f6 50%, #7DB3E0 100%);
  color: #e5f0ff;
}

.talbiso-footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

/* Titres */
.talbiso-footer-col h4 {
  margin-bottom: 16px;
  font-size: 1.05rem;
  color: #ffffff;
}

/* Listes */
.talbiso-footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.talbiso-footer-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.talbiso-footer-list i {
  width: 18px;
}

/* Bas de footer */
.talbiso-footer-bottom {
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.2);
  text-align: center;
  font-size: 0.9rem;
}

.talbiso-footer-bottom p {
  margin: 4px 0;
}

/* Responsive */
@media (max-width: 800px) {
  .talbiso-footer-inner {
    flex-direction: column;
    gap: 30px;
  }
}
/* ========================================
   FIX ALIGNEMENT BOUTONS - SANS GRAND ESPACE
   REMPLACEZ LE CODE PRÉCÉDENT PAR CELUI-CI
   ======================================== */

.pricing-modal .pricing-profiles-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px !important;
  margin: 32px 0 !important;
}

.pricing-modal .pricing-profile-card {
  background: white !important;
  border: 2px solid #e5e7eb !important;
  border-radius: 16px !important;
  padding: 20px !important;
  text-align: center !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  display: grid !important;
  grid-template-rows: auto auto auto auto 1fr auto !important;
  min-height: 320px !important;
}

.pricing-modal .pricing-profile-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15) !important;
  border-color: #3b82f6 !important;
}

.pricing-modal .pricing-profile-icon {
  width: 60px !important;
  height: 60px !important;
  border-radius: 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto 16px !important;
  transition: all 0.3s ease !important;
}

.pricing-modal .pricing-profile-icon i {
  font-size: 28px !important;
}

.pricing-modal .pricing-profile-card:hover .pricing-profile-icon {
  transform: scale(1.1) rotate(5deg) !important;
}

.pricing-modal .pricing-profile-card h4 {
  font-size: 1.25rem !important;
  color: #1e293b !important;
  margin-bottom: 8px !important;
  font-weight: 700 !important;
}

.pricing-modal .profile-subtitle {
  font-size: 0.85rem !important;
  color: #64748b !important;
  margin-bottom: 12px !important;
  font-weight: 500 !important;
}

.pricing-modal .profile-description {
  font-size: 0.8rem !important;
  color: #94a3b8 !important;
  line-height: 1.5 !important;
  margin-bottom: 0 !important;
  font-style: italic !important;
}

/* Spacer invisible qui prend l'espace restant */
.pricing-modal .profile-description::after {
  content: '' !important;
  display: block !important;
  height: 20px !important;
}

.pricing-modal .profile-pack {
  display: inline-block !important;
  background: linear-gradient(135deg, #10b981, #059669) !important;
  color: white !important;
  padding: 6px 16px !important;
  border-radius: 999px !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  margin: 0 auto !important;
  align-self: end !important;
  justify-self: center !important;
}

/* Responsive */
@media (max-width: 900px) {
  .pricing-modal .pricing-profiles-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 600px) {
  .pricing-modal .pricing-profiles-grid {
    grid-template-columns: 1fr !important;
  }
  
  .pricing-modal .pricing-profile-card {
    min-height: 300px !important;
  }
}
/* ========================================
   FIX TABLEAUX - HEADERS SECONDAIRES EN BLANC
   AJOUTEZ CE CODE À LA FIN DE VOTRE STYLE.CSS
   ======================================== */

/* Headers secondaires (Heures / Prix / Réduction) EN BLANC */
.pricing-modal .pricing-compare-table thead tr:nth-child(2) th {
  background: #ffffff !important;
  color: #1e40af !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  border: 1px solid #e2e8f0 !important;
}
/* ========================================
   BOUTON SCROLL TO TOP - DESIGN BLEU MODERNE
   AJOUTEZ CE CODE À LA FIN DE VOTRE STYLE.CSS
   ======================================== */

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(100px);
  transition: all 0.4s ease;
  z-index: 999;
}

/* Visible quand on scroll */
.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(59, 130, 246, 0.6);
}

.scroll-to-top:active {
  transform: translateY(-2px);
}

/* Animation pulse subtile */
.scroll-to-top.visible {
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
  }
  50% {
    box-shadow: 0 4px 25px rgba(59, 130, 246, 0.7);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}
/* ========================================
   BOUTON COOKIES ICÔNE - VERSION SIMPLE
   REMPLACEZ L'ANCIEN CSS COOKIES PAR CELUI-CI
   ======================================== */

/* Bouton cookies - icône à côté du scroll-to-top */
.cookie-icon-btn {
  position: fixed;
  bottom: 30px;
  right: 90px; /* Décalé pour être à gauche du scroll-to-top */
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #fad677, #f59e0b);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
  transition: all 0.4s ease;
  z-index: 998;
  animation: cookiePulse 3s infinite;
}

@keyframes cookiePulse {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
  }
  50% {
    box-shadow: 0 4px 25px rgba(245, 158, 11, 0.7);
  }
}

.cookie-icon-btn:hover {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  transform: translateY(-5px) rotate(15deg);
  box-shadow: 0 6px 25px rgba(245, 158, 11, 0.6);
}

.cookie-icon-btn:active {
  transform: translateY(-2px);
}

/* Notification première visite */
.cookie-first-visit {
  position: fixed;
  bottom: 95px;
  right: 30px;
  z-index: 999;
  animation: slideInRight 0.5s ease;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.cookie-notification {
  background: white;
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 300px;
  border: 2px solid #fad677;
}

.cookie-notification i {
  font-size: 24px;
  color: #f59e0b;
  flex-shrink: 0;
}

.cookie-notification p {
  margin: 0;
  font-size: 0.85rem;
  color: #1e3a8a;
  line-height: 1.4;
}

.cookie-notification a {
  color: #3b82f6;
  text-decoration: underline;
  font-weight: 600;
}

.cookie-notification a:hover {
  color: #2563eb;
}

.cookie-dismiss {
  background: none;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  font-size: 16px;
  padding: 4px;
  transition: color 0.3s;
  flex-shrink: 0;
}

.cookie-dismiss:hover {
  color: #64748b;
}

/* Modal de paramètres */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(5px);
}

.cookie-modal-dialog {
  position: relative;
  max-width: 600px;
  width: calc(100% - 40px);
  max-height: calc(100vh - 100px);
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookie-modal-header {
  padding: 24px;
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  color: white;
  position: relative;
}

.cookie-modal-header h3 {
  margin: 0;
  font-size: 1.5rem;
  padding-right: 40px;
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.cookie-modal-content {
  padding: 24px;
  max-height: 400px;
  overflow-y: auto;
}

.cookie-intro {
  margin: 0 0 20px 0;
  padding: 12px;
  background: #dbeafe;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #1e3a8a;
  line-height: 1.5;
}

.cookie-category {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e7eb;
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category-header {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.cookie-category h4 {
  margin: 0 0 6px 0;
  font-size: 1rem;
  color: #1e3a8a;
  font-weight: 600;
}

.cookie-category p {
  margin: 0;
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.4;
}

.cookie-required {
  font-size: 0.8rem;
  color: #10b981;
  font-weight: 600;
}

/* Toggle switch */
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
  flex-shrink: 0;
  margin-top: 2px;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #cbd5e1;
  transition: 0.3s;
  border-radius: 26px;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

.cookie-switch input:checked + .cookie-slider {
  background-color: #10b981;
}

.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(24px);
}

.cookie-switch input:disabled + .cookie-slider {
  background-color: #3b82f6;
  cursor: not-allowed;
}

.cookie-modal-footer {
  padding: 20px 24px;
  background: #f8fafc;
  border-top: 1px solid #e5e7eb;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cookie-accept {
  background: #10b981;
  color: white;
}

.cookie-accept:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.cookie-save {
  background: #3b82f6;
  color: white;
}

.cookie-save:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.cookie-decline {
  background: #f37e79;
  color: white;
}

.cookie-decline:hover {
  background: #dc2626;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(243, 126, 121, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .cookie-icon-btn {
    bottom: 75px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
  
  .cookie-first-visit {
    bottom: 130px;
    right: 20px;
    left: 20px;
  }
  
  .cookie-notification {
    max-width: 100%;
  }
  
  .cookie-modal-footer {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-category-header {
    flex-direction: column;
  }
}
/* ========================================
   IMAGE HERO - OPTIMISÉE DESKTOP ET MOBILE
   Belle sur ordinateur ET sur téléphone
   ======================================== */

/* Hero section */
.hero-section {
  position: relative;
  overflow: hidden;
}

/* Image sur DESKTOP - pleine largeur */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://talbisoconsulting.be/wp-content/uploads/2025/11/ChatGPT-Image-27-nov.-2025-11_36_23.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
}

/* Contenu au-dessus */
.hero-content {
  position: relative;
  z-index: 2;
}

/* MOBILE - Optimisé pour smartphone */
@media (max-width: 768px) {
  .hero-section::before {
    width: 100%;
    opacity: 0.55;
    background-size: cover;
    background-position: center center;
  }
  
  /* Overlay plus fort sur mobile pour rendre le texte lisible */
  .hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.7) 0%, rgba(59, 130, 246, 0.5) 50%, rgba(59, 130, 246, 0.7) 100%);
    z-index: 1;
    pointer-events: none;
  }
  
  .hero-content {
    z-index: 3;
  }
}

/* Tablette - ajustement intermédiaire */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-section::before {
    opacity: 0.55;
    background-position: center center;
  }
}
/* ========================================
   ANIMATIONS ULTRA-FLUIDES - FOCUS SERVICES
   AJOUTEZ CE CODE À LA FIN DE VOTRE STYLE.CSS
   ======================================== */

/* Base pour toutes les animations */
.anim-fade-down,
.anim-hero-title,
.anim-hero-text,
.anim-service-card,
.anim-pricing,
.anim-feature,
.anim-faq,
.anim-testimonial,
.anim-contact {
  opacity: 0;
}

/* Titres de sections - Descente douce */
.anim-fade-down {
  transform: translateY(-40px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-fade-down.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero Title - Très lent et élégant */
.anim-hero-title {
  transform: translateY(20px);
  transition: all 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-hero-title.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero Text - Apparition douce avec délai */
.anim-hero-text {
  transform: translateY(20px);
  transition: all 1.3s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.3s;
}

.anim-hero-text.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ⭐ CARTES DE SERVICES - Animation FLUIDE et ATTIRANTE ⭐ */
.anim-service-card {
  /* Apparaît du bas avec une légère rotation */
  transform: translateY(60px) scale(0.95) rotate(-2deg);
  transition: all 1.1s cubic-bezier(0.16, 1, 0.3, 1);
  filter: blur(2px);
}

.anim-service-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1) rotate(0deg);
  filter: blur(0);
}

/* Effet hover encore plus marqué sur les services */
.service-card:hover {
  transform: translateY(-15px) scale(1.03) !important;
  box-shadow: 0 25px 60px rgba(59, 130, 246, 0.25) !important;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

/* Cartes de tarifs - Zoom doux avec bounce */
.anim-pricing {
  transform: scale(0.8);
  transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.anim-pricing.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Features - Slide from left fluide */
.anim-feature {
  transform: translateX(-60px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-feature.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* FAQ - Fade up simple et rapide */
.anim-faq {
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-faq.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Témoignages - Slide + rotate subtil */
.anim-testimonial {
  transform: translateY(40px) rotate(-3deg);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-testimonial.is-visible {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}

/* Contact - Slide up puissant */
.anim-contact {
  transform: translateY(50px);
  transition: all 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-contact.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Performance optimization */
.anim-fade-down,
.anim-hero-title,
.anim-hero-text,
.anim-service-card,
.anim-pricing,
.anim-feature,
.anim-faq,
.anim-testimonial,
.anim-contact {
  will-change: transform, opacity;
}

/* Libérer les ressources après l'animation */
.is-visible {
  will-change: auto;
}

/* Respect des préférences utilisateur */
@media (prefers-reduced-motion: reduce) {
  .anim-fade-down,
  .anim-hero-title,
  .anim-hero-text,
  .anim-service-card,
  .anim-pricing,
  .anim-feature,
  .anim-faq,
  .anim-testimonial,
  .anim-contact {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    filter: none !important;
  }
}
/* Forcer un seul lien actif */
body:not(.home) .nav a:first-child:not(.active) {
  color: #475569 !important;
}

body:not(.home) .nav a:first-child:not(.active)::after {
  width: 0 !important;
}
/* ========================================
   MENU BURGER - VERSION FINALE CORRIGÉE v2
   
   ✅ Texte BLANC
   ✅ PETITE fenêtre (pas plein écran)
   ✅ Liens fonctionnels
   
   REMPLACEZ tout le code @media (max-width: 900px) 
   du menu burger par celui-ci
   ======================================== */

/* Bouton burger - DISCRET */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 60;
  transition: all 0.3s ease;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Animation du burger en X */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: transparent;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 50;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ========================================
   MENU SUR UNE SEULE LIGNE - MOBILE
   Remplacer le @media (max-width: 900px) dans style.css
   ======================================== */

@media (max-width: 900px) {
  .topbar-inner {
    flex-direction: column !important;
    align-items: center !important;
    padding: 8px 0 !important;
    gap: 8px !important;
  }

  .logo {
    display: flex;
    justify-content: center;
    width: 100%;
    order: 1;
    margin: 0 !important;
  }

  .logo-image,
  .custom-logo {
    height: 40px;
  }

  /* Menu sur UNE SEULE LIGNE */
  .nav {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important; /* ← CLEF: pas de wrap */
    justify-content: center !important;
    align-items: center !important;
    gap: 4px !important; /* Réduit pour gagner de la place */
    width: 100% !important;
    order: 2;
    position: relative !important;
    background: transparent !important;
    padding: 0 8px !important; /* Petit padding horizontal */
    margin: 0 !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    transform: none !important;
    overflow-x: auto !important; /* Scroll horizontal si nécessaire */
    overflow-y: hidden !important;
  }

  .nav a {
    color: #ffffff !important;
    font-size: 0.8rem !important; /* Réduit pour tout faire tenir */
    padding: 6px 10px !important; /* Compact */
    border-radius: 6px !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    white-space: nowrap !important; /* Pas de retour à la ligne dans les mots */
    background: transparent !important;
    border: none !important;
    font-weight: 500 !important;
    flex-shrink: 0 !important; /* Ne pas rétrécir les liens */
  }

  .nav a:hover {
    background: rgba(255, 255, 255, 0.15) !important;
  }

  .nav a.active {
    background: rgba(255, 255, 255, 0.25) !important;
    font-weight: 600 !important;
  }

  .nav a::after {
    display: none !important;
  }

  .menu-toggle {
    display: none !important;
  }

  .nav-overlay {
    display: none !important;
  }

  .btn-call {
    display: none !important;
  }
}

/* Mobile très petit - encore plus compact */
@media (max-width: 600px) {
  .topbar-inner {
    padding: 6px 0 !important;
    gap: 6px !important;
  }

  .logo-image,
  .custom-logo {
    height: 35px !important;
  }

  .nav {
    gap: 3px !important; /* Très compact */
    padding: 0 4px !important;
  }

  .nav a {
    font-size: 0.75rem !important; /* Encore plus petit */
    padding: 5px 8px !important;
  }
}


/* ========================================
   ESPACEMENT DES SECTIONS
   À ajouter dans style.css
   ======================================== */

/* S'assurer que les sections ont un padding-top pour compenser le header fixe */
section[id] {
  scroll-margin-top: 80px; /* Offset pour le header sticky */
}

/* Hero section compacte */
.hero-section {
  min-height: auto !important;
  padding: 60px 0 40px 0 !important;
}

/* Sections régulières */
.section {
  padding: 60px 0 !important;
}

/* Sur mobile, réduire les paddings */
@media (max-width: 900px) {
  .hero-section {
    padding: 40px 0 30px 0 !important;
  }
  
  .section {
    padding: 40px 0 !important;
  }
  
  section[id] {
    scroll-margin-top: 120px; /* Plus grand sur mobile car header plus haut */
  }
}

/* ========================================
   PAGE DÉPANNAGE À DISTANCE - STYLES COMPLETS
   Thème Talbiso Consulting
   ======================================== */

/* HERO FULL */
.depannage-hero-full {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
  color: white;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.depannage-hero-full::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".1" fill="%23ffffff"/></svg>') no-repeat bottom;
  background-size: cover;
  opacity: 0.1;
}

.depannage-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(250, 214, 119, 0.2);
  color: #fad677;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 25px;
  border: 1px solid rgba(250, 214, 119, 0.3);
}

.depannage-hero-full h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.8;
  opacity: 0.95;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fad677;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
  padding: 16px 35px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-hero-primary {
  background: linear-gradient(135deg, #fad677, #f59e0b);
  color: #1e40af;
  box-shadow: 0 8px 25px rgba(250, 214, 119, 0.4);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(250, 214, 119, 0.6);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

/* WHY SECTION */
.depannage-why {
  padding: 80px 0;
}

.why-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  height: 100%;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(30, 64, 175, 0.15);
  border-color: #3b82f6;
}

.why-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin-bottom: 25px;
}

.why-card h3 {
  color: #1e40af;
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.why-card > p {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 20px;
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-list li {
  padding: 8px 0;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 10px;
}

.why-list i {
  color: #22c55e;
  font-size: 1.1rem;
}

/* PROBLEMS SECTION */
.depannage-problems {
  padding: 80px 0;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.problem-category {
  background: white;
  padding: 35px 30px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.problem-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(30, 64, 175, 0.12);
}

.category-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid #e2e8f0;
}

.category-header i {
  font-size: 2rem;
  color: #3b82f6;
}

.category-header h3 {
  color: #1e40af;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
}

.problem-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.problem-list li {
  padding: 12px 0;
  color: #475569;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.6;
}

.problem-list i {
  color: #22c55e;
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.problems-note {
  background: #fff7ed;
  border-left: 4px solid #f59e0b;
  padding: 20px 25px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.problems-note i {
  color: #f59e0b;
  font-size: 1.5rem;
  margin-top: 3px;
}

.problems-note p {
  color: #92400e;
  line-height: 1.7;
  margin: 0;
}

/* PROCESS TIMELINE */
.depannage-process {
  padding: 80px 0;
}

.process-timeline {
  display: grid;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.process-step {
  display: grid;
  grid-template-columns: 60px 80px 1fr;
  gap: 25px;
  align-items: start;
  padding: 30px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 30px rgba(30, 64, 175, 0.15);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #fad677, #f59e0b);
  color: #1e40af;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(250, 214, 119, 0.4);
}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #e0f2fe, #bae6fd);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #1e40af;
}

.step-content h3 {
  color: #1e40af;
  font-size: 1.4rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.step-content p {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 15px;
}

.step-time {
  display: inline-block;
  background: #f1f5f9;
  color: #475569;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* FAQ GRID */
.depannage-faq-full {
  padding: 80px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.faq-card {
  background: white;
  padding: 35px 30px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #3b82f6;
}

.faq-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(30, 64, 175, 0.15);
}

.faq-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #e0f2fe, #bae6fd);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #1e40af;
  margin-bottom: 20px;
}

.faq-card h3 {
  color: #1e40af;
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.faq-card p {
  color: #64748b;
  line-height: 1.8;
}

/* GARANTIES */
.depannage-garanties {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
}

.garanties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.garantie-item {
  text-align: center;
  padding: 40px 25px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.garantie-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 35px rgba(30, 64, 175, 0.15);
}

.garantie-item i {
  font-size: 3rem;
  color: #3b82f6;
  margin-bottom: 20px;
  display: block;
}

.garantie-item h3 {
  color: #1e40af;
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.garantie-item p {
  color: #64748b;
  line-height: 1.7;
}

/* CTA FINAL */
.depannage-cta-final {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  padding: 80px 0;
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.cta-content > p {
  font-size: 1.2rem;
  opacity: 0.95;
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
  padding: 20px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-cta-primary {
  background: linear-gradient(135deg, #fad677, #f59e0b);
  color: #1e40af;
  box-shadow: 0 8px 30px rgba(250, 214, 119, 0.4);
}

.btn-cta-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(250, 214, 119, 0.6);
}

.btn-cta-primary i {
  font-size: 1.5rem;
}

.btn-cta-primary div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.btn-cta-primary span {
  font-size: 0.9rem;
  font-weight: 500;
}

.btn-cta-primary strong {
  font-size: 1.2rem;
}

.btn-cta-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
}

.cta-hours {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 25px;
  border-radius: 50px;
  font-size: 0.95rem;
  backdrop-filter: blur(10px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .depannage-hero-full {
    padding: 60px 0 50px;
  }

  .depannage-hero-full h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .hero-stats {
    gap: 30px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .process-step {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .step-number,
  .step-icon {
    margin: 0 auto;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }

  .cta-actions {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .depannage-hero-full h1 {
    font-size: 1.6rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .why-card,
  .problem-category,
  .process-step,
  .faq-card {
    padding: 25px 20px;
  }

  .problems-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   CORRECTIONS PAGE DÉPANNAGE À DISTANCE
   À AJOUTER/REMPLACER dans style.css
   ======================================== */

/* CORRECTION 1 : Ajouter l'image en filigrane dans le hero */
.depannage-hero-full {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
  color: white;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

/* Image en filigrane - identique à la homepage */
.depannage-hero-full::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://talbisoconsulting.be/wp-content/uploads/2020/05/tech-03.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
}

/* Contenu au-dessus du filigrane */
.depannage-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* Mobile - Overlay plus fort pour lisibilité */
@media (max-width: 768px) {
  .depannage-hero-full::before {
    width: 100%;
    opacity: 0.55;
    background-size: cover;
    background-position: center center;
  }
  
  .depannage-hero-full::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.7) 0%, rgba(59, 130, 246, 0.5) 50%, rgba(59, 130, 246, 0.7) 100%);
    z-index: 1;
    pointer-events: none;
  }
  
  .depannage-hero-content {
    z-index: 3;
  }
}
/* ========================================
   CORRECTION FINALE - Accueil en blanc
   À AJOUTER/REMPLACER dans style.css
   ======================================== */

/* Style de base - TOUS les liens en blanc */
.nav a {
  color: rgba(255, 255, 255, 0.9) !important;
  text-decoration: none;
  font-size: 0.95rem;
  position: relative;
  transition: all 0.3s ease;
  font-weight: 500;
  padding: 6px 0;
  letter-spacing: 0.3px;
  background: transparent !important;
}

/* Hover - blanc pur */
.nav a:hover {
  color: #ffffff !important;
  transform: translateY(-1px);
}

/* Barre de soulignement */
.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #fad677, #f59e0b);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav a:hover::after {
  width: 100%;
}

/* Lien actif - blanc + soulignement jaune */
.nav a.active {
  color: #ffffff !important;
  font-weight: 600 !important;
  background: transparent !important;
}

.nav a.active::after {
  width: 100% !important;
  background: linear-gradient(90deg, #fad677, #f59e0b) !important;
}

/* Sur la page dépannage : TOUS les liens en blanc, seul dépannage souligné */
body.page-template-page-depannage-distance .nav a {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500 !important;
}

body.page-template-page-depannage-distance .nav a:hover {
  color: #ffffff !important;
}

body.page-template-page-depannage-distance .nav a::after {
  width: 0 !important;
}

/* Seul le lien dépannage est souligné */
body.page-template-page-depannage-distance .nav a[href*="depannage-a-distance"] {
  color: #ffffff !important;
  font-weight: 600 !important;
}

body.page-template-page-depannage-distance .nav a[href*="depannage-a-distance"]::after {
  width: 100% !important;
  background: linear-gradient(90deg, #fad677, #f59e0b) !important;
}

/* Sur mobile */
@media (max-width: 900px) {
  .nav a {
    color: #ffffff !important;
    font-size: 0.85rem !important;
    padding: 6px 12px !important;
    border-radius: 6px !important;
    background: transparent !important;
  }

  .nav a:hover {
    background: rgba(255, 255, 255, 0.15) !important;
  }

  .nav a.active {
    background: rgba(255, 255, 255, 0.25) !important;
    font-weight: 600 !important;
  }

  .nav a::after {
    display: none !important;
  }
}
/* FORCER Accueil en blanc sur TOUTES les pages */
body:not(.home) .nav a:first-child:not(.active),
body:not(.home) .nav a:first-child,
body.page-template-page-depannage-distance .nav a:first-child,
body.page .nav a:first-child {
  color: rgba(255, 255, 255, 0.9) !important;
}

body:not(.home) .nav a:first-child:hover {
  color: #ffffff !important;
}
/* ========================================
   UNIFORMISER LE TITRE HERO - Page Dépannage
   Même style que le titre de la homepage
   À AJOUTER à la fin de style.css
   ======================================== */

/* Alternative : si tu veux exactement le même style que homepage */
.depannage-hero-full h1 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 2.5rem !important; /* Même taille que homepage */
  font-weight: 700 !important;
  margin-bottom: 16px !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2) !important;
}

.hero-subtitle {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 1.1rem !important; /* Même taille que homepage */
  font-weight: 400 !important;
  line-height: 1.6 !important;
  opacity: 0.95 !important;
}
/* ========================================
   RÉDUIRE L'ESPACE EN HAUT - Page Dépannage
   Même hauteur que la homepage
   À AJOUTER à la fin de style.css
   ======================================== */

/* Réduire le padding top du hero dépannage */
.depannage-hero-full {
  padding: 60px 0 80px !important; /* Même que homepage : 60px au lieu de 100px */
}

/* Sur mobile - ajuster aussi */
@media (max-width: 768px) {
  .depannage-hero-full {
    padding: 40px 0 60px !important; /* Encore plus compact sur mobile */
  }
}


/* Grid 3 colonnes - CENTRER et réduire la largeur */
.depannage-why .grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 380px));
  gap: 40px;
  justify-content: center; /* CENTRER */
  max-width: 1200px;
  margin: 0 auto;
}

/* Cartes - largeur contrôlée */
.why-card {
  max-width: 380px;
  width: 100%;
}

/* COULEURS ICÔNES */

/* 1. Intervention Immédiate = Bleu */
.depannage-why .why-card:nth-child(1) .why-icon {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%) !important;
  color: #3b82f6 !important;
}

/* 2. Sécurité Maximale = Rouge/Corail */
.depannage-why .why-card:nth-child(2) .why-icon {
  background: linear-gradient(135deg, #fecaca 0%, #fca5a5 100%) !important;
  color: #ef4444 !important;
}

/* 3. Prix Avantageux = Jaune */
.depannage-why .why-card:nth-child(3) .why-icon {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%) !important;
  color: #f59e0b !important;
}
/* ========================================
   3 CARTES SUR 1 LIGNE - Page Dépannage
   + Couleurs identiques homepage
   À AJOUTER à la fin de style.css
   ======================================== */

/* Grid 3 colonnes FIXES sur une ligne */
.depannage-why .grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr) !important; /* 3 colonnes égales */
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Cartes - largeur automatique */
.why-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  width: 100%;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* COULEURS ICÔNES - IDENTIQUES HOMEPAGE */

/* 1. Intervention Immédiate = Bleu (Conseil Informatique) */
.depannage-why .why-card:nth-child(1) .why-icon {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%) !important;
  color: #3b82f6 !important;
}

/* 2. Sécurité Maximale = Rouge/Corail (Dépannage Informatique) */
.depannage-why .why-card:nth-child(2) .why-icon {
  background: linear-gradient(135deg, #fecaca 0%, #fca5a5 100%) !important;
  color: #ef4444 !important;
}

/* 3. Prix Avantageux = Jaune (Cloud & Infrastructure) */
.depannage-why .why-card:nth-child(3) .why-icon {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%) !important;
  color: #f59e0b !important;
}

/* Style de base des icônes */
.why-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.why-icon i {
  font-size: 2rem;
}

.why-card:hover .why-icon {
  transform: scale(1.1) rotate(5deg);
}

/* Responsive - Sur tablette et mobile, passer en colonne */
@media (max-width: 900px) {
  .depannage-why .grid-3 {
    grid-template-columns: 1fr !important; /* 1 colonne sur mobile */
    gap: 30px;
    padding: 0 20px;
  }
}

/* Sur tablette moyenne */
@media (min-width: 901px) and (max-width: 1024px) {
  .depannage-why .grid-3 {
    grid-template-columns: repeat(3, 1fr) !important; /* Garder 3 colonnes */
    gap: 20px;
  }
  
  .why-card {
    padding: 30px 20px;
  }
}
/* ========================================
   CENTRER LES PUCES AU MILIEU - Page Dépannage
   Puces vertes centrées horizontalement dans la carte
   À AJOUTER à la fin de style.css
   ======================================== */

/* Cartes avec flexbox */
.why-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Icône */
.why-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.why-icon i {
  font-size: 2rem;
}

.why-card:hover .why-icon {
  transform: scale(1.1) rotate(5deg);
}

/* Titre */
.why-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1e40af;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Paragraphe */
.why-card > p {
  font-size: 1rem;
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 25px;
  min-height: 120px;
}
/* Liste centrée sous le texte + items centrés */
.why-list {
  list-style: none;
  padding: 0 !important;
  margin: 0 auto !important;   /* centre la liste dans la carte */
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;         /* centre horizontalement */
  gap: 8px;
  width: 100%;
  max-width: 260px;            /* évite que ça parte trop large */
}

.why-list li {
  display: flex;
  align-items: center;
  justify-content: center;     /* centre l’icône + texte */
  gap: 10px;
  font-size: 0.95rem;
  color: #475569;
  text-align: center;          /* texte bien centré */
  width: 100%;
}

.why-list li i {
  color: #10b981;
  font-size: 1rem;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .why-card > p {
    min-height: auto;
  }
}