/* ===================================
   UA TOUR V2
=================================== */


body {

    font-family: 'Plus Jakarta Sans', sans-serif;

    color: var(--ua-text);

    background: var(--ua-bg);
    margin: 0;

    padding: 0;
}

*,
*::before,
*::after {

    box-sizing: border-box;

}

html {

    scroll-behavior: smooth;

}

h1,
h2,
h3,
h4,
h5,
h6 {

    margin-top: 0;

    color: var(--ua-text);

    font-weight: 800;

    line-height: 1.2;

}


a {
    color: inherit;
}

button {
    font: inherit;
}

p {

    margin-top: 0;

    color: var(--ua-muted);

    line-height: 1.8;

}

img {

    max-width: 100%;

    display: block;

}

.ua-info-item,
.ua-highlight-card,
.ua-guide-card,
.ua-term-item,
.ua-exclude-box,
.ua-include-box,
.ua-itinerary-item,
.ua-why-book-card,
.ua-faq-item {
    background: var(--ua-card-bg);
}

:root {

    --ua-radius-sm: 12px;
    --ua-radius-md: 18px;
    --ua-radius-lg: 24px;
    --ua-radius-xl: 32px;
    --ua-container: 1280px;
    --ua-header-height: 85px;
    --ua-transition: .25s ease;

    --ua-shadow-sm:
        0 4px 12px rgba(15, 23, 42, .04);

    --ua-shadow-md:
        0 10px 30px rgba(15, 23, 42, .06);

    --ua-shadow-lg:
        0 20px 50px rgba(15, 23, 42, .08);

    --ua-shadow-floating:
        0 8px 20px rgba(15, 23, 42, .08);

    --ua-shadow-overlay:
        0 10px 30px rgba(0, 0, 0, .15);

    --ua-shadow-hover:
        0 12px 30px rgba(15, 23, 42, .06);


    --ua-primary: #16a34a;
    --ua-primary-light: #f0fdf4;

    --ua-secondary: #0ea5e9;
    --ua-secondary-light: #eff6ff;

    --ua-text: #0f172a;
    --ua-muted: #64748b;

    --ua-border: #edf2f7;
    --ua-border-light: #f1f5f9;
    --ua-bg: #f8fafc;
    --ua-success: #16a34a;
    --ua-danger: #dc2626;
    --ua-card-bg: #ffffff;
    --ua-text-light: #94a3b8;
    --ua-body: #475569;
    --ua-white: #ffffff;

}

@media(max-width:768px) {
    :root {
        --ua-header-height: 80px;
    }
}

.ua-btn:focus-visible,
.ua-section-nav a:focus-visible {

    outline: 2px solid var(--ua-primary);

    outline-offset: 2px;

}

/* ===NAVIGATION===== */

.ua-navbar-v1 {
    position: sticky;
    top: 0;
    z-index: 1050;

    background: #fff;

    border-bottom: 1px solid #f1f5f9;

    box-shadow:
        0 1px 2px rgba(15, 23, 42, .03),
        0 8px 24px rgba(15, 23, 42, .03);
    padding: 8px 0 8px 0;
}

/*logo disini*/
.ua-logo {
    display: flex;
    align-items: center;
    gap: 12px;

    text-decoration: none;
}

.ua-logo-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;

    background: #22c55e;
}

.ua-logo-ubud {
    font-size: 2rem;
    font-weight: 800;
    color: #22c55e;
}

.ua-logo-adventures {
    font-size: 2rem;
    font-weight: 800;
    color: #374151;
}

@media(max-width:991px) {

    .ua-logo {
        gap: 3px;
    }

    .ua-logo-dot {
        width: 8px;
        height: 8px;
    }

    .ua-logo-ubud,
    .ua-logo-adventures {

        font-size: 20px !important;

        line-height: 1;
    }

}

.ua-explore-menu-v1 {

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

    padding: 10px 16px;

    border: 1px solid #e5e7eb;
    border-radius: 999px;

    background: #fff;

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

    color: #334155;

    box-shadow: 0 2px 10px rgba(15, 23, 42, .06);

    transition: .25s ease;

    cursor: pointer;
}

.ua-explore-menu-v1:hover {

    border-color: #22c55e;

    box-shadow: 0 6px 18px rgba(34, 197, 94, .12);

    transform: translateY(-1px);
}

.ua-explore-menu-v1 .bi-compass {

    color: #22c55e;
    font-size: 15px;
}

.ua-explore-menu-v1 .bi-chevron-down {

    font-size: 12px;
    color: #94a3b8;
}


/* ===================================
   HEADER
=================================== */

.ua-header {

    padding: 20px 0 40px;

}

.ua-header-wrap {

    display: flex;

    flex-direction: column;

    gap: 20px;

}

.ua-header-badges {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
    margin-bottom: 12px;

}

.ua-header-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.ua-header-actions .ua-btn {
    flex: 0 0 auto;
    width: auto;
    padding: 12px 24px;
}

@media(max-width:768px) {

    .ua-tour-title {

        font-size: 2rem;

    }

    .ua-header-actions {

        flex-direction: column;

    }

}

.ua-tour-title {

    font-size: clamp(2rem, 4vw, 3rem);

    font-weight: 800;

    line-height: 1.2;

    margin-bottom: 16px;

}

.ua-tour-description {

    max-width: 800px;

    color: var(--ua-muted);

    font-size: 1.05rem;

    line-height: 1.8;

    margin-bottom: 20px;

}

.ua-tour-meta {

    display: flex;

    flex-wrap: wrap;

    gap: 14px;

    margin-bottom: 24px;

}

/*ini awal*/
.ua-meta-item {

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 10px 14px;

    border-radius: 999px;

    background: var(--ua-card-bg);

    border: 1px solid var(--ua-border);

    font-size: 14px;

    font-weight: 600;

}

.ua-header-actions {

    display: flex;

    gap: 12px;

    flex-wrap: wrap;

}

.ua-tour {

    background: var(--ua-bg);

    min-height: 100vh;

}


.ua-header-actions .ua-btn {
    padding: 12px 24px;
}

.ua-header-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.ua-btn-outline {
    background: #fff;
    border: 1px solid #dfe3ea;
    color: #334155;
}

.ua-btn-outline:hover {
    border-color: #22c55e;
    color: #22c55e;
}

.ua-btn-primary {
    background: #22c55e;
    color: #fff;
}

/* ===================================
   ADDITIONAL INFORMATION
=================================== */

.ua-info-grid {

    display: grid;

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

    gap: 18px;

}

.ua-info-item {

    display: flex;

    gap: 14px;

    padding: 18px;

    border: 1px solid var(--ua-border);

    border-radius: var(--ua-radius-md);

}

.ua-info-icon {

    width: 50px;

    height: 50px;

    min-width: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 14px;

    background: var(--ua-primary-light);

    color: var(--ua-primary);

    font-size: 22px;

}

.ua-info-item strong {

    display: block;

    margin-bottom: 6px;

    color: var(--ua-text);

}

.ua-info-item p {

    margin: 0;

    font-size: 14px;

}

@media(max-width:768px) {

    .ua-info-grid {

        grid-template-columns: 1fr;

    }

}

/* CONTENT */

.ua-content {

    padding: 40px 0 80px;

}

/* SECTION TITLE */

.ua-section-title {

    font-size: 1.6rem;

    font-weight: 800;

    color: var(--ua-text);

    margin: 0;

}

/* ===================================
   BREADCRUMB
=================================== */

.ua-breadcrumb {

    padding: 18px 0;

}

.ua-breadcrumb nav {

    display: flex;

    align-items: center;

    gap: 10px;

    flex-wrap: wrap;

    font-size: 14px;

}

.ua-breadcrumb-wrap {

    display: flex;

    align-items: center;

    gap: 10px;

    flex-wrap: wrap;

    font-size: 14px;

}

.ua-breadcrumb a {

    color: var(--ua-muted);

    text-decoration: none;

}

.ua-breadcrumb-current {

    color: var(--ua-text);

    font-weight: 700;

}

.ua-breadcrumb span {

    color: var(--ua-muted);

}

/* ===================================
   HEADER
=================================== */
.ua-badge {

    padding: 0;
    font-size: 15px;
    font-weight: 700;
}

.ua-title {

    font-size: 3rem;

    line-height: 1.1;

    font-weight: 900;

    color: var(--ua-text);

    margin-bottom: 16px;

}


/* ===================================
   GALLERY 1
=================================== */
.ua-gallery-modal {

    display: none;

    position: fixed;
    inset: 0;

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

    justify-content: center;
    align-items: center;

    z-index: 9999;
}

.ua-gallery {

    margin-bottom: 40px;

}

.ua-gallery-grid {

    display: grid;

    grid-template-columns: 2fr 1fr;

    gap: 16px;

}

.ua-gallery-main {

    position: relative;
    overflow: hidden;
    border-radius: 24px;

}

.ua-gallery-main::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(to top,
            rgba(0, 0, 0, .18),
            rgba(0, 0, 0, .05));

    pointer-events: none;
}

.ua-gallery-main img {

    width: 100%;

    height: 520px;

    object-fit: cover;

    display: block;

    border-radius: var(--ua-radius-lg);

    cursor: pointer;

}

.ua-gallery-side {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 16px;

}

.ua-gallery-side img {

    width: 100%;

    height: 252px;

    object-fit: cover;

    border-radius: 20px;

    cursor: pointer;

}

.ua-gallery-badge {

    position: absolute;

    top: 20px;

    left: 20px;

    background: var(--ua-card-bg);

    padding: 10px 16px;

    border-radius: 999px;

    font-size: 13px;

    font-weight: 700;

    box-shadow: var(--ua-shadow-floating);

}

.ua-gallery-btn {

    position: absolute;

    bottom: 20px;

    right: 20px;

    border: none;

    border-radius: 999px;

    padding: 12px 18px;

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

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);

    font-weight: 700;

    box-shadow: var(--ua-shadow-overlay);

}

@media (max-width:768px) {

    .ua-gallery-btn {

        padding: 8px 14px;

        font-size: 13px;
    }

}

@media(max-width:768px) {

    .ua-gallery-grid {

        grid-template-columns: 1fr;

    }

    .ua-gallery-side {

        display: none;

    }

    .ua-gallery-main img {

        height: 320px;

        border-radius: 20px;

    }

}

.gallery-counter {

    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(12px);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    z-index: 10001;
}


.ua-gallery-prev,
.ua-gallery-next,
.ua-gallery-close {

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

    padding: 0;

    border: none;
    border-radius: 50%;

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

    backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, .35);

    color: #fff;

    cursor: pointer;

    z-index: 10001;
}

/* PREV & NEXT */
.ua-gallery-prev,
.ua-gallery-next {

    position: absolute;

    top: 50%;

    width: 45px;
    height: 45px;

    transform: translateY(-50%);
}

.ua-gallery-prev {
    left: 20px;
}

.ua-gallery-next {
    right: 20px;
}

/* CLOSE */
.ua-gallery-close {

    position: absolute;

    top: 18px;
    right: 18px;

    width: 40px;
    height: 40px;
}

/* ICON */
.ua-gallery-prev i,
.ua-gallery-next i {

    font-size: 18px;

    line-height: 1;
}

.ua-gallery-close i {

    font-size: 18px;

    line-height: 1;
}

/* HOVER */
.ua-gallery-prev:hover,
.ua-gallery-next:hover,
.ua-gallery-close:hover {

    background: rgba(255, 255, 255, .25);
}

#galleryImage {
    position: relative;
    max-width: 90%;
    max-height: 85vh;
    z-index: 10000;
    border-radius: 18px;
    transition: opacity .2s ease;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, .35);
}

@media (max-width:768px) {

    .ua-gallery-prev,
    .ua-gallery-next {

        width: 34px;
        height: 34px;
    }

    .ua-gallery-prev i,
    .ua-gallery-next i {

        font-size: 13px;
    }

    .ua-gallery-close {

        width: 34px;
        height: 34px;
    }

    .ua-gallery-close i {

        font-size: 13px;
    }

}

/* ===================================
   META
=================================== */

.ua-meta {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

}



/* ===================================
   MOBILE
=================================== */

@media(max-width:768px) {

    .ua-card {

        padding: 18px;

        border-radius: 20px;

    }

    .ua-title {

        font-size: 2rem;

    }

    .ua-subtitle {

        font-size: 15px;

    }

    .ua-meta {

        gap: 8px;

    }

    .ua-meta-item {

        font-size: 13px;

        padding: 8px 12px;

    }

}

.ua-subtitle {

    font-size: 17px;

    line-height: 1.8;

    color: var(--ua-muted);

    margin-bottom: 20px;

}



/* ===================================
   SECTION NAV1
=================================== */

.ua-section-nav {

    position: sticky;
    top: var(--ua-header-height);

    z-index: 100;

    background: #ffffff;

    box-shadow:
        0 2px 12px rgba(15, 23, 42, .04);

    padding: 12px 0;

    margin-bottom: 28px;

}

.ua-section-nav-wrap {
    width: 100%;
    max-width: var(--ua-container);
    margin: auto;
    padding: 0 20px;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
}

.ua-section-nav a {
    text-decoration: none !important;
    flex-shrink: 0;

    padding: 10px 18px;

    border-radius: 999px;

    background: var(--ua-card-bg);

    color: var(--ua-muted);

    font-size: 14px;

    font-weight: 600;

    transition: var(--ua-transition);

}

.ua-section-nav a:hover {

    border-color: var(--ua-primary);
    color: var(--ua-primary);
    background: var(--ua-bg);

}

.ua-section-nav a.active {

    background: var(--ua-primary);

    color: var(--ua-white);

    border-color: var(--ua-primary);

}

@media(max-width:768px) {

    .ua-section-nav a {

        font-size: 13px;

        padding: 9px 16px;

    }

}


.ua-section-nav-wrap::-webkit-scrollbar {

    display: none;

}


.theme-nature {

    --ua-primary: #16a34a;

    --ua-primary-light: #f0fdf4;

    --ua-secondary: #0ea5e9;

    --ua-secondary-light: #eff6ff;

}


@media(max-width:768px) {

    .ua-section-nav {

        top: var(--ua-header-height);

    }

    .ua-section-nav-wrap {

        padding: 8px;

    }

    .ua-section-nav a {

        font-size: 13px;

        padding: 8px 14px;

    }

}

/* ===================================
   CARD SYSTEM
=================================== */

.ua-card {

    background: var(--ua-card-bg);

    border: 1px solid var(--ua-border);

    border-radius: var(--ua-radius-lg);

    padding: 28px;

    margin-bottom: 24px;

}

.ua-card-header {

    margin-bottom: 24px;

}



.ua-section-subtitle {

    margin-top: 8px;

    color: var(--ua-muted);

    font-size: 15px;

}

.ua-card-body {

    color: var(--ua-body);

    line-height: 1.9;

}

/* ===================================
   HIGHLIGHTS
=================================== */
.ua-highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

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

.ua-highlight-card {

    display: flex;

    gap: 14px;

    padding: 18px;

    border: 1px solid var(--ua-border);

    border-radius: var(--ua-radius-md);

}

.ua-highlight-icon {

    width: 48px;

    height: 48px;

    min-width: 48px;

    border-radius: 14px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--ua-primary-light);

    color: var(--ua-primary);

    font-size: 20px;

}

.ua-highlight-title {

    font-weight: 700;

    color: var(--ua-text);

    margin-bottom: 4px;

}

.ua-highlight-text {

    font-size: 14px;

    color: var(--ua-muted);

}

/* ===================================
   WHY BOOK WITH US
=================================== */

.ua-why-book-grid {

    display: grid;

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

    gap: 16px;

}

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

.ua-why-book-card {

    display: flex;

    gap: 16px;

    padding: 20px;

    border: 1px solid var(--ua-border);

    border-radius: var(--ua-radius-md);

    transition: var(--ua-transition);

}

.ua-why-book-card:hover {

    transform: translateY(-2px);

    border-color: var(--ua-primary);

}

.ua-why-book-icon {

    width: 52px;

    height: 52px;

    min-width: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 14px;

    background: var(--ua-primary-light);

    color: var(--ua-primary);

    font-size: 22px;

}

.ua-why-book-card h3 {

    font-size: 16px;

    font-weight: 700;

    color: var(--ua-text);

    margin-bottom: 6px;

}

.ua-why-book-card p {

    margin: 0;

    color: var(--ua-muted);

    font-size: 14px;

    line-height: 1.7;

}

/* ===================================
   INCLUDED 1
=================================== */

.ua-included-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;

}

.ua-exclude-box {

    border: 1px solid var(--ua-border);

    border-radius: 20px;

    padding: 24px;

}

.ua-include-title {

    color: var(--ua-success);

    font-size: 1.1rem;

    font-weight: 800;

    margin-bottom: 18px;

}

.ua-exclude-title {

    color: var(--ua-danger);

    font-size: 1.1rem;

    font-weight: 800;

    margin-bottom: 18px;

}

.ua-include-list,
.ua-exclude-list {

    list-style: none;

    padding: 0;

    margin: 0;

}

.ua-include-list li,
.ua-exclude-list li {

    padding: 12px 0;

    border-bottom: 1px solid var(--ua-border-light);

    color: var(--ua-body);

}

.ua-include-list li:last-child,
.ua-exclude-list li:last-child {

    border-bottom: none;

}

@media(max-width:768px) {
    .ua-included-grid {

        grid-template-columns: 1fr;

    }
}

.ua-include-box {

    border: 1px solid var(--ua-border);

    border-radius: 20px;

    padding: 22px;

}

.ua-include-list {

    list-style: none;

    padding: 0;

    margin: 0;

}

.ua-include-list li {

    padding: 10px 0;

    border-bottom: 1px solid var(--ua-border-light);

}



/* ===================================
   PRICING TABLE
=================================== */
.ua-price-table {
    border: 1px solid var(--ua-border);
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
}

.ua-price-head {
    display: grid;
    grid-template-columns: 160px 1fr 1fr;
    background: #22c55e;
    color: #fff;
    font-weight: 700;
    padding: 18px 24px;
}

.ua-price-row {
    display: grid;
    grid-template-columns: 160px 1fr 1fr;
    align-items: center;
    padding: 18px 24px;
    border-bottom: 1px solid #eef2f7;
    transition: .2s;
}

.ua-price-row:last-child {
    border-bottom: none;
}

.ua-price-row:hover {
    background: #f8fafc;
}

.ua-price-value {
    font-weight: 700;
    color: #16a34a;
}

.ua-price-badge {
    display: inline-block;
    margin-left: 8px;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 20px;
    background: #dcfce7;
    color: #15803d;
    font-weight: 600;
}

/*TAMPILAN PRICE HANYA DI MOBILE */

/* MOBILE PRICING CARD */

.ua-pricing-mobile {
    display: none;
}

@media(max-width:768px) {

    .ua-price-table {
        display: none;
    }

    .ua-pricing-mobile {
        display: block;
    }

    .ua-price-card {

        background: #fff;

        border: 1px solid #e8edf3;

        border-radius: 20px;

        padding: 18px;

        margin-bottom: 16px;

    }

    .ua-price-card-head {

        display: flex;

        justify-content: space-between;

        align-items: center;

        margin-bottom: 12px;

    }

    .ua-price-card-head h4 {

        margin: 0;

        font-size: 15px;

        font-weight: 800;

        color: #0f172a;

    }

    .ua-best-value {

        display: inline-flex;

        align-items: center;

        gap: 6px;

        padding: 6px 12px;

        border-radius: 999px;

        background: #dcfce7;

        color: #15803d;

        font-size: 13px;

        font-weight: 700;

    }

    .ua-price-item {

        display: flex;

        justify-content: space-between;

        align-items: center;

        padding: 16px 0;

        border-top: 1px solid #eef2f7;

    }

    .ua-price-item:first-of-type {
        border-top: none;
    }

    .ua-price-item span {

        font-size: 13px;

        color: #64748b;

    }

    .ua-price-item strong {

        font-size: 15px;

        font-weight: 800;

        color: #16a34a;

    }

}

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

.ua-faq-item {

    border: 1px solid var(--ua-border);

    border-radius: var(--ua-radius-md);

    margin-bottom: 14px;

    overflow: hidden;

}

@media(max-width:768px) {

    .ua-card {

        padding: 18px;

    }

}

.ua-faq-list {

    display: flex;

    flex-direction: column;

    gap: 14px;

}

.ua-faq-question {

    width: 100%;

    border: none;

    background: var(--ua-card-bg);

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 20px;

    font-size: 16px;

    font-weight: 700;

    color: var(--ua-text);

    cursor: pointer;

}

.ua-faq-question span {

    font-size: 24px;

    color: var(--ua-primary);

}

.ua-faq-answer {
    display: none;
    padding: 0 20px 20px;
    color: var(--ua-muted);
    line-height: 1.8;
}

.ua-faq-item.active .ua-faq-answer {

    display: block;

}

/* ===================================
   ITINERARY 1
=================================== */

.ua-itinerary-list {

    display: flex;

    flex-direction: column;

    gap: 14px;

}

.ua-itinerary-item {

    display: flex;

    gap: 18px;

    padding: 18px;

    border: 1px solid var(--ua-border);

    border-radius: var(--ua-radius-md);

    transition: var(--ua-transition);

}

.ua-itinerary-item:hover {

    border-color: var(--ua-primary);

}

.ua-itinerary-time {

    min-width: 100px;

    text-align: center;

    background: var(--ua-primary-light);

    color: var(--ua-primary);

    font-weight: 700;

    border-radius: 12px;

    padding: 10px;

    height: fit-content;

}

.ua-itinerary-content strong {

    display: block;

    color: var(--ua-text);

    margin-bottom: 6px;

    font-size: 16px;

}

.ua-itinerary-content p {

    margin: 0;

    color: var(--ua-muted);

    line-height: 1.7;

}

.ua-itinerary-content {

    flex: 1;

}

@media(max-width:768px) {

    .ua-itinerary-item {
        flex-direction: column;
        min-width: 100%;
    }

}


/* ===================================
   GUIDE
=================================== */

.ua-guide-grid {

    display: grid;

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

    gap: 18px;

}

.ua-guide-card {

    border: 1px solid var(--ua-border);

    border-radius: var(--ua-radius-md);

    padding: 20px;

}

.ua-guide-card h3 {

    font-size: 16px;

    font-weight: 700;

    margin-bottom: 10px;

}

.ua-guide-card p {

    margin: 0;

}

/* ===================================
   TERMS
=================================== */

.ua-terms-list {

    display: flex;

    flex-direction: column;

    gap: 14px;

}

.ua-term-item {

    padding: 14px 18px;

    border: 1px solid var(--ua-border);

    border-radius: 14px;

    color: var(--ua-muted);

}





/* ===================================
   RELATED TOURS
=================================== */

.ua-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ua-related-card {
    display: block;
    background: #fff;
    border: 1px solid var(--ua-border);
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    transition: .3s ease;
}

.ua-related-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(15, 23, 42, .08);
}

.ua-related-image {
    position: relative;
}

.ua-related-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.ua-related-badge {
    position: absolute;
    top: 14px;
    left: 14px;

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

    padding: 8px 12px;

    border-radius: 999px;

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

.ua-related-content {
    padding: 22px;
}

.ua-related-content h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
}

.ua-related-content p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.ua-related-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ua-related-price {
    color: var(--ua-primary);
    font-weight: 800;
}

.ua-related-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--ua-primary);
}

@media(max-width:768px) {

    .ua-guide-grid,
    .ua-related-grid {

        grid-template-columns: 1fr;

    }
}

/* ===================================
   BOOKING SIDEBAR
=================================== */

.ua-booking {
    position: sticky;
    top: calc(var(--ua-header-height) + 25px);
}



.ua-booking-card {

    background: var(--ua-card-bg);

    border: 1px solid var(--ua-border);

    border-radius: var(--ua-radius-lg);

    padding: 24px;

    box-shadow: var(--ua-shadow-sm);

}

.ua-booking-price {

    text-align: center;

}

.ua-booking-price small {

    color: var(--ua-muted);

}

.ua-booking-amount {

    font-size: 2rem;

    font-weight: 900;

    color: var(--ua-primary);

    margin: 6px 0;

}

.ua-booking-price span {

    color: var(--ua-muted);

    font-size: 14px;

}

.ua-booking-divider {

    height: 1px;

    background: var(--ua-border);

    margin: 20px 0;

}

.ua-booking-features {

    display: flex;

    flex-direction: column;

    gap: 12px;

    margin-bottom: 24px;

}

.ua-booking-feature {

    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--ua-body);

}

.ua-booking-feature i {

    color: var(--ua-primary);

}

/* ===================================
   BUTTONS 
=================================== */

.ua-btn {

    width: 100%;

    height: 52px;

    border-radius: 14px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    font-weight: 700;

    text-decoration: none;

    transition: var(--ua-transition);

}

.ua-btn-primary {

    background: var(--ua-primary);

    color: var(--ua-white);

}

.ua-btn-primary:hover {

    transform: translateY(-2px);

}

.ua-btn-secondary {

    background: var(--ua-bg);

    color: var(--ua-text);

    margin-bottom: 12px;

}



/* ===================================
   MOBILE BOOKING BAR
=================================== */

.ua-sticky-mobile {

    position: fixed;

    left: 12px;
    right: 12px;
    bottom: calc(env(safe-area-inset-bottom) + 8px);

    height: 55px;


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

    backdrop-filter: blur(16px);

    -webkit-backdrop-filter: blur(16px);

    border-radius: 18px;

    display: flex;
    align-items: center;

    gap: 5px;

    padding: 5px;

    box-shadow:
        0 8px 24px rgba(15, 23, 42, .08);

    z-index: 9999;
}

@media (min-width:992px) {

    .ua-sticky-mobile {
        display: none !important;
    }

}

.ua-sticky-top {

    width: 42px;
    height: 42px;

    flex-shrink: 0;

    border-radius: 12px;

    background: #f8fafc;

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

    color: #0f172a;

    text-decoration: none;
}

.ua-sticky-wa {

    width: 42px;
    height: 42px;

    flex-shrink: 0;

    border-radius: 12px;

    background: #25D366;

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

    color: #fff;

    text-decoration: none;
}

.ua-sticky-top i {

    font-size: 18px;
}

.ua-sticky-wa i {

    font-size: 18px;
}

.ua-sticky-price {

    flex: 1;

    display: flex;
    flex-direction: column;

    justify-content: center;

    padding-left: 4px;
}

.ua-price-from {

    font-size: 11px;

    color: #64748b;
}

.ua-price-value {

    font-size: 18px;

    font-weight: 800;

    color: #0f172a;
}

.ua-sticky-book {

    min-width: 105px;

    height: 42px;

    border-radius: 12px;

    background: #16a34a;
    color: #fff;
    font-size: 12px;
    text-decoration: none;

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

    font-weight: 700;
}

/*SIDEBAR BOOKING CSS*/

.ua-tour-sidebar {

    position: sticky;

    top: calc(var(--ua-header-height) + 70px);

}

/*===FOOTER===*/

.ua-footer {

    margin-top: 80px;

    background: #fff;

    border-top: 1px solid var(--ua-border);

}

.ua-footer-grid {

    display: grid;

    grid-template-columns:
        2fr 1fr 1fr 1fr;

    gap: 40px;

    padding: 60px 0;
}

.ua-footer h3 {

    font-size: 24px;

    font-weight: 800;

    margin-bottom: 14px;
}

.ua-footer h4 {

    font-size: 16px;

    font-weight: 700;

    margin-bottom: 18px;
}

.ua-footer ul {

    list-style: none;

    padding: 0;

    margin: 0;
}

.ua-footer li {

    margin-bottom: 10px;
}

.ua-footer a {

    text-decoration: none;

    color: var(--ua-muted);
}

.ua-footer a:hover {

    color: var(--ua-primary);
}

.ua-footer-bottom {

    border-top: 1px solid var(--ua-border);

    padding: 24px 0;

    display: flex;

    justify-content: space-between;

    align-items: center;
}

.ua-footer-social {

    display: flex;

    gap: 14px;
}

.ua-footer-social a {

    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background: var(--ua-primary-light);
}


@media(max-width:768px) {

    .ua-footer-grid {

        grid-template-columns: 1fr;

        gap: 30px;
    }

    .ua-footer-bottom {

        flex-direction: column;

        gap: 16px;
    }

}