/* ========== POPULAR TOURS SLIDER ========== */

.popular-tours .tours-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.popular-tours h3 {
  font-size: 1.6rem;
  font-weight: 700;
}

.popular-tours .see-more {
  background: #000;
  color: #fff;
  padding: 8px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.popular-tours .see-more:hover {
  background: #444;
}

/* ===== SWIPER STYLES ===== */
.popular-tours .swiper {
  width: 100%;
}

.popular-tours .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.popular-tours .swiper-slide {
  height: auto;
  transition: transform 0.3s ease;
}

.popular-tours .swiper-slide:hover {
  transform: translateY(-6px);
}

/* ===== TOUR CARD ===== */
.tour-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  position: relative;
}

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

.tour-card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.tour-image {
  position: relative;
}

.tour-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.tour-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #fff;
  color: #000;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 5px 10px;
  border-radius: 8px;
}

.tour-duration {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-size: 0.8rem;
  padding: 6px 10px;
  border-radius: 6px;
}

.tour-price {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-size: 0.8rem;
  padding: 6px 10px;
  border-radius: 6px;
}

.tour-info {
  padding: 20px;
  text-align: left;
}

.tour-info h4.ptd-title a {
  color: #111;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
}

.tour-info p {
  color: #555;
  font-size: 0.9rem;
  margin: 10px 0 16px;
}

.book-btn {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 10px 22px;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.book-btn:hover {
  background: #444;
}

/* ===== SWIPER NAVIGATION (Smaller Buttons) ===== */
.swiper-button-next,
.swiper-button-prev {
  color: #000;
  background: #fff;
  border: 1px solid #ccc;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  top: 45%;
  transform: translateY(-50%);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 14px; /* smaller arrow size */
  font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #000;
  color: #fff;
  border-color: #000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

