.flip-card {
  background-color: transparent;
  width: 100%;
  height: 400px;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  cursor: pointer;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.flip-card-front {
  background-color: #fff;
  color: #333;
  overflow: hidden;
}

.flip-card-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flip-card-front h3 {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.9);
  margin: 0;
  padding: 15px;
  color: #333;
}

.flip-card-back {
  background-color: #92d5e6;
  color: #333;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.flip-card-back h3 {
  margin-bottom: 20px;
  color: black;
}

.flip-card-back p {
  margin-bottom: 30px;
  color: black;
  line-height: 1.6;
}

.btn-book-now {
  background-color: #fff;
  color: #92d5e6;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-book-now:hover {
  background-color: #333;
  color: #fff;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .flip-card {
    height: 350px;
  }
}

@media (max-width: 767px) {
  .flip-card {
    height: 300px;
    margin-bottom: 30px;
  }
}
