.day-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.day-content {
  padding: 20px;
}

.day-content h5 {
  margin-bottom: 15px;
  font-weight: bold;
}

.day-content li {
  margin-bottom: 8px;
  color: #555;
}

/* Offer Banner */
.offer-box {
  background: linear-gradient(135deg, #0d6efd, #00c6ff);
  color: #fff;
  padding: 20px;
  border-radius: 12px;
  max-width: 500px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.offer-box .price {
  font-size: 26px;
  font-weight: bold;
  color: #fff;
}

.offer-box .old-price {
  text-decoration: line-through;
  color: #ddd;
  margin-left: 8px;
}

.offer-box .badge-save {
  background: #ffc107;
  color: #000;
  margin-left: 10px;
}

/* Package Box */
.package-box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.price {
  font-size: 28px;
  font-weight: bold;
  color: #0d6efd;
}

.old-price {
  text-decoration: line-through;
  color: #888;
  font-size: 14px;
}

.badge-save {
  background: #28a745;
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 5px;
  margin-left: 10px;
}

/* Animation */
.tab-pane {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.tab-pane.active.show {
  opacity: 1;
  transform: translateY(0);
}

/* Sticky Button */
.sticky-book {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

/* Mobile */
@media(max-width:768px){
  .day-img {
    height: 200px;
    margin-bottom: 15px;
  }
}

.about-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.about-content {
  padding: 20px;
}

.about-box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.about-content h3 {
  font-weight: bold;
  margin-bottom: 15px;
}

.about-content p {
  color: #555;
}

.about-list li {
  margin-bottom: 10px;
  color: #444;
}

/* Mobile */
@media(max-width:768px){
  .about-img {
    height: 220px;
    margin-bottom: 15px;
  }
}


.about-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.about-content {
  padding: 20px;
}

.about-box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.about-content h3 {
  font-weight: bold;
  margin-bottom: 15px;
}

.about-content p {
  color: #555;
}

.about-list li {
  margin-bottom: 10px;
  color: #444;
}

/* Mobile */
@media(max-width:768px){
  .about-img {
    height: 220px;
    margin-top: 15px;
  }
}
/* Gallery */
.gallery-img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.08);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}