: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;
    }
}