/* ═══════════════════════════════════════════
   tours.css — Coverflow Package Slider Section
   Change this file to update: slider card styles,
   background blur, navigation buttons, card layout
═══════════════════════════════════════════ */

/* ── Section background image ── */
#tours .sec-bg {
  background-image: url('../images/option2.jpg');
}

/* ── Dynamic blurred background (changes with active slide) ── */
.tours-bg-blur {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(48px) brightness(0.25) saturate(1.4);
  transform: scale(1.08);
  transition: opacity 0.5s ease;
  z-index: 0;
  pointer-events: none;
}

/* ── Swiper container ── */
.tours-swiper {
  width: 100%;
  padding: 20px 0 64px;
  position: relative;
  z-index: 3;
}

.tours-swiper .swiper-wrapper {
  align-items: center;
}

/* ── Each slide size ── */
.tours-swiper .swiper-slide {
  width: 320px;
  height: 460px;
  border-radius: 24px;
  overflow: hidden;
}

/* ── Highlight active slide ── */
.tours-swiper .swiper-slide-active .tour-card {
  box-shadow: 0 32px 80px rgba(0,0,0,0.85), 0 0 0 1px rgba(139,92,246,0.35);
}

/* ── Tour card ── */
.tour-card {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 16px 48px rgba(0,0,0,0.6);
  transition: box-shadow 0.4s ease;
}

.tour-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

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

/* ── Card gradient overlay ── */
.tour-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5,0,20,0.96) 0%,
    rgba(5,0,20,0.6) 45%,
    rgba(5,0,20,0.15) 70%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 26px;
  transition: background 0.3s ease;
}

/* ── Tag badge ── */
.tour-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(139,92,246,0.25);
  border: 1px solid rgba(139,92,246,0.5);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 4px 14px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  width: fit-content;
  color: #c4b5fd;
  text-transform: uppercase;
}

/* ── Card heading ── */
.tour-card-overlay h3 {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 6px;
  letter-spacing: -0.4px;
  color: #fff;
}

/* ── Subtitle ── */
.tour-card-overlay p {
  font-size: 12.5px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  font-weight: 400;
}

/* ── Price ── */
.tour-price {
  font-size: 19px;
  font-weight: 800;
  color: var(--gold2);
  margin-bottom: 16px;
}

.tour-price span {
  font-size: 11.5px;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
}

/* ── CTA pill ── */
.tour-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
  border-radius: 50px;
  padding: 9px 22px;
  font-size: 12.5px;
  font-weight: 700;
  width: fit-content;
  color: #fff;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.tour-card:hover .tour-cta {
  background: rgba(139,92,246,0.45);
  border-color: rgba(139,92,246,0.65);
  transform: translateX(3px);
}

/* ── Swiper nav arrows ── */
.tours-swiper .swiper-button-prev,
.tours-swiper .swiper-button-next {
  color: #fff;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  top: 44%;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.tours-swiper .swiper-button-prev:hover,
.tours-swiper .swiper-button-next:hover {
  background: rgba(139,92,246,0.4);
  border-color: rgba(139,92,246,0.6);
}

.tours-swiper .swiper-button-prev::after,
.tours-swiper .swiper-button-next::after {
  font-size: 15px;
  font-weight: 800;
}

/* ── Pagination dots ── */
.tours-swiper .swiper-pagination {
  bottom: 16px;
}

.tours-swiper .swiper-pagination-bullet {
  background: rgba(255,255,255,0.35);
  opacity: 1;
  width: 8px;
  height: 8px;
  transition: all 0.3s ease;
}

.tours-swiper .swiper-pagination-bullet-active {
  background: var(--accent);
  width: 28px;
  border-radius: 4px;
}
