/* HERO SWIPER */
.hero-swiper {
  width: 100%;
  height: 750px;
  max-height: 750px;
  position: relative;
}

.hero-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-swiper .swiper-slide img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-swiper .swiper-slide::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(249, 249, 249, 0) 60%, rgba(249, 249, 249, 1) 100%);
  z-index: 2;
}

.hero-swiper .swiper-pagination-bullet {
  width: 16px !important;
  height: 16px !important;
  background-color: var(--orange-5) !important;
  opacity: 0.5;
}

.hero-swiper .swiper-pagination-bullet-active {
  background-color: var(--orange-3) !important;
  opacity: 1;
}

.hero-swiper .slide-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  color: white;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, calc(-50% + 40px));
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
  transition: all 0.6s ease;
}

.hero-swiper .slide-caption.animate {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.hero-swiper .slide-caption .headline {
  font-size: 72px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  line-height: 1.1;
}

.hero-swiper .slide-caption .slogan {
  font-size: 24px;
  margin-top: 15px;
  font-weight: 300;
  font-style: italic;
  opacity: 0.9;
}

/* TOURS */
.tours {
  width: 100%;
  padding: 70px 20px 30px 20px;
}

.tour-swiper {
  padding: 40px 20px;
  margin-top: 40px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.tour-swiper .swiper-wrapper {
  display: flex;
}

.tour-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  padding-bottom: 50px;
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
}

.tour-swiper .swiper-slide img {
  transform: scale(1);
  transition: all 0.3s ease;
}

.tour-swiper .swiper-slide:hover img {
  transform: scale(1.1);
  transition: all 0.3s ease;
}

.tour-card {
  width: 100%;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  height: 100%;
}


.card-image {
  width: 100%;
  height: 140px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-info {
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 160px;
}

.card-info h3 {
  margin: 0 0 5px;
  font-size: 16px;
  font-weight: 600;
}

.card-info p {
  font-size: 14px;
  color: #555;
  flex-grow: 1;
}

.card-info button {
  align-self: flex-end;
  background: var(--orange-3);
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
}

.tour-pagination {
  text-align: center;
  margin-top: 20px;
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  z-index: 2;
}

.tour-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: var(--orange-5);
  opacity: 0.5;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.tour-pagination .swiper-pagination-bullet-active {
  background-color: var(--orange-3);
  opacity: 1;
}

@media (max-width: 1024px) {
  .tour-nav {
    display: none !important;
  }
}

@media (max-width: 999px) {
  .tour-swiper .swiper-slide {
    width: 100% !important;
    flex-shrink: 0;
  }
}