/* Floating Contact Icons Styles */
.floating-contact {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  direction: ltr;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.contact-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.phone-btn {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.email-btn {
  background: linear-gradient(135deg, #007bff, #0056b3);
}

.facebook-btn {
  background: linear-gradient(135deg, #1877f2, #0d5cb6);
}

.instagram-btn {
  background: linear-gradient(135deg, #e4405f, #c13584);
}

/* Mobile Floating Buttons at Bottom */
.mobile-floating-contact {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: none;
  flex-direction: row;
  gap: 15px;
  background: rgba(255, 255, 255, 0.95);
  padding: 12px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  direction: ltr;
}

.mobile-contact-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  font-size: 1.4rem;
}

.mobile-contact-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.mobile-whatsapp-btn {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.mobile-phone-btn {
  background: linear-gradient(135deg, #0a70dd, #0b5caf);
}

/* Show mobile buttons only on smaller screens */
@media (max-width: 768px) {
  .floating-contact {
    display: none;
  }
  
  .mobile-floating-contact {
    display: flex;
  }
}