/* =========================
   Styles globaux
========================= */
html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
}

/* =========================
   Boutons
========================= */
.btn-primary {
  background: linear-gradient(to right, #3b82f6, #14b8a6);
  color: white;
  padding: 12px 28px;
  border-radius: 9999px;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(59, 130, 246, 0.35);
}

.btn-secondary {
  border: 2px solid #3b82f6;
  color: #3b82f6;
  padding: 12px 28px;
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background-color: #3b82f6;
  color: white;
}

/* =========================
   Animations
========================= */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-slide-up {
  animation: slideUp 0.9s ease-out forwards;
}

/* =========================
   Cartes
========================= */
.service-card,
.filiale-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover,
.filiale-card:hover {
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* =========================
   Chatbot
========================= */
#chatbot-modal {
  backdrop-filter: blur(4px);
}

.quick-suggestion {
  cursor: pointer;
}

/* =========================
   Icônes sociales
========================= */
.social-icon i {
  transition: transform 0.3s;
}

.social-icon:hover i {
  transform: scale(1.2);
}

/* =========================
   Effet pulse CTA
========================= */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(59, 130, 246, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
  }
}

.pulse-animation {
  animation: pulse 2.5s infinite;
}
