/* Floating Contact Button Styles */
.floating-contact-btn {
  position: fixed;
  bottom: 50vh;
  right: -83px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-90deg);
}

.btn-floating {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  padding: 15px 25px;
  border-radius: 50px 50px 0px 0px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
  max-width: 250px;
  /* transform: rotate(-90deg); */
  transform-origin: center;
}

.btn-floating:hover {
  /* transform: translateY(-3px); */
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.5);
  background: linear-gradient(135deg, #0056b3, #004085);
  color: white;
  text-decoration: none;
}

.btn-floating i {
  font-size: 16px;
  margin-right: 5px;
}

.btn-floating span {
  font-family: inherit;
}

/* Responsive Design */
@media (max-width: 768px) {
  .floating-contact-btn {
    bottom: 80px;
    right: 0px;
  }
  
  .btn-floating {
    padding: 12px 20px;
    font-size: 13px;
    transform: rotate(0deg);
    border-radius: 50px 50px 50px 50px;
  }
  
  .btn-floating span {
    display: none;
  }
  
  .btn-floating i {
    margin-right: 0;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .floating-contact-btn {
    bottom: 10px;
    right: 10px;
  }
  
  .btn-floating {
    padding: 10px 15px;
    border-radius: 50% 50% 50% 50%;
    width: 50px;
    height: 50px;
    justify-content: center;
    transform: rotate(90deg);
  }
}
