.jumbotron-tour {
  background-image: url("/modules/tour/images/banner.png");
  background-size: cover;
  background-position: center;
  height: 792px;
  padding: 100px 0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.tour-homepage {
  background-color: #f8f9fa;
  padding: 40px 0;
}

.section-title {
  text-align: center;
  color: #9c0b0b;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

/* Top Destinations Styles */
.top-destinations {
  margin-bottom: 60px;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.destination-card {
  position: relative;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-5px);
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.destination-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.destination-overlay h3 {
  font-size: 24px;
  font-weight: 600;
}

/* Highlight Tours Styles */
.highlight-tours {
  margin-bottom: 60px;
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.tour-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
  cursor: pointer;
}

.tour-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
}

.tour-content {
  padding: 0px 8px 8px 8px;
}

.tour-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.tour-card:hover .tour-image img {
  transform: scale(1.05);
}

.tour-location {
  font-size: 13px;
  color: #666;
  margin-bottom: 0px;
}

.tour-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 0px;
  line-height: 1.4;
  min-height: 44px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tour-duration {
  font-size: 13px;
  color: #666;
}

.tour-duration i {
  margin-right: 4px;
}

.price-usd {
  font-size: 24px;
  font-weight: 700;
  color: #c41e3a;
}

.price-label {
  font-size: 13px;
  color: #666;
}

.price-vnd {
  font-size: 13px;
  color: #999;
  margin-top: 4px;
}

/* Responsive */
@media (max-width: 992px) {
  .tours-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tours-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .destinations-grid,
  .tours-grid {
    grid-template-columns: 1fr;
  }
}
