:root {
    --red: #e31c25;
    --red-dark: #b3121a;
    --navy: #101828;
    --gray: #6b7280;
    --light: #f7f7f9;
    --red-light: #fdecec;
    --border: #e5e7eb;
    --white: #ffffff;
    --navy-soft: #1f2a44;
    --radius: 10px;
    --radius: 10px;
}



* {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--navy);
    overflow-x: hidden;
    max-width: 100%;
}


.main-navbar,
.main-navbar .container,
.topbar,
.topbar .container {
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
}

.eyebrow {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--red);
    font-weight: 600;
}

/* ===== TOPBAR ===== */
.topbar {
    background: #D21617;
    color: #fff;
    font-size: .85rem;
    padding: 8px 0;
}

.topbar a {
    color: #fff;
}

.topbar .divider {
    opacity: .5;
    margin: 0 10px;
}

.topbar .social-ic {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 6px;
    color: #fff;
    font-size: .8rem;
    transition: .25s;
}

.topbar .social-ic:hover {
    background: #fff;
    color: var(--red);
}

/* ===== NAVBAR ===== */
.main-navbar {
    padding: 14px 0;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
    position: relative;
    overflow: visible;
    z-index: 1000;
    transition: padding .25s ease, box-shadow .25s ease;
}

.main-navbar .container {
    overflow: visible;
}

.main-navbar.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
    animation: navSlide .35s ease;
}

@keyframes navSlide {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.brand-logo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 92px;
    height: 68px;
    margin-top: -20px;
    padding: 6px 8px;
    background: #D21617;
    border-radius: 0 0 12px 12px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-top: none;
    z-index: 1002;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease;
}

.brand-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(227, 28, 37, .38),
        inset 0 1px 0 rgba(255, 255, 255, .25);
}

.brand-logo img {
    position: static;
    height: 100%;
    width: 100%;
    max-height: 52px;
    object-fit: contain;
    transform: none;
}


.brand-logo .brand-text {
    color: #fff;
    line-height: 1.1;
}

.brand-logo .brand-text strong {
    font-size: 1.05rem;
    display: block;
    letter-spacing: .5px;
}

.brand-logo .brand-text span {
    font-size: .68rem;
    letter-spacing: 2px;
    opacity: .9;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.main-navbar .nav-link {
    font-weight: 500;
    color: var(--navy) !important;
    padding: 10px 13px !important;
    position: relative;
    display: flex;
    align-items: center;
    gap: 2px;
}

.main-navbar .nav-item.active .nav-link {
    color: var(--red) !important;
}

.main-navbar .nav-item.active .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--red);
}

/* custom chevron icon replacing bootstrap's default caret */
.main-navbar .dropdown-toggle::after {
    display: none;
}

.main-navbar .dropdown-toggle .chev {
    font-size: .62rem;
    color: var(--red);
    transition: transform .25s ease;
    margin-top: 1px;
}

.main-navbar .dropdown.show .dropdown-toggle .chev,
.main-navbar .nav-item.dropdown:hover .dropdown-toggle .chev {
    transform: rotate(180deg);
}

.dropdown-menu {
    border: none;
    border-radius: 10px;
    box-shadow: 0 16px 34px rgba(16, 24, 40, .14);
    padding: 10px;
    margin-top: 8px !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    display: block;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

/* CRITICAL FIX: Bootstrap sets ".navbar-nav .dropdown-menu{position:static}" by
   design (it expects Popper.js to reposition it inline on click). Since our
   dropdowns open on hover instead of click, Popper never runs — so without this
   override the menu renders in normal document flow and pushes every nav item
   around (the broken layout). Forcing absolute positioning here fixes it. */
.main-navbar .navbar-nav .dropdown-menu {
    position: absolute !important;
    top: 100%;
    left: 0;
    min-width: 220px;
}

.nav-item.dropdown:hover .dropdown-menu,
.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    border-radius: 6px;
    padding: 9px 14px;
    font-size: .92rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdown-item:hover {
    background: var(--light);
    color: var(--red);
}

.dropdown-item i {
    font-size: .7rem;
    color: var(--red);
    opacity: .7;
}

.btn-plan {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: #fff;
    border-radius: 30px;
    padding: 6px 6px 6px 20px;
    font-weight: 600;
    font-size: .88rem;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    line-height: 1;
    transition: .3s ease;
    box-shadow: 0 8px 18px rgba(227, 28, 37, .28);
    letter-spacing: .2px;
    white-space: nowrap;
}


.btn-plan:hover {
    color: #fff;
    box-shadow: 0 10px 24px rgba(227, 28, 37, .42);
    transform: translateY(-2px);
}

.btn-plan .icon-circle {
    background: #fff;
    color: var(--red);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .78rem;
    flex-shrink: 0;
    transition: transform .3s ease;
}

.btn-plan:hover .icon-circle {
    transform: rotate(45deg);
}

.navbar-toggler {
    border: none;
    background: var(--red);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 6px 14px rgba(227, 28, 37, .3);
    transition: .25s ease;
}

.navbar-toggler:hover {
    background: var(--red-dark);
    transform: translateY(-1px);
}

.navbar-toggler:focus {
    box-shadow: 0 6px 14px rgba(227, 28, 37, .3);
    outline: none;
}

/* ===== OFFCANVAS SIDEBAR (LEFT) ===== */
.offcanvas-start {
    width: 300px;
}

.offcanvas-header {
    background: var(--red);
    color: #fff;
}

.offcanvas-header .btn-close {
    filter: invert(1);
}

.mobile-menu .accordion-button {
    font-weight: 600;
    font-size: .95rem;
    padding: 12px 14px;
    box-shadow: none;
}

.mobile-menu .accordion-button:not(.collapsed) {
    background: var(--light);
    color: var(--red);
}

.mobile-menu .accordion-button::after {
    filter: none;
}

.mobile-menu .accordion-body {
    padding: 6px 20px 12px;
}

.mobile-menu .accordion-body a {
    display: block;
    padding: 8px 0;
    color: var(--gray);
    font-size: .9rem;
    border-bottom: 1px dashed #eee;
}

.mobile-menu .accordion-body a:hover {
    color: var(--red);
}

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

.mobile-menu .single-link {
    display: block;
    padding: 12px 14px;
    font-weight: 600;
    font-size: .95rem;
    color: var(--navy);
    border-bottom: 1px solid #eee;
}

.mobile-menu .single-link.active {
    color: var(--red);
}

.offcanvas-footer {
    padding: 16px;
    border-top: 1px solid #eee;
}


/* batton sidbar start css */
/* ===== overlay + sidebar ===== */
.booking-overlay {
    position: fixed;
    inset: 0;
    background: rgba(16, 24, 40, .55);
    backdrop-filter: blur(2px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease;
}

.booking-overlay.active {
    opacity: 1;
    visibility: visible;
}

.booking-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: min(460px, 100%);
    background: var(--white);
    z-index: 1001;
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.16, 1, .3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0, 0, 0, .2);
}

.booking-sidebar.active {
    transform: translateX(0);
}

.bs-head {
    padding: 22px 24px 14px;
    border-bottom: 1px solid var(--border);
    position: relative;
    background: var(--navy);
    color: #fff;
}

.bs-close {
    position: absolute;
    top: 18px;
    right: 20px;
    background: rgba(255, 255, 255, .12);
    border: none;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s;
}

.bs-close:hover {
    background: var(--red);
}

.bs-eyebrow {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #9aa3b5;
    margin-bottom: 12px;
    font-weight: 600;
}

.bs-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.bs-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    color: #fff;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    transition: .2s;
    max-width: 130px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bs-chip:hover {
    border-color: var(--red);
}

.bs-chip.pending {
    background: transparent;
    color: #5b6274;
    border-color: rgba(255, 255, 255, .08);
    cursor: default;
    font-weight: 500;
}

.bs-chip i {
    font-size: 11px;
    color: var(--red);
}

.bs-chip.pending i {
    color: #4a5164;
}

.bs-progress {
    display: flex;
    gap: 6px;
}

.bs-progress span {
    flex: 1;
    height: 3px;
    border-radius: 4px;
    background: rgba(255, 255, 255, .15);
    overflow: hidden;
    position: relative;
}

.bs-progress span.done {
    background: var(--red);
}

.bs-progress span.current::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--red), #ffb703);
    animation: pulseBar 1.4s ease-in-out infinite;
}

@keyframes pulseBar {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .5;
    }
}

.bs-body {
    flex: 1;
    overflow-y: auto;
    padding: 22px 24px 100px;
    position: relative;
}

.bs-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gray);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 16px;
    border: none;
    background: none;
    padding: 0;
}

.bs-back:hover {
    color: var(--red);
}

.bs-question {
    font-size: 19px;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 18px;
}

.bs-question span {
    color: var(--red);
}

.bs-search {
    position: relative;
    margin-bottom: 20px;
}

.bs-search i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
}

.bs-search input {
    width: 100%;
    padding: 14px 16px 14px 42px;
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 14px;
    outline: none;
    transition: .2s;
    background: var(--light);
}

.bs-search input:focus {
    border-color: var(--red);
    background: #fff;
    box-shadow: 0 0 0 4px var(--red-light);
}

/* destination / city grid boxes */
.bs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.bs-box {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 12px;
    text-align: center;
    cursor: pointer;
    transition: .2s;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.bs-box .emoji {
    font-size: 26px;
}

.bs-box .name {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--navy);
}

.bs-box:hover {
    border-color: var(--red);
    background: var(--red-light);
    transform: translateY(-2px);
}

.bs-box.selected {
    border-color: var(--red);
    background: var(--red-light);
}

/* month grid */
.bs-months {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.bs-month-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px;
    cursor: pointer;
    transition: .2s;
    position: relative;
    background: #fff;
}

.bs-month-card:hover {
    border-color: var(--red);
}

.bs-month-card.selected {
    border-color: var(--red);
    background: var(--red-light);
}

.bs-month-card .m-name {
    font-weight: 700;
    font-size: 14.5px;
    margin-bottom: 6px;
    color: var(--navy);
}

.bs-month-card .m-tag {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 5px;
    margin-bottom: 6px;
    background: var(--navy);
    color: #fff;
}

.bs-month-card .m-tag.hot {
    background: var(--red);
}

.bs-month-card .m-temp {
    font-size: 12.5px;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 5px;
}

.bs-month-card .flag {
    position: absolute;
    top: 0;
    right: 12px;
    width: 14px;
    height: 18px;
    background: var(--red);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 80%, 0 100%);
}

/* calendar */
.bs-cal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.bs-cal-head button {
    border: 1px solid var(--border);
    background: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--navy);
    transition: .2s;
}

.bs-cal-head button:hover {
    border-color: var(--red);
    color: var(--red);
}

.bs-cal-head h4 {
    margin: 0;
    font-size: 16px;
    color: var(--navy);
}

.bs-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    text-align: center;
}

.bs-cal-grid .dow {
    font-size: 11px;
    font-weight: 700;
    color: var(--gray);
    padding-bottom: 6px;
}

.bs-cal-grid .day {
    padding: 10px 0;
    border-radius: 50%;
    cursor: pointer;
    font-size: 13.5px;
    color: var(--navy);
    transition: .2s;
}

.bs-cal-grid .day:hover {
    background: var(--red-light);
}

.bs-cal-grid .day.selected {
    background: var(--red);
    color: #fff;
    font-weight: 700;
}

.bs-cal-grid .day.empty {
    cursor: default;
}

.bs-cal-grid .day.empty:hover {
    background: none;
}

/* duration cards */
.bs-duration {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.bs-dur-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 14px;
    text-align: center;
    cursor: pointer;
    transition: .2s;
    font-weight: 700;
    color: var(--navy);
    font-size: 14px;
    position: relative;
}

.bs-dur-card:hover {
    border-color: var(--red);
}

.bs-dur-card.selected {
    border-color: var(--red);
    background: var(--red-light);
    color: var(--red-dark);
}

.bs-dur-card .badge {
    position: absolute;
    top: -1px;
    right: 10px;
    background: var(--red);
    color: #fff;
    font-size: 10px;
    padding: 2px 7px;
    border-radius: 0 0 6px 6px;
}

/* travelers */
.bs-travel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.bs-travel-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 10px;
    text-align: center;
    cursor: pointer;
    transition: .2s;
}

.bs-travel-card:hover {
    border-color: var(--red);
}

.bs-travel-card.selected {
    border-color: var(--red);
    background: var(--red-light);
}

.bs-travel-card i {
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 8px;
    display: block;
}

.bs-travel-card.selected i {
    color: var(--red);
}

.bs-travel-card .t-name {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--navy);
    text-transform: capitalize;
}


/* img start */
.bs-box .flag-img {
    width: 56px;
    height: 40px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 3px 8px rgba(16, 24, 40, .12);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
}

.bs-box .flag-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bs-box:hover .flag-img,
.bs-box.selected .flag-img {
    border-color: var(--red);
    box-shadow: 0 5px 12px rgba(227, 28, 37, .2);
}

/* img end */

/* form */
.bs-field {
    margin-bottom: 14px;
    position: relative;
}

.bs-field i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
}

.bs-field input {
    width: 100%;
    padding: 14px 16px 14px 42px;
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 14px;
    outline: none;
    transition: .2s;
}

.bs-field input:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 4px var(--red-light);
}

.bs-terms {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12.5px;
    color: var(--gray);
    margin: 16px 0 20px;
}

.bs-terms a {
    color: var(--red);
    text-decoration: none;
    font-weight: 600;
}

.bs-submit {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(227, 28, 37, .3);
    transition: .2s;
}

.bs-submit:hover {
    transform: translateY(-2px);
}

.bs-submit:disabled {
    opacity: .5;
    cursor: not-allowed;
    transform: none;
}

.bs-success {
    text-align: center;
    padding: 40px 10px;
}

.bs-success i {
    font-size: 52px;
    color: var(--red);
    margin-bottom: 16px;
}

.bs-success h3 {
    margin: 0 0 8px;
    color: var(--navy);
}

.bs-success p {
    color: var(--gray);
    font-size: 14px;
}

@media(max-width:480px) {

    .bs-grid,
    .bs-months,
    .bs-duration {
        grid-template-columns: 1fr 1fr;
    }

    .bs-travel {
        grid-template-columns: 1fr 1fr;
    }
}

/* batton sidbar end css */
/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    overflow: hidden;
    height: 640px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .15) 55%, rgba(0, 0, 0, 0) 80%);
}

.hero-caption {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-caption h1 {
    color: #fff;
    font-size: 2.9rem;
    line-height: 1.15;
    font-weight: 800;
}

.hero-caption h1 span {
    color: var(--red);
}

.hero-caption p {
    color: #e9e9e9;
    max-width: 460px;
    font-size: 1rem;
}

.hero-dots {
    position: absolute;
    bottom: 190px;
    left: 0;
    right: 0;
    z-index: 4;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.hero-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .5);
    cursor: pointer;
    transition: .25s;
}

.hero-dots span.active {
    background: var(--red);
    width: 26px;
    border-radius: 6px;
}

.hero-arrow {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .25);
    border: 1px solid rgba(255, 255, 255, .6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .25s;
}

.hero-arrow:hover {
    background: #fff;
    color: var(--red);
}

.hero-arrow.prev {
    left: 24px;
}

.hero-arrow.next {
    right: 24px;
}


/* ===== HERO SLIDER - RESPONSIVE ===== */

/* Tablet */
@media (max-width: 991px) {
    .hero-slider {
        height: 500px;
    }

    .hero-caption h1 {
        font-size: 2.3rem;
    }

    .hero-dots {
        bottom: 130px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .hero-slider {
        height: 420px;
    }

    .hero-slide::before {
        background: linear-gradient(180deg, rgba(0, 0, 0, .35) 0%, rgba(0, 0, 0, .65) 100%);
    }

    .hero-caption {
        align-items: flex-end;
        padding-bottom: 50px;
    }

    .hero-caption .col-lg-6 {
        max-width: 100%;
    }

    .hero-caption .eyebrow {
        font-size: .8rem;
    }

    .hero-caption h1 {
        font-size: 1.6rem;
        line-height: 1.25;
    }

    .hero-caption p {
        font-size: .88rem;
        max-width: 100%;
    }

    .btn-plan {
        padding: 6px 6px 6px 18px;
        font-size: .82rem;
    }

    .btn-plan .icon-circle {
        width: 28px;
        height: 28px;
        font-size: .7rem;
    }

    .hero-dots {
        bottom: 16px;
    }

    .hero-arrow {
        width: 34px;
        height: 34px;
        top: 42%;
    }

    .hero-arrow.prev {
        left: 12px;
    }

    .hero-arrow.next {
        right: 12px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-slider {
        height: 360px;
    }

    .hero-caption h1 {
        font-size: 1.35rem;
    }

    .hero-caption p {
        font-size: .82rem;
    }
}

/* ===== SEARCH BOX ===== */
.search-box {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .15);
    padding: 22px 26px;
    position: relative;
    z-index: 10;
    margin-top: -70px;
}

.search-field label {
    font-weight: 600;
    font-size: .85rem;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.search-field label i {
    color: var(--red);
}

.search-field select,
.search-field .form-select {
    border: none;
    background: transparent;
    padding: 0;
    font-size: .85rem;
    color: var(--gray);
    box-shadow: none;
}

.search-divider {
    border-left: 1px solid #eee;
}

.btn-search {
    background: var(--red);
    color: #fff;
    border-radius: 8px;
    padding: 12px 26px;
    font-weight: 600;
    border: none;
    white-space: nowrap;
}

.btn-search:hover {
    background: var(--red-dark);
    color: #fff;
}

/* ===== SECTION TITLES ===== */
.section-title {
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 1.9rem;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--red);
}

/* ===== DESTINATIONS ===== */
.dest-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    height: 230px;
    display: block;
}

.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s;
}

.dest-card:hover img {
    transform: scale(1.08);
}

.dest-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, .8) 100%);
}

.dest-card .dest-info {
    position: absolute;
    bottom: 16px;
    left: 0;
    right: 0;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.dest-card .dest-info h6 {
    font-weight: 700;
    margin-bottom: 8px;
}

.dest-card .dest-info .go-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .7);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
}

/*  tour package start */

/* ===== SECTION ===== */
.tp-section {
    padding: 43px 0 0px;
    overflow: hidden;
}

.tp-head {
    text-align: center;
    margin-bottom: 45px;
}

.tp-head h2 {
    font-weight: 700;
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.tp-head h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 55px;
    height: 3px;
    background: var(--red);
    border-radius: 4px;
}

.tp-head p {
    color: var(--gray);
    font-size: 0.98rem;
    margin: 0;
}

/* ===== MARQUEE TRACK ===== */
.tp-marquee-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-bottom: 26px;
}

/* Left side wall/fade */
.tp-marquee-wrap::before,
.tp-marquee-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 26px;
    width: 90px;
    z-index: 3;
    pointer-events: none;
}

.tp-marquee-wrap::before {
    left: 0;
    background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0.85) 40%, rgba(255, 255, 255, 0) 100%);
}

.tp-marquee-wrap::after {
    right: 0;
    background: linear-gradient(to left, #fff 0%, rgba(255, 255, 255, 0.85) 40%, rgba(255, 255, 255, 0) 100%);
}

/* Mobile-e chikon wall */
@media (max-width: 575.98px) {

    .tp-marquee-wrap::before,
    .tp-marquee-wrap::after {
        width: 40px;
    }
}


.tp-track {
    display: flex;
    gap: 14px;
    width: max-content;
    will-change: transform;
    padding-top: 4px;
}

/* ===== CARD ===== */
.tp-card {
    flex: 0 0 auto;
    width: 210px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.08);
    overflow: visible;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}


.tp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 34px rgba(16, 24, 40, 0.16);
}

.tp-photo {
    position: relative;
    width: 100%;
    height: 180px;
    /* ছিল 140px */
    border-radius: 16px 16px 0 0;
    overflow: hidden;
}

.tp-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.tp-card:hover .tp-photo img {
    transform: scale(1.08);
}

/* ===== ICON DOME (arch/hood shape behind icon) ===== */
.tp-icon-dome {
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 76px;
    height: 40px;
    background: var(--white);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    z-index: 1;
    box-shadow: 0 -4px 10px rgba(16, 24, 40, 0.05);
}

.tp-icon {
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 46px;
    height: 46px;
    background: var(--white);
    border: 1.5px solid var(--red-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 14px rgba(16, 24, 40, 0.14);
    z-index: 2;
    transition: background 0.3s ease, transform 0.3s ease;
}

.tp-card:hover .tp-icon {
    background: var(--red);
    transform: translateX(-50%) scale(1.08);
}


.tp-icon i {
    color: var(--red);
    font-size: 1.15rem;
    transition: color 0.3s ease;
}

.tp-card:hover .tp-icon i {
    color: var(--white);
}

.tp-body {
    padding: 26px 14px 22px;
    text-align: center;
}

.tp-title {
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.3;
    margin: 0;
}

.tp-title::after {
    content: "";
    display: block;
    width: 26px;
    height: 2px;
    margin: 12px auto 0;
    border-radius: 2px;
    transition: width 0.3s ease, background 0.3s ease;
}

/* .tp-card:hover .tp-title::after {
    width: 40px;
    background: var(--red);
} */

.tp-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.95rem;
    box-shadow: 0 8px 18px rgba(227, 28, 37, 0.30);
    transition: all 0.25s ease;
}

.tp-btn:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-3px);
}

/* ===== RESPONSIVE (mobile / tablet) ===== */
@media (max-width: 991.98px) {
    .tp-section {
        padding: 60px 0 5px;
    }

    .tp-card {
        width: 180px;
    }

    .tp-photo {
        height: 165px;
    }

    .tp-icon-dome {
        width: 64px;
        height: 34px;
    }

    .tp-icon {
        width: 40px;
        height: 40px;
        bottom: -12px;
    }
}

@media (max-width: 575.98px) {
    .tp-head h2 {
        font-size: 1.6rem;
    }

    .tp-card {
        width: 155px;
    }

    .tp-photo {
        height: 135px;
    }

    .tp-title {
        font-size: 0.85rem;
    }

    .tp-body {
        padding: 24px 10px 18px;
    }

    .tp-icon-dome {
        width: 56px;
        height: 30px;
    }

    .tp-icon {
        width: 38px;
        height: 38px;
        bottom: -10px;
    }

    .tp-icon i {
        font-size: 0.9rem;
    }
}

/* ===== LARGE SCREEN / 22" MONITOR (1600px+) ===== */
@media (min-width: 1600px) {
    .tp-section {
        padding: 42px 0 13px;
    }

    .tp-head h2 {
        font-size: 2.4rem;
    }

    .tp-head p {
        font-size: 1.1rem;
    }

    .tp-card {
        width: 250px;
    }

    .tp-photo {
        height: 210px;
    }

    .tp-track {
        gap: 20px;
    }

    .tp-icon-dome {
        width: 86px;
        height: 46px;
    }

    .tp-icon {
        width: 52px;
        height: 52px;
        bottom: -16px;
    }

    .tp-icon i {
        font-size: 1.3rem;
    }

    .tp-title {
        font-size: 1.05rem;
    }
}

/* tour package end */



/* start who we are */

.who-we-are {
    padding: 70px 0;
    overflow: hidden;
}

/* ---------- LEFT IMAGE SIDE ---------- */
.wwa-image-wrap {
    position: relative;
    max-width: 400px;
    /* image ta age 470px chilo, ekhon smaller kore professional look */
    margin: 0 auto;
}

.wwa-dots {
    position: absolute;
    top: -25px;
    right: -20px;
    width: 100px;
    height: 85px;
    background-image: radial-gradient(var(--red) 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    opacity: 0.6;
    z-index: 0;
}

.wwa-img-frame {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    padding: 8px;
    /* thin frame border effect - professional look */
    background: var(--white);
    box-shadow: 0 20px 45px rgba(16, 24, 40, 0.14);
}

.wwa-img {
    width: 100%;
    height: 420px;
    border-radius: 16px;
    display: block;
    object-fit: cover;
}

.wwa-corner {
    position: absolute;
    bottom: -18px;
    left: -18px;
    width: 45%;
    height: 38%;
    border-left: 3px solid var(--navy-soft);
    border-bottom: 3px solid var(--navy-soft);
    border-radius: 0 0 0 20px;
    z-index: 0;
}

/* ---------- LOGO BADGE ON IMAGE ---------- */
.wwa-logo-badge {
    position: absolute;
    bottom: 20px;
    right: -24px;
    z-index: 3;
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(16, 24, 40, 0.18);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--border);
}

.wwa-logo-badge .badge-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.wwa-logo-badge .badge-text {
    line-height: 1.2;
}

.wwa-logo-badge .badge-text .brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--navy);
    display: block;
}

.wwa-logo-badge .badge-text .brand span {
    color: var(--red);
}

.wwa-logo-badge .badge-text small {
    color: var(--gray);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* ---------- RIGHT CONTENT SIDE ---------- */
.wwa-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--red);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.wwa-eyebrow::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--red);
}

.wwa-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 10px;
}

.wwa-heading .line1 {
    display: block;
    color: var(--navy);
    font-size: 2.4rem;
}

.wwa-heading .line2 {
    display: block;
    font-style: italic;
    font-size: 2.5rem;
    font-weight: 800;
}

.wwa-heading .line2 .navy-word {
    color: var(--navy);
}

.wwa-heading .line2 .red-word {
    color: var(--red);
}

.wwa-subline {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--navy-soft);
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.wwa-subline i {
    color: var(--red);
    font-size: 1.1rem;
}

.wwa-divider {
    width: 70px;
    height: 3px;
    background: var(--red);
    margin-bottom: 22px;
    border-radius: 4px;
}

.wwa-text {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 16px;
}

.wwa-text strong {
    color: var(--navy);
    font-weight: 700;
}

/* ---------- BUTTON ---------- */
.wwa-btn {
    background: var(--navy);
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 30px;
    border-radius: 8px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.wwa-btn:hover {
    background: var(--red);
    color: var(--white);
    transform: translateY(-2px);
}

.wwa-btn i {
    transition: transform 0.25s ease;
}

.wwa-btn:hover i {
    transform: translateX(4px);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991.98px) {
    .who-we-are {
        padding: 60px 0;
    }

    .wwa-image-wrap {
        max-width: 360px;
        margin-top: 20px;
    }

    .wwa-heading .line1 {
        font-size: 2rem;
    }

    .wwa-heading .line2 {
        font-size: 2.1rem;
    }

    .wwa-logo-badge {
        right: 10px;
    }
}

@media (max-width: 767.98px) {
    .wwa-heading .line1 {
        font-size: 1.7rem;
    }

    .wwa-heading .line2 {
        font-size: 1.8rem;
    }

    .wwa-dots {
        display: none;
    }

    .wwa-corner {
        display: none;
    }

    .wwa-btn {
        width: 100%;
        justify-content: center;
    }

    .wwa-img {
        height: 340px;
    }

    .wwa-logo-badge {
        right: 10px;
        padding: 10px 14px;
    }

    .wwa-logo-badge .badge-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 1rem;
    }

    .wwa-logo-badge .badge-text .brand {
        font-size: 0.85rem;
    }
}

@media (max-width: 420px) {
    .wwa-img {
        height: 280px;
    }

    .wwa-image-wrap {
        max-width: 320px;
    }
}


.wwa-subline #wwaTypewriter {
    display: inline-block;
}

.wwa-cursor {
    display: inline-block;
    color: var(--red);
    font-weight: 600;
    margin-left: 1px;
    animation: wwaBlink 0.8s step-end infinite;
}

@keyframes wwaBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}


.wwa-subline #wwaTypewriter {
    display: inline-block;
    min-width: 220px;
}

.wwa-cursor {
    display: inline-block;
    color: var(--red);
    font-weight: 600;
    margin-left: 1px;
    animation: wwaBlink 0.8s step-end infinite;
}

@keyframes wwaBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

@media (max-width: 575.98px) {
    .wwa-subline #wwaTypewriter {
        min-width: 180px;
    }
}

/* end */


/* start */
/* ===== PACKAGE CARDS ===== */
.pkg-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    height: 100%;
}

.pkg-img {
    position: relative;
    height: 190px;
    overflow: hidden;
}

.pkg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s;
}

.pkg-card:hover .pkg-img img {
    transform: scale(1.07);
}

/* Country badge - replaces the old price badge */
.pkg-country {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(16, 24, 40, 0.75);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: .74rem;
    font-weight: 600;
    padding: 6px 13px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    max-width: calc(100% - 24px);
}

.pkg-country i {
    color: var(--red);
    font-size: .75rem;
}

.pkg-body {
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 190px);
}

.pkg-meta {
    font-size: .78rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.pkg-meta i {
    color: var(--red);
    margin-right: 4px;
}

.pkg-meta>span:first-child i {
    color: var(--red);
    margin-right: 4px;
}

/* Tour-type badge - same visual style as country badge, back in body meta row */
.pkg-type {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(16, 24, 40, 0.75);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: .74rem;
    font-weight: 600;
    padding: 6px 13px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
}

.pkg-type i {
    color: var(--red);
    font-size: .75rem;
}



.pkg-body h5 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.pkg-body p {
    font-size: .85rem;
    color: var(--gray);
    margin-bottom: 12px;
    flex-grow: 1;
}

.view-details {
    color: var(--red);
    font-weight: 600;
    font-size: .85rem;
    margin-top: auto;
}

.pkg-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .06);
    flex-shrink: 0;
}

.pkg-arrow:hover {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
}

/* end */


/* ===== FEATURES STRIP ===== */
.feature-strip {
    background: var(--light);
    border-radius: 16px;
    padding: 30px 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.feature-item .f-ic {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1.5px solid var(--red);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-item h6 {
    font-size: .92rem;
    margin-bottom: 2px;
}

.feature-item p {
    font-size: .78rem;
    color: var(--gray);
    margin: 0;
}

/* ===== CTA STRIP ===== */
.cta-strip {
    background: var(--red);
    color: #fff;
    padding: 30px 0;
}

.cta-strip .cta-ic {
    width: 56px;
    height: 56px;
    background: #fff;
    color: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.btn-outline-white {
    border: 1.5px solid #fff;
    color: #fff;
    border-radius: 30px;
    padding: 10px 22px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-white:hover {
    background: #fff;
    color: var(--red);
}

.whatsapp-ic {
    width: 44px;
    height: 44px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

/* ===== CTA STRIP - MOBILE RESPONSIVE ===== */
@media (max-width: 767.98px) {
    .cta-strip {
        padding: 28px 0;
    }

    .cta-strip .container {
        flex-direction: column;
        gap: 22px;
    }

    /* left: icon + text */
    .cta-left {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .cta-strip .cta-ic {
        width: 50px;
        height: 50px;
        font-size: 1.15rem;
    }

    .cta-strip h5 {
        font-size: 1.05rem;
    }

    .cta-strip p {
        font-size: 0.85rem !important;
    }

    /* right: button + whatsapp */
    .cta-right {
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }

    .btn-outline-white {
        width: 100%;
        justify-content: center;
        padding: 12px 22px;
    }

    .cta-right .d-flex.align-items-center.gap-2 {
        justify-content: center;
        text-align: center;
    }

    .whatsapp-ic {
        width: 40px;
        height: 40px;
        font-size: 1.05rem;
    }
}

@media (max-width: 575.98px) {
    .cta-strip {
        padding: 24px 0;
    }

    .cta-strip h5 {
        font-size: 0.98rem;
    }
}

/* ===== FOOTER ===== */
footer {
    background: #0c0f14;
    color: #c9c9cf;
    padding-top: 50px;
}

footer h6 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 18px;
}

footer a {
    color: #c9c9cf;
    font-size: .9rem;
    display: block;
    margin-bottom: 10px;
}

footer a:hover {
    color: var(--red);
}

footer .foot-logo {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    background: #D21617;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    margin-bottom: 18px;
    transition: background 0.3s ease, border-color 0.3s ease;
}

footer .foot-logo:hover {
    background: #D21617;
    border-color: #D21617;
}

footer .foot-logo img {
    height: 60px;
    width: auto;
    display: block;
    border-radius: 6px;
}

footer .foot-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #1c2028;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

footer .foot-social a:hover {
    background: var(--red);
    color: #fff;
}

.foot-bottom {
    border-top: 1px solid #23262e;
    margin-top: 30px;
    padding: 18px 0;
    font-size: .85rem;
}


.payment-icons img {
    height: 28px;
    width: auto;
    object-fit: contain;
    display: block;
}


/* start */
/* Live Chat Widget CSS */
.live-chat-wrap {
    position: fixed;
    bottom: 24px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.chat-btn {
    display: flex;
    align-items: center;
    gap: 0;
    border-radius: 50px;
    overflow: hidden;
    border: none;
    cursor: pointer;
    text-decoration: none;
    height: 48px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.cb-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 22px;
    color: #fff;
    border-radius: 50px;
    transition: border-radius 0.3s ease;
}

.cb-label {
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    transition: max-width 0.35s ease, padding 0.35s ease;
    padding: 0;
}

/* Hover effect — label expand */
.chat-btn:hover .cb-label {
    max-width: 120px;
    padding: 0 14px 0 4px;
}

.chat-btn:hover .cb-icon {
    border-radius: 50% 0 0 50%;
}

/* Colors */
.messenger {
    background: #0084ff;
}

.messenger:hover {
    background: #0078eb;
}

.whatsapp {
    background: #25d366;
}

.whatsapp:hover {
    background: #20c05a;
}

/* Mobile responsive */
@media (max-width: 576px) {
    .live-chat-wrap {
        bottom: 16px;
        right: 12px;
    }

    .chat-btn {
        height: 44px;
    }

    .cb-icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
}

/* end */



/* ===== RESPONSIVE ===== */
@media(min-width:1400px) {
    .container {
        max-width: 1320px;
    }
}

@media(max-width:991.98px) {
    .hero-slider {
        height: 560px;
    }

    .hero-caption h1 {
        font-size: 2.2rem;
    }

    .search-box {
        margin-top: 20px;
    }
}

@media(max-width:767.98px) {
    .topbar .d-none-mobile {
        display: none;
    }

    /* ---- hero slider: fixed real height so absolutely-positioned
     slides always have space to render on mobile ---- */
    .hero-slider {
        height: 78vh;
        min-height: 480px;
        max-height: 620px;
    }

    .hero-slide::before {
        background: linear-gradient(180deg, rgba(0, 0, 0, .35) 0%, rgba(0, 0, 0, .65) 100%);
    }

    .hero-caption {
        align-items: flex-end;
        padding-bottom: 70px;
    }

    .hero-caption .col-lg-6 {
        width: 100%;
        max-width: 100%;
        padding: 0 8px;
    }

    .hero-caption h1 {
        font-size: 1.65rem;
        line-height: 1.25;
    }

    .hero-caption p {
        font-size: .9rem;
        max-width: 100%;
    }

    .hero-caption .eyebrow {
        font-size: .95rem;
    }

    .hero-caption .btn-plan {
        padding: 7px 7px 7px 18px;
        font-size: .85rem;
    }

    .hero-dots {
        bottom: 20px;
    }

    .hero-arrow {
        width: 36px;
        height: 36px;
        font-size: .8rem;
    }

    .hero-arrow.prev {
        left: 10px;
    }

    .hero-arrow.next {
        right: 10px;
    }

    .search-box {
        margin-top: -45px;
        padding: 16px;
        border-radius: 14px;
    }

    .search-field {
        padding-bottom: 8px;
    }

    .search-divider {
        border-left: none;
        border-top: 1px solid #eee;
        padding-top: 10px;
        margin-top: 2px;
        padding-left: 0 !important;
    }

    .search-box .col-6:nth-child(1),
    .search-box .col-6:nth-child(2) {
        border-bottom: 1px solid #f2f2f2;
        padding-bottom: 12px;
    }

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

    .pkg-card {
        margin-bottom: 4px;
    }

    .cta-strip .d-flex.justify-content-between {
        justify-content: center !important;
        text-align: center;
    }

    .feature-item {
        text-align: left;
    }
}



@media (max-width: 575px) {
    .main-navbar .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .main-navbar .d-flex.align-items-center.gap-2 {
        gap: 8px !important;
    }
}

/* Mobile এ ছোট সাইজ */
@media (max-width: 575px) {
    .brand-logo {
        width: 78px;
        height: 76px;
        margin-top: -22px;
        padding: 5px 6px;
    }

    .brand-logo img {
        max-height: 54px;
    }
}

@media(max-width:575.98px) {
    .brand-logo {
        padding: 6px 10px;
    }

    .brand-logo img {
        height: 60px;
    }

    .brand-logo .brand-text strong {
        font-size: .8rem;
    }

    .brand-logo .brand-text span {
        font-size: .55rem;
    }

    .hero-slider {
        height: 34vh;
        min-height: 292px;
    }

    .hero-caption h1 {
        font-size: 1.35rem;
    }

    .hero-caption p {
        font-size: .82rem;
    }

    .dest-card {
        height: 150px;
    }
}


/* ===== SHARED PAGE-TITLE / BREADCRUMB (single + listing pages) ===== */
.breadcrumb-bar { background: var(--navy-light, #eef1f7); padding: 10px 0; border-bottom: 1px solid var(--border-dark, #d8dce6); }
.breadcrumb-bar .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.breadcrumb { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; font-size: 0.76rem; flex-wrap: wrap; }
.breadcrumb li { display: flex; align-items: center; gap: 6px; color: var(--gray, #6b7280); }
.breadcrumb li a { color: var(--navy); font-weight: 600; text-decoration: none; transition: color .2s; }
.breadcrumb li a:hover { color: var(--red); }
.breadcrumb li + li::before { content: '/'; color: var(--border-dark, #d8dce6); }
.breadcrumb li:last-child { color: var(--navy); font-weight: 700; }

.page-title-bar { background: var(--navy-light, #eef1f7); padding: 24px 0 20px; }
.page-title-bar .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.prop-title { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; color: var(--navy); margin: 10px 0 0; letter-spacing: .01em; }
.badge-status { display: inline-block; background: var(--red); color: #fff; border: 1px solid var(--red); border-radius: 4px; padding: 5px 13px; font-size: 0.7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-right: 6px; }
.badge-status.navy-badge { background: var(--navy); border-color: var(--navy); color: #fff; }

/* ===== MAIN / SINGLE PAGE LAYOUT ===== */
.main-wrap { background: var(--bg, #f5f6fa); padding: 30px 0 70px; }
.main-wrap .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.page-row { display: grid; grid-template-columns: 1fr 350px; gap: 26px; align-items: start; }
@media (max-width: 1024px) { .page-row { grid-template-columns: 1fr 320px; } }
@media (max-width: 900px)  { .page-row { grid-template-columns: 1fr; } }

.gallery-wrap { border-radius: 10px; overflow: hidden; position: relative; background: var(--navy); margin-bottom: 8px; box-shadow: 0 4px 20px rgba(16,24,40,.18); }
.gallery-wrap .main-img { width: 100%; height: 420px; object-fit: cover; display: block; opacity: .95; transition: opacity .22s ease; }
@media (max-width: 768px) { .gallery-wrap .main-img { height: 240px; } }
@media (min-width: 1400px) { .gallery-wrap .main-img { height: 480px; } }
.gallery-badge { position: absolute; top: 14px; left: 14px; background: rgba(227,28,37,.88); backdrop-filter: blur(4px); color: #fff; font-size: 0.68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 5px 12px; border-radius: 4px; border: 1px solid rgba(255,255,255,.12); }
.gallery-counter { position: absolute; top: 14px; right: 14px; background: rgba(16,24,40,.6); backdrop-filter: blur(4px); color: rgba(255,255,255,.85); font-size: 0.72rem; font-weight: 600; padding: 4px 11px; border-radius: 20px; border: 1px solid rgba(255,255,255,.12); letter-spacing: .04em; }

.thumb-slider-wrap { display: flex; align-items: center; gap: 6px; margin-bottom: 22px; margin-top: 16px; }
.thumb-arrow { flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--border-dark, #d8dce6); background: #fff; color: var(--navy); font-size: 0.75rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: .2s; box-shadow: 0 1px 4px rgba(16,24,40,.1); }
.thumb-arrow:hover { background: var(--red); color: #fff; border-color: var(--red); }
.thumb-arrow:disabled { cursor: default; opacity: .35; }
.thumb-viewport { flex: 1; overflow: hidden; }
.thumb-track { display: flex; gap: 8px; transition: transform .3s ease; }
.thumb-track .thumb { flex: 0 0 calc(25% - 6px); min-width: 0; border-radius: 7px; overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: .2s; }
.thumb-track .thumb img { width: 100%; height: 72px; object-fit: cover; display: block; transition: .3s; }
.thumb-track .thumb:hover img { transform: scale(1.06); }
.thumb-track .thumb:not(.active) img { opacity: .65; }
.thumb-track .thumb.active { border-color: var(--red); box-shadow: 0 0 0 1px var(--red); }
.thumb-track .thumb.active img { opacity: 1; }
@media (max-width: 480px) { .thumb-track .thumb img { height: 54px; } .thumb-arrow { width: 26px; height: 26px; font-size: 0.65rem; } }

.block-card { background: #fff; border-radius: 14px; border: 1px solid var(--border, #e5e7eb); margin-bottom: 22px; overflow: hidden; box-shadow: 0 4px 18px rgba(16,24,40,.06); transition: box-shadow .25s; }
.block-card:hover { box-shadow: 0 8px 26px rgba(16,24,40,.1); }
.block-head { padding: 16px 24px; border-bottom: 1px solid var(--border, #e5e7eb); display: flex; align-items: center; justify-content: space-between; }
.block-head h2 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.05rem; font-weight: 700; color: var(--navy); margin: 0; padding-left: 14px; position: relative; }
.block-head h2::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 4px; height: 75%; background: var(--red); border-radius: 2px; }
.block-body { padding: 22px 24px; }

.overview-grid { display: flex; flex-wrap: wrap; }
.ov-item { flex: 1 1 130px; text-align: center; padding: 20px 12px; border-right: 1px solid var(--border, #e5e7eb); transition: background .2s; }
.ov-item:last-child { border-right: none; }
.ov-item:hover { background: var(--navy-light, #eef1f7); }
.ov-icon { font-size: 1.4rem; color: var(--red); margin-bottom: 8px; }
.ov-val { font-size: 1rem; font-weight: 700; color: var(--navy); line-height: 1.2; }
.ov-lbl { font-size: 0.67rem; text-transform: uppercase; letter-spacing: .1em; color: #8a93a3; margin-top: 4px; }
@media (max-width: 575px) { .ov-item { flex: 1 1 48%; border-right: none; border-bottom: 1px solid var(--border, #e5e7eb); } }

.highlight-list li { font-size: 0.85rem; color: #444d5e; }

.desc-content p { font-size: 0.88rem; line-height: 1.9; color: #444d5e; margin-bottom: 10px; }
.desc-content strong { color: var(--navy); }
.desc-content hr { border: none; border-top: 1px dashed var(--border-dark, #d8dce6); margin: 14px 0; }
.desc-collapsed { max-height: 185px; overflow: hidden; position: relative; }
.desc-collapsed::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 65px; background: linear-gradient(transparent, #fff); }
.show-more-btn { display: inline-flex; align-items: center; gap: 7px; margin-top: 12px; background: none; border: 1px solid var(--border-dark, #d8dce6); color: var(--navy); font-size: 0.78rem; font-weight: 700; letter-spacing: .04em; padding: 8px 18px; border-radius: 5px; cursor: pointer; transition: .2s; }
.show-more-btn:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ===== SIDEBAR (single page) ===== */
.sidebar-col { display: flex; flex-direction: column; gap: 16px; }
.sidebar-sticky-wrap { display: flex; flex-direction: column; gap: 16px; }
.sidebar-card { background: #fff; border-radius: 14px; border: 1px solid var(--border, #e5e7eb); overflow: hidden; box-shadow: 0 6px 24px rgba(16,24,40,.08); }
.sidebar-price-header { background: linear-gradient(135deg, var(--navy) 0%, #1f2a44 100%); padding: 22px 24px; position: relative; overflow: hidden; }
.sidebar-price-header::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--red) 0%, var(--red-dark) 100%); }
.sidebar-price-header .lbl { font-size: 0.66rem; text-transform: uppercase; letter-spacing: .14em; color: rgba(255,255,255,.55); margin-bottom: 8px; font-weight: 600; }
.sidebar-price-header .price-row { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.sidebar-price-header .price { font-size: 1.7rem; font-weight: 800; color: #fff; line-height: 1; }
.sidebar-price-header .price-sub { font-size: 0.86rem; color: rgba(255,255,255,.38); text-decoration: line-through; font-weight: 500; }
.sidebar-price-header .price-note { font-size: 0.72rem; color: rgba(255,255,255,.6); margin-top: 8px; display: flex; align-items: center; gap: 6px; }
.sidebar-price-header .price-note i { color: var(--red); }
.sidebar-body { padding: 22px 24px; }
.agent-row { display: flex; align-items: center; gap: 13px; margin-bottom: 20px; padding-bottom: 18px; border-bottom: 1px solid var(--border, #e5e7eb); }
.agent-avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid var(--navy-light, #eef1f7); flex-shrink: 0; }
.agent-name { font-weight: 700; font-size: 0.88rem; color: var(--navy); margin-bottom: 3px; display: flex; align-items: center; gap: 6px; }
.agent-name i { color: var(--red); font-size: 0.8rem; }
.agent-link { font-size: 0.75rem; color: var(--red); font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 4px; transition: .2s; }
.agent-link:hover { color: var(--navy); gap: 7px; }

.booking-form { display: flex; flex-direction: column; gap: 13px; }
.form-label { display: block; font-size: 0.7rem; font-weight: 700; color: var(--gray, #6b7280); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
.form-control, .form-select { display: block; width: 100%; border: 1.5px solid var(--border, #e5e7eb); border-radius: 8px; font-size: 0.86rem; padding: 10px 14px; color: var(--navy); background: #fafbfd; transition: .2s; font-family: inherit; }
.form-control:focus, .form-select:focus { border-color: var(--red); box-shadow: 0 0 0 4px rgba(227,28,37,.08); background: #fff; outline: none; }
textarea.form-control { resize: vertical; min-height: 78px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.gdpr-text { font-size: 0.73rem; color: #8a93a3; margin-top: 12px; line-height: 1.5; }
.gdpr-text a { color: var(--navy); text-decoration: underline; font-weight: 600; }
.btn-send { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%); color: #fff; border: none; padding: 14px; border-radius: 9px; font-weight: 700; font-size: 0.84rem; letter-spacing: .06em; text-transform: uppercase; cursor: pointer; transition: .25s; margin-top: 14px; box-shadow: 0 8px 18px rgba(227,28,37,.28); }
.btn-send:hover { box-shadow: 0 10px 24px rgba(227,28,37,.4); transform: translateY(-2px); }

.quick-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 14px; }
.quick-btn { display: flex; align-items: center; justify-content: center; gap: 7px; padding: 11px 10px; border-radius: 9px; font-size: 0.78rem; font-weight: 700; cursor: pointer; border: 1.5px solid transparent; transition: .2s; text-decoration: none; }
.quick-btn:hover { transform: translateY(-2px); }
.quick-btn.call-btn { background: var(--navy-light, #eef1f7); color: var(--navy); border-color: var(--navy-light, #eef1f7); }
.quick-btn.call-btn:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.quick-btn.wa-btn { background: #e9f9f6; color: #128c7e; border-color: #e9f9f6; }
.quick-btn.wa-btn:hover { background: #128c7e; color: #fff; border-color: #128c7e; }

.share-save-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ss-btn { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 15px 12px; background: #fff; border: 1px solid var(--border, #e5e7eb); border-radius: 14px; cursor: pointer; box-shadow: 0 4px 14px rgba(16,24,40,.05); transition: .18s; }
.ss-btn:hover { box-shadow: 0 8px 22px rgba(16,24,40,.1); transform: translateY(-2px); border-color: var(--border-dark, #d8dce6); }
.ss-icon { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; flex-shrink: 0; transition: .22s; }
.share-icon { background: var(--navy-light, #eef1f7); color: var(--navy); }
.ss-btn:hover .share-icon { background: var(--navy); color: #fff; }
.save-icon { background: #fdeef2; color: var(--red); }
.ss-btn:hover .save-icon { background: var(--red); color: #fff; }
.ss-btn.saved .save-icon { background: var(--red); color: #fff; }
.ss-label { font-size: 0.8rem; font-weight: 700; color: var(--navy); }

/* Share dropdown menu (new) */
.share-menu { position: absolute; top: calc(100% + 8px); left: 0; background: #fff; border: 1px solid var(--border, #e5e7eb); border-radius: 12px; box-shadow: 0 12px 30px rgba(16,24,40,.15); padding: 8px; width: 190px; z-index: 20; opacity: 0; visibility: hidden; transform: translateY(6px); transition: .2s; }
.share-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.share-menu a { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 8px; font-size: 0.83rem; font-weight: 600; color: var(--navy); text-decoration: none; }
.share-menu a:hover { background: var(--navy-light, #eef1f7); color: var(--red); }
.share-menu a i { width: 16px; text-align: center; color: var(--red); }

.related-card { background: #fff; border: 1px solid var(--border, #e5e7eb); border-radius: 14px; overflow: hidden; box-shadow: 0 6px 24px rgba(16,24,40,.06); }
.related-header { display: flex; align-items: center; gap: 10px; padding: 18px 20px 14px; font-size: 0.95rem; font-weight: 700; color: var(--navy); }
.related-header i { color: var(--red); font-size: 1rem; background: #fdeef2; width: 30px; height: 30px; border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.related-divider { height: 1px; background: var(--border, #e5e7eb); margin: 0 20px 6px; }
.related-item { display: flex; align-items: center; gap: 13px; padding: 12px 20px; text-decoration: none; transition: .2s; }
.related-item:not(:last-child) { border-bottom: 1px solid var(--navy-light, #eef1f7); }
.related-item:hover { background: #f7f7f9; padding-left: 24px; }
.related-icon { width: 38px; height: 38px; border-radius: 10px; background: var(--navy-light, #eef1f7); color: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; flex-shrink: 0; transition: .2s; }
.related-item:hover .related-icon { background: var(--red); color: #fff; }
.related-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.related-text { font-size: 0.85rem; font-weight: 600; color: var(--navy); line-height: 1.3; transition: .2s; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.related-item:hover .related-text { color: var(--red); }
.related-price { font-size: 0.74rem; color: var(--gray, #6b7280); font-weight: 500; }
.related-arrow { margin-left: auto; color: var(--border-dark, #d8dce6); font-size: 0.75rem; flex-shrink: 0; transition: .2s; }
.related-item:hover .related-arrow { color: var(--red); transform: translateX(3px); }

/* Fix: empty-state text was flush left with no padding — now matches related-item padding */
.related-card .no-related {
    padding: 4px 20px 18px;
    margin: 0;
    color: var(--gray, #6b7280);
    font-size: 0.83rem;
}

@media (max-width: 575px) {
    .block-body { padding: 16px; }
    .block-head { padding: 13px 16px; }
    .sidebar-body { padding: 18px; }
    .sidebar-price-header { padding: 18px 20px; }
}

/* ===== ALL-PACKAGES LISTING PAGE ===== */
.listing-wrap { background: var(--bg, #f5f6fa); padding: 30px 0 70px; }
.listing-wrap .container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.listing-row { display: grid; grid-template-columns: 270px 1fr; gap: 26px; align-items: start; }
@media (max-width: 991px) { .listing-row { grid-template-columns: 1fr; } }

.filter-sidebar { background: #fff; border-radius: 14px; border: 1px solid var(--border, #e5e7eb); box-shadow: 0 4px 20px rgba(16,24,40,.06); overflow: hidden; }
.filter-head { display: none; align-items: center; justify-content: space-between; padding: 14px 18px; background: var(--navy); color: #fff; font-weight: 700; font-size: 0.9rem; cursor: pointer; position: relative; transition: background .25s; user-select: none; }
.filter-head:active { background: #1f2a44; }
.filter-head.open { background: var(--red); }
.filter-head .chev-ic { transition: transform .3s; }
.filter-head.open .chev-ic { transform: rotate(180deg); }
.filter-count-badge { background: #fff; color: var(--red); font-size: 0.68rem; font-weight: 800; width: 20px; height: 20px; border-radius: 50%; display: none; align-items: center; justify-content: center; margin-left: 8px; }
.filter-count-badge.show { display: inline-flex; }
.filter-body { padding: 6px 0; }
.filter-group { padding: 18px 20px; border-bottom: 1px solid var(--border, #e5e7eb); }
.filter-group:last-child { border-bottom: none; }
.filter-title { font-size: 0.86rem; font-weight: 700; color: var(--navy); margin: 0 0 14px; display: flex; align-items: center; gap: 8px; }
.filter-title::before { content: ''; width: 4px; height: 14px; background: var(--red); border-radius: 2px; }
.filter-check { display: flex; align-items: center; gap: 10px; padding: 7px 0; cursor: pointer; font-size: 0.83rem; color: #444d5e; transition: color .2s; }
.filter-check:hover { color: var(--red); }
.filter-check input[type="checkbox"] { width: 17px; height: 17px; accent-color: var(--red); cursor: pointer; flex-shrink: 0; }
.filter-clear { display: block; width: calc(100% - 40px); margin: 6px 20px 16px; background: none; border: 1.5px solid var(--border-dark, #d8dce6); color: var(--gray, #6b7280); font-size: 0.78rem; font-weight: 700; padding: 9px; border-radius: 7px; cursor: pointer; transition: .2s; }
.filter-clear:hover { border-color: var(--red); color: var(--red); }
@media (max-width: 991px) {
    .filter-head { display: flex; }
    .filter-body { max-height: 0; overflow: hidden; transition: max-height .35s ease; padding: 0; }
    .filter-body.expanded { max-height: 2000px; padding: 6px 0; }
}

.results-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; flex-wrap: wrap; gap: 10px; }
.results-count { font-size: 0.86rem; color: #444d5e; }
.results-count strong { color: var(--navy); font-weight: 700; }
.sort-select-wrap { position: relative; }
.sort-select { appearance: none; background: #fff; border: 1.5px solid var(--border-dark, #d8dce6); color: var(--navy); font-weight: 600; font-size: 0.82rem; padding: 9px 34px 9px 14px; border-radius: 8px; cursor: pointer; transition: border-color .2s; }
.sort-select:focus { border-color: var(--red); outline: none; }
.sort-select-wrap::after { content: '\f0d7'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; right: 13px; top: 50%; transform: translateY(-50%); color: var(--red); font-size: 0.75rem; pointer-events: none; }

.package-list { display: flex; flex-direction: column; gap: 22px; }
.package-card { background: #fff; border-radius: 16px; border: 1px solid var(--border, #e5e7eb); box-shadow: 0 4px 20px rgba(16,24,40,.07); overflow: hidden; transition: .3s; }
.package-card:hover { box-shadow: 0 16px 40px rgba(16,24,40,.14); transform: translateY(-3px); }
.package-card-inner { display: grid; grid-template-columns: 400px 1fr 240px; gap: 0; }
@media (max-width: 991px) { .package-card-inner { grid-template-columns: 1fr; } }

.package-thumb { position: relative; height: 100%; min-height: 280px; overflow: hidden; }
.package-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.package-card:hover .package-thumb img { transform: scale(1.08); }
.package-thumb::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(16,24,40,.5) 0%, transparent 40%); }
.duration-chip { position: absolute; top: 16px; left: 16px; background: rgba(255,255,255,.95); color: var(--navy); font-size: 0.72rem; font-weight: 700; padding: 6px 13px; border-radius: 20px; display: flex; align-items: center; gap: 6px; z-index: 2; box-shadow: 0 4px 10px rgba(16,24,40,.15); }
.duration-chip i { color: var(--red); }
@media (max-width: 991px) { .package-thumb { height: 220px; min-height: 220px; } }
@media (max-width: 575px) { .package-thumb { height: 190px; min-height: 190px; } }

.package-content { padding: 22px 24px; display: flex; flex-direction: column; border-right: 1px solid var(--border, #e5e7eb); }
@media (max-width: 991px) { .package-content { border-right: none; border-bottom: 1px solid var(--border, #e5e7eb); } }
.pkg-title { font-family: 'Playfair Display', Georgia, serif; font-size: 1.18rem; font-weight: 700; color: var(--navy); margin: 0 0 6px; line-height: 1.3; }
.pkg-title a { color: inherit; text-decoration: none; transition: color .2s; }
.pkg-title a:hover { color: var(--red); }
.pkg-location { font-size: 0.8rem; color: var(--gray, #6b7280); margin-bottom: 14px; display: flex; align-items: center; gap: 6px; }
.pkg-location i { color: var(--red); font-size: 0.74rem; }
.pkg-features { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.pkg-features li { font-size: 0.84rem; color: #444d5e; display: flex; align-items: flex-start; gap: 9px; line-height: 1.5; }
.pkg-features li i { color: #f5a623; font-size: 0.78rem; margin-top: 3px; flex-shrink: 0; }
.pkg-more-link { font-size: 0.8rem; font-weight: 700; color: var(--red); text-decoration: none; margin-top: 10px; display: inline-flex; align-items: center; gap: 5px; width: fit-content; transition: gap .2s; }
.pkg-more-link:hover { gap: 8px; }

.pkg-price-box { background: linear-gradient(180deg, var(--navy-light, #eef1f7) 0%, #fff 100%); padding: 24px 22px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; text-align: center; position: relative; }
.pkg-price-divider { width: 50px; height: 1px; background: var(--border-dark, #d8dce6); }
.pkg-price-wrap { display: flex; flex-direction: column; align-items: center; background: #fff; border: 1.5px solid var(--border, #e5e7eb); border-radius: 12px; padding: 12px 20px; width: 100%; z-index: 2; }
.pkg-price-lbl { font-size: 0.68rem; color: var(--gray, #6b7280); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; font-weight: 600; }
.pkg-old-price { font-size: 0.78rem; color: var(--red); font-weight: 600; }
.btn-view-details { background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%); color: #fff; border: none; padding: 12px 26px; border-radius: 8px; font-size: 0.82rem; font-weight: 700; letter-spacing: .03em; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: .25s; box-shadow: 0 8px 18px rgba(227,28,37,.3); width: 100%; justify-content: center; }
.btn-view-details:hover { box-shadow: 0 10px 24px rgba(227,28,37,.42); transform: translateY(-2px); color: #fff; }

@media (max-width: 991px) {
    .pkg-price-box { border-top: 1px solid var(--border, #e5e7eb); flex-direction: row; flex-wrap: nowrap; justify-content: space-between; align-items: center; text-align: left; padding: 16px 20px; background: var(--navy-light, #eef1f7); gap: 14px; }
    .pkg-price-divider { display: none; }
    .pkg-price-wrap { align-items: flex-start; width: auto; border: none; padding: 0; background: transparent; flex-shrink: 0; }
    .btn-view-details { width: auto; }
}
@media (max-width: 575px) { .btn-view-details { padding: 11px 18px; font-size: 0.78rem; } }

.pkg-pagination-wrap { display: flex; justify-content: center; margin-top: 34px; }
.pkg-pagination-wrap nav { display: flex; }
.tp-card-link { text-decoration: none; display: block; }
.tp-badge-icon { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }


.price-range-inputs {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}
.price-input-wrap {
    flex: 1;
    min-width: 0;
}
.price-input-wrap label {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--gray, #6b7280);
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 5px;
}
.price-input {
    width: 100%;
    padding: 9px 10px;
    border: 1.5px solid var(--border, #e5e7eb);
    border-radius: 7px;
    font-size: 0.85rem;
    color: var(--navy);
    transition: border-color .2s;
}
.price-input:focus {
    border-color: var(--red);
    outline: none;
}
.price-range-sep {
    color: var(--gray, #6b7280);
    font-size: 0.9rem;
    padding-bottom: 9px;
}
.price-apply-btn {
    display: block;
    width: 100%;
    margin-top: 10px;
    background: var(--navy);
    color: #fff;
    border: none;
    padding: 8px;
    border-radius: 7px;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s;
}
.price-apply-btn:hover {
    background: var(--red);
}


.dropdown-submenu { position: relative; }
.pkg-count { font-size: 0.72rem; color: var(--gray, #6b7280); margin-left: 4px; }
.submenu-list {
    list-style: none;
    margin: 0;
    padding: 4px 0 6px 30px;
    display: none;
}
.dropdown-submenu:hover .submenu-list { display: block; }
.submenu-list li a {
    display: block;
    padding: 6px 10px;
    font-size: 0.82rem;
    color: var(--gray, #6b7280);
    text-decoration: none;
    border-radius: 5px;
    transition: background .15s, color .15s;
}
.submenu-list li a:hover { background: var(--light, #f7f7f9); color: var(--red); }
.submenu-list li a.view-all-sub {
    color: var(--red);
    font-weight: 700;
    font-size: 0.78rem;
}


.search-field {
    position: relative;
}

.search-field select.form-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 26px;
    cursor: pointer;
    background-image: none; /* remove default browser arrow if any */
}

.search-field::after {
    content: '\f078'; /* fa-chevron-down */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 8px;
    bottom: 14px;
    color: var(--red);
    font-size: 0.72rem;
    pointer-events: none;
}

@media (max-width: 767px) {
    .search-field::after {
        bottom: 10px;
    }
}


.pkg-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 34px;
    flex-wrap: wrap;
}

.pkg-page-btn {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--navy);
    background: #fff;
    border: 1px solid var(--border-dark, #d8dce6);
    transition: .2s;
}

.pkg-page-btn:hover:not(.disabled):not(.active):not(.dots) {
    border-color: var(--red);
    color: var(--red);
}

.pkg-page-btn.active {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
    box-shadow: 0 6px 14px rgba(227, 28, 37, .25);
}

.pkg-page-btn.disabled {
    color: #c4c9d4;
    background: #f7f7f9;
    cursor: not-allowed;
    border-color: var(--border, #e5e7eb);
}

.pkg-page-btn.dots {
    border: none;
    background: transparent;
    cursor: default;
    color: var(--gray, #6b7280);
}

@media (max-width: 480px) {
    .pkg-page-btn {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }
}