#tour_details_main .nav {
    display: flex;
}

#tour_details_main .nav-item {
    margin: 0 30px 20px 0;
    padding: 2px 0;
    color: rgba(64, 69, 74, 1);
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
}

#tour_details_main .nav-item.active {
    color: var(--main-color);
    border-bottom: 2px solid var(--main-color);
}

#tour_details_main .nav-item:hover {
    color: var(--main-color);
}

#tour_details_main .description {
    margin-bottom: 30px;
    line-height: 1.6;
    color: #333;
}

#tour_details_main .highlights {
    margin-bottom: 30px;
}

#tour_details_main .highlights h2 {
    color: rgba(1, 23, 27, 1);
    font-size: 22px;
    margin: 20px 0 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#tour_details_main .highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

#tour_details_main .highlight-item::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f00c";
    color: var(--main-color);
    background-color: #e6f3f0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-right: 10px;
}


#tour_details_main .tags {
    margin-bottom: 30px;
}

#tour_details_main .tag {
    background-color: #f0f0f0;
    padding: 5px 10px;
    border-radius: 4px;
    color: #666;
    display: inline-block;
    margin-right: 10px;
}

.view-tour-details {
    color: #0088cc;
    text-decoration: none;
    font-size: 14px;
}

/* tour lịch trình */

.tour-container {
    max-width: 100%;
    margin: 20px auto;
    padding: 0 15px;
    text-align: center;
}

.tour-container .accordion .accordion-item {
    position: relative;
}

.tour-container .accordion .accordion-item:not(:last-child):before {
    position: absolute;
    content: "";
    border-left: 1px dashed #d8d8d8;
    width: 0;
    height: 100%;
    left: -10px;
    top: 32px;
}

.tour-container .accordion-header {
    padding: 8px;
}

.tour-container .accordion-header button {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tour-title {
    color: rgba(1, 23, 27, 1);
    font-size: 22px;
    margin: 20px 0 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tour-container .view-details {
    color: #0095f6;
    text-decoration: none;
    font-size: 14px;
}

.tour-container .accordion-button {
    color: #333 !important;
    font-size: 16px !important;
    background-color: #fff !important;
    box-shadow: none !important;
    padding: 0;
    font-weight: 500;
}

.tour-container .accordion-button::before {
    content: "";
    position: absolute;
    width: 23px;
    height: 23px;
    border-radius: 100%;
    border: solid 1px var(--main-color);
    background-color: #fff;
    top: 5px;
    left: -29px;
}

.tour-container .accordion-button::after {
    content: "";
    position: absolute;
    width: 11px;
    height: 11px;
    border-radius: 100%;
    background: var(--main-color);
    top: 11px;
    left: -23px;
}

.tour-container .accordion-button:not(.collapsed)::before {
    border: solid 3px var(--main-color);
    transition: transform 0.3s ease;
}

.tour-container .accordion-item {
    border: none;
}


.tour-container .accordion-item:last-child {
    border-bottom: 1px solid #e6e6e6;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.booking-box .flatpickr-input{
    border: 0;
    padding: 0;
    background: transparent;
    text-align: center;
}


.tour-container .download-btn {
    display: inline-block;
    color: #0095f6;
    border: 1px solid #0095f6;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    margin-top: 20px;
    font-size: 14px;
}

.tour-container .download-btn:hover {
    background-color: #f0f7ff;
    text-decoration: none;
    color: #0095f6;
}

/* End tour lịch trình */
.tour-info-box.hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.tour-info-box.visible {
    opacity: 1;
    visibility: visible;
}

.tour-info-box {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 2px 4px 0 #00000038;
    padding: 10px 0;
}

@media (max-width: 768px) {
    #tour_details_main .nav {
        flex-wrap: wrap;
    }

    #tour_details_main .nav-item {
        padding: 10px;
        font-size: 14px;
    }

    #tour_details_main .day-title {
        font-size: 14px;
    }
}


.destination-slider {
    width: 100%;
    display: flex;
    margin: 0 auto;
    padding: 20px 0;
}

.destination-slider .destination-item {
    position: relative;
    margin: 0 18px;
    border-radius: 50%;
    overflow: hidden;
}

.destination-slider .destination-item img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    border-radius: 50%;
    /* position: relative; */
}

.destination-slider .destination-item img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000 !important;
    opacity: 0.35;
}


.destination-slider .destination-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
}

.destination-slider .destination-name {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}

.destination-slider .tour-count {
    font-size: 14px;
    margin: 5px 0 0;
    color: #fff;
}

.destination-slider .section-title {
    text-align: center;
    font-size: 24px;
    margin: 20px 0;
    color: #333;
}

@media (max-width: 768px) {
    .destination-slider .destination-item img {
        height: 150px;
    }
}


.hotel-box .hotel-type {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #666;
    font-size: 16px;
    margin: 0 0 8px 0;
}

.hotel-box .hotel-type span:last-child {
    min-width: 50%;
    text-align: end;
}

.hotel-box .hotel-type i {
    font-size: 16px;
    color: #848484;
    margin-right: 8px;
}

.hotel-box .rating {
    color: #ffc107;
    font-size: 16px;
    margin-left: 4px;
}

.hotel-box .price-section {
    display: flex;
    justify-content: space-between;
    align-items: end;
    flex-direction: column;
    margin-top: 16px;
}

.hotel-box .price {
    font-size: 26px;
    font-weight: 600;
    color: #ff5722;
}

.hotel-box .price-label {
    font-size: 12px;
    color: #666;
}

.hotel-box .book-button.book-button-request {
    background: #fff;
    color: #ff5722;
    border: 1px solid #ff5722;
}

.hotel-box .book-button.book-button-request:hover {
    background: #ff5722;
    color: #fff;
    transition: 0.3s ease;
}

.hotel-box .book-button {
    border: 1px solid #ff5722;
    background-color: #ff5722;
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    /* margin: 0 5px; */
}

.hotel-box .book-button:hover {
    background-color: #f4511e;
}


.price-table-container {
    max-width: 100%;
    border-radius: 8px;
    background: white;
    overflow: hidden;
}

.price-table-container .tab-header {
    padding: 16px 0;
    border-bottom: 1px solid #eee;
}

.price-table-container .tab-buttons {
    margin-top: 12px;
    display: flex;
    gap: 8px;
}

.price-table-container .tab-button {
    padding: 8px 16px;
    border-radius: 20px;
    border: none;
    font-size: 14px;
    cursor: pointer;
}

.price-table-container .tab-button.active {
    background-color: #ff5722;
    color: white;
}

.price-table-container .tab-button:not(.active) {
    background-color: #f5f5f5;
    color: #333;
}

.price-table-container .price-table {
    width: 100%;
    border-collapse: collapse;
}

.price-table-container .price-table th {
    background: #f8f8f8;
    padding: 12px;
    text-align: left;
    font-weight: 600;
    color: #666;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}

.price-table-container .price-table td {
    padding: 16px 12px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.price-table-container .date-column {
    color: #333;
}

.price-table-container .availability {
    color: #666;
    font-size: 12px;
}

.price-table-container .airline {
    color: #006650;
}

.price-table-container .price {
    color: #e41f1f;
    font-weight: 600;
}

.price-table-container .book-button {
    background-color: #fff2eb;
    color: #ff5722;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.price-table-container .book-button:hover {
    background-color: #ffe4d6;
}

.scroll-container {
    position: relative;
    padding: 0 10px;
}

.destinations,
.review-cards {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 10px 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Firefox */
}

.destinations::-webkit-scrollbar,
.review-cards::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari */
}


.destination-card {
    position: relative;
    min-width: 280px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    scroll-snap-align: start;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.destination-card:hover {
    transform: translateY(-5px);
}

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

.destination-card:hover img {
    transform: scale(1.05);
}

.card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
}

.destination-name {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.tour-count {
    font-size: 14px;
    opacity: 0.9;
}

.scroll-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 2;
    transition: all 0.3s ease;
}

.scroll-button:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.scroll-prev {
    left: 0;
}

.scroll-next {
    right: 0;
}

.scroll-button::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border: solid #333;
    border-width: 0 2px 2px 0;
    position: absolute;
    top: 50%;
    left: 50%;
}

.scroll-prev::before {
    transform: translate(-25%, -50%) rotate(135deg);
}

.scroll-next::before {
    transform: translate(-75%, -50%) rotate(-45deg);
}

.view-all {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.view-all-button {
    padding: 8px 24px;
    border: 1px solid #007bff;
    border-radius: 20px;
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
}

.view-all-button:hover {
    background-color: #007bff;
    color: white;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}



/* Nội dung phần ảnh viết ở đây */

/* .image-masonry {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: 1fr .5fr 1fr 1fr 1fr;
    grid-auto-rows: 15rem;
    grid-auto-flow: dense;
    width: 100%;
} */

.image-masonry {
    display: grid;
    grid-gap: 8px;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 15rem;
    grid-auto-flow: dense;
    width: 100%;
}

.image-masonry__item {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.image-masonry .first {
    grid-column: span 2;
    grid-row: span 2
}

.image-masonry .wide {
    grid-column: span 2
}

.image-masonry .tall {
    grid-row: span 2
}

.image-masonry .special {
    grid-column: span 2
}

.image-masonry .big {
    grid-column: span 2;
    grid-row: span 2
}

.image-masonry__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease-in-out;
}

.image-masonry__link:hover .image-masonry__img {
    transform: scale(1.05);
}

.image-masonry__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    z-index: 10;
    border-radius: 8px;
}

.hidden {
    display: none;
}


/* End */



/* Review detail tour */

.review-section {
    max-width: 100%;
    margin: 20px auto;
}

.rating-summary {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.rating-number {
    font-size: 32px;
    font-weight: bold;
    margin-right: 10px;
}

.rating-scale {
    color: #666;
    font-size: 14px;
}

.stars {
    color: #ff9900;
    font-size: 20px;
}

.total-reviews {
    color: #666;
    font-size: 14px;
}

.review-link {
    color: #0066cc;
    text-decoration: none;
    float: right;
}

.review-cards {
    display: flex;
    gap: 15px;
    overflow-x: auto;
}

.review-card {
    background: #f8f8f8;
    border-radius: 8px;
    padding: 15px;
    min-width: 35%;
}

.reviewer-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.reviewer-name {
    font-weight: bold;
}

.review-date {
    color: #666;
    font-size: 14px;
}

.review-text {
    color: #333;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 15px;
}

.review-images {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    cursor: pointer;
}

.review-image {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    object-fit: cover;
}

.image-count {
    position: relative;
    display: inline-block;
}

.image-count .extra-images {
    position: absolute;
    right: 5px;
    bottom: 5px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
}

/* End review detail tour */

.home__box-tour h4 {
    font-size: 16px;
}

.home__box-tour .theme_two_box_content {
    padding: 15px;
}

.offers__reviews {
    display: flex;
    align-items: center;
}

.offers__address,
.deals__address {
    display: flex;
    margin-top: 8px;
}

.offers__address svg,
.deals__address svg {
    margin-right: 8px;
}

.point__reviews {
    padding: 2px 10px !important;
    background: #5562DA;
    border-radius: 4px;
    color: #fff;
    font-weight: 500;
    margin-right: 8px;
    display: inline-block;
}

.blueDark {
    color: #20265A;
}

.blueDark45 {
    color: #5C6AA1;
}


.search-box__tour .search-box {
    position: relative;
    margin-bottom: 16px;
}

.search-box__tour .search-input {
    width: 100%;
    padding: 12px 16px;
    padding-left: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
}

.search-box__tour .search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.search-box__tour .search-button {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    background: #ff5722;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
}

.search-box__tour .popular-searches {
    margin-top: 16px;
}

.search-box__tour .popular-searches h3 {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.search-box__tour .tags-container {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.search-box__tour .tag {
    background: #f5f5f5;
    padding: 6px 16px;
    border-radius: 16px;
    font-size: 13px;
    white-space: nowrap;
    color: #333;
    cursor: pointer;
}

.search-box__tour .content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 24px;
}

.search-box__tour .section {
    background: white;
    border-radius: 8px;
    -webkit-box-flex: 1;
    background-image: url('/assets/img/banner/search-overlay.png');
    background-repeat: no-repeat;
    background-size: contain;
    border: 1px solid #eee;
    border-radius: 16px;
    -ms-flex: 1;
    flex: 1;
    padding: 16px 12px;
    cursor: pointer;
}

.search-box__tour .section-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #333;
    line-height: 1;
}

.search-box__tour .item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    position: relative;
}

.search-box__tour .item-image img {
    width: 56px;
    height: 56px;
    border-radius: 6px;
    object-fit: cover;
    background: #f0f0f0;
}

.search-box__tour .item-content {
    flex: 1;
}

.search-box__tour .item-title {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 4px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    -webkit-box-flex: 1;
    display: -webkit-box;
    -ms-flex: 1;
    flex: 1;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.search-box__tour .item-location {
    font-size: 13px;
    color: #666;
    margin-bottom: 4px;
}

.search-box__tour .item-price {
    font-size: 13px;
    color: #ff5722;
    font-weight: 500;
}

.search-box__tour .item-description {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

.search-box__tour-content {
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
}

@media (max-width: 768px) {
    .search-box__tour .content-grid {
        grid-template-columns: 1fr;
    }
}

.section_padding_top_extra {
    padding: 200px 0 0 0;
}

#tourResult .theme_two_box_content h4 {
    font-size: 16px;
    display: -webkit-box;
    white-space: unset;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 24px;
    text-overflow: ellipsis;
}

#tourResult .theme_two_box_content {
    padding: 12px 15px !important;
}

.group__person_quantity .group-item {
    background: white;
    padding: 16px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.group__person_quantity .group-label {
    color: #1f2937;
}

.group__person_quantity .quantity-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.group__person_quantity .quantity-btn {
    width: 32px;
    height: 32px;
    border: none;
    background-color: #f3f4f6;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 18px;
}

.group__person_quantity .quantity-btn:hover {
    background-color: #e5e7eb;
}

.group__person_quantity .quantity-display {
    width: 32px;
    text-align: center;
}

.group__person_quantity .footer {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.group__person_quantity .price-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.group__person_quantity .price {
    color: #1e3a8a;
    font-size: 20px;
    font-weight: 500;
}

.faq-section {
    color: #333;
}

.faq-section .faq-subtitle {
    font-size: 16px;
    font-weight: bold;
    margin: 16px 0 8px 0;
}

.faq-section .faq-answer {
    margin: 0 0 16px 0;
    color: #555;
}

.faq-section .faq-answer.faded {
    color: #999;
}

.faq-section .see-more {
    position: relative;
    color: #0066cc;
    text-decoration: none;
    cursor: pointer;
    display: block;
    margin-top: 8px;
}

.faq-section .see-more.open::before {
    content: "";
    position: absolute;
    top: -48px;
    left: 0;
    width: 100%;
    height: 48px;
    background-image: linear-gradient(180deg, hsla(0, 0%, 100%, 0), #fff);
    pointer-events: none
}

.faq-section .faq-answer {
    margin: 0 0 16px 0;
    color: #555;
}

.faq-section .faq-answer.faded {
    color: #999;
}

.faq-section .help-centre-btn {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid #333;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    margin-top: 16px;
    font-weight: 500;
}

.faq-section .help-centre-btn:hover {
    background-color: #f5f5f5;
}

.view-tour-details i {
    transition: transform 0.3s;
}

.view-tour-details.open i {
    transform: rotate(180deg);
}

.left-0 {
    left: 0 !important;
}

.left-unset {
    left: unset !important;
}


.wrap__result-tour {
    max-width: 100%;
    margin: 20px auto;
    padding: 24px;
    border: 2px solid #FF5722;
    border-radius: 8px;
}

.wrap__result-tour .header {
    position: relative;
    margin-bottom: 24px;
    /* padding-right: 32px; */
}

.wrap__result-tour .close-btn {
    position: absolute;
    top: 0;
    right: 0;
    background: none;
    border: none;
    font-size: 20px;
    color: #999;
    cursor: pointer;
}

.wrap__result-tour .title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
}

.wrap__result-tour .features {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    color: #666;
    font-size: 14px;
}

.wrap__result-tour .package-details {
    color: #1a73e8;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-bottom: 32px;
}

.wrap__result-tour .package-details::after {
    content: "›";
    margin-left: 4px;
}

.wrap__result-tour .section-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.wrap__result-tour .calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.wrap__result-tour .month-year {
    font-weight: 500;
}

.wrap__result-tour .next-month {
    border: none;
    background: none;
    font-size: 20px;
    color: #666;
    cursor: pointer;
}

.wrap__result-tour .time-section {
    flex: 1;
}

.wrap__result-tour .time-label {
    font-size: 15px;
    color: #333;
    margin-bottom: 12px;
}

.wrap__result-tour .time-button {
    padding: 6px 20px;
    border: 1px solid #FF5722;
    border-radius: 20px;
    color: #FF5722;
    background: white;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.wrap__result-tour .time-button:hover {
    background: #fff1ed;
}

.wrap__result-tour .quantity-section {
    margin-top: 24px;
}

.wrap__result-tour .quantity-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding: 8px 0;
}

.wrap__result-tour .quantity-label {
    font-size: 15px;
    color: #333;
}

.wrap__result-tour .quantity-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.wrap__result-tour .price {
    font-weight: 500;
    min-width: 100px;
    text-align: right;
}

.wrap__result-tour .quantity-button {
    width: 32px;
    height: 32px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 4px;
    font-size: 18px;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrap__result-tour .quantity-button:hover {
    border-color: #999;
}

.wrap__result-tour .quantity-value {
    min-width: 24px;
    text-align: center;
}

.wrap__result-tour .total-price-wrap {
    border-top: 1px solid #eee;
}

.wrap__result-tour .total-price {
    text-align: right;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-top: 24px;
    padding-top: 24px;
}

.wrap__result-tour .empty {
    visibility: hidden;
}

.wrap__result-tour .disabled {
    color: #ccc;
    cursor: not-allowed;
}

.wrap__result-tour .currency-note {
    color: #666;
    font-size: 14px;
    margin-top: 16px;
}

.booking-card h4 {
    font-size: 20px;
    font-weight: 500;
    color: #2d3748;
    margin-bottom: 8px;
    line-height: 28px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


.booking-card .tour-details {
    color: #718096;
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.6;
}

.booking-card .cancellation {
    color: #38a169;
    font-size: 14px;
    margin-bottom: 24px;
}


/* Review css */
#offcanvasReadAllReview {
    min-width: 900px;
    border: 0;
    border-radius: 16px 0 0 16px;

}

#offcanvasReadAllReviewLabel {
    font-size: 20px;
    font-weight: 500;
    padding: 15px 0;
    line-height: 29px;
}

.review-container {
    padding: 0 0 15px 0;
    background: white;
    margin-bottom: 16px;
}

.review-container .rating-summary {
    border-bottom: 1px solid #d6d6d6;
}

.review-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 15px 0;
}

.zi-border-bottom {
    border-bottom: 1px solid #ddd !important;
}

.user-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.country {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: #666;
}

.country-flag img {
    width: 12px;
    border-radius: 2px;
}

.review-date {
    color: #666;
    font-size: 13px;
}

.room-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.room-type {
    font-size: 14px;
}

.room-type::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M21 8v13H3V8M1 3h22v5H1z'/%3E%3C/svg%3E");
    background-size: contain;
}

.stay-info {
    font-size: 14px;
    color: #666;
}

.stay-duration::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 8px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
    background-size: contain;
}

.room-type-info::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 8px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E");
    background-size: contain;
}

.review-left {
    flex: 1 1 25%;
    padding-right: 5%;
}

.review-right {
    flex: 1 1 70%;
}

.review-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
}

.feedback {
    margin-bottom: 16px;
}

.positive,
.negative {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.5;
}

.positive svg {
    fill: #28a745;
    width: 16px;
    height: 16px;
}

.negative svg {
    fill: #666;
    width: 16px;
    height: 16px;
}


.image-gallery {
    display: flex;
    gap: 8px;
    margin: 20px 0;
}

.gallery-image {
    width: 80px;
    height: 100px;
    background: #e5e5e5;
    border-radius: 6px;
    object-fit: cover;
}

.loading-review {
    opacity: 0.5;
    transition: opacity 0.3s;
}

#offcanvasReadAllReview .offcanvas-body {
    overflow-y: auto;
    padding-bottom: 60px;
}

#offcanvasReadAllReview .offcanvas-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    padding: 10px 15px;
    font-size: 12px;
    border-radius: 0 16px;
}

/* End review css */


.timeline-container {
    max-width: 100%;
    padding: 20px;
}

.timeline-container .timeline-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
}

.timeline-container .timeline-review {
    position: relative;
    padding-left: 32px;
}

.timeline-container .timeline-review::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e5e7eb;
}

.timeline-container .timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-container .timeline-dot {
    position: absolute;
    left: -32px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-container .timeline-dot.green {
    border-color: #10b981;
}

.timeline-container .timeline-dot.orange {
    border-color: #f59e0b;
    background: #f59e0b;
}

.timeline-container .timeline-time {
    font-size: 16px;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
    margin-left: 10px;
    font-weight: 500;
}

.timeline-container .timeline-location {
    color: #4b5563;
    text-decoration: none;
    font-size: 14px;
}

.timeline-container .timeline-tag {
    font-size: 13px;
    color: #6b7280;
    margin: 4px 0;
    margin-left: 10px;
}

.timeline-container .timeline-description {
    font-size: 14px;
    color: #374151;
    margin: 4px 0;
    margin-left: 10px;
}

.timeline-container .timeline-note {
    font-size: 12px;
    color: #6b7280;
    font-style: italic;
    margin-top: 16px;
}

.timeline-container .arrow-icon {
    width: 16px;
    height: 16px;
}

.gslide-media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: auto;
    height: 100vh;
}

.gslide-image img.zoomable {
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
    width: auto;
    height: 100vh;
}

.gslide-image img {
    max-height: 100vh;
    max-width: 100%;
    height: 100%;
}


/* Home Tour */
section .header {
    margin-bottom: 20px;
}

section .header h1 {
    font-size: 35px;
    font-weight: 800;
    line-height: 54px;
}

section .header p {
    color: rgba(115, 115, 115, 1);
    font-size: 18px;
}

.filter-bar {
    display: flex;
    gap: 10px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.filter-button {
    background-color: #f1f1f1;
    border: none;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: background-color 0.2s;
}

.filter-button:hover {
    background-color: #e5e5e5;
}

.filter-button::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border: solid rgba(115, 115, 115, 1);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-top: -4px;
}

.featured_tours .filter-bar {
    display: flex;
    gap: 10px;
}

.featured_tours .filter-button {
    background-color: #f1f1f1;
    border: none;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: background-color 0.2s;
}

.featured_tours .filter-button:hover {
    background-color: #e5e5e5;
}

.featured_tours .filter-button::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border: solid rgba(115, 115, 115, 1);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-top: -4px;
    margin-left: 6px;
}

.featured_tours .tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.featured_tours .tour-card {
    width: 100%;
    max-width: 100%;
    border-radius: 30px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.featured_tours .tour-image {
    position: relative;
    width: 100%;
    height: 260px;
}

.featured_tours .tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured_tours .badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.featured_tours .badge.top-rated {
    color: #FF8C00;
}

.featured_tours .badge.best-sale {
    color: rgba(61, 194, 98, 1);
}

.featured_tours .badge.discount {
    color: #FF8C00;
}

.featured_tours .favorite-button {
    position: absolute;
    top: 16px;
    right: 16px;
    background: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgba(115, 115, 115, 1);
}

.featured_tours .tour-content {
    padding: 20px;
    background: white;
    border-radius: 20px;
    margin-top: -20px;
    position: relative;
}

.featured_tours .rating {
    display: flex;
    align-items: center;
    gap: 4px;
    position: absolute;
    top: -15px;
    right: 15px;
    background: #fff;
    border-radius: 30px;
    border: 1px solid rgba(228, 230, 232, 1);
    padding: 0 12px;
}

.featured_tours .stars {
    color: #FFD700;
    margin-right: 0;
}

.featured_tours .average {
    font-weight: 600;
}

.featured_tours .review-count {
    color: rgba(115, 115, 115, 1);
    font-size: 13px;
}

.featured_tours .tour-title {
    font-size: 20px;
    line-height: 28px;
    margin-top: 0;
    font-weight: 700;
    margin: 20px 0 16px 0;
    color: rgba(0, 0, 0, 1);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured_tours .tour-title a {
    color: rgba(0, 0, 0, 1);
}

.featured_tours .tour-details {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
}

.featured_tours .tour-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(115, 115, 115, 1);
    font-size: 14px;
}

.featured_tours .tour-detail img {
    object-fit: cover;
}

.featured_tours .price-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
}

.featured_tours .price {
    font-size: 24px;
    font-weight: 800;
    width: 50%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.featured_tours .per-person {
    font-size: 14px;
    color: rgba(115, 115, 115, 1);
    font-weight: normal;
}

.featured_tours .book-button {
    background: #f5f5f5;
    color: #333;
    border: none;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.featured_tours .book-button:hover {
    background: #e5e5e5;
}


/* Đoạn 2 */
.category_of_tour .categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category_of_tour .category-card {
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s;
    background: white;
    border: 1px solid #eee;
    padding: 20px;
}

.category_of_tour .category-card:hover {
    transform: translateY(-5px);
}

.category_of_tour .category-image {
    height: 150px;
    position: relative;
}

.category_of_tour .category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.category_of_tour .category-content {
    padding: 16px 0 0 0;
}

.category_of_tour .category-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.category_of_tour .category-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-size: 14px;
}

.category_of_tour .arrow-icon {
    font-size: 18px;
}

.banner-wrapper {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.banner {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    height: 240px;
}

/* Banner 1 - Waking up */
.banner-1 {
    background: #7CD7F7;
    padding: 30px;
    display: flex;
    justify-content: space-between;
}

.banner-content {
    max-width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #000;
}

.view-more {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 0, 0, 1);
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    width: fit-content;
}

.view-more::after {
    content: "→";
    margin-left: 8px;
}

.banner-images {
    position: relative;
    width: 45%;
}

/* Banner 2 - Promotion */
.banner-2 {
    background: #FFE4E1;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.discount-badge {
    position: absolute;
    right: 20px;
    top: 20px;
    background: #FF4B4B;
    color: white;
    padding: 15px;
    border-radius: 50%;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
}

.banner-2 img {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50%;
    object-fit: cover;
}

.banner-2 .banner-content {
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
    }

    .banner {
        height: 200px;
    }

    .banner-title {
        font-size: 24px;
    }

    .banner-images {
        width: 40%;
    }
}

/* End Home Tour */

.hero-section {
    background-color: rgba(239, 239, 235, 1);
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.hero-section .easy-paymnet {
    display: inline-block;
    background: #fff;
    padding: 12px 16px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
}

.hero-section .hero-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 50px;
}

.hero-section .hero-text {
    color: #666;
    margin-bottom: 20px;
}

.hero-section .image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.hero-section .image-grid img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

.features-section {
    text-align: center;
    margin: 40px 0;
}

.features-section .features-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
}

.features-section .features-subtitle {
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
}

.features-section .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.features-section .feature-card {
    background-color: #f8f9ff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.features-section .feature-icon {
    width: 64px;
    height: 64px;
    background-color: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.features-section .feature-title {
    font-weight: bold;
    margin-bottom: 10px;
}

.features-section .feature-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.features-section .learn-more {
    color: #4f46e5;
    text-decoration: none;
    font-size: 14px;
}

.features-section .payment-methods {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.features-section .payment-methods img {
    height: 30px;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .image-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.btn-overlay-top {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 53px 0 24px;
    background: linear-gradient(360deg, #fff .84%, rgba(255, 255, 255, 0) 147.16%);
}

.btn-icon-right.btn-sm {
    padding-left: 16px;
    padding-right: 12px;
    border: solid 1px #e6e6e6;
    background: #fff;
}

.btn-outline-gray {
    color: #52637a;
}

.btn-outline-gray:hover {
    color: #fff;
    background: #718198;
    border: solid 1px #718198;
}

.btn-rounded {
    border-radius: 100px;
}

.info_detail .content {
    position: relative;
    max-height: 350px;
    overflow: hidden;
}

.info_detail .content.show-list {
    max-height: unset;
}

.info_detail .content.show-list .load-more-cate {
    display: none;
}



/* Tooltip styling */
.tooltip-text {
    position: absolute;
    top: -50px;
    left: 23px;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.text-hover-underline :hover {
    text-decoration: underline;
}

.tooltip-text::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

.tour_search_middel .tooltip-text {
    top: -36px;
    left: 50%;
    font-size: 12px;
}

.tour_search_middel:hover .tooltip-text {
    opacity: 1;
    visibility: visible;
    /* transform: translateX(50%) translateY(-5px); */
}

.tour_search_middel:hover h3.title {
    text-decoration: underline;
    color: var(--main-color);
}

/* end */

.flight_categories_search.tab {
    display: inline-block;
    position: absolute;
    top: -3px;
    right: 0;
}

.image-mansory__item--overlay--text {
    font-weight: 600;
}

/* css filter */
.tourListContainer .box {
    position: relative;
    border-radius: 3px;
    background: #ffffff;
    border-top: 3px solid #d2d6de;
    margin-bottom: 20px;
    width: 100%;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.tourListContainer .ls-sort-dropdown {
    display: inline-block;
    position: relative;
    cursor: pointer;
    float: right;
    margin-left: 16px;
    margin-bottom: 15px;
    padding: 6px;
    line-height: 26px;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    background-color: #fff;
}

.tourListContainer .ls-sort-dropdown .sort-label {
    font-size: 16px;
    color: #3f3b3b;
}

.tourListContainer .ls-sort-dropdown:hover .sort-menu {
    display: block;
}

.tourListContainer .ls-sort-dropdown .sort-menu li .orderItem:hover {
    background-color: transparent;
    color: var(--main-color);
}

.tourListContainer .ls-sort-dropdown .sort-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 31px;
    background-color: white;
    border: 1px solid #ddd;
    list-style: none;
    padding: 5px 0;
    border-radius: 4px;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.2);
    background-color: #fff;
    margin-top: 5px;
    min-width: 200px;
    z-index: 10;
}

.tourListContainer .ls-sort-dropdown .sort-label .active-sort {
    color: var(--main-color);
    text-decoration: none;
    font-weight: 600;
}

.tourListContainer .ls-sort-dropdown .sort-label .active-sort {
    color: var(--main-color);
    text-decoration: none;
    font-weight: 600;
}

.tourListContainer .icon-expand {
    height: 16px;
    width: 16px;
}

.tourListContainer .ls-sort-dropdown .sort-menu li {
    padding: 5px 12px;
}

.tourListContainer .ls-sort-dropdown .sort-menu li .orderItem.active {
    background-color: transparent;
    color: var(--main-color);
}

.tourListContainer .ls-sort-dropdown .sort-menu li a {
    color: #333;
    text-decoration: none;
    display: block;
}

.pageTitle h3 {
    display: block;
    font-size: 40px;
    margin: 0;
    font-weight: 600;
}

/* end js filter */



/* Box danh mục tour ở trang chủ */

.cateory_tour-section {
    padding: 60px 0 60px 0;
    background: #fff;
}

.section_padding .tour-header {
    text-align: center;
}

.section_padding .tour-subtitle {
    font-family: 'Dancing Script', cursive, sans-serif;
    color: var(--main-color);
    font-size: 30px;
    margin-bottom: 0.5rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.section_padding .tour-heading {
    font-size: 2.2rem;
    line-height: 40px;
    font-weight: 700;
    color: #002a3a;
    width: 100%;
    margin: 0 auto;
}

.cateory_tour-section .tour-list {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 38px;
    flex-wrap: wrap;
}

.cateory_tour-section .tour-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 140px;
    cursor: pointer;
}

.cateory_tour-section .tour-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
    margin-bottom: 14px;
    transition: transform 0.25s cubic-bezier(.7, .2, .2, 1);
}

.cateory_tour-section .tour-item:hover .tour-img {
    transform: translateY(-7px) scale(1.03);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.17);
}

.cateory_tour-section .tour-label {
    font-size: 1.02rem;
    color: #161616;
    text-align: center;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
}


/* Tạo hiệu ứng vòng cung */
.cateory_tour-section .tour-item:nth-child(1),
.cateory_tour-section .tour-item:nth-child(6) {
    margin-bottom: 60px;
}

.cateory_tour-section .tour-item:nth-child(2),
.cateory_tour-section .tour-item:nth-child(5) {
    margin-bottom: 20px;
}

.cateory_tour-section .tour-item:nth-child(3),
.cateory_tour-section .tour-item:nth-child(4) {
    margin-bottom: -20px;
}

@media (max-width: 1000px) {
    .cateory_tour-section .tour-list {
        gap: 18px;
    }

    .cateory_tour-section .tour-item {
        display: unset !important;
    }

    .cateory_tour-section .tour-img {
        width: 150px;
        height: 150px;
    }

    .cateory_tour-section .tour-item:nth-child(1),
    .cateory_tour-section .tour-item:nth-child(6) {
        margin-bottom: 36px;
    }

    .cateory_tour-section .tour-item:nth-child(2),
    .cateory_tour-section .tour-item:nth-child(5) {
        margin-bottom: 18px;
    }

    .cateory_tour-section .tour-item:nth-child(3),
    .cateory_tour-section .tour-item:nth-child(4) {
        margin-bottom: 0px;
    }
}

@media (max-width: 750px) {
    .cateory_tour-section .tour-section {
        padding: 30px 0 30px 0;
    }

    .cateory_tour-section .tour-list {
        flex-wrap: wrap;
        gap: 9px;
    }
}

/* End box */


/* Start */

.featured-section {
    background: #fff;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.featured-section .featured-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background:
        linear-gradient(rgba(226, 231, 227, 0.54), rgba(226, 231, 227, 0.54)),
        url("/assets/img/banner/bg-pattern.png");
    background-repeat: repeat;
    background-position: center top;
    z-index: 0;
    pointer-events: none;
}


.featured-section .featured-header {
    text-align: center;
    position: relative;
    z-index: 1;
    padding-top: 50px;
}

.featured-section .featured-subtitle {
    font-family: "Dancing Script", cursive, sans-serif;
    color: var(--main-color);
    font-size: 30px;
    margin-bottom: 0.5rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.featured-section .featured-title {
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #002a3a;
    margin: 0;
    letter-spacing: -1px;
}

.featured-section .featured-list {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.tour-list {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.tour-list .featured-card {
    flex: 0 0 calc(50% - 12px);
}

.f-card-info img {
    width: 16px;
    height: 16px;
}

.tour-list .featured-card:hover {
    transform: unset;
}

.featured-card {
    font-size: 14px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--Color-100, rgba(228, 231, 233, 1));
    flex: 0 0 calc(33.33% - 36px);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
    padding: 10px;
    cursor: pointer;
}

.featured-card:hover {
    transform: translateY(-6px) scale(1.02);
}

.featured-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    background: #f5f7fa;
}

.featured-card-content {
    padding: 20px 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.featured-card-title a {
    font-weight: 700;
    font-size: 1.08rem;
    margin-bottom: 2px;
    color: #222d35;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-card-desc {
    font-size: 15px;
    color: #6b7a89;
    margin-bottom: 12px;
    line-height: 24px;
    min-height: 72px;
    /* luôn bằng chiều cao của 3 dòng */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.featured-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    min-height: 54px;
}

.featured-card-price {
    font-size: 1.22rem;
    font-weight: bold;
    color: #111b2b;
}

.featured-card-btn {
    padding: 7px 22px;
    border: 1.5px solid #e6e6e6;
    background: #fff;
    color: #333;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.97rem;
    cursor: pointer;
    transition: background 0.18s, color 0.16s;
    box-shadow: 0 2px 8px rgba(58, 169, 187, 0.07);
}

.featured-card-btn:hover {
    background: var(--main-color);
    color: #e9fafd;
}

/* Hiệu ứng vòng cung */
.featured-section.isActive .featured-card:nth-child(1),
.featured-section.isActive .featured-card:nth-child(3) {
    margin-bottom: 60px;
}

.featured-card:nth-child(2) {
    margin-bottom: 0;
    box-shadow: 0 8px 36px rgba(58, 169, 187, 0.15), 0 2px 12px rgba(46, 98, 130, 0.1);
    z-index: 2;
    border-width: 2.5px;
}

/* Responsive */
@media (max-width: 1080px) {
    .featured-list {
        gap: 18px;
    }

    .tour-list .featured-card {
        flex: 1;
    }
}

@media (max-width: 800px) {
    .featured-section {
        padding: 0 0 16px 0;
    }

    .featured-section .featured-list {
        gap: 8px;
        flex-direction: column;
        align-items: center;
    }

    .featured-section.isActive .featured-card,
    .featured-section.isActive .featured-card:nth-child(1),
    .featured-section.isActive .featured-card:nth-child(2),
    .featured-section.isActive .featured-card:nth-child(3) {
        margin-bottom: 0 !important;
        width: 97vw;
        max-width: 370px;
    }
}

/* End */


.stat-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.stat-bg {
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: #eee;
    box-shadow: 0 3px 24px rgba(30, 60, 80, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-bg img.img-bg {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.stat-bg stat-icon img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    display: block;
}


.stat-box {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(30, 60, 80, 0.10);
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    width: 500px;
    z-index: 2;
    border: 1.5px solid #eaf1f6;
}

.stat-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 26px 0 18px 0;
    position: relative;
    font-family: 'Montserrat', Arial, sans-serif;
}

.stat-item:nth-child(1),
.stat-item:nth-child(2) {
    border-bottom: 1.2px solid #eaf1f6;
}

.stat-item:nth-child(1),
.stat-item:nth-child(3) {
    border-right: 1.2px solid #eaf1f6;
}

.stat-icon {
    font-size: 2.3rem;
    color: #197c8b;
    margin-bottom: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #022f3a;
    margin-bottom: 3px;
    font-family: 'Montserrat', Arial, sans-serif;
}

.stat-label {
    font-size: 1.04rem;
    color: #4d6e7a;
    font-weight: 500;
    letter-spacing: 0.2px;
    text-align: center;
}

/* Responsive */
@media (max-width: 950px) {

    .stat-bg,
    .stat-bg img.img-bg {
        height: 400px;
    }

    .stat-box {
        width: 95vw;
        min-width: 0;
        max-width: 350px;
        height: 210px;
        font-size: 0.98rem;
    }

    .stat-item {
        padding: 18px 0 10px 0;
    }

    .stat-icon {
        font-size: 1.5rem;
        height: 30px;
    }

    .stat-value {
        font-size: 1.4rem;
    }
}

@media (max-width: 600px) {
    .stat-section {
        margin-top: 18px;
    }

    .stat-icon img {
        width: 40px;
        height: 40px;
    }

    .stat-bg,
    .stat-bg img.img-bg {
        height: 400px;
    }

    .stat-box {
        width: 94vw;
        max-width: 90%;
        margin: 0 auto;
        min-width: 0;
        height: 350px;
        font-size: 0.93rem;
        border-radius: 8px;
    }

    .stat-item {
        padding: 10px 0 6px 0;
    }

    .stat-value {
        font-size: 1.02rem;
        margin-top: 14px;
    }

    .stat-icon {
        font-size: 1.11rem;
        height: 18px;
    }
}

/* Deal container */
.deals-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.deals-container .deal-card {
    flex: 1 1 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s;
}

.deals-container .deal-card:hover {
    transform: translateY(-5px);
}

.deals-container .deal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.deals-container .deal-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
}

.deals-container .valid-date {
    font-size: 12px;
    opacity: 1;
    margin-bottom: 5px;
    display: inline-block;
    color: #fff;
    border-radius: 4px;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.2);
}

.deals-container .deal-title {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 500;
    width: 80%;
    line-height: 27px;
}

.deals-container .discount {
    font-size: 36px;
    font-weight: bold;
}

/* end  */


/* start */

.blog-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* chia thành 3 cột bằng nhau */
    gap: 20px;
}

@media (max-width: 992px) {
    .blog-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .blog-container {
        grid-template-columns: 1fr;
    }
}


.blog-card {
    border-radius: 15px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    position: relative;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.blog-image img {
    width: 100%;
    min-height: 480px;
    height: 100%;
    object-fit: cover;
}

.date-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--main-color);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
}

.blog-content {
    margin: 16px;
    padding: 16px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
}

.blog-title {
    font-size: 16px;
    margin-bottom: 15px;
    color: #333;
    font-weight: bold;
    line-height: 1.4;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    color: rgba(1, 23, 27, 1);
    font-size: 14px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.read-more {
    display: inline-block;
    color: #666;
    text-decoration: none;
    font-size: 14px;
}

.read-more:hover {
    color: #0891b2;
}

/* end */


.airplane-icon {
    position: absolute;
    top: -40px;
    left: -20px;
    width: 120px;
    height: 60px;
    /* background-image: url('assets/img/icon/airplane-icon.png'); */
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(-20deg);
    z-index: 1;
}

/* start */
.travel-banner {
    position: relative;
    width: 100%;
    height: 400px;
    background-image: url('/assets/img/common/mask_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.travel-banner .content {
    position: relative;
    width: 40%;
    padding: 40px;
    color: white;
}

.travel-banner .booking-btn {
    background: white;
    color: #333;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: transform 0.2s;
}

.travel-banner .booking-btn:hover {
    transform: translateY(-2px);
}

.image-circles {
    position: relative;
    width: 320px;
    height: 330px;
    margin: 0 auto;
}

.circle {
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 4px solid white;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Vị trí từng ảnh */
.circle-1 {
    width: 180px;
    height: 180px;
    top: -20px;
    left: 0;
    z-index: 3;
}

.circle-2 {
    width: 260px;
    height: 260px;
    top: 40px;
    right: -50px;
    z-index: 1;
}

.circle-3 {
    bottom: -25px;
    left: 30px;
    z-index: 2;
}

/* Responsive */
@media (max-width: 768px) {
    .travel-banner {
        height: 290px;
        text-align: center;
    }

    .section_padding .tour-heading,
    .section_padding .tour-subtitle {
        text-align: center;
    }

    .section_padding .tour-heading {
        font-size: 1.8rem;
    }

    .top-header {
        flex-wrap: wrap;
        flex-direction: column;
    }

    .featured-section .featured-bg-pattern {
        height: 100%;
    }
}
/* end */

/* start */

.grid-layout {
    display: grid;
    grid-template-columns: 20% 25% 1fr;
    gap: 2%;
    margin-bottom: 32px;
}

.grid-layout .tent-image {
    width: 100%;
    height: calc(85% - 16px);
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 16px;
}

.grid-layout .experience-badge {
    background-color: #006d77;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    height: 15%;
    font-size: 14px;
}

.grid-layout .mountain-image {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.grid-layout .description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 32px;
    margin-top: 16px;
    max-width: 600px;
}

.grid-layout .features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.grid-layout .feature-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.grid-layout .feature-icon {
    width: 40%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid-layout .feature-icon img {
    width: 60px;
    height: 60px;
    color: #006d77;
    object-fit: cover;
}

.grid-layout .feature-content h3 {
    font-size: 18px;
    margin-bottom: 4px;
    color: rgba(1, 23, 27, 1);
    font-weight: 600;
}

.grid-layout .feature-content p {
    font-size: 14px;
    color: #666;
}

.grid-layout .cta-button {
    background-color: #006d77;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    margin-top: 16px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.grid-layout .cta-button:hover {
    background-color: #006d77;
    color: white;
}

.grid-layout .founder {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}

.grid-layout .founder-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.grid-layout .founder-info .head-guide {
    font-size: 14px;
    color: rgba(1, 23, 27, 1);
    margin-bottom: 2px;
}

.grid-layout .founder-info p {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .grid-layout .grid-layout {
        grid-template-columns: 1fr 1fr;
    }

    .grid-layout .content-section {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .grid-layout .grid-layout {
        grid-template-columns: 1fr;
    }

    .grid-layout .features {
        grid-template-columns: 1fr;
    }
}

/* end */


/* start */
.image-counter {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: inline-flex;
    align-items: center;
    background-color: rgb(12, 44, 48);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-family: Arial, sans-serif;
    gap: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 9999;
}

.image-icon {
    width: 20px;
    height: 20px;
    background-color: white;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 16l4.586-4.586a2 2 0 012.828 0L16 16m-2-2l1.586-1.586a2 2 0 012.828 0L20 14m-6-6h.01M6 20h12a2 2 0 002-2V6a2 2 0 00-2-2H6a2 2 0 00-2 2v12a2 2 0 002 2z'/%3E%3C/svg%3E") no-repeat center center;
    mask-size: contain;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 16l4.586-4.586a2 2 0 012.828 0L16 16m-2-2l1.586-1.586a2 2 0 012.828 0L20 14m-6-6h.01M6 20h12a2 2 0 002-2V6a2 2 0 00-2-2H6a2 2 0 00-2 2v12a2 2 0 002 2z'/%3E%3C/svg%3E") no-repeat center center;
    -webkit-mask-size: contain;
}

.image-text {
    font-size: 14px;
    font-weight: 500;
}

.rating-box {
    text-align: center;
    padding-bottom: 20px;
}

.rating-box .title {
    font-size: 32px;
    line-height: 45px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 16px;
    text-align: left;
}

.rating-box .rating-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-box .rating-score {
    font-size: 16px;
    font-weight: 400;
    color: #0F172A;
}

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

.rating-box .star {
    width: 20px;
    height: 20px;
    color: #FFA41C;
}

.rating-box .star-filled {
    fill: currentColor;
}

.rating-box .star-empty {
    fill: #E5E7EB;
}

.rating-box .review-count {
    color: #6B7280;
    font-size: 14px;
    text-decoration: none;
}

.rating-box .review-count:hover {
    text-decoration: underline;
}

/* end */

/* start */
.booking-box {
    background: white;
    border-radius: 12px;
    padding: 20px;
    width: 100%;
    box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.09);
}

.booking-box img.icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.price-header {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price-label,
.total-label,
.departure-label,
.passenger-age {
    color: rgba(85, 95, 101, 1);
    font-size: 13px;
    margin-bottom: 4px;
}

.price-label span,
.departure-label span,
.passenger-age span {
    color: rgba(4, 55, 65, 1);
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 4px;
}

.price-amount,
.total-amount {
    color: rgba(1, 23, 27, 1);
    font-size: 20px;
    font-weight: 600;
    text-align: right;
}

.departure {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.departure > * {
    flex: 1;
}

.departure > *:first-child {
    margin-right: 12px;
}


.departure-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(1, 23, 27, 1);
    font-size: 14px;
}

.passenger-type {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.passenger-info {
    flex: 1;
}

.passenger-price {
    color: var(--main-color);
    font-weight: 500;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quantity-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #E5E7EB;
    background: white;
    color: #111827;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.total {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #E5E7EB;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.policy {
    background: #F3F4F6;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 12px;
}

.policy-item {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    color: #4B5563;
    font-size: 14px;
}

.policy-item:not(:last-child) {
    margin-bottom: 20px;
}

.book-button {
    background: var(--main-color);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 14px;
    width: 100%;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
}

.book-button:hover {
    background: var(--menu-color);
}

/* end */
.faq-box .faq-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    color: rgba(64, 69, 74, 1);
}

.faq-box .accordion-button {
    background-color: #fff;
    color: rgba(64, 69, 74, 1);
    font-size: 16px;
    padding: 15px 0;
    box-shadow: none;
}

.faq-box .accordion-button:not(.collapsed) {
    color: rgba(64, 69, 74, 1);
    background-color: #fff;
    box-shadow: none;
}

.faq-box .accordion-body {
    font-size: 14px;
    color: #555;
    padding: 0 0 15px 0;
}

.faq-box .accordion-item {
    border: none;
    border-bottom: 1px solid #eee;
}


@media (max-width: 768px) {
    .rating-box .title {
        font-size: 24px;
        line-height: 34px;
        font-weight: 600;
    }

    .hero-section__box .search-box {
        border: none;
        box-shadow: unset;
    }

    .hero-section__box input,
    .hero-section__box select {
        border: none;
        box-shadow: unset;
        padding-left: 0.25rem;
        font-size: 16px;
    }

    .pageTitle h3{
        font-size: 24px;
    }
}
