.container{
    max-width: 1200px;
    overflow-x: hidden;
    overflow: visible;
    /* overflow-x: hidden; */
}
header{
    background-color: #242424e3;
    
}
:root {
    --main-color: #EEEEEE;
    --secend-color: #201E43;
    --third-color: #134B70;
    --fourth-color: #193b68;
    --active-color: #EB5A3C;
}
body{
    background-color: #fcfcfc;
    text-transform: capitalize;
}
.top-page{
    padding-top: 5rem;
    position: relative;
    width: 100%;
    .text_title{
        color: var(--secend-color);
        text-align: left;
        margin-bottom: 1rem;
        h1{
            font-weight: 800;
            font-size: 2rem;
            color: var(--secend-color);

        }
        span{
            /* font-weight: 700; */
                font-size: 2rem;
                font-weight: 800;
                color: var(--secend-color);
                text-align: left;
                margin-bottom: 1rem;
        }
    }
    .box{
        display: flex;
        font-size: 0.7rem;
        width: 800px;
        /* justify-content: space-around; */
        align-items: center;
        gap: 20px;
        margin-bottom: 2rem;
        *{
            font-weight: 600;
            color: rgb(63, 62, 62);
        }
        .point{
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background-color: var(--secend-color);
        }
        .type{
            font-size: 0.5rem;
            background-color: var(--fourth-color);
            color: white;
            border-radius: 2px;
            padding: 5px 10px;
            h1{
                color: var(--main-color);
            }
        }
        .rating{
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.8rem;
            color: var(--secend-color);
            h2{
                font-weight: 600;
                margin-top: -4px;
                color: var(--secend-color);
            }
        }
    }
    .star-rating span{
        color: rgb(230, 174, 34);
        font-size: 1rem;
        /* border: 1px solid goldenrod; */

    }
    .star-rating span:not(.checked) {
        color: gray; /* Gray for inactive stars */
    }

    #not_checked{
        /* border: 1px solid black; */
        color: gray;
        /* -webkit-text-stroke: 0.5px black ; */
    }

    /* ===== ORIGINAL IMAGE LAYOUT STYLING ===== */
    /* Main container for the 3-column image layout */
    .imgs_box{
        display: flex;                    /* Flexbox layout for horizontal arrangement */
        align-items: center;              /* Center items vertically */
        justify-content: center;          /* Center items horizontally */
        gap: 10px;                        /* Space between image boxes */
        width: 100%;                      /* Full width container */
        height: 30rem;                    /* Fixed height for consistent layout */
        margin-bottom: 2rem;              /* Bottom margin for spacing */
        overflow: hidden;                 /* Hide any overflow content */
    }

    /* Third image box - contains two small images stacked vertically */
    .img_box:nth-child(3){
        width: 40%;                       /* 40% of container width */
        display: flex;                    /* Flexbox for vertical stacking */
        flex-direction: column;           /* Stack images vertically */
        gap: 10px;                        /* Space between the two small images */
    }

    /* Styling for the two small images in the third box */
    .img_box:nth-child(3) img{
        height: 14.5rem;                  /* Fixed height for each small image */
        width: 100%;                      /* Full width of container */
        object-fit: cover;                /* Maintain aspect ratio while filling container */
        border-radius: 5px;               /* Rounded corners */
        box-shadow: 0 0 10px rgba(0,0,0,0.1); /* Subtle shadow effect */
        cursor: pointer;                  /* Pointer cursor for clickable images */
        transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover transitions */
    }

    /* Hover effect for small images */
    .img_box:nth-child(3) img:hover{
        transform: scale(1.05);           /* Slight scale up on hover */
        box-shadow: 0 5px 20px rgba(0,0,0,0.2); /* Enhanced shadow on hover */
    }

    /* First image box - large main image */
    .img_box:nth-child(1){
        width: 80%;                       /* 80% of container width */
        height: 100%;                     /* Full height of container */
        position: relative;               /* Relative positioning for child elements */
        overflow: hidden;                 /* Hide overflow content */
        border-radius: 5px;               /* Rounded corners */
        display: flex;                    /* Flexbox for centering */
        justify-content: center;          /* Center horizontally */
        align-items: center;              /* Center vertically */
        cursor: pointer;                  /* Pointer cursor for clickable image */
        transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover transitions */
    }

    /* Hover effect for large image container */
    .img_box:nth-child(1):hover{
        transform: scale(1.02);           /* Slight scale up on hover */
        box-shadow: 0 5px 20px rgba(0,0,0,0.2); /* Enhanced shadow on hover */
    }

    /* Styling for the large main image */
    .img_box:nth-child(1) img{
        height: 97.5%;                    /* Slightly less than full height for padding */
        width: 100%;                      /* Full width of container */
        object-fit: cover;                /* Maintain aspect ratio while filling container */
        border-radius: 5px;               /* Rounded corners */
        box-shadow: 0 0 10px rgba(0,0,0,0.1); /* Subtle shadow effect */
        transition: transform 0.3s ease;  /* Smooth transition for image */
    }

    /* Second image box - medium side image */
    .img_box:nth-child(2){
        width: 40%;                       /* 40% of container width */
        height: 100%;                     /* Full height of container */
        position: relative;               /* Relative positioning for child elements */
        overflow: hidden;                 /* Hide overflow content */
        border-radius: 5px;               /* Rounded corners */
        display: flex;                    /* Flexbox for centering */
        justify-content: center;          /* Center horizontally */
        align-items: center;              /* Center vertically */
        cursor: pointer;                  /* Pointer cursor for clickable image */
        transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover transitions */
    }

    /* Hover effect for medium image container */
    .img_box:nth-child(2):hover{
        transform: scale(1.02);           /* Slight scale up on hover */
        box-shadow: 0 5px 20px rgba(0,0,0,0.2); /* Enhanced shadow on hover */
    }

    /* Styling for the medium side image */
    .img_box:nth-child(2) img{
        height: 97.5%;                    /* Slightly less than full height for padding */
        width: 100%;                      /* Full width of container */
        object-fit: cover;                /* Maintain aspect ratio while filling container */
        border-radius: 5px;               /* Rounded corners */
        box-shadow: 0 0 10px rgba(0,0,0,0.1); /* Subtle shadow effect */
        transition: transform 0.3s ease;  /* Smooth transition for image */
    }

    /* ===== LIGHTBOX MODAL STYLING ===== */
    /* Fullscreen overlay for the lightbox modal */
    .lightbox {
        display: none;                    /* Hidden by default */
        position: fixed;                  /* Fixed position to cover entire screen */
        z-index: 9999;                    /* High z-index to appear above all content */
        left: 0;                          /* Start from left edge */
        top: 0;                           /* Start from top edge */
        width: 100vw;                     /* Full viewport width */
        height: 100vh;                    /* Full viewport height */
        background: rgba(19,75,112,0.85); /* Semi-transparent blue background */
        align-items: center;              /* Center content vertically */
        justify-content: center;          /* Center content horizontally */
        backdrop-filter: blur(5px);       /* Blur effect for background */
        animation: fadeIn 0.3s ease;      /* Smooth fade-in animation */
    }

    /* Show lightbox when active class is added */
    .lightbox.active {
        display: flex;                    /* Display as flex container when active */
    }

    /* Fade-in animation for modal background */
    @keyframes fadeIn {
        from { opacity: 0; }              /* Start fully transparent */
        to { opacity: 1; }                /* End fully opaque */
    }

    /* Main content container for the lightbox */
    .lightbox-content {
        max-width: 90vw;                  /* Maximum 90% of viewport width */
        max-height: 80vh;                 /* Maximum 80% of viewport height */
        border-radius: 18px;              /* Rounded corners */
        overflow: hidden;                 /* Hide any overflow content */
        background: #fff;                 /* White background */
        box-shadow: 0 8px 32px #134b7077; /* Subtle shadow with brand color */
        position: relative;               /* Relative positioning for absolute children */
        display: flex;                    /* Flexbox layout */
        flex-direction: column;           /* Stack children vertically */
        align-items: center;              /* Center children horizontally */
        animation: slideIn 0.4s ease;     /* Slide-in animation */
    }

    /* Slide-in animation for modal content */
    @keyframes slideIn {
        from { 
            opacity: 0;                   /* Start transparent */
            transform: scale(0.8);        /* Start smaller */
        }
        to { 
            opacity: 1;                   /* End opaque */
            transform: scale(1);          /* End full size */
        }
    }

    /* Styling for the main image in lightbox */
    .lightbox-content img {
        width: 800px;                     /* Fixed width for consistent sizing */
        height: 600px;                    /* Fixed height for consistent sizing */
        border-radius: 18px;              /* Rounded corners matching container */
        background: #b6e0fe22;            /* Light blue background for loading */
        object-fit: cover;                /* Maintain aspect ratio while filling container */
        transition: opacity 0.2s ease;    /* Smooth opacity transition for image changes */
    }

    /* Navigation arrows for browsing through images */
    .lightbox-nav {
        position: absolute;               /* Absolute positioning within modal */
        top: 50%;                         /* Center vertically */
        transform: translateY(-50%);      /* Perfect vertical centering */
        background: rgba(255, 255, 255, 0.9); /* Semi-transparent white background */
        border: none;                     /* No border */
        width: 50px;                      /* Fixed width */
        height: 50px;                     /* Fixed height */
        border-radius: 50%;               /* Circular shape */
        cursor: pointer;                  /* Pointer cursor for clickable buttons */
        display: flex;                    /* Flexbox for centering icon */
        align-items: center;              /* Center icon vertically */
        justify-content: center;          /* Center icon horizontally */
        font-size: 1.2rem;                /* Icon size */
        color: var(--secend-color);       /* Brand color for icons */
        transition: all 0.3s ease;        /* Smooth transitions for all properties */
        z-index: 10;                      /* High z-index to appear above image */
        backdrop-filter: blur(10px);      /* Blur effect for modern glass look */
        box-shadow: 0 4px 15px rgba(0,0,0,0.2); /* Subtle shadow */
    }

    /* Hover effect for navigation buttons */
    .lightbox-nav:hover {
        background: rgba(255, 255, 255, 1); /* Solid white background on hover */
        transform: translateY(-50%) scale(1.1); /* Scale up slightly */
        box-shadow: 0 6px 20px rgba(0,0,0,0.3); /* Enhanced shadow on hover */
    }

    /* Position previous button on the left */
    .lightbox-nav.prev-btn {
        left: 20px;                       /* 20px from left edge */
    }

    /* Position next button on the right */
    .lightbox-nav.next-btn {
        right: 20px;                      /* 20px from right edge */
    }

    /* Close button for the modal */
    .lightbox-close {
        position: absolute;               /* Absolute positioning within modal */
        top: 10px;                        /* 10px from top edge */
        right: 18px;                      /* 18px from right edge */
        font-size: 2rem;                  /* Large icon size */
        color: #134b70;                   /* Brand color */
        background: #fff;                 /* White background */
        border-radius: 50%;               /* Circular shape */
        width: 38px;                      /* Fixed width */
        height: 38px;                     /* Fixed height */
        display: flex;                    /* Flexbox for centering icon */
        align-items: center;              /* Center icon vertically */
        justify-content: center;          /* Center icon horizontally */
        cursor: pointer;                  /* Pointer cursor for clickable button */
        box-shadow: 0 2px 8px #b6e0fe33; /* Subtle shadow with brand color */
        z-index: 2;                       /* High z-index to appear above content */
        border: none;                     /* No border */
        transition: all 0.3s ease;        /* Smooth transitions for all properties */
    }

    /* Hover effect for close button */
    .lightbox-close:hover {
        background: #f0f0f0;              /* Light gray background on hover */
        transform: scale(1.1);            /* Scale up slightly */
    }

    /* ===== END LIGHTBOX MODAL STYLING ===== */
    
    
 .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 1000;
            backdrop-filter: blur(5px);
        }

        .modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .slider-container {
            position: relative;
            max-width: 90vw;
            max-height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slider-image {
            max-width: 100%;
            max-height: 80vh;
            object-fit: contain;
            border-radius: 10px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.5);
            animation: slideIn 0.4s ease;
        }

        @keyframes slideIn {
            from { 
                opacity: 0;
                transform: scale(0.8);
            }
            to { 
                opacity: 1;
                transform: scale(1);
            }
        }

        .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border: none;
            color: white;
            font-size: 2rem;
            padding: 15px 20px;
            cursor: pointer;
            border-radius: 50%;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .nav-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-50%) scale(1.1);
        }

        .prev-btn {
            left: 20px;
        }

        .next-btn {
            right: 20px;
        }

        .close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border: none;
            color: white;
            font-size: 1.5rem;
            padding: 10px 15px;
            cursor: pointer;
            border-radius: 50%;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .close-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }

        .image-counter {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 1rem;
            backdrop-filter: blur(10px);
        }

        .thumbnails {
            position: absolute;
            bottom: 80px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            max-width: 80vw;
            overflow-x: auto;
            padding: 10px;
        }

        .thumbnail {
            width: 60px;
            height: 60px;
            object-fit: cover;
            border-radius: 8px;
            cursor: pointer;
            opacity: 0.6;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .thumbnail.active {
            opacity: 1;
            border-color: white;
            transform: scale(1.1);
        }

        .thumbnail:hover {
            opacity: 0.8;
        }

        /* Make your img_box clickable */
        .img_box {
            cursor: pointer;
        }
    .about{
        h4{
            font-weight:500;
            color: var(--secend-color);
            font-size: 1rem;
            width: 700px;
            margin-left: 1rem;
        }
    }
    .price-box{
        position: absolute;
        right: 0px;
        /* border-radius: 5px; */
        padding: 20px 5px;
        margin-top: -4rem;
        border: 2px solid rgba(128, 128, 128, 0.705);
        border-top: 5px solid var(--secend-color);
        width: 380px;
        *{
            font-size: 1rem;
            font-weight: 500;
            color: var(--secend-color);
        }
        .price{
            h2{
                font-size: 1.2rem;
                font-weight: 600;
                margin-left: 30px;
                letter-spacing: 1px;
            }
            h2:nth-child(2){
                font-size: 1.6rem;
                font-weight: 700;
                margin-left: 30px;
            }
        }
        .pay_later{
            display: flex;
            gap: 20px;
            margin-top: 1rem;
            i{
                margin-left: 2.4rem;
                margin-top: 1rem;
            }
        
            h3{
                width: 300px;
                margin-top: 0.4rem;
                span{
                    font-weight: 700;
                    /* text-decoration: wavy; */
                    text-decoration-style: solid;
                    text-decoration: underline;
                    text-decoration-thickness: .5px;
                    cursor: pointer;

                }
            }
        }
        .btn-check{
            position: absolute;
            right: 35px;
            top: 30px;

            button{
                padding: 10px 30px;
                border-radius: 40px;
                border: 1px solid var(--secend-color);
                background-color: var(--secend-color);
                box-shadow: 1px 1px 10px #201e4363;
                transition: 0.2s ease-in-out;
                color: var(--main-color);
                &:hover{
                    background-color: var(--third-color);
                    border: 1px solid var(--third-color);
                    box-shadow: 1px 1px 10px #134b7096;
                }
            }
        }

    }
    .about-ticket{
        width: 750px;
        margin-top: 2.5rem;
        margin-bottom: 6rem;
        *{
            color: var(--secend-color);
        }
        h1{
            margin-bottom: 1rem;
            margin-top: 1rem;
            font-size: 1.6rem;
        }
        .items{
            display: flex;
            gap: 30px;
            flex-direction: column;

            .item{
                margin-left: 1rem;
                display: flex;
                gap: 20px;
                align-items: center;
                i{
                    font-size: 1.2rem;
                    position: relative;
                    margin-left: 0;
                    text-align: center;
                }
                h3{
                    margin-top: 0.4rem;
                    color: #201e43c9;
                    font-size: 1rem;
                    font-weight: 500;

                    span{
                        font-weight:700;
                        font-size: 1.3rem;
                    }
                }
            }
            .item:nth-child(3){
                h3{
                    margin-top: 0;
                }
            }
            .item:nth-child(5){
                h3{
                    margin-top: 0;
                }
            }
        }
    }
    .top-review{
        position: relative;
        width: 90%;
        a{
            position: absolute;
            bottom: 0;
            color: var(--secend-color);
            text-decoration: underline;
            font-weight: 600;
            right: 272px;
            cursor: pointer;
            transition: 0.2s;
            &:hover{
                letter-spacing: 1px;
                color: var(--third-color);
            }
        }
        h1{
            font-size: 1.5rem;
            color: var(--secend-color);
            margin-bottom: 0rem;
            letter-spacing: 0.5px;
            font-weight: 800;
        }
    }
    /* ===== ENHANCED REVIEWS STYLING ===== */
    .reviews {
        margin-top: 8%;
        display: flex;
        color: var(--secend-color);
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Reviews Title Section */
    .rtitle {
        text-align: center;
        margin-bottom: 2rem;
    }

    .rtitle h1 {
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--secend-color);
        margin-bottom: 0.5rem;
        letter-spacing: 1px;
    }

    .rtitle p {
        font-size: 1.1rem;
        color: #666;
        font-weight: 400;
        margin: 0;
    }

    /* Overall Rating Summary */
    .overall-rating {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        border-radius: 20px;
        padding: 2rem;
        margin-bottom: 2rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border: 1px solid rgba(32, 30, 67, 0.1);
    }

    .rating-summary {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
    }

    .rating-number {
        text-align: center;
    }

    .rating-number h2 {
        font-size: 3.5rem;
        font-weight: 900;
        color: var(--secend-color);
        margin: 0;
        line-height: 1;
    }

    .rating-number span {
        font-size: 1.5rem;
        color: var(--third-color);
        font-weight: 600;
    }

    .rating-stars {
        display: flex;
        gap: 5px;
    }

    .rating-stars i {
        font-size: 1.8rem;
        color: #ffd700;
        filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
    }

    .rating-stars #semi {
        background: linear-gradient(to right, #ffd700 50%, #ddd 50%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .rating-text {
        text-align: center;
    }

    .rating-text h3 {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--secend-color);
        margin: 0 0 0.5rem 0;
    }

    .rating-text p {
        font-size: 1rem;
        color: #666;
        margin: 0;
    }





    /* Review Cards Container */
    .review-cards {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    /* Individual Review Card */
    .review-card {
        background: #ffffff;
        border-radius: 16px;
        padding: 1.5rem;
        box-shadow: 0 8px 25px rgba(0,0,0,0.08);
        border: 1px solid rgba(32, 30, 67, 0.08);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .review-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(135deg, var(--secend-color), var(--third-color));
        border-radius: 0 2px 2px 0;
    }

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

    /* Review Header */
    .review-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 1rem;
        gap: 1rem;
    }

    .reviewer-info {
        display: flex;
        align-items: center;
        gap: 1rem;
        flex: 1;
    }

    .reviewer-avatar {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, var(--secend-color), var(--third-color));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.2rem;
        box-shadow: 0 4px 15px rgba(32, 30, 67, 0.3);
    }

    .reviewer-details h3 {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--secend-color);
        margin: 0 0 0.2rem 0;
    }

    .reviewer-location {
        font-size: 0.9rem;
        color: #666;
        font-weight: 500;
    }

    .review-rating {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 0.5rem;
    }

    .stars {
        display: flex;
        gap: 3px;
    }

    .stars i {
        font-size: 1rem;
        color: #ffd700;
        filter: drop-shadow(0 1px 2px rgba(255, 215, 0, 0.3));
    }

    .stars #semi {
        background: linear-gradient(to right, #ffd700 50%, #ddd 50%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .stars #not {
        color: #ddd;
    }

    .rating-score {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--secend-color);
        background: rgba(32, 30, 67, 0.1);
        padding: 0.3rem 0.8rem;
        border-radius: 20px;
    }

    /* Review Content */
    .review-content {
        margin-bottom: 1rem;
    }

    .review-content p {
        font-size: 1rem;
        line-height: 1.6;
        color: #444;
        margin: 0;
        font-style: italic;
    }

    /* Review Date */
    .review-date {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.85rem;
        color: #888;
    }

    .review-date i {
        font-size: 0.8rem;
    }

    /* Hidden Reviews */
    .hidden-review {
        display: none;
        animation: slideDown 0.5s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Load More Button */
    .load-more-container {
        text-align: center;
        margin-top: 2rem;
    }

    .load-more-btn {
        background: linear-gradient(135deg, var(--secend-color), var(--third-color));
        color: white;
        border: none;
        padding: 1rem 2rem;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 0.8rem;
        box-shadow: 0 8px 25px rgba(32, 30, 67, 0.3);
        position: relative;
        overflow: hidden;
    }

    .load-more-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left 0.5s;
    }

    .load-more-btn:hover::before {
        left: 100%;
    }

    .load-more-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(32, 30, 67, 0.4);
    }

    .load-more-btn:active {
        transform: translateY(-1px);
    }

    .load-more-btn i {
        transition: transform 0.3s ease;
    }

    .load-more-btn:hover i {
        transform: translateY(2px);
    }

    .load-more-btn.loading {
        pointer-events: none;
        opacity: 0.7;
    }

    .load-more-btn.loading i {
        animation: spin 1s linear infinite;
    }

    @keyframes spin {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

    /* ===== END ENHANCED REVIEWS STYLING ===== */
}

.cost{
    color: var(--secend-color);
    padding-bottom: 5rem;
    .cost-box{
        display: flex;
        position: relative;
        max-width: 670px;
        flex-wrap: wrap;
        border-radius: 10px;
        height: 11.5rem;
        align-items: center;
        background: linear-gradient(180deg, var(--secend-color), var(--fourth-color));
        /* justify-content: space-around; */
        gap: 10px;
        margin-top: 1rem;
        color: var(--main-color);

        h5{
            font-size: 0.8rem;
            font-weight: 700;
            display: none;
            color: var(--main-color);
        }
        .members{
            &:nth-child(2){
                select{
                    left: 22.5rem;
                }
            }
            &:nth-child(1){
                select{
                    left: 2rem;
                }
            }
            select{
                top: 20px;
                position: absolute;
                padding: 10px 02px;
                padding-left: 40px;
                padding-right: 20px;
                border-radius: 10px;
                font-size: 1.7rem;
                width: 280px;
                border: 1px solid var(--secend-color);
                background-color: var(--main-color);
                /* box-shadow: 1px 1px 10px #201e4363; */
                color: var(--secend-color);
                font-weight: 600;
                font-size: 0.9rem;
                cursor: pointer;
                transition: 0.2s ease-in-out;
   
                /* &:valid{
                    background-color: var(--third-color);
                    border: 1px solid var(--third-color);
                    color: var(--main-color);
                    box-shadow: 1px 1px 10px #134b7096;
                } */
            }
        }
        .btn-check{
            button{
                padding: 10px 20px;
                border: none;
                border-radius: 5px;
                width: 608px;
                background-color: #9c96ff;
                color: black;
                font-size: 1rem;
                cursor: pointer;
                position: absolute;
                bottom: 1rem;
                transition: background-color 0.3s ease;
                animation: shine 1.5s infinite;
                &:hover{
                    background-color: #655dff;
                    /* border: 1px solid var(--main-color); */
                }
            }
        }
        
        .date-select{
            input{
                padding: 10px 02px;
                width: 607px;
                text-align: center;
                margin-top: -1rem;
                position: absolute;
                bottom: 4.5rem;
                left: 2rem;
                border-radius: 10px;
                border: 0px solid var(--secend-color);
                background-color: var(--main-color);
                /* box-shadow: 1px 1px 10px #201e4363; */
                color: var(--secend-color);
                font-weight: 600;
                font-size: 0.9rem;
                cursor: pointer;
                transition: 0.2s ease-in-out;
                &:hover{
                    box-shadow: 1px 1px 10px #134b7096;
                }
                &:valid{
                    outline: none;
                    border: 1px solid var(--third-color);
                    background-color: var(--third-color);
                    color: var(--main-color);
                }
            }
        }
        
    }
    .result{
        border: 2px solid var(--third-color);
        margin-top: 2rem;
        display: none;
        border-radius: 10px;
        padding: 10px 20px;
        position: relative;
        width: 670px;
        overflow-x: hidden;
        height: 21rem;
        h1{
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--secend-color);
            margin-bottom: 1rem;  
        }
        .line{
            width: 98%;
            opacity: 0.7;
            height: 1.5px;
        }
        .details{
            display: flex;
            flex-wrap: wrap;
            width: 300px;
            height: 5rem;
            justify-content: space-between;
            *{
                display: flex;
                gap: 10px;
                font-weight: 600;
                h3{
                    font-weight: 500;
                    margin-top: -0.1rem;
                }
                a{
                    text-decoration: underline;
                    cursor: pointer;
                }
                font-size: 1.1rem;
            }

        }
        .time-selected{
            display: flex;
            flex-direction: column;
            gap: 10px;
            font-size: 1rem;
            margin-top: 1rem;
            column-gap: 10px;
            margin-bottom: 1rem;
            h1{
                font-size: 1rem;
                font-weight: 600;
                color: var(--secend-color);
            }
            h2{
                margin-left: 1rem;
                margin-top: -1rem;
                font-size: 1.2rem;
                font-weight: 700;
            }
        }
        .bottom{
            display: flex;
            position: absolute;
            justify-content: space-between;
            align-items: center;
            bottom: 0;
            padding: 1rem 0;
            /* border-top: 1px solid var(--secend-color); */
            margin-top: 1rem;
            padding: 10px 20px;
            background-color: var(--main-color);
            width: 100%;
            height: 6.5rem;
            margin-left: -20px;
            h2{
                font-size: 1.7rem;
                margin-bottom: 0.2rem;
            }
            h3{
                font-size: 1rem;
                font-weight: 600;
                margin-bottom: 0.1rem;
            }
            .btn{
                button{
                    padding: 10px 20px;
                    border: none;
                    border-radius: 55px;
                    margin-right:20px ;
                    width: 200px;
                    background-color: var(--third-color);
                    color: var(--main-color);
                    font-size: 1rem;
                    cursor: pointer;
                    transition: background-color 0.3s ease;
                    &:hover{
                        background-color: var(--secend-color);
                        color: var(--main-color);
                    }
                }
            }
        }
    }
}
.details{
    display: flex;
    flex-direction: column;
    gap:20px;
    /* span{
        color: red;
    } */
    .detail:nth-child(2){
       .content{
        .info{
            ul{
                li{
                    font-size: 15px;
                    font-weight: 700;
                    span{
                        color:red;
                        font-size: 18px;
                    }
                }
            }
        }
       }
    }
    .detail:nth-child(3){
        display: flex;
        gap: 30px;
        /* height: 130px; */
        flex-direction: column;
        justify-content:baseline;
        align-items: start;
        margin-bottom: 30px;
        .content{
            display: flex;
            color: var(--secend-color);
            flex-direction: row;
            font-size: 15px;
            width: 900px;
            justify-content: space-between;   
            /* gap: 150px; */
            /* width: 800px; */
            overflow-wrap: break-word;
            .dtitle{
                font-size: 20px;
                padding-left: 20px;
                font-weight: 700;
                text-align: left;
            }
            .dtitle,.info{
                display: flex;
                justify-content: start;
                align-items: center;
            }
            .info{
                width: 600px;
                overflow-wrap: break-word;
                ul{
                    list-style: "-  ";
                }
            }
        }
    }
    .detail{
        display: flex;
        gap: 30px;
        /* height: 130px; */
        flex-direction: column;
        justify-content: center;
        align-items: start;
        margin-bottom: 30px;
        .content{
            display: flex;
            color: var(--secend-color);
            flex-direction: row;
            font-size: 15px;
            width: 780px;
            justify-content: space-between;   
            /* gap: 150px; */
            /* width: 800px; */
            overflow-wrap: break-word;
            .dtitle{
                font-size: 20px;
                padding-left: 20px;
                font-weight: 700;
                text-align: left;
            }
            .dtitle,.info{
                display: flex;
                justify-content: start;
                align-items: center;
            }
            .info{
                width: 480px;
                overflow-wrap: break-word;
                ul{
                    list-style: "-  ";
                }
            }
        }
        .line{
            width: 600px;
            opacity: 0.3;
            height: 2px;
            background-color: var(--secend-color);
            
        }
    }
}
.description{
    color: var(--secend-color);
    margin-top: 80px;
    .stitle{
        h1{
            font-size: 30px;
            letter-spacing: 2px;
        color: var(--secend-color);

        }
    }
    .summarize{
        width: 860px;
        p{
            width: 690px;
            margin-top: 20px;
            font-size: 16px;
            color: var(--secend-color);
            font-weight: 400;
        }
    }
    .line{
        width: 150px;
        margin-top: 12px;
        margin-bottom:-10px;
        height: 2px;
        opacity: 0.5;
        border-radius: 15px;
        background-color: var(--fourth-color);
        
        &:nth-of-type(2){
            width: 200px;
        }
        &:nth-of-type(4){
            width: 220px;
        }
    }
    .line:nth-of-type(3){
        width: 350px;
    }

}
@media screen and (max-width: 768px) {
    .top-page .box {
        width: 92vw !important;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    /* ===== MOBILE IMAGE LAYOUT STYLING ===== */
    .imgs_box {
        flex-direction: column;
        height: auto;
        gap: 3px;
    }
    
    .imgs_box .img_box:nth-child(1),
    .imgs_box .img_box:nth-child(2),
    .imgs_box .img_box:nth-child(3) {
        width: 100%;
        height: 200px;
    }
    
    .imgs_box .img_box:nth-child(3) {
        flex-direction: row;
        gap: 3px;
    }
    
    .imgs_box .img_box:nth-child(3) img {
        height: 100%;
        width: 50%;
    }
    
    .imgs_box .img_box img {
        height: 100%;
    }

    /* ===== MOBILE LIGHTBOX STYLING ===== */
    .lightbox-content {
        max-width: 95vw;
        max-height: 85vh;
        border-radius: 12px;
    }

    .lightbox-content img {
        width: 95vw;
        height: 70vh;
        border-radius: 12px;
        object-fit: contain;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .lightbox-nav.prev-btn {
        left: 10px;
    }

    .lightbox-nav.next-btn {
        right: 10px;
    }

    .lightbox-close {
        top: 8px;
        right: 12px;
        width: 32px;
        height: 32px;
        font-size: 1.5rem;
    }
    /* ===== END MOBILE LIGHTBOX STYLING ===== */
    .price-box{
        display: none;
    }
     .top-page .about h4 {
        width: 100%;
        margin-left: 0;
    }
    .top-page .about-ticket{
        .items{
            .item{
                h3{
                    font-size: 0.8rem;
                    /* display: flex;
                    flex-wrap: wrap ;
                    flex-direction: column  ;
                    overflow-x: hidden;
                    column-gap: 0px;
                    gap: 0; */
                    flex-basis: 260px;
                }
                width: 100%;
                overflow: hidden;
            }
        }
    }
    .reviews{
        padding-left: 10px;
    }
}
/* Tablet */
@media screen and (max-width: 768px) {
    .container{
        overflow-x: hidden;

    }
    .cost .cost-box {
        max-width: 100%;
        height: auto;
        padding: 1.5rem 1rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .cost .cost-box .members:nth-child(1) select,
    .cost .cost-box .members:nth-child(2) select {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        margin-bottom: 0.5rem;
        padding: 12px 20px;
    }
    
    .cost .cost-box .date-select input {
        position: relative;
        bottom: auto;
        left: auto;
        width: 100%;
        margin-top: 0;
        margin-bottom: 0.5rem;
        padding: 12px 20px;
    }
    
    .cost .cost-box .btn-check button {
        position: relative;
        bottom: auto;
        width: 100%;
        margin-top: 0.5rem;
        padding: 12px 20px;
    }
    .details{
        flex-direction: column !important;
        gap: 50px;
        .detail:nth-child(1){
            /* width: 390px !important; */
            /* height: 370px;/ */
            /* overflow-x: hidden; */
            .info{
                width: 90vw;
                ul{
                    padding-left: 20px;
                    li{
                        margin-top: 5px;
                        font-size: 14px;
                        /* font-weight: 600; */
                    }
                }
            }
        }
        .detail:nth-child(3){
            margin-top: 20px;
            .content{
                flex-direction: column;
                .info{
                    width: 90vw;
                    ul{
                        padding-left: 20px;
                        li{
                            font-size: 14px;
                            margin-top: 5px;
                            
                        }
                    }
                }
                ul{
                    padding-top: 10px;
                    padding-left: 30px;
                }
            }
            .line{
                 width: 95vw;
            
            }
        }
        .detail{
            margin-top: 20px;
            .content{
                flex-direction: column;
                .info{
                    width: 90vw;
                    display: flex;
                    flex-direction: column;
                    align-items: start;
                    justify-content: center;
                    p{
                        width: 90vw !important;
                        margin-left: 17px;
                        margin-top: 10px;
                    }
                    ul{
                        
                        padding-left: 20px;
                        li{
                            font-size: 14px;
                            margin-top: 5px;
                            
                        }
                    }
                }
                ul{
                    padding-top: 10px;
                    padding-left: 30px;
                }
            }
            .line{
                width: 95vw;
            
            }
        }
    }
    .description{
        .summarize{
            width: 380px;
            font-size: 14px;
            p{
                width: 380px;
            }
            .line{
                margin-top: 20px;
                margin-bottom: 0;
            }
        }
    }
    /* ===== MOBILE REVIEWS STYLING ===== */
    .reviews {
        padding: 0 15px !important;
        margin-top: 15% !important;
    }

    .rtitle h1 {
        font-size: 2rem;
    }

    .rtitle p {
        font-size: 1rem;
    }

    .overall-rating {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .rating-summary {
        gap: 1.5rem;
    }

    .rating-number h2 {
        font-size: 3rem;
    }

    .rating-stars i {
        font-size: 1.5rem;
    }

    .rating-text h3 {
        font-size: 1.3rem;
    }

    .review-card {
        padding: 1.2rem;
    }

    .reviewer-avatar {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .reviewer-details h3 {
        font-size: 1.1rem;
    }

    .review-content p {
        font-size: 0.95rem;
    }

    .rating-score {
        font-size: 1rem;
        padding: 0.2rem 0.6rem;
    }

    .review-date {
        font-size: 0.8rem;
    }

    .load-more-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .load-more-btn i {
        font-size: 0.9rem;
    }

    /* ===== MOBILE TRAVELER PHOTOS STYLING ===== */
    .traveler-photos-section {
        margin: 2rem 0;
        padding: 1.5rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .section-title p {
        font-size: 1rem;
    }

    .traveler-photos-gallery {
        flex-direction: column;
        max-width: 100%;
        gap: 1rem;
    }

    .main-photo-container {
        height: 300px;
    }

    .thumbnail-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: 1fr;
        gap: 0.3rem;
        padding: 0.3rem;
    }

    .photo-info {
        padding: 1rem 0.8rem 0.8rem 0.8rem;
    }

    .traveler-name {
        font-size: 1rem;
    }

    .photo-date {
        font-size: 0.8rem;
    }

    .more-photos-overlay span {
        font-size: 1rem;
    }


    /* ===== END MOBILE REVIEWS STYLING ===== */
    
/* Mobile */
@media screen and (max-width: 480px) {
    /* ===== SMALL MOBILE IMAGE LAYOUT STYLING ===== */
    .imgs_box {
        gap: 2px;
    }
    
    .imgs_box .img_box:nth-child(1),
    .imgs_box .img_box:nth-child(2),
    .imgs_box .img_box:nth-child(3) {
        height: 150px;
    }

    /* ===== SMALL MOBILE LIGHTBOX STYLING ===== */
    .lightbox-content {
        max-width: 98vw;
        max-height: 90vh;
        border-radius: 8px;
    }

    .lightbox-content img {
        width: 98vw;
        height: 75vh;
        border-radius: 8px;
        object-fit: contain;
    }

    .lightbox-nav {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .lightbox-nav.prev-btn {
        left: 8px;
    }

    .lightbox-nav.next-btn {
        right: 8px;
    }

    .lightbox-close {
        top: 5px;
        right: 8px;
        width: 28px;
        height: 28px;
        font-size: 1.2rem;
    }
    /* ===== END SMALL MOBILE LIGHTBOX STYLING ===== */

    /* ===== SMALL MOBILE REVIEWS STYLING ===== */
    .reviews {
        padding: 0 10px !important;
        margin-top: 12% !important;
    }

    .rtitle h1 {
        font-size: 1.8rem;
    }

    .rtitle p {
        font-size: 0.9rem;
    }

    .overall-rating {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .rating-summary {
        gap: 1rem;
        flex-direction: column;
    }

    .rating-number h2 {
        font-size: 2.5rem;
    }

    .rating-stars i {
        font-size: 1.3rem;
    }

    .rating-text h3 {
        font-size: 1.1rem;
    }

    .review-card {
        padding: 1rem;
    }

    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .reviewer-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .reviewer-details h3 {
        font-size: 1rem;
    }

    .review-content p {
        font-size: 0.9rem;
    }

    .rating-score {
        font-size: 0.9rem;
        padding: 0.2rem 0.5rem;
    }

    .review-date {
        font-size: 0.75rem;
    }

    .load-more-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }

    .load-more-btn i {
        font-size: 0.8rem;
    }

    /* ===== SMALL MOBILE TRAVELER PHOTOS STYLING ===== */
    .traveler-photos-section {
        margin: 1.5rem 0;
        padding: 1rem;
    }

    .section-title h2 {
        font-size: 1.6rem;
    }

    .section-title p {
        font-size: 0.9rem;
    }

    .main-photo-container {
        height: 250px;
    }

    .thumbnail-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.2rem;
        padding: 0.2rem;
    }

    .photo-info {
        padding: 0.8rem 0.6rem 0.6rem 0.6rem;
    }

    .traveler-name {
        font-size: 0.9rem;
    }

    .photo-date {
        font-size: 0.75rem;
    }


    /* ===== END SMALL MOBILE REVIEWS STYLING ===== */

    .cost {
        padding-bottom: 3rem;
    }
    .details{
        flex-direction: column;
        .detail{
            .content{
                flex-direction: column;
            }
        }
    }
    .cost .cost-box {
        max-width: 100% !important;
        height: auto;
        padding: 1rem 0.5rem;
        flex-direction: column;
        gap: 0.8rem;
        margin-top: 0.5rem;
    }
    
    .cost .cost-box .members:nth-child(1) select,
    .cost .cost-box .members:nth-child(2) select {
        position: relative;
        left: auto;
        top: auto;
        width: 80vw;
        max-width: 100%;
        margin-bottom: 0.5rem;
        padding: 10px 15px;
        padding-left: 20px;
        padding-right: 15px;
        font-size: 0.8rem;
        border-radius: 8px;
    }
    
    .cost .cost-box .date-select input {
        position: relative;
        bottom: auto;
        left: auto;
        width: 80vw;
        max-width: 100%;
        margin-top: 0;
        margin-bottom: 0.5rem;
        padding: 10px 15px;
        font-size: 0.8rem;
        border-radius: 8px;
        text-align: center;
    }
    
    .cost .cost-box .btn-check button {
        position: relative;
        bottom: auto;
        width: 80vw;
        max-width: 100%;
        margin-top: 0.5rem;
        padding: 10px 15px;
        font-size: 0.9rem;
        border-radius: 8px;
    }
    
    .cost .cost-box h5 {
        font-size: 0.7rem;
    }
}
.result {
        width: 100%;
        max-width: 100%;
        height: 28rem !important;
        padding: 15px;
        margin-top: 1.5rem;
    }
    
    .result h1 {
        font-size: 1.2rem;
        margin-top: 2rem;
    }
    
    .result .details {
        width: 100%;
        height: auto;
        flex-direction: column;
        gap: 0.5rem;
    }
    .line{
        margin-top: 1rem;
        margin-bottom: -2rem;
    }
    .line:nth-child(2){
        margin-top: 2rem;
    }
    .result .details * {
        font-size: 1rem;
    }
    
    .result .time-selected {
        margin-top: 0.8rem;
        padding-bottom: 1.2rem;
    }
    
    .result .bottom {
        position: relative;
        flex-direction: column;
        gap: 1rem;
        margin-left: 0;
        width: 100%;
        padding: 1rem;
        height: 9rem !important;
        text-align: center;
    }
    
    .result .bottom .btn {
        width: 100%;
    }
    
    .result .bottom .btn button {
        width: 100%;
        margin-right: 0;
        padding: 12px 20px;
    }
}
.star-rating .half-checked {
    background: linear-gradient(90deg, rgb(230, 174, 34) 50%, gray 50%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}/* Trip Switcher Buttons */
.trip-switcher {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    padding: 0 20px;
}

.trip-btn {
    padding: 12px 24px;
    border: 2px solid #007bff;
    background: transparent;
    color: #007bff;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.trip-btn:hover {
    background: #007bff;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.trip-btn.active {
    background: #007bff;
    color: white;
}

@media (max-width: 768px) {
    .trip-switcher {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .trip-btn {
        width: 80%;
        text-align: center;
    }
}