/* Slider Styles */
.vertical-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.vertical-slider .slide-inner {
    width: 100%;
    height: 100%;
    padding: 60px;
    overflow: hidden;
}

.vertical-slider .slide-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 10px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    transform: translateY(0);
}

.slide.previous {
    transform: translateY(-100%);
    opacity: 0;
}

/* Wrapper Layout */
.hero-wrapper {
    display: flex;
    flex-wrap: wrap;
    min-height: 500px;
}

.hero-slider {
    position: relative;
    flex: 1 1 50%;
    overflow: hidden;
}

.hero-content.desktop {
    flex: 1 1 50%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content.desktop h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.hero-content.desktop p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Hide new mobile blocks by default */
.hero-title,
.hero-description {
    display: none;
}

/* Mobile Layout */
@media (max-width: 768px) {
    .hero-wrapper {
        flex-direction: column;
    }

    .hero-content.desktop {
        display: none;
    }

    .hero-title {
        display: block;
        padding: 20px;
        text-align: center;
    }

    .hero-title h1 {
        font-size: 1.6rem;
    }

    .hero-slider {
        flex: 1 1 100%;
        min-height: 400px;
    }

    .vertical-slider {
        height: 400px;
    }

    .vertical-slider .slide-inner {
        padding: 12px;
    }

    .vertical-slider .slide-inner img {
        border-radius: 20px;
    }

    .hero-description {
        display: block;
        padding: 20px;
        text-align: center;
    }

    .hero-description p {
        font-size: 1rem;
        line-height: 1.4;
    }

    .hero-description a {
        display: inline-block;
        margin-top: 15px;
    }

    .hero-content.mobile {
        display: none;
    }
}
/* Testimonial Style Tour Page */

.testimonial-slider.swiper {
  width: 100%;
  max-width: 100%;
  overflow: hidden; /* This keeps the slides inside the container */
  padding: 20px 10px 60px 10px; /* Padding for dots and shadows */
  position: relative;
  margin: 0 auto;
}

.swiper-slide {
  height: auto;
  display: flex;
  justify-content: center;
}

/* Fix for cards potentially having different heights */
.swiper-slide .card {
  width: 100%;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* Optional: makes cards pop */
}

/* Pagination dot styling */
.swiper-pagination {
  bottom: 10px !important;
}

.swiper-pagination-bullet-active {
  background: #000 !important;
}
