#contactButton {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(to right, #00b09b, #96c93d);
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transition: background 0.3s ease;
}

#contactButton:hover {
  background: linear-gradient(to right, #009688, #8bc34a);
}

#contactMenu {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 260px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  padding: 20px;
  z-index: 9999;
  animation: slideUp 0.3s ease;
}

#contactMenu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  transition: color 0.2s ease;
}

#contactMenu a:last-child {
  border-bottom: none;
}

#contactMenu a:hover {
  color: #00b09b;
}

.closeBtn {
  background: transparent;
  border: none;
  font-size: 20px;
  position: absolute;
  top: 8px;
  right: 12px;
  cursor: pointer;
  color: #666;
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
