
/* Bouton flottant - visible UNIQUEMENT en mobile */
.we-floating-cta {
  display: none;
  position: fixed;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: #000; /* à remplacer par la couleur de marque Web Experts */
  color: #fff;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 18px;
  font-family: inherit;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  cursor: pointer;
  border: none;
  width: 100%;
  max-width: 100%;
  animation: we-pulse 2.2s infinite;
}
.we-floating-cta img{
    position: absolute;
    bottom: 30px;
    left: 20px;
    width: 50px;
}
 
@keyframes we-pulse {
  0%   { box-shadow: 0 6px 20px #ff7100; }
  50%  { box-shadow: 0 6px 28px #ff7100; }
  100% { box-shadow: 0 6px 20px #ff7100; }
}
 
@media (max-width: 550px) {
  .we-floating-cta { display: block; }
}
 
/* Overlay + modale */
.we-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 10000;
  align-items: flex-end;
  justify-content: center;
}
.we-modal-overlay.we-open {
  display: flex;
}
 
.we-modal-box {
  background: #fff;
  width: 100%;
  max-width: 480px;
  border-radius: 16px 16px 0 0;
  padding: 24px 20px 28px;
  animation: we-slideup 0.3s ease-out;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
 
@keyframes we-slideup {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
 
.we-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: #888;
}
 
.we-modal-box h3 {
  margin: 0 0 6px;
  font-size: 20px;
  color: #111;
}
.we-modal-box p.we-sub {
  margin: 0 0 18px;
  font-size: 14px;
  color: #666;
}
 
.we-form input,
.we-form select,
.we-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  box-sizing: border-box;
}
 
.we-form button[type="submit"] {
  width: 100%;
  background: #ff7100;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}
 
.we-form button[type="submit"]:active {
  opacity: 0.85;
}
