/* Tour Slider Styles */

/* Section Background */
.position-relative.bg-top-center {
    position: relative;
    background: linear-gradient(135deg, #f8fafb 0%, #f0f7ff 100%);
    padding: 6rem 0;
    overflow: hidden;
}

.position-relative.bg-top-center::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(46, 134, 171, 0.05) 0%, rgba(162, 59, 114, 0.03) 100%);
    z-index: 1;
}

.position-relative.bg-top-center .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Title Area */
.title-area.text-center {
    text-align: center;
    margin-bottom: 50px;
}

.sub-title {
    color: var(--accent-color);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.sec-title {
    color: var(--text-primary);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.sec-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Slider Area */
.slider-area.tour-slider {
    margin-top: 40px;
    text-align: center;
}

.th-slider {
    padding: 20px 0;
    overflow: visible;
    max-width: 1000px;
    margin: 0 auto;
}

.swiper-wrapper {
    align-items: stretch;
    justify-content: center;
}

.swiper-slide {
    height: auto;
    display: flex;
    padding: 0 5px;
    justify-content: center;
}

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

.swiper-slide .tour-box {
    width: 100%;
    height: 100%;
}

/* Tour Box */
.tour-box {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin: 0 auto;
    max-width: 100%;
    width: 100%;
}

.tour-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.tour-box_img {
    position: relative;
    overflow: hidden;
    height: 220px;
    flex-shrink: 0;
}

.tour-box_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Tour Content */
.tour-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 140px;
}

.box-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
    color: var(--text-primary);
}

.box-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.box-title a:hover {
    color: var(--primary-color);
}

/* Tour Rating - Hidden for cleaner look */
.tour-rating {
    display: none;
}

/* Tour Action */
.tour-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f5f5f5;
}

.tour-action span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tour-action span i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Book Now Button */
.th-btn.style4 {
    background: transparent;
    color: var(--text-primary);
    padding: 8px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.th-btn.style4:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-1px);
}

.th-btn.style4.th-icon::after {
    content: '→';
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.th-btn.style4:hover.th-icon::after {
    transform: translateX(3px);
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}

/* Swiper Pagination */
.swiper-pagination {
    position: relative;
    margin-top: 30px;
}

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

.swiper-pagination-bullet-active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .position-relative.bg-top-center {
        padding: 60px 0;
    }
    
    .sec-title {
        font-size: 2rem;
    }
    
    .sec-text {
        font-size: 1rem;
    }
    
    .tour-box_img {
        height: 200px;
    }
    
    .tour-content {
        padding: 20px;
    }
    
    .box-title {
        font-size: 1.1rem;
        height: 3.2rem;
    }
    
    .tour-action {
        flex-direction: row;
        gap: 10px;
        align-items: center;
        height: 50px;
    }
    
    .th-btn.style4 {
        text-align: center;
        justify-content: center;
        padding: 8px 14px;
        font-size: 0.8rem;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .position-relative.bg-top-center {
        padding: 40px 0;
    }
    
    .sec-title {
        font-size: 1.8rem;
    }
    
    .tour-box_img {
        height: 180px;
    }
    
    .tour-content {
        padding: 15px;
    }
    
    .box-title {
        font-size: 1rem;
        height: 2.8rem;
    }
    
    .tour-action {
        height: 45px;
    }
    
    .th-btn.style4 {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .tour-action span {
        font-size: 0.8rem;
    }
}

/* Animation Classes */
.th-ani {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* GSAP Cursor Effect */
.gsap-cursor {
    cursor: pointer;
}

/* Shadow Effect */
.has-shadow {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Section Spacing */
.space {
    margin: 0;
}

.pb0 {
    padding-bottom: 0;
} 