:root {
    --base-color: #F48817;
    /* define global variable */
}

.bg-offering-slider-section {
    background: #252525;
    padding: 30px 0px;
}
.border-rounded-14{
    border-radius: 14px;
}

.btn-tb {
    display: inline-block;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    background-image: linear-gradient(to bottom, #eeb14d, #f48311);
    cursor: pointer;
    align-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Hover effect */
.btn-tb:hover {
    background-image: linear-gradient(to bottom, #eeb14d, #f48311);
    /* transform: translateY(-1px); */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    color: #af5700;
}

/* Optional: focus/active */
.btn-tb:active {
    transform: translateY(0);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.travel-page {
    font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, Arial;
    background: radial-gradient(1200px 600px at 10% 10%, rgba(255, 122, 89, 0.07), transparent), linear-gradient(180deg, #0f1724, #071426);
    color: #fff;
    min-height: 100vh;
    /* margin: 20px auto; */
    /* border-radius: 20px; */
    width: 100%;
}

.travel-container {
    max-width: 1200px;
    margin: auto;
    padding: 22px
}

.travel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px
}

.travel-brand {
    display: flex;
    gap: 12px;
    align-items: center
}

.travel-page .travel-header .travel-brand .travel-logo {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    background-image: linear-gradient(to bottom, #eeb14d, #f48311);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #111
}

.travel-page .travel-header .travel-brand .travel-title {
    font-size: 20px;
    font-weight: 700;
    color: #f48311;
}

.travel-page .travel-modal .travel-sheet .travel-info #travel-title {
    font-size: 20px;
    font-weight: 700;
    color: #f48311;
}

.travel-page .travel-modal .travel-sheet .travel-info a {
    text-decoration: none;
}

.travel-page .travel-modal .travel-sheet .travel-info .travel-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px
}

.travel-page .travel-modal .travel-sheet .travel-info #travel-it {
    font-size: 12px;
}

.travel-tools {
    display: flex;
    gap: 10px;
    align-items: center
}

.travel-search {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    padding: 10px 12px;
    border-radius: 12px;
    backdrop-filter: blur(6px)
}

.travel-search input {
    background: transparent;
    border: 0;
    color: rgba(255, 255, 255, 0.75);
    outline: none;
    width: 220px
}

.travel-chip {
    padding: 8px 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
    font-weight: 700;
    font-size: 13px
}

.travel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 18px
}

.travel-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    min-height: 220px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    box-shadow: 0 10px 30px rgba(2, 6, 23, 0.6);
    transform: translateY(18px);
    opacity: 0;
    animation: travel-pop .7s forwards cubic-bezier(.2, .9, .3, 1);
}

.travel-card:nth-child(1) {
    animation-delay: .08s;
}

.travel-card:nth-child(2) {
    animation-delay: .16s
}

.travel-card:nth-child(3) {
    animation-delay: .24s;
}

.travel-card:nth-child(4) {
    animation-delay: .32s;
}

.travel-card:nth-child(5) {
    animation-delay: .40s;
}

.travel-card:nth-child(6) {
    animation-delay: .48s;
}

@keyframes travel-pop {
    to {
        transform: none;
        opacity: 1;
    }
}

.travel-page .travel-grid .travel-card .travel-thumb {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.travel-page .travel-grid .travel-card .travel-meta {
    padding: 12px;
}

.travel-page .travel-grid .travel-card .travel-meta h3 {
    margin: 0;
    font-size: 16px;
    color: var(--base-color);
    font-weight: 600;
}

.travel-page .travel-grid .travel-card .travel-meta p {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px
}

.travel-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 22px 44px rgba(2, 6, 23, 0.8)
}

.travel-glow {
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(50px);
    opacity: .7;
    mix-blend-mode: screen;
    transform: scale(.8)
}

.travel-glow.orange {
    background: linear-gradient(90deg, #ff7a59, #ffbb88)
}

.travel-glow.cyan {
    background: linear-gradient(90deg, #34d1ff, #6ad7ff)
}

.travel-page .travel-grid .travel-card .travel-ribbon {
    position: absolute;
    left: 12px;
    top: 12px;
    background: linear-gradient(90deg, #fff3, #ffffff11);
    padding: 6px 10px;
    border-radius: 8px;
    font-weight: 600;
    color: #fff;
    backdrop-filter: blur(6px)
}

.travel-overlay {
    position: absolute;
    /* inset: 0; */
    background: linear-gradient(180deg, transparent, rgba(2, 6, 23, 0.6));
    opacity: 0;
    transition: opacity .28s
}

.travel-card:hover .travel-overlay {
    opacity: 1
}

.travel-actions {
    /* position: absolute; */
    left: 12px;
    bottom: 12px;
    display: flex;
    gap: 8px;
    padding: 12px;
}

.travel-btn {
    background: linear-gradient(90deg, #ff7a59, #ffd66b);
    padding: 10px 14px;
    border-radius: 10px;
    border: 0;
    font-weight: 700;
    cursor: pointer
}

.travel-ghost {
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.04);
    font-weight: 700
}

.travel-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(2, 6, 23, 0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s
}

.travel-modal.open {
    opacity: 1;
    pointer-events: auto
}

.travel-sheet {
    width: 90%;
    max-width: 920px;
    background: linear-gradient(180deg, #071426, #0b1728);
    border-radius: 14px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.03)
}

.travel-sheet-hero {
    display: flex;
    gap: 18px
}

.travel-gallery {
    flex: 1;
    border-radius: 10px;
    overflow: hidden
}

.travel-info {
    flex-basis: 320px
}

.travel-close {
    background: transparent;
    border: 0;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 700;
    cursor: pointer
}

@media (max-width:980px) {
    .travel-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:640px) {
    .travel-header{
        flex-direction: column;
    }
    .travel-grid {
        grid-template-columns: 1fr
    }

    .travel-search input {
        width: 120px
    }
}


/* mySwiper swiper */
.mySwiper.swiper {
    width: 100%;
    height: 100%;
    padding: 15px;
    /* margin-top: 10px;
      margin-bottom: 30px; */
    /* margin-left: 0px;
      margin-right: 0px; */
    /* padding: 24px; */
}

/* .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #444;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
} */

/* end mySwiper swiper */

.travel-card {
    transition: opacity 0.3s ease;
}

.travel-card[style*="none"] {
    opacity: 0;
}

mark {
    background: #F48817;
    /* your --base-color */
    color: #fff;
    padding: 0 2px;
    border-radius: 2px;
}
