.dr1042floatingbuttons .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 */
.dr1042floatingbuttons .fab-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.35s ease;
  border: 2px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
  background: #222;
  position: relative;
}

/* Hover Effect */
.dr1042floatingbuttons .fab-btn:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Icon */
.dr1042floatingbuttons .fab-btn .icon {
  font-size: 26px;
  color: #fff;
}

/* Tooltip Label */
.dr1042floatingbuttons .fab-btn .label {
  display: none;
}

.dr1042floatingbuttons .fab-btn:hover .label {
  display: block;
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: #1a73e8; /* Talent Trail Blue */
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
  animation: tooltipSlide 0.3s ease forwards;
}

/* Button Colors (Talent Trail Branding) */
.dr1042floatingbuttons .fab-btn.whatsapp {
  background: linear-gradient(145deg, #25D366, #128C7E);
}

.dr1042floatingbuttons .fab-btn.phone {
  background: linear-gradient(145deg, #1a73e8, #0b4f6c); /* Blue/Teal */
}

.dr1042floatingbuttons .fab-btn.email {
  background: linear-gradient(145deg, #ffd700, #ffb700); /* Gold Accent */
}

.dr1042floatingbuttons .fab-btn.share {
  background: linear-gradient(145deg, #0b4f6c, #073b52); /* Dark Teal */
}

.dr1042floatingbuttons .fab-btn.top {
  background: linear-gradient(145deg, #333, #111);
}

/* Animations */
@keyframes slideUpFade {
  from {opacity: 0; transform: translateY(50px);}
  to {opacity: 1; transform: translateY(0);}
}

@keyframes tooltipSlide {
  from {opacity: 0; transform: translateY(-50%) translateX(0);}
  to {opacity: 1; transform: translateY(-50%) translateX(10px);}
}

/* Mobile */
@media screen and (max-width: 480px) {
  .dr1042floatingbuttons .fab-btn {
    width: 54px;
    height: 54px;
    font-size: 22px;
  }
  .dr1042floatingbuttons .fab-btn .icon {
    font-size: 22px;
  }
  .dr1042floatingbuttons .fab-btn:hover .label {
    right: 65px;
    font-size: 13px;
    padding: 5px 10px;
  }
}