/* Enhanced tour card hover effects - zoom background only */
.tour-card-hot,
.tour-card {
  transition: box-shadow 0.4s ease;
  background-size: 100% 100% !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  overflow: hidden;
}

.tour-card-hot:hover,
.tour-card:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
  background-size: 105% 105% !important;
  transition: background-size 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.7s ease;
}

.tour-card-hot:hover .tour-badge,
.tour-card:hover .tour-card-badge {
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  transform: translateX(-50%) scale(1.1);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.tour-card-hot:hover .tour-title,
.tour-card:hover .tour-card-title {
  color: #FFD700;
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.7);
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

.tour-card-hot:hover .tour-price .current,
.tour-card:hover .tour-card-price .current {
  color: #FFD700;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.7);
  transform: scale(1.05);
  transition: all 0.3s ease;
}

/* For tour cards with image inside tour-card-img */
.tour-card .tour-card-img {
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tour-card .tour-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: scale(1);
}

.tour-card:hover .tour-card-img {
  transform: scale(1.03);
}

.tour-card:hover .tour-card-img img {
  transform: scale(1.03);
}