.tour-card {
  border-radius: 16px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: transform 0.3s ease;
}
.tour-card:hover {
  transform: translateY(-5px);
}

.tour-image {
  position: relative;
}
.tour-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

#top-selling-package .tour-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.tour-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 1rem;
  color: #fff;
  box-sizing: border-box;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent);
}
.tour-header h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}
.tour-header p {
  margin: 0.3rem 0 0;
  font-size: 1.4rem;
}

.arrow-btn {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background-color: #ffeb3b;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s;
}
.arrow-btn:hover {
  background-color: #fdd835;
}
.arrow-btn span img {
  width: 20px;
  height: 20px;
  display: block;
}
.arrow-btn:hover {
  background-color: #fdd835;
}
.arrow-btn span {
  font-size: 1.2rem;
}
