/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  width: 50px;
  height: 50px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  right: 15px;
}

.whatsapp-float.saudi {
  bottom: 15px;
}

.whatsapp-float.uae {
  bottom: 75px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.whatsapp-float i {
  margin-top: 0px;
}

.country-flag-icon {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid white;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  background-color: white;
}

/* Specific styling for UAE flag */
.uae .country-flag-icon {
  width: 22px;
  height: 22px;
  background-color: transparent;
}
