.tour-section {
    position: relative;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    padding-bottom: 100px;
}

        

        /* Background Map Slider Styles */
        .tour-section .background-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .tour-section .background-slide {
            width: 100%;
            height: 100vh;
            background-size: auto 120vh;
            background-position: bottom;
            background-repeat: no-repeat;
            transform: translateX(10%);
        }

        .tour-section .map-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* background-image: linear-gradient(90deg, black 45%, transparent); */
            z-index: 1;
        }

        .tour-section .content-wrapper {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            align-items: center;
            gap: 60px;
        }

        .tour-section .tour-header {
            position: relative;
            z-index: 3;
            color: white;
            width: 100%;
            padding: 0 50px;
             max-width: 1400px;
            margin: 0 auto;
            margin-bottom: 30px;
        }


        .tour-section .tour-header h2 {
            font-size: 36px;
            font-weight: 300;
            letter-spacing: 2px;
            margin-bottom: 10px;
            text-transform: capitalize;
        }

        .tour-section .tour-header p {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 300;
            letter-spacing: 1px;
        }

        .tour-section .tours-slider {
            flex: 0 0 600px;
            max-width: 600px;
        }

        .tour-section .tour-slide {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            margin: 0 10px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
        }

        .tour-section .tour-image {
            width: 100%;
            height: 400px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .tour-section .best-seller {
            position: absolute;
            top: 20px;
            left: 20px;
            background: #ff4444;
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .tour-section .tour-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
            color: white;
            padding: 40px 30px 30px;
            transition: all 0.3s ease;
        }
        .tour-section .tour-slide:hover .tour-info{
            padding-bottom: 45px;
        }

        .tour-section .tour-title {
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 12px;
            line-height: 1.2;
        }

        .tour-section .tour-description {
            font-size: 14px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 20px;
        }

        .tour-section .tour-meta {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
        }

        .tour-section .meta-item {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.8);
            background: rgba(255, 255, 255, 0.1);
            padding: 6px 12px;
            border-radius: 20px;
        }

        .tour-section .rating {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 15px;
        }

        .tour-section .stars {
            color: #ffa500;
            font-size: 14px;
        }

        .tour-section .rating-text {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.8);
        }

        .tour-section .book-btn {
            background: #E0B853;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .tour-section .book-btn:hover {
            background: #45a049;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
        }

        .tour-section .map-container {
            flex: 1;
            height: 600px;
            position: relative;
        }

        /* Background Slider Custom Styles */
        .tour-section .background-slider .slick-dots,
        .tour-section .background-slider .slick-prev,
        .tour-section .background-slider .slick-next {
            display: none !important;
        }

        .tour-section .background-slider .slick-track,
        .tour-section .background-slider .slick-list {
            height: 100vh;
        }

        /* Custom Navigation Arrows - Matching Your Design */
        .tour-section .slick-prev,
        .tour-section .slick-next {
            width: 50px;
            height: 50px;
            z-index: 10;
            background: #E0B853 !important;
            border-radius: 50%;
            border: none;
            box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
            transition: all 0.3s ease;
        }

        /* .slick-prev:hover,
        .slick-next:hover {
            background: #45a049 !important;
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
        } */

        .tour-section .slick-prev:before,
        .tour-section .slick-next:before {
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            font-size: 18px;
            color: #333;
            opacity: 1;
            line-height: 1;
        }

        .tour-section .slick-prev {
            left: -20px;
        }

        .tour-section .slick-next {
            right: -20px;
        }

        /* .tour-section .slick-prev:before {
            content: 'f054';
        }

        .tour-section .slick-next:before {
            content: 'f053';
        } */

        /* Custom Dots Pagination - Matching Your Design */
        .tour-section .slick-dots {
            bottom: -60px;
            display: flex !important;
            justify-content: center;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .tour-section .slick-dots li {
            margin: 0 8px;
            width: 12px;
            height: 12px;
        }

        .tour-section .slick-dots li button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: none;
            background: rgba(255, 255, 255, 0.3);
            padding: 0;
            font-size: 0;
            line-height: 0;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }

        .tour-section .slick-dots li button:hover {
            background: rgba(76, 175, 80, 0.7);
            transform: scale(1.2);
        }

        .tour-section .slick-dots li.slick-active button {
            background: #E0B853;
            transform: scale(1.4);
            box-shadow: 0 3px 12px rgba(76, 175, 80, 0.4);
        }

        .tour-section .slick-dots li button:before {
            display: none;
        }
        
        
        @media screen and (max-width: 991px) {
            .tour-section .content-wrapper {
              justify-content: center;
            }
            .tour-section .tours-slider {
    flex: 0 0 600px;
    max-width: 100%;
}
        }