/* Floating Action Button */
.fab-container {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 999;
}

.fab-main {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d6efd, #372ffc);
  color: #fff;
  border: none;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(13,110,253,0.45);
  transition: 0.3s ease;
}

.fab-main:hover {
  transform: scale(1.05);
}

/* Popup */
.fab-popup {
  position: absolute;
  bottom: 80px;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  opacity: 0;
  pointer-events: none;
}

/* Action Buttons */
.fab-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #0d6efd;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 10px 20px rgba(13,110,253,0.35);
  transition: 0.3s ease;
}

.fab-btn:hover {
  transform: scale(1.1);
  background: #0b5ed7;
}

.fab-btn.donate {
  background: linear-gradient(135deg, #0dcaf0, #0d6efd);
}

.fab-btn.call {
  background: linear-gradient(135deg, #0b5ed7, #084298);
}

/* Back To Top Button */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #0d6efd, #0dcaf0);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 10px 25px rgba(13,110,253,0.45);
  z-index: 999;
  transition: 0.3s ease;
}

#backToTop:hover {
  transform: translateY(-3px);
}
