/* Floating Buttons Container */
.dr1044floatingbuttons .floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
  animation: slideUpFade 0.8s ease forwards 0.5s;
  opacity: 0;
  font-family: 'Poppins', sans-serif;
}

/* Floating Buttons - Airplane Shape */
.dr1044floatingbuttons .fab-btn {
  width: 50px;
  height: 50px;
  border-radius: 50% 50% 20% 50% / 50% 50% 20% 50%; /* airplane body + wing */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.35s ease;
  border: 2px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  background: linear-gradient(145deg, #4fc3f7, #0288d1); /* sky gradient */
  position: relative;
  overflow: hidden;
}

/* Hover Effect - Fly & Tilt */
.dr1044floatingbuttons .fab-btn:hover {
  transform: scale(1.12) rotate(-12deg) translateY(-4px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}

/* Icon - centered propeller effect */
.dr1044floatingbuttons .fab-btn .icon {
  font-size: 20px;
  color: #fff;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.dr1044floatingbuttons .fab-btn:hover .icon {
  transform: rotate(20deg); /* small rotation for "propeller" effect */
}

/* Tooltip Label */
.dr1044floatingbuttons .fab-btn .label {
  display: none;
}

.dr1044floatingbuttons .fab-btn:hover .label {
  display: block;
  position: absolute;
  right: 75px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: #0288d1;
  padding: 5px 12px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
  animation: tooltipSlide 0.3s ease forwards;
}

/* Aviation-Themed Button Colors */
.dr1044floatingbuttons .fab-btn.whatsapp {
  background: linear-gradient(145deg, #00c853, #1de9b6); /* green sky */
}

.dr1044floatingbuttons .fab-btn.phone {
  background: linear-gradient(145deg, #0288d1, #01579b); /* blue sky */
}

.dr1044floatingbuttons .fab-btn.email {
  background: linear-gradient(145deg, #039be5, #0288d1); /* deeper sky */
}

.dr1044floatingbuttons .fab-btn.share {
  background: linear-gradient(145deg, #ffd54f, #ffb300); /* sun on horizon */
}

.dr1044floatingbuttons .fab-btn.top {
  background: linear-gradient(145deg, #90a4ae, #607d8b); /* clouds gray */
}

/* Animations */
@keyframes slideUpFade {
  from {opacity: 0; transform: translateY(50px);}
  to {opacity: 1; transform: translateY(0);}
}

@keyframes tooltipSlide {
  from {opacity: 0; transform: translateY(-50%) translateX(0px);}
  to {opacity: 1; transform: translateY(-50%) translateX(10px);}
}

/* Mobile Responsiveness */
@media screen and (max-width: 480px) {
  .dr1044floatingbuttons .fab-btn {
    width: 44px;
    height: 44px;
    font-size: 18px;
    border-radius: 50% 50% 25% 50% / 50% 50% 25% 50%;
  }
  .dr1044floatingbuttons .fab-btn .icon {
    font-size: 18px;
  }
  .dr1044floatingbuttons .fab-btn:hover .label {
    right: 65px;
    font-size: 12px;
    padding: 4px 10px;
  }
}