/* CSS */
.book-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, #1c8adb 0%, #3bb34a 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.book-btn i {
  font-size: 18px;
}

.book-btn:hover {
  background: linear-gradient(90deg, #1570b9 0%, #2a9237 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}


.show-down {
  opacity: 0;
  transform: translateY(-15px);
  transition: all 0.8s ease-in-out;
}

.show-down.show {
  opacity: 1;
  transform: translateY(0);
}
