/* WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  transition: 0.3s;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.08);
}

/* Phone */
.floating-phone {
  position: fixed;
  bottom: 90px; /* فوق الواتساب */
  left: 20px;
  width: 58px;
  height: 58px;
  background: #0d6efd;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  transition: 0.3s;
}

.floating-phone:hover {
  transform: translateY(-4px) scale(1.08);
}
