/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Gallery images */
.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Floating contact buttons */
.floating-contact {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.floating-contact a {
  background-color: #10b981;
  color: white;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  padding: 0.5rem 1rem;
  height: 50px;
  text-decoration: none;
  overflow: hidden;
  white-space: nowrap;
  max-width: 50px;
  transition: max-width 0.3s ease, background-color 0.3s ease;
}
.floating-contact a i {
  font-size: 20px;
}
.floating-contact a span {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.floating-contact a:hover {
  max-width: 220px;
  background-color: #059669;
}
.floating-contact a:hover span {
  opacity: 1;
}
