/* ===============================
   INTERNATIONAL TOUR DESIGN
================================= */

/* GRID */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

/* CARD */
.intl-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  transition: 0.4s;
  cursor: pointer;
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

/* IMAGE */
.card-banner {
  position: relative;
  height: 260px;
}

.card-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}

/* DARK OVERLAY */
.card-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
}

/* TOP TAG */
.card-top {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.card-date {
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
}

/* BADGES */
.card-group {
  background: #00cec9;
  color: #000;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.card-group.hot {
  background: #ff4757;
  color: #fff;
}

.card-group.luxury {
  background: gold;
  color: #000;
}

/* OVERLAY */
.card-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  color: #fff;
  z-index: 2;
}

/* TITLE */
.card-price {
  background: #0984e3;
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 8px;
}

/* TEXT */
.card-days {
  font-size: 15px;
}

.card-cost {
  font-size: 14px;
  margin-bottom: 10px;
  color: #ddd;
}

/* BUTTON */
.book-btn {
  display: inline-block;
  padding: 7px 15px;
  background: #ffcc00;
  color: #000;
  border-radius: 25px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: 0.3s;
}

.book-btn:hover {
  background: #000;
  color: #ffcc00;
}

/* HOVER EFFECT */
.intl-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

.intl-card:hover img {
  transform: scale(1.15);
  filter: brightness(70%);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .tour-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .tour-grid {
    grid-template-columns: 1fr;
  }
}