/* Contact Button Styles */
.learn-more-btn.floating {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  transform: translate3d(0, 0, 0);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.learn-more-btn.floating:hover {
  transform: translate3d(0, -5px, 0);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.learn-more-btn.hidden {
  transform: translate3d(100px, 0, 0);
  opacity: 0;
}
