    /* HERO GRID */

    .tour-hero-gallery {

        padding: 21px 0;
    }

    .hero-gallery-grid {
        display: grid;
        grid-template-columns: 2.2fr 1fr;
        gap: 16px;
    }

    /* gambar besar kiri */
    .gallery-main img {
        width: 100%;
        height: 520px;
        object-fit: cover;
        border-radius: 28px;
        cursor: pointer;
    }

    /* gallery kanan */
    .gallery-side {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 16px;
        height: 520px;
    }

    .gallery-side img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 22px;
    }

    .gallery-main,
    .gallery-side {
        position: relative;
    }

    .gallery-main::after {
        content: '';
        position: absolute;
        inset: 0;

        background: rgba(0, 0, 0, .12);

        border-radius: 28px;

        pointer-events: none;
    }

    .gallery-badge {

        position: absolute;
        top: 20px;
        left: 20px;

        background: rgba(255, 255, 255, .82);

        backdrop-filter: blur(12px);

        padding: 10px 16px;

        border-radius: 999px;

        font-size: 13px;
        font-weight: 700;

        z-index: 10;
    }

    .gallery-count-btn {

        position: absolute;

        bottom: 20px;
        right: 20px;

        background: rgba(255, 255, 255, .82);

        backdrop-filter: blur(12px);

        padding: 8px 14px;

        border-radius: 13px;

        font-weight: 700;

        box-shadow: 0 10px 25px rgba(0, 0, 0, .12);

        cursor: pointer;

        display: flex;
        align-items: center;
        gap: 8px;
    }

    .tourSwiper {
        overflow: hidden;
        border-radius: 24px;
    }

    .tourSwiper .swiper-slide {
        width: auto;
    }

    .tourSwiper .swiper-pagination-bullet {
        background: #fff;
        opacity: .6;
    }

    .tourSwiper .swiper-pagination-bullet-active {
        background: #f4b400;
        opacity: 1;
    }

    @media(max-width:768px) {}

    .tourSwiper img {
        cursor: pointer;
        pointer-events: auto;
    }

    @media(max-width:768px) {
        .hero-gallery-grid {
            display: none;
        }

        /* wrapper */
        .tour-hero-gallery {
            padding-top: 12px;
            padding-bottom: 8px;
        }

        .mobile-gallery-slider {
            padding-left: 16px;
            padding-right: 16px;
            margin-bottom: 12px;
            position: relative;
        }

        .mobile-gallery-badge {

            position: absolute;
            top: 10px;
            left: 18px;
            z-index: 20;
            background: rgba(255, 255, 255, .55);
            backdrop-filter: blur(12px);
            padding: 5px;
            border-radius: 999px;
            font-size: 10px;
            font-weight: 700;
        }

        .mobile-gallery-view {
            position: absolute;
            right: 70px;
            bottom: 20px;
            z-index: 20;
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, .55);
            backdrop-filter: blur(12px);
            padding: 6px 10px;
            border-radius: 14px;
            font-size: 11px;
            font-weight: 700;
            white-space: nowrap;
        }

        .gallery-count-btn {
            position: absolute;
            right: 20px;
            bottom: 20px;

            background: rgba(255, 255, 255, .95);

            border-radius: 14px;

            padding: 10px 16px;

            font-size: 14px;
            font-weight: 600;

            z-index: 10;
        }

        .tourSwiper .swiper-slide {
            width: 100%;
        }

        .tourSwiper img {
            width: 100%;
            aspect-ratio: 4/3;
            object-fit: cover;
            border-radius: 24px;
            display: block;
        }

        .highlight-item {
            padding: 12px;
            border-radius: 14px;
        }

        .highlight-item strong {
            font-size: 14px;
        }

        .highlight-item small {
            font-size: 11px;
        }

    }

    /* ICON BUTTON */

    .gallery-actions {

        position: absolute;

        top: 24px;

        right: 24px;

        display: flex;

        gap: 14px;
    }

    .gallery-actions button {

        width: 64px;

        height: 64px;

        border: none;

        border-radius: 50%;

        background: #fff;

        font-size: 1.7rem;
    }

    /* MODAL */

    .gallery-modal {

        display: none;

        position: fixed;

        inset: 0;

        background: rgba(0, 0, 0, .94);

        z-index: 9999;

        justify-content: center;

        align-items: center;
    }

    .gallery-modal-image {

        max-width: 92%;

        max-height: 90vh;

        cursor: zoom-in;

        transition: .3s;
    }

    /* CLOSE */

    .gallery-close {

        position: absolute;

        top: 25px;

        right: 40px;

        color: #fff;

        font-size: 44px;

        cursor: pointer;
    }

    /* ARROWS */

    .gallery-prev,
    .gallery-next {

        position: absolute;

        top: 50%;

        transform: translateY(-50%);

        background: none;

        border: none;

        color: #fff;

        font-size: 54px;

        cursor: pointer;
    }

    .gallery-prev {
        left: 40px;
    }

    .gallery-next {
        right: 40px;
    }

    /* MOBILE */

    @media(max-width:991px) {

        .hero-gallery-grid {

            grid-template-columns: 1fr;
        }

        .gallery-side {

            grid-template-columns: 1fr 1fr;

            grid-template-rows: none;
        }

        .gallery-side img {
            height: 180px;
            cursor: pointer;
        }

        .gallery-main img {
            height: 320px;
        }
    }

    .wrap-breadcrumb {
        background: rgba(255, 255, 255, .92);
        backdrop-filter: blur(16px);
        border: 1px solid #edf2f7;
        border-radius: 16px;
        padding: 12px 20px;
    }

    .tour-header {
        color: #0f172a;
        margin-top: 12px;
        margin-bottom: 34px;
    }

    /* CONTENT */

    .tour-content-block {
        background: #fff;

        border: 1px solid #edf2f7;

        border-radius: 24px;

        padding: 28px;

        margin-bottom: 28px;
    }

    .tour-content-block h2 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 22px;
    }

    @media(max-width:768px) {
        .tour-content-block {
            padding: 13px;
            border-radius: 20px;
            margin-top: 10px;
        }
    }

    /*--TOUR SECTION SEPERTI NAVIGATION KECIL--*/
    .tour-section-nav {
        position: sticky;
        top: 90px;
        z-index: 100;
        background: rgba(255, 255, 255, .92);
        backdrop-filter: blur(16px);
        border: 1px solid #edf2f7;
        border-radius: 16px;
        padding: 12px 20px;
        margin-bottom: 30px;
        display: flex;
        gap: 24px;
        overflow-x: auto;
        white-space: nowrap;
    }

    .tour-section-nav::-webkit-scrollbar {
        display: none;
    }

    .tour-section-nav a {
        text-decoration: none;
        color: #64748b;
        font-size: 14px;
        font-weight: 600;
        transition: .3s;
    }


    .tour-section-nav a:hover {
        color: #f4b400;
    }

    @media(max-width:768px) {
        .tour-section-nav {
            top: 85px;
            padding: 10px 14px;
            gap: 18px;
            border-radius: 14px;
        }

        .tour-section-nav a {
            font-size: 13px;
        }
    }

    /*--Tour higlight--*/

    .tour-highlights {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        margin-bottom: 10px
    }

    /* mobile */
    @media (max-width:768px) {

        .tour-highlights {
            grid-template-columns: 1fr;
            gap: 12px;
        }

    }

    .highlight-item {
        display: flex;
        align-items: center;
        gap: 10px;
        background: #fff;
        border: 1px solid #edf2f7;
        padding: 5px 7px;
        border-radius: 13px;
    }

    .highlight-item i {
        width: 34px;
        height: 34px;
        min-width: 34px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        color: #f4b400;
        background: #fff8e7;
        border-radius: 10px;
    }

    .highlight-item small {
        display: block;
        font-size: 12px;
        line-height: 1.2;
        color: #64748b;
        margin-bottom: 2px;
    }

    .highlight-item strong {
        font-size: 14px;
        font-weight: 700;
        line-height: 1.2;
        color: #0f172a;
        justify-content: flex-start;
    }

    .tour-highlight-badges {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 12px;
    }

    .tour-highlight-badge {

        display: flex;
        align-items: center;
        gap: 8px;
        background: #fff8e7;
        border: 1px solid #fde68a;
        padding: 10px 14px;
        border-radius: 999px;
        font-size: 14px;
        font-weight: 600;
        color: #92400e;
    }

    .tour-highlight-badge i {
        color: #f4b400;
        font-size: 14px;
    }

    @media(max-width:768px) {

        .tour-highlight-badge {
            font-size: 13px;
            padding: 8px 12px;
            gap: 6px;
        }

    }

    /* INCLUDED */

    .included-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px;
        margin-top: 12px;
    }

    .include-box,
    .exclude-box {
        background: #fff;
        border: 1px solid #edf2f7;
        border-radius: 22px;
        padding: 24px;
    }

    .include-box h3,
    .exclude-box h3 {
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 18px;
    }

    .include-box h3 i {
        color: #16a34a;
    }

    .exclude-box h3 i {
        color: #ef4444;
    }

    .tour-check-list,
    .tour-exclude-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .tour-check-list li,
    .tour-exclude-list li {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 0;
        border-bottom: 1px solid #f1f5f9;
    }

    .tour-check-list li:last-child,
    .tour-exclude-list li:last-child {
        border-bottom: none;
    }

    .tour-check-list li::before {
        content: "✓";
        color: #16a34a;
        font-weight: 700;
    }

    .tour-exclude-list li::before {
        content: "–";
        color: #ef4444;
        font-weight: 700;
    }

    /* mobile */
    @media(max-width:768px) {

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

    }

    .why-book-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .why-book-item {
        display: flex;
        gap: 14px;
        padding: 18px;
        border: 1px solid #edf2f7;
        border-radius: 18px;
    }

    .why-book-item i {
        font-size: 22px;
        color: #f4b400;
    }

    .why-book-item strong {
        display: block;
        margin-bottom: 4px;
    }

    .why-book-item span {
        color: #64748b;
        font-size: 14px;
    }

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

    .itinerary-list {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .itinerary-row {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 12px 14px;
        background: #fff;
        border: 1px solid #edf2f7;
        border-radius: 14px;
    }

    .itinerary-time {
        min-width: 108px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        background: #fff8e7;
        color: #b7791f;
        font-weight: 700;
        font-size: 13px;
        padding: 8px 12px;
        border-radius: 10px;
    }

    .itinerary-time i {
        font-size: 12px;
    }

    .itinerary-text {
        font-size: 15px;
        color: #334155;
    }

    .review-rating-header {

        display: flex;
        justify-content: space-between;
        align-items: center;

        margin-bottom: 24px;

        flex-wrap: wrap;
        gap: 16px;
    }

    .review-score-top {

        display: flex;
        align-items: center;

        gap: 18px;

        margin-bottom: 10px;
    }

    .rating-number {

        font-size: 5rem;

        font-weight: 800;

        line-height: 1;

        color: #0f172a;
    }

    .rating-stars {

        color: #f4b400;

        font-size: 2rem;

        letter-spacing: 3px;

        line-height: 1;
    }

    .review-score small {

        color: #64748b;

        font-size: 15px;
    }

    @media(max-width:768px) {

        .rating-number {
            font-size: 3.5rem;
        }

        .rating-stars {
            font-size: 1.4rem;
            letter-spacing: 2px;
        }

    }

    .review-platforms {

        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }

    .platform-badge {

        padding: 10px 16px;

        border-radius: 999px;

        font-size: 13px;
        font-weight: 700;

        display: flex;
        align-items: center;
        gap: 8px;
    }

    .google {

        background: #f8fafc;
        border: 1px solid #e5e7eb;
    }

    .tripadvisor {

        background: #ecfdf5;
        border: 1px solid #bbf7d0;
    }

    .review-card {
        height: 230px;
        background: #fff;

        border: 1px solid #edf2f7;

        border-radius: 20px;

        padding: 22px;

        height: 100%;
    }

    .review-stars {

        color: #f4b400;

        margin-bottom: 12px;

        font-size: 18px;
    }

    .review-card p {

        color: #475569;

        line-height: 1.7;

        min-height: 90px;
    }

    .review-card strong {

        color: #0f172a;
    }

    .reviewSwiper {

        overflow: hidden;
    }

    @media(max-width:768px) {

        .review-score span {
            font-size: 2.3rem;
        }
    }

    .review-trust-text {

        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 10px;
        font-size: 13px;
        font-weight: 600;
        color: #64748b;
    }

    .review-trust-text i {

        color: #f4b400;
    }

    .review-trust-text .divider {

        color: #cbd5e1;
    }

    .review-text {
        font-size: 15px;
        line-height: 1.8;
        color: #64748b;
        margin-bottom: 8px;
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .related-tour-grid {

        display: grid;
        grid-template-columns: repeat(3, 1fr);

        gap: 20px;
    }

    .related-tour-card {

        display: block;

        background: #fff;

        border: 1px solid #edf2f7;

        border-radius: 22px;

        overflow: hidden;

        text-decoration: none;

        transition: .3s ease;
    }

    .related-tour-card:hover {

        transform: translateY(-4px);

        box-shadow: 0 20px 40px rgba(15, 23, 42, .08);
    }

    .related-tour-card img {

        width: 100%;

        aspect-ratio: 4/3;

        object-fit: cover;
    }

    .related-tour-content {

        padding: 18px;
    }

    .related-tour-content h4 {

        color: #0f172a;

        font-size: 18px;

        font-weight: 700;

        margin-bottom: 6px;
    }

    .related-tour-content span {

        color: #64748b;

        font-size: 14px;

        line-height: 1.6;
    }

    @media(max-width:768px) {

        .related-tour-grid {

            grid-template-columns: 1fr;
        }

    }


    .related-tour-card {
        display: block;
        text-decoration: none;
        color: inherit;
        overflow: hidden;
        border-radius: 22px;
        background: #fff;
        border: 1px solid #edf2f7;
        transition: .3s ease;

    }

    .related-tour-card:hover {
        transform: translateY(-4px);
        box-shadow:
            0 20px 50px rgba(15, 23, 42, .10);

    }

    .related-tour-image {
        position: relative;
        overflow: hidden;
    }

    .related-tour-image img {
        width: 100%;
        aspect-ratio: 4/3;
        object-fit: cover;
        transition: .4s ease;
    }

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

    .related-tour-content {
        padding: 18px;
    }

    .related-tour-content h4 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 6px;
        color: #0f172a;
    }

    .related-tour-content p {

        margin: 0;
        color: #64748b;
        font-size: 14px;
        line-height: 1.6;
    }

    /* ===PRICE TABLE MODERN==== */

    .price-table-wrap {
        margin-top: 20px;
        background: #fff;
        border: 1px solid #eef2f7;
        border-radius: 22px;
        overflow: hidden;
        box-shadow:
            0 8px 28px rgba(15, 23, 42, .04);
    }

    /* table reset */
    .price-table {
        width: 100%;
        margin: 0;
        border-collapse: collapse;
    }

    .price-summary {
        margin-top: 20px;
    }

    .price-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 8px;
        font-size: 14px;
    }

    .price-row span:last-child {
        font-weight: 600;
    }

    .total-row {
        font-size: 22px;
        margin-top: 10px;
    }

    /* header */
    .price-table thead th {
        background: linear-gradient(180deg,
                #fffdf7 0%,
                #fff9eb 100%);
        color: #92400e;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: .03em;
        text-transform: uppercase;
        padding: 16px 20px;
        border: none;
    }

    /* body */
    .price-table tbody td {
        padding: 16px 20px;
        font-size: 15px;
        border-bottom: 1px solid #f5f5f5;
        color: #334155;
    }

    /* hover */
    .price-table tbody tr:hover {
        background: #fcfcfc;
    }

    /* last row */
    .price-table tbody tr:last-child td {
        border-bottom: none;
    }

    /* pax text */
    .price-table tbody td:first-child {
        font-weight: 600;
        color: #0f172a;
    }

    /* price */
    .price-table tbody td:last-child {
        text-align: right;
        font-weight: 700;
        font-size: 16px;
        color: #f4b400;
    }

    /* mobile */
    @media(max-width:768px) {

        .price-table thead th,
        .price-table tbody td {
            padding: 14px 16px;
        }

        .price-table tbody td {
            font-size: 14px;
        }

        .price-table tbody td:last-child {
            font-size: 15px;
        }
    }

    /* ===FAQ PREMIUM==== */

    .faq-section {
        background: #fff;
        border: 1px solid #edf2f7;
        border-radius: 36px;
        padding: 21px;
    }

    .faq-subtitle {
        color: #64748b;
        font-size: 12px;
        margin-top: 5px;
        margin-bottom: 20px;
    }

    #tourFaq .accordion-item {
        border: none;
        overflow: hidden;
        border-radius: 28px;
        background: #fff;
        box-shadow:
            0 10px 30px rgba(15, 23, 42, .05);
        margin-bottom: 21px;
    }

    #tourFaq .accordion-button {
        background: #fff;
        min-height: 110px;
        font-size: 1rem;
        font-weight: 700;
        color: #0f172a;
        padding: 0 21px;
        box-shadow: none;
    }

    #tourFaq .accordion-button:not(.collapsed) {
        background: #fffcf5;
        color: #0f172a;
        border-bottom:
            1px solid #fde7a5;
    }

    #tourFaq .accordion-button:focus {
        box-shadow: none;
    }

    #tourFaq .accordion-body {
        padding: 36px 42px;
        font-size: 18px;
        line-height: 1.9;
        color: #64748b;
    }

    /* Q icon */

    .faq-question-icon {
        width: 54px;
        height: 54px;
        min-width: 54px;
        border-radius: 50%;
        background: #fde68a;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        font-weight: 800;
        color: #111827;
        margin-right: 22px;
    }

    /* A icon */

    .faq-answer-wrap {
        display: flex;
        gap: 20px;
    }

    .faq-answer-icon {
        width: 54px;
        height: 54px;
        min-width: 54px;
        border-radius: 50%;
        background: #dcfce7;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 26px;
        font-weight: 800;
        color: #15803d;
    }

    /* arrow */

    #tourFaq .accordion-button::after {

        width: 22px;
        height: 22px;
        background-size: 22px;
    }

    /* MOBILE */

    @media(max-width:768px) {

        .faq-section {
            padding: 15px;
            border-radius: 24px;
        }

        #tourFaq .accordion-button {
            min-height: 84px;
            font-size: 1rem;
            padding: 0 8px;
        }

        #tourFaq .accordion-body {
            padding: 13px;
            font-size: 15px;
        }

        .faq-question-icon,
        .faq-answer-icon {
            width: 34px;
            height: 34px;
            min-width: 34px;
            font-size: 20px;
        }
    }

    .faq-help-box {
        margin-top: 8px;
        display: flex;
        align-items: center;
        gap: 13px;
    }

    .faq-help-icon {
        width: 55px;
        height: 55px;
        border-radius: 20px;
        background: #eef2ff;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #2563eb;
        font-size: 25px;
    }

    .faq-help-box h5 {
        margin: 0;
        font-weight: 800;
    }

    .faq-help-box p {
        margin: 4px 0 0;
        color: #64748b;
    }

    .tour-label {
        background: #fef3c7;
        color: #92400e;
        padding: 8px 14px;
        display: inline-block;
        margin-bottom: 18px;
        border-radius: 50px;
        font-weight: 600;
    }

    .seo-guide h2 {
        font-size: 2rem;
        font-weight: 800;
        margin-bottom: 10px;
        color: #0f172a;
    }

    .seo-guide-intro {
        font-size: 16px;
        line-height: 1.8;
        color: #475569;
        margin-bottom: 25px;
    }

    .seo-guide-grid {
        display: grid;
        gap: 18px;
    }

    .seo-guide-item {
        background: #fff;
        border: 1px solid #edf2f7;
        border-radius: 18px;
        padding: 20px;
        transition: .25s;
    }

    .seo-guide-item:hover {
        transform: translateY(-2px);
        box-shadow:
            0 10px 30px rgba(15, 23, 42, .06);
    }

    .seo-guide-item h3 {

        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 18px;
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 12px;
    }

    .seo-guide-item h3 i {
        color: #f4b400;
    }

    .seo-guide-item p {
        margin: 0;
        color: #64748b;
        line-height: 1.8;
    }

    @media(max-width:768px) {

        .seo-guide h2 {
            font-size: 1.6rem;
        }

        .seo-guide-item {
            padding: 16px;
        }

        .seo-guide-item h3 {
            font-size: 16px;
        }
    }

    .terms-list {
        display: flex;
        flex-direction: column;
        gap: 14px;
        margin-top: 16px;
    }

    .term-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 14px 0;
        border-bottom: 1px solid #f1f5f9;
    }

    .term-item:last-child {
        border-bottom: none;
    }

    .term-item i {
        color: #16a34a;
        font-size: 16px;
        margin-top: 2px;
        flex-shrink: 0;
    }

    .term-item span {
        font-size: 15px;
        line-height: 1.7;
        color: #475569;
    }

    .help-card {

        margin-top: 24px;
        background: #fff;
        border: 1px solid #edf2f7;
        border-radius: 22px;
        padding: 22px;
        text-align: center;
        box-shadow:
            0 8px 24px rgba(15, 23, 42, .04);
    }

    .help-card:hover {
        transform: translateY(-2px);
        transition: .25s;
    }

    .help-icon {

        width: 58px;
        height: 58px;
        margin: auto auto 14px;
        border-radius: 18px;
        background: #f0fdf4;
        color: #22c55e;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
    }

    .help-card h5 {
        font-weight: 800;
        margin-bottom: 8px;
    }

    .help-card p {
        color: #64748b;
        font-size: 14px;
        margin-bottom: 18px;
    }

    .help-whatsapp-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        height: 52px;
        border-radius: 14px;
        background: #25D366;
        color: #fff;
        text-decoration: none;
        font-weight: 700;
    }

    .mobile-floating-bar {
        display: none;
    }

    @media(max-width:768px) {

        .mobile-floating-bar {
            position: fixed;
            left: 13px;
            right: 13px;
            bottom: 13px;
            height: 55px;
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: space-evenly;
            background: rgba(255, 255, 255, .14);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border: 1px solid rgba(255, 255, 255, .20);
            border-radius: 28px;
            box-shadow:
                0 8px 30px rgba(0, 0, 0, .10),
                inset 0 1px 0 rgba(255, 255, 255, .15);
        }

        /* menu item */
        .mobile-floating-bar a,
        .mobile-floating-bar button {
            border: none;
            background: none;
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 600;
            color: #0f172a;
            text-decoration: none;
            padding: 0;
            margin: 0;
        }

        /* icon */
        .mobile-floating-bar a[href="#availabilitySection"] i {
            color: #f4b400;
            filter: drop-shadow(0 0 6px rgba(244, 180, 0, .25));
        }

        /* whatsapp */
        .mobile-floating-bar .floating-wa {
            width: 34px;
            height: 34px;
            border-radius: 34%;
            background: #25D366;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: -13px;
            box-shadow:
                0 0 0 6px rgba(255, 255, 255, .35),
                0 0 22px rgba(37, 211, 102, .50);
        }

        /* whatsapp icon */
        .mobile-floating-bar .floating-wa i {
            font-size: 28px;
            color: #fff;
        }

        /* hide whatsapp text */
        .mobile-floating-bar .floating-wa span {
            display: none;
        }

        /* extra bottom space */
        body {
            padding-bottom: 100px;
        }

    }

    /* whatsapp center */
    .mobile-floating-bar .floating-wa {

        width: 52px;
        height: 52px;
        border-radius: 50%;
        background: rgba(37, 211, 102, .92);
        color: #fff;
        box-shadow:
            0 0 18px rgba(37, 211, 102, .35);
        transform: translateY(-3px);
    }

    .tour-breadcrumb {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 12px;
        font-size: 13px;
    }

    .tour-breadcrumb a {
        color: #94a3b8;
        text-decoration: none;
    }

    .tour-breadcrumb span {
        color: #475569;
        font-weight: 600;
    }

    .tour-breadcrumb i {
        font-size: 10px;
        color: #cbd5e1;
    }

    @media(max-width:768px) {
        .tour-breadcrumb {
            font-size: 12px;
        }

    }

    /* INLINE META */
    .tour-meta-inline {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 5px;
    }

    /* rating */
    .tour-rating {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .tour-rating i {
        color: #f4b400;
        width: 21px;
        height: 21px;
        min-width: 21px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        color: #f4b400;
        background: #fff8e7;
        border-radius: 8px;
    }

    .tour-rating strong {
        font-weight: 700;
        color: #242526ff;
    }

    .tour-rating span {
        color: #64748b;
    }

    /* MOBILE */
    @media(max-width:768px) {
        .tour-meta-inline {
            font-size: 13px;
        }
    }

    /* price */
    .tour-price-inline {
        display: flex;
        align-items: center;
    }

    .tour-price-inline i {
        color: #f4b400;
        font-size: 11px;
        color: #f4b400;
        width: 21px;
        height: 21px;
        min-width: 21px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        color: #f4b400;
        background: #fff8e7;
        border-radius: 8px;
    }

    .tour-price-inline span {
        font-size: 15px;
        color: #475569;
    }

    .tour-price-inline strong {
        font-size: 14px;
        font-weight: 800;
        color: #0f172a;
    }

    /* MOBILE */
    @media(max-width:768px) {

        .tour-price-inline strong {
            font-size: 15px;
            font-weight: 700;
            color: #0f172a;
        }
    }

    .tour-badge {
        position: absolute;
        top: 8px;
        left: 8px;
        background: rgba(255, 255, 255, .55);
        backdrop-filter: blur(12px);
        padding: 3px 9px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
        z-index: 10;
    }

    .tour-rating i,
    .tour-price-inline i {

        color: #f4b400;
    }

    .tour-rating strong,
    .tour-price-inline strong {

        color: #0f172a;
        font-weight: 700;
    }