
/* Barre fixe en bas de page */
.bottom-fixed-bar {
  position: fixed;
  bottom: 0px;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #026ea7 0%, #025580 100%);
  padding: 0.8rem 1.5rem;
  display: none;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
}

.bottom-fixed-bar.visible {
  transform: translateY(0);
}

.bottom-bar-left {
  display: flex;
  gap: 1rem;
}

.bottom-bar-social-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid white;
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.bottom-bar-social-btn:hover {
  background: white;
  transform: scale(1.1);
}

.bottom-bar-social-btn:hover svg {
  fill: #026ea7;
}

.bottom-bar-social-btn svg {
  fill: white;
  transition: fill 0.3s ease;
}

.bottom-bar-right {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.bottom-bar-phone-btn {
  background: white;
  color: #026ea7;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.bottom-bar-phone-btn:hover {
  background: #f0f0f0;
  transform: translateY(-2px) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.bottom-bar-phone-btn svg {
  fill: #026ea7;
}

.bottom-bar-devis-btn {
  background: white;
  color: #026ea7;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.bottom-bar-devis-btn:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.bottom-bar-devis-btn svg {
  fill: #026ea7;
}

@media (max-width: 768px) {
  .bottom-fixed-bar {
    display: flex;
    padding: 0.6rem 1rem;
  }

  .bottom-bar-social-btn {
    width: 40px;
    height: 40px;
  }

  .bottom-bar-phone-btn {
    width: 40px;
    height: 40px;
  }

  .bottom-bar-devis-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
}
