/* ============ TOKENS ============ */
:root {
    --ink: #16213E;
    /* deep indigo - primary dark */
    --dusk: #3D2645;
    /* dusk plum - gradient partner */
    --marble: #FAF8F3;
    /* warm off-white background */
    --marble-deep: #F1ECE1;
    --gold: #f70759;
    /* primary accent - used on every button */
    --gold-soft: #FF4F86;
    /* lighter accent for hover / highlights */
    --sandstone: #9A3324;
    /* red-sandstone accent, used sparingly */
    --ink-text: #1B1B22;
    --muted: #5C5C68;
    --line: #E7E1D2;

    --font-display: 'Inter', system-ui, -apple-system;
    /* headings */
    --font-accent: 'Inter', system-ui, -apple-system;
    /* emphasis text */
    --font-body: 'Inter', system-ui, -apple-system;
    /* paragraph text */

    --container: 1240px;
    --topbar-h: 40px;
    --nav-h: 78px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var('Inter', sans-serif);
}

/* p{
    font-family: 'Lato', sans-serif;
} */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.btn-gold {
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: .02em;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system;
    color: var(--ink-text);
    background: var(--marble);
    -webkit-font-smoothing: antialiased;
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

.wrap {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
}

:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

/* ============ TOP BAR ============ */
.topbar {
    background: #f70759;
    color: #ffffff;
    height: var(--topbar-h);
    font-size: 15px;
    position: relative;
    z-index: 60;
}

.topbar .wrap {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar-contact {
    display: flex;
    align-items: center;
    gap: 22px;
}

.topbar-contact a {
    display: flex;
    align-items: center;
    gap: 7px;
    color: white;
    transition: color .2s ease;
    white-space: nowrap;
}

.topbar-contact svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    opacity: .85;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* ---- Currency Selector ---- */
.topbar-currency {
    position: relative;
}

.currency-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    /* background: rgb(54, 44, 44); */
    border: 1px solid rgb(255, 255, 255);
    color: #fff;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 20px;
    cursor: pointer;
    transition: background .2s ease;
}

.currency-toggle:hover {
    background: rgba(255, 255, 255, .25);
}

.currency-toggle svg {
    width: 12px;
    height: 12px;
    transition: transform .2s ease;
}

.currency-toggle.open svg {
    transform: rotate(180deg);
}

.currency-list {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(22, 33, 62, .2);
    list-style: none;
    margin: 0;
    padding: 6px;
    min-width: 110px;
    max-height: 240px;
    overflow-y: auto;
    display: none;
    z-index: 80;
}

.currency-list.open {
    display: block;
}

.currency-list li {
    padding: 9px 12px;
    border-radius: 6px;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink, #16213E);
    cursor: pointer;
    white-space: nowrap;
    transition: background .15s ease;
}

.currency-list li:hover {
    background: var(--marble-deep, #F1ECE1);
}

.currency-list li.selected {
    color: var(--gold, #f70759);
}

.topbar-social {
    display: flex;
    align-items: center;
    gap: 14px;
}

.topbar-social a {
    width: 28px;
    height: 28px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid white;
    /* border-radius: 50%; */
    /* transition: all .2s ease; */
}

/* .topbar-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ink);
} */

.topbar-social svg {
    width: 13px;
    height: 13px;
}

/* ---- Mobile ---- */
@media (max-width: 700px) {
    .topbar-right {
        gap: 10px;
    }

    @media (max-width: 700px) {
        .topbar-contact a:first-child {
            display: none;
        }
    }

    @media (max-width: 700px) {
        .topbar-contact a span {
            display: inline !important;
            margin-left: -4px;
        }
    }

    .currency-toggle {
        font-size: 12px;
        padding: 4px 8px;
        gap: 4px;
    }
}

/* ============ NAVBAR ============ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    height: var(--nav-h);
    background: white;
    border-bottom: 1px solid transparent;
    transition: box-shadow .25s ease, border-color .25s ease, background .25s ease;
}

.navbar.is-scrolled {
    box-shadow: 0 6px 24px rgba(22, 33, 62, .08);
    border-bottom-color: var(--line);
}

.navbar .wrap {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 250px;
}

.brand-mark {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
}

.brand-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    color: var(--ink);
    line-height: 1;
}



.brand-sub {
    display: block;
    font-family: var(--font-body);
    font-size: 10.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 38px;
}

.nav-links a {
    position: relative;
    font-size: 17px;
    font-weight: 500;
    color: var(--ink-text);
    padding: 8px 0;
    transition: color .2s ease;
}

/* .nav-links a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: width .25s ease;
        } */

.nav-links a:hover {
    color: var(--ink);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 24px;
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #f70759;
    color: white;
    font-weight: 600;
    font-size: 15px;
    padding: 12px 26px;
    border-radius: 30px;
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
    box-shadow: 0 8px 20px rgba(201, 162, 39, .25);
    transition: all 0.3s ease;
}

@media(max-width:768px) {
    .btn-gold:hover {
        background: transparent;
        border: 2px solid silver;
        color: rgb(0, 0, 0);
        transform: translateY(-2px);
        box-shadow: 0 10px 24px rgba(192, 192, 192, 0.35);
    }
}

.btn-gold:hover {
    background: transparent;
    border: 2px solid silver;
    color: rgb(0, 0, 0);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(192, 192, 192, 0.35);
}

@media (max-width: 920px) {
    .mobile-only-btn {
        color: #fff !important;
    }
}



.nav-links .mobile-only-btn {
    display: none;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.nav-toggle svg {
    width: 24px;
    height: 24px;
    color: var(--ink);
}

.nav-toggle .icon-close {
    display: none;
}

.nav-toggle.is-open .icon-burger {
    display: none;
}

.nav-toggle.is-open .icon-close {
    display: block;
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(22, 33, 62, .45);
    z-index: 45;
    opacity: 0;
    transition: opacity .25s ease;
}

.nav-overlay.is-visible {
    display: block;
    opacity: 1;
}

/* ================= DROPDOWN ================= */

.nav-dropdown {
    position: relative;
}

.dropdown-btn {
    background: none;
    border: none;
    font-size: 17px;
    font-weight: 500;
    color: var(--ink-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: inherit;
}

.dropdown-btn span {
    font-size: 10px;
    transition: .3s;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #fff;
    border-radius: 12px;
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .3s;
    z-index: 999;
}

.dropdown-menu a {
    display: block;
    padding: 12px 18px;
    font-size: 15px;
    color: #222;
}

.dropdown-menu a:hover {
    background: #f7f7f7;
    color: #f70759;
}

/* Desktop Hover */

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown:hover .dropdown-btn span {
    transform: rotate(180deg);
}

@media(max-width:920px) {

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-dropdown {
        width: 100%;
    }

    .dropdown-btn {
        width: 100%;
        justify-content: space-between;
        padding: 12px 0;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        box-shadow: none;
        background: #f8f8f8;
        border-radius: 10px;
        margin-top: 8px;
        width: 100%;
    }

    .nav-dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 12px 15px;
        font-size: 14px;
    }

}

/* ============ HERO ============ */
.hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(100deg, rgba(16, 20, 40, .88) 0%, rgb(0 0 0 / 83%) 45%, rgba(16, 20, 40, .35) 100%),
        url('https://images.pexels.com/photos/18722577/pexels-photo-18722577.jpeg?auto=compress&cs=tinysrgb&w=1920') center 65% / cover no-repeat;
    min-height: calc(100vh - var(--topbar-h) - var(--nav-h));
    display: flex;
    align-items: center;
}

.hero-monument {
    display: none;
}

.hero .wrap {
    position: relative;
    z-index: 5;
    width: 100%;
    /* max-width: 760px; */
    padding-top: 16px;
    padding-bottom: 100px;
    display: flex;
    flex-direction: column;
    /* align-items: flex-start; */
    text-align: left;
}

#home .wrap {
    align-items: flex-start !important;
    text-align: left !important;
}

.hero-buttons {
    justify-content: flex-start !important;
}

.hero-trust-row {
    justify-content: flex-start !important;
}

.hero-eyebrow {
    border-color: rgba(212, 175, 55, 0.6);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 20px;
    border: 1px solid white;
    border-radius: 30px;
    color: white;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 26px;
    background: linear-gradient(90deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* background: white; */
}


.eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #D4AF37;
    animation: dotBlink 1.4s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes dotBlink {
    0% {
        background: #D4AF37;
        box-shadow: 0 0 6px #D4AF37;
    }

    50% {
        background: #3a2e00;
        box-shadow: none;
    }

    100% {
        background: #D4AF37;
        box-shadow: 0 0 6px #D4AF37;
    }
}

.hero h1 {
    font-family: var(--font-display);
    font-weight: 700;
    color: #FBF8F0;
    font-size: clamp(30px, 4.6vw, 38px);
    line-height: 1.18;
    max-width: 720px;
    margin-bottom: 22px;
}

.hero h1 em {
    font-style: normal;
    font-family: var(--font-display);
    color: white;
    font-weight: 800;
}

.hero p {
    font-size: 18.5px;
    line-height: 1.7;
    color: #ffffff;
    max-width: 680px;
    margin-bottom: 16px;
}

.hero p .accent {
    color: rgb(255, 255, 255);
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 22px;
    margin-bottom: 26px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 26px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14.5px;
    transition: transform .2s ease, opacity .2s ease;
}

.hero-btn svg {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
}

.hero-btn:hover {
    /* transform: translateY(-2px); */
    background: rgb(247, 7, 89);
}

.hero .btn-gold.hero-btn {
    padding: 13px 26px;
    font-size: 14.5px;
}

.hero-btn-whatsapp {
    background: #25D366;
    color: #fff;
}

.hero-btn-whatsapp:hover {
    background: #1FBE5A;
}

.hero-btn-outline {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, .55);
    color: #fff;
}

.hero-btn-outline:hover {
    background: rgba(255, 255, 255, .1);
}

.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
}

.hero-trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-body);
    font-size: 13.5px;
    color: #ffffff;
}

.hero-trust-row svg {
    width: 15px;
    height: 15px;
    color: white;
    flex-shrink: 0;
}

/* decorative jali divider between nav and hero */
.jali-strip {
    height: 6px;
    width: 100%;
    background-image: repeating-linear-gradient(135deg, var(--gold) 0 6px, transparent 6px 14px);
    opacity: .55;
}



/* ---- Mobile ---- */
@media (max-width: 768px) {
    .hero .wrap {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }

    #home .wrap {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }

    .hero {
        min-height: auto !important;
        height: auto !important;
    }



    .hero-eyebrow {
        font-size: 9px;
        padding: 7px 14px;
    }

    .hero h1 {
        font-size: 22px;
        line-height: 1.25;
        margin-bottom: 14px;
    }

    .hero p {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 10px;
    }

    /* Buttons full width */
    .hero-buttons {
        flex-direction: column;
        /* align-items: stretch; */
        gap: 10px;
        margin-top: 16px;
        width: 100%;
        margin-bottom: 18px;
    }

    .hero-btn {
        justify-content: center;
        padding: 13px 20px;
        font-size: 14px;
        border-radius: 30px;
    }

    /* Trust row horizontal scroll */
    .hero-trust-row {
        display: block;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 14px;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .hero-trust-row::-webkit-scrollbar {
        display: none;
    }

    .hero-trust-row span {
        font-size: 11.5px;
        white-space: nowrap;
        flex-shrink: 0;
    }
}

/* ============ MOBILE ============ */
@media (max-width: 920px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: min(320px, 82vw);
        background: var(--marble);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 6px;
        padding: calc(var(--topbar-h) + 28px) 30px 30px;
        transform: translateX(100%);
        transition: transform .3s ease;
        z-index: 55;
        box-shadow: -12px 0 40px rgba(22, 33, 62, .18);
    }

    .nav-links.is-open {
        transform: translateX(0);
    }

    .nav-links a {
        width: 100%;
        padding: 14px 0;
        font-size: 17px;
        border-bottom: 1px solid var(--line);
    }

    .nav-links a::after {
        display: none;
    }

    .nav-cta .btn-gold.desktop-only {
        display: none;
    }

    .btn-gold {
        color: white;
    }

    .nav-links .mobile-only-btn {
        display: inline-flex;
        margin-top: 18px;
        width: 100%;
        padding: 14px 0;
    }

    .nav-toggle {
        display: flex;
    }
}

@media (max-width: 700px) {
    .topbar-contact a span {
        display: none;
    }

    .topbar-contact {
        gap: 16px;
    }

    .topbar-social {
        gap: 10px;
    }

    :root {
        --nav-h: 68px;
    }

    .brand-text {
        font-size: 19px;
    }

    .brand-sub {
        font-size: 9.5px;
    }

    /* .hero .wrap {
        padding-bottom: 170px;
        padding-top: 48px;
    } */
}

@media (max-width:420px) {
    .topbar .wrap {
        padding: 0 16px;
    }

    .navbar .wrap {
        padding: 0 16px;
    }

    /* .hero .wrap {
        padding: 0 18px;
        padding-bottom: 19px;
        padding-top: 14px;
    } */
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    * {
        transition-duration: .01ms !important;
    }
}

/* strip */
.stats-strip {
    background: white;
    padding: 48px 0;
    border-top: 1px solid var(--line, #ffffff);
    border-bottom: 1px solid white;
}

.stats-row {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 8px;
}

.stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 0 18px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 64px;
    background: var(--line, #E7E1D2);
}

.stat-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: #f70759;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 15px 35px rgba(255, 45, 122, .25);
}

.stat-item:hover .stat-icon {
    transform: translateY(-6px);
    transition: .35s ease;
}

.stat-icon svg {
    width: 24px;
    height: 24px;
    color: var(--gold, #f70759);
}

.stat-number {
    font-family: var(--font-display, 'Poppins', sans-serif);
    font-weight: 800;
    font-size: clamp(20px, 2.6vw, 23px);
    color: black;
    line-height: 1.1;
}

.stat-label {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 13.5px;
    font-weight: 500;
    color: black;
}

/* ---- Tablet: 2x2 grid ---- */
/* ---- Tablet: 2x2 grid ---- */
@media (max-width: 860px) {
    .stats-row {
        display: grid !important;
        flex-direction: unset !important;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 16px;
        row-gap: 32px;
    }

    .stat-item {
        flex: unset;
        padding: 0 14px;
    }

    /* divider hata do right-column items se (2nd, 4th) */
    .stat-item:nth-child(even)::after {
        display: none;
    }

    /* last row me horizontal divider na ho */
    .stat-item:nth-child(-n+2)::before {
        content: '';
        position: absolute;
        bottom: -16px;
        left: 20%;
        right: 20%;
        height: 1px;
        background: var(--line, #E7E1D2);
    }
}

/* ---- Mobile ---- */
@media (max-width: 480px) {
    .stats-strip {
        padding: 36px 0;
    }

    .stat-icon {
        width: 46px;
        height: 46px;
    }

    .stat-icon svg {
        width: 20px;
        height: 20px;
    }

    .stat-number {
        font-size: 19px;
    }

    .stat-label {
        font-size: 12.5px;
    }
}

/* packages css */

.packages-section {
    background: #fff;
    padding: 40px 0;
}

.packages-header {
    text-align: center;
    margin: 0 auto 36px;
}

.packages-section .wrap {
    max-width: 1400px;
    padding-left: 40px;
    padding-right: 40px;
}

.packages-header h2 {
    font-weight: 700;
    font-size: clamp(24px, 3vw, 35px);
    color: #111827;
    margin-bottom: 12px;
}

.packages-header p {
    font-size: 15.5px;
    line-height: 1.6;
    color: #000000;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* ---- Card ---- */
.package-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    padding-bottom: 19px;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
    cursor: pointer;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, .1);
}

/* ---- Image ---- */
.package-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.package-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.package-card:hover .package-img img {
    transform: scale(1.06);
}

.package-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #f70759;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 5px 11px;
    border-radius: 20px;
    z-index: 2;
}

.package-badge.top-ranked {
    background: #f70759;
}

.package-tag {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(255, 255, 255, .88);
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    z-index: 2;
}

/* ---- Body ---- */
.package-body {
    padding: 14px 14px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px;
}

.package-body h3 {
    font-weight: 700;
    font-size: 16.5px;
    color: #111827;
    line-height: 1.35;
    margin: 0;
}

.package-meta-line {
    font-size: 15px;
    color: #000000;
    line-height: 1.4;
    font-weight: 500;
}

.meta-dot {
    color: #000000;
    margin: 0 2px;
}

.package-bottom-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
    margin-top: 4px;
}

.package-stars {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ---- Row 1: Duration + Skip the Line ---- */
.package-info-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.pkg-skip {
    margin-left: 67px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13.5px;
    color: #374151;
    font-weight: 500;
}

.pkg-duration {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13.5px;
    color: #374151;
    font-weight: 500;
}

.pkg-duration svg,
.pkg-skip svg {
    width: 14px;
    height: 14px;
    color: #6b7280;
    flex-shrink: 0;
}

/* ---- Row 2: Stars + Price ---- */
.package-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
}

/* .package-stars {
    display: flex;
    align-items: center;
    gap: 4px;
} */

.stars-filled {
    color: #1a1a2e;
    font-size: 16px;
}

.stars-count {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a2e;
}

.package-pricing {
    display: flex;
    align-items: baseline;
    gap: 5px;
    text-align: right;
}

.price-from {
    font-size: 14px;
    color: #000000;
}

.price-old {
    font-size: 15.5px;
    color: #000000;
    text-decoration: line-through;
}

.price-new {
    font-size: 19px;
    font-weight: 800;
    color: #f70759;
    line-height: 1;
}

.price-new em {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    color: #000000;
}

/* ---- Row 3: Price note ---- */
.price-note {
    font-size: 12.5px;
    color: #020202;
    margin: 0;
    text-align: center;
}

/* ---- Tablet: 2 columns ---- */
@media (max-width: 960px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

/* ---- Mobile: 1 column ---- */
@media (max-width: 560px) {
    .packages-section .wrap {
        padding-left: 12px;
        padding-right: 12px;
    }

    .packages-section {
        padding: 32px 0;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .package-img {
        height: 220px;
    }

    .package-body {
        padding: 12px 12px 16px;
        gap: 7px;
    }

    .package-body h3 {
        font-size: 15px;
    }

    .package-meta-line {
        font-size: 15.5px;
    }

    .stars-filled {
        font-size: 15px;
    }

    .stars-count {
        font-size: 15px;
    }

    .price-from {
        font-size: 15px;
    }

    .price-old {
        font-size: 15px;
    }

    .price-new {
        font-size: 15px;
    }

    .package-bottom-row {
        align-items: center;
    }

    /* Row 1: Duration + Skip side by side */
    .package-info-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        flex-wrap: nowrap;
    }

    .pkg-duration {
        font-size: 13px;
    }

    .pkg-skip {
        font-size: 13px;
        margin-right: 45px;
    }

    /* Row 2: Stars + Price side by side */
    .package-price-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: row;
        gap: 8px;
    }

    /* .price-new {
        font-size: 18px;
    } */

    /* Row 3: Price note */
    .price-note {
        font-size: 12px;
        margin: 0;
    }

    .packages-header {
        margin-bottom: 22px;
    }
}

/* cta */
/* =========================
   CTA SECTION
========================= */

.tour-cta {
    position: relative;
    padding: 18px 0;
    overflow: hidden;

    background:
        linear-gradient(135deg,
            #1a1022 0%,
            #2a1637 50%,
            #3b0d2d 100%);
}

.tour-cta-overlay {
    position: absolute;
    inset: 0;

    /* background: linear-gradient(rgba(14, 19, 39, 0.80),
            rgba(14, 19, 39, 0.85)); */
}

.tour-cta-content {
    position: relative;
    z-index: 2;

    max-width: 850px;
    margin: auto;
    text-align: center;

    color: #fff;
}

/* TAG */

.cta-tag {
    display: inline-block;

    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(10px);

    color: #fff;

    padding: 10px 18px;
    border-radius: 50px;

    font-size: 13px;
    font-weight: 600;

    margin-bottom: 22px;
}

/* HEADING */

.tour-cta h2 {
    font-family: var(--font-display, 'Poppins', sans-serif);

    font-size: clamp(34px, 5vw, 46px);
    line-height: 1.2;

    font-weight: 800;

    margin-bottom: -8px;

    color: #fff;
}

/* TEXT */

.tour-cta p {
    max-width: 650px;
    margin: 0 auto;

    font-size: 20px;
    line-height: 1.8;

    color: rgba(255, 255, 255, .92);
}

/* BUTTONS */

.cta-buttons {
    margin-top: 17px;

    display: flex;
    justify-content: center;
    gap: 18px;
}

/* COMMON BUTTON */

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    text-decoration: none;

    padding: 16px 30px;
    border-radius: 999px;

    font-size: 15px;
    font-weight: 700;

    transition: all .35s ease;
}

/* WHATSAPP */

.whatsapp-btn {
    background: #f70759;
    color: #fff;

    /* box-shadow: 0 12px 30px #f70759; */
}

/* .whatsapp-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(37, 211, 102, .45);
} */

/* CALL */

.call-btn {
    background: #fff;
    color: #16213E;
}

.call-btn:hover {
    transform: translateY(-4px);
    background: #f5f5f5;
}

.email-btn {
    background: #f70759;
    color: #fff;
    border: 2px solid #f70759;
}

.email-btn:hover {
    background: transparent;
    color: #f70759;
}

/* ICONS */

.cta-btn i {
    font-size: 18px;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .tour-cta {
        padding: 15px 0;
    }

    .tour-cta h2 {
        font-size: 34px;
    }

    .tour-cta p {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}


/* why choose us */
.why-section {
    background: white;
    padding: 52px 0;
}

.why-header {
    text-align: center;
    margin-bottom: 50px;
}

.why-header h2 {
    /* font-family: 'Cormorant Garamond', serif; */
    font-weight: 700;
    font-size: clamp(26px, 3.4vw, 35px);
    color: #000000;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid black;
    border-radius: 14px;
    padding: 32px 22px;
    text-align: center;
    transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, .06);
    border-color: rgba(247, 7, 89, .35);
}

.why-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #f70759;
    border: 1px solid rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon svg {
    width: 26px;
    height: 26px;
    color: #ffffff;
}

.why-card h3 {
    font-family: var(--font-display, 'Poppins', sans-serif);
    font-weight: 700;
    font-size: 18px;
    color: #000000;
    margin-bottom: 12px;
    line-height: 1.3;
}

.why-card p {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
}

/* ---- Tablet: 2 columns ---- */
@media (max-width: 860px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ---- Mobile: 1 column ---- */
@media (max-width: 480px) {
    .why-section {
        padding: 56px 0;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .why-header {
        margin-bottom: 34px;
    }
}

/* travelers partners */
.partners-section {
    background: #F4F6FB;
    padding: 30px 0;
}

.partners-heading {
    text-align: center;
    /* font-family: 'Cormorant Garamond', serif; */
    font-weight: 700;
    font-size: clamp(22px, 2.8vw, 35px);
    color: black;
    margin-bottom: 16px;
}

.partners-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.partner-logo {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
}

.partner-logo img {
    max-width: 100%;
    height: auto;
    /* filter: grayscale(1) opacity(.65);
    transition: filter .25s ease, transform .25s ease; */
}

/* .partner-logo:hover img {
    filter: grayscale(0) opacity(1);
    transform: translateY(-2px);
} */

/* ---- Tablet/Mobile: 2x2 grid ---- */
@media (max-width: 640px) {
    .partners-row {
        flex-wrap: wrap;
    }

    .partner-logo {
        flex: 0 0 calc(50% - 12px);
    }
}

/* read more*/
.guide-section {
    background: white;
    padding: 47px 0;
}

.guide-card {
    max-width: 1287px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--line, #E7E1D2);
    border-top: 4px solid #f70759;
    border-radius: 16px;
    padding: 44px 40px 36px;
    box-shadow: 0 16px 40px rgba(22, 33, 62, .06);
}

.guide-card h2 {
    /* font-family: var(--font-display, 'Poppins', sans-serif); */
    font-weight: 700;
    font-size: clamp(24px, 3vw, 35px);
    color: var(--ink, #16213E);
    line-height: 1.3;
    margin-bottom: 24px;
}

.guide-content {
    position: relative;
    max-height: 260px;
    overflow: hidden;
    transition: max-height .45s ease;
}

.guide-content::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 90px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff);
    transition: opacity .3s ease;
}

.guide-content.is-expanded {
    max-height: 4000px;
}

.guide-content.is-expanded::after {
    opacity: 0;
}

.guide-content p {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 16px;
    line-height: 1.75;
    color: var(--ink-text, #1B1B22);
    margin-bottom: 20px;
}

.guide-extra h3 {
    font-family: var(--font-display, 'Poppins', sans-serif);
    font-weight: 700;
    font-size: 18px;
    color: var(--ink, #16213E);
    margin: 30px 0 12px;
}

.guide-extra p {
    color: black;
    font-size: 15px;
}

.read-more-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 26px auto 0;
    background: none;
    border: none;
    color: #f70759;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    padding: 6px 0;
}

.read-more-btn svg {
    width: 18px;
    height: 18px;
    transition: transform .3s ease;
}

.read-more-btn.is-open svg {
    transform: rotate(180deg);
}

@media (max-width: 640px) {
    .guide-section {
        padding: 56px 0;
    }

    .guide-card {
        padding: 30px 22px 28px;
        border-radius: 14px;
    }

    .guide-content {
        max-height: 300px;
    }
}

/* ticket css */
.tickets-section {
    background: #F4F6FB;
    padding: 10px 0;
}

.tickets-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 12px;
}

.tickets-header h2 {
    /* font-family: var(--font-display, 'Cormorant Garamond', serif); */
    font-weight: 700;
    font-size: clamp(26px, 3.4vw, 35px);
    color: black;
    margin-bottom: 14px;
}

.tickets-header p {
    font-family: var(--font-body, 'Jost', sans-serif);
    font-size: 15.5px;
    color: black;
    line-height: 1.6;
}

.tickets-scroll-hint {
    display: none;
    text-align: right;
    font-family: var(--font-body, 'Jost', sans-serif);
    font-size: 12.5px;
    color: var(--gold, #f70759);
    font-weight: 500;
    margin: 18px 4px 8px;
}

.tickets-table-wrap {
    margin-top: 30px;
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid var(--line, #E7E1D2);
    box-shadow: 0 16px 40px rgba(22, 33, 62, .06);
    background: #fff;
}

.tickets-table {
    width: 100%;
    min-width: 880px;
    border-collapse: collapse;
    font-family: var(--font-body, 'Jost', sans-serif);
}

.tickets-table thead .group-row th {
    background: #f70759;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .03em;
    text-transform: uppercase;
    padding: 16px 14px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.tickets-table thead .group-row th:not(.sticky-col) {
    border-left: 1px solid rgba(255, 255, 255, .15);
}

.tickets-table thead .sub-row th {
    background: #f70759;
    color: #ffffff;
    font-weight: 500;
    font-size: 12.5px;
    padding: 10px 14px 16px;
    text-align: center;
    white-space: nowrap;
}

.tickets-table tbody td {
    padding: 15px 14px;
    text-align: center;
    font-size: 14.5px;
    color: var(--ink-text, #1B1B22);
    border-bottom: 1px solid var(--line, #E7E1D2);
    white-space: nowrap;
}

.tickets-table tbody tr:nth-child(even) {
    background: var(--marble-deep, #F1ECE1);
}

.tickets-table tbody tr:hover {
    background: rgba(247, 7, 89, .05);
}

.tickets-table tbody td strong {
    font-weight: 700;
    color: var(--ink, #16213E);
}

.sticky-col {
    position: sticky;
    left: 0;
    z-index: 2;
    text-align: left !important;
    background: #fff;
    box-shadow: 2px 0 6px rgba(22, 33, 62, .06);
}

thead .sticky-col {
    background: #f70759;
    ;
}

tbody tr:nth-child(even) .sticky-col {
    background: var(--marble-deep, #F1ECE1);
}

tbody tr:hover .sticky-col {
    background: #fff5f8;
}

.closed {
    display: inline-block;
    background: rgba(154, 51, 36, .1);
    color: black;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: .03em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
}

@media (max-width: 880px) {
    .tickets-scroll-hint {
        display: block;
    }
}

@media (max-width: 640px) {
    .tickets-section {
        padding: 56px 0;
    }

    .tickets-table tbody td,
    .tickets-table thead th {
        padding: 12px 10px;
        font-size: 13px;
    }
}


/* reviews */
.reviews-section {
    background: white;
    padding: 30px 0;
}

.avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    /* border: 2px solid #f70759; */
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.reviews-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 50px;
}

.reviews-header h2 {
    /* font-family: var(--font-display, 'Cormorant Garamond', serif); */
    font-weight: 700;
    font-size: clamp(28px, 3.6vw, 35px);
    color: black;
    margin-bottom: 14px;
}

.reviews-header p {
    font-family: var(--font-body, 'Jost', sans-serif);
    font-size: 15.5px;
    line-height: 1.6;
    color: black;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: #fff;
    border: 1px solid var(--line, #E7E1D2);
    border-radius: 14px;
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(22, 33, 62, .08);
}

.stars {
    color: #f70759;
    font-size: 15px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.review-text {
    font-family: var(--font-accent, 'Cormorant Garamond', serif);
    font-style: italic;
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink-text, #1B1B22);
    flex: 1;
    margin-bottom: 22px;
}

.review-footer {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--line, #E7E1D2);
}

.avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--ink, #16213E);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body, 'Jost', sans-serif);
    font-weight: 600;
    font-size: 13.5px;
    flex-shrink: 0;
}

.review-meta {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.review-meta strong {
    font-family: var(--font-body, 'Jost', sans-serif);
    font-size: 14px;
    font-weight: 600;
    color: var(--ink, #16213E);
}

.review-meta span {
    font-family: var(--font-body, 'Jost', sans-serif);
    font-size: 12.5px;
    color: black;
}

.review-cta-card {
    background: linear-gradient(160deg, var(--ink, #16213E), #1B2A4F);
    border-radius: 14px;
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cta-icon {
    width: 38px;
    height: 38px;
    color: var(--gold, #f70759);
    margin-bottom: 16px;
}

.review-cta-card h3 {
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-weight: 700;
    font-size: 22px;
    color: #FBF8F0;
    margin-bottom: 12px;
}

.review-cta-card p {
    font-family: var(--font-body, 'Jost', sans-serif);
    font-size: 13.5px;
    line-height: 1.6;
    color: #C7C9D6;
    margin-bottom: 24px;
}

/* ---- Tablet: 2 columns ---- */
@media (max-width: 980px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ---- Mobile: 1 column ---- */
@media (max-width: 600px) {
    .reviews-section {
        padding: 56px 0;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .reviews-header {
        margin-bottom: 36px;
    }
}

/* gallery */
.gallery-section {
    background: #F4F6FB;
    padding: 30px 0;
}

.gallery-heading {
    text-align: center;
    /* font-family: var(--font-display, 'Cormorant Garamond', serif); */
    font-weight: 700;
    font-size: clamp(28px, 3.6vw, 35px);
    color: black;
    margin-bottom: 44px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.gallery-item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid var(--line, #E7E1D2);
    position: relative;
}

/* .gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    box-shadow: inset 0 0 0 2px transparent;
    transition: box-shadow .3s ease;
} */

.gallery-item:hover::after {
    box-shadow: inset 0 0 0 2px var(--gold, #f70759);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.gallery-item:hover img {
    transform: scale(1.07);
}

/* ---- Tablet: 3 per row ---- */
@media (max-width: 980px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ---- Mobile: 2 per row ---- */
@media (max-width: 600px) {
    .gallery-section {
        padding: 56px 0;
    }

    .gallery-heading {
        margin-bottom: 30px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* faq */
.faq-section {
    background: #F4F6FB;
    padding: 30px 0;
}

.faq-wrap {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 56px;
    align-items: start;
}

.faq-image {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(22, 33, 62, .12);
}

.faq-image img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
}

.faq-image-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(22, 33, 62, .85);
    backdrop-filter: blur(4px);
    border-radius: 12px;
    padding: 18px 20px;
    color: #fff;
}

.faq-image-badge strong {
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: 26px;
    font-weight: 700;
    color: var(--gold-soft, #FF4F86);
    display: block;
    margin-bottom: 2px;
}

.faq-image-badge span {
    font-family: var(--font-body, 'Jost', sans-serif);
    font-size: 13px;
    color: #D9D3C7;
}

.faq-eyebrow {
    display: inline-block;
    font-family: var(--font-body, 'Jost', sans-serif);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: black;
    margin-bottom: 12px;
}

.faq-content h2 {
    /* font-family: var(--font-display, 'Cormorant Garamond', serif); */
    font-weight: 700;
    font-size: clamp(28px, 3.6vw, 35px);
    color: black;
    margin-bottom: 14px;
}

.faq-content>p {
    font-family: var(--font-body, 'Jost', sans-serif);
    font-size: 15.5px;
    color: black;
    margin-bottom: 30px;
}

.faq-item {
    border-bottom: 1px solid var(--line, #E7E1D2);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: none;
    border: none;
    padding: 20px 0;
    text-align: left;
    cursor: pointer;
}

.faq-question span:first-child {
    font-family: var(--font-body, 'Jost', sans-serif);
    font-weight: bold;
    font-size: 16px;
    color: black;
}

.faq-icon {
    position: relative;
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    border: 1.5px solid #f70759;
    border-radius: 50%;
    transition: background .3s ease;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: #f70759;
    transition: transform .3s ease, background .3s ease;
}

.faq-icon::before {
    width: 10px;
    height: 1.6px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 1.6px;
    height: 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon {
    background: #f70759;
}

.faq-item.active .faq-icon::before,
.faq-item.active .faq-icon::after {
    background: #fff;
}

.faq-item.active .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.faq-answer p {
    font-family: var(--font-body, 'Jost', sans-serif);
    font-size: 14.5px;
    line-height: 1.7;
    color: black;
    padding-bottom: 20px;
}

/* ---- Tablet/Mobile: stack ---- */
@media (max-width: 900px) {
    .faq-wrap {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .faq-image img {
        height: 320px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 56px 0;
    }

    .faq-question span:first-child {
        font-size: 14.5px;
    }
}

/* footer */
.premium-footer {
    background: #0b1c2d;
    color: #fff;
    font-family: 'Inter', system-ui, -apple-system;
}

/* TRUST BAR */

.footer-trust {
    max-width: 1300px;
    margin: auto;
    margin-bottom: 12px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 22px;
    font-size: 16px;
    font-weight: 600;
}

.trust-item i {
    color: #32d46d;
    font-size: 18px;
}

/* MAIN */

.footer-main {
    max-width: 1300px;
    margin: auto;
    padding: 10px 20px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 30px;
}

.footer-col h3,
.footer-col h4 {
    color: #ffffff;
    margin-bottom: 24px;
    font-size: 23px;
    font-weight: 700;
}

.footer-col h4 {
    font-size: 23px;
}

.footer-col p {
    color: rgba(255, 255, 255, .9);
    line-height: 1.9;
    font-size: 15px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 7px;
    font-size: 15px;
}

.footer-col ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: .3s;
}

.footer-col ul li a:hover {
    color: #7cff4d;
    padding-left: 5px;
}

.footer-contact li {
    color: #fff;
    line-height: 1.8;
}

/* PAYMENT */

.footer-payment {
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    text-align: center;
    padding: 5px 20px;
    background: rgb(11, 28, 45);
}

.footer-payment p {
    margin-bottom: 20px;
    font-size: 15px;
    color: rgb(255 255 255);
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.payment-icons span {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgb(255 255 255);
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
}

/* COPYRIGHT */

.footer-bottom {
    text-align: center;
    padding: 24px;
    font-size: 15px;
    color: rgb(255 255 255);
    background: rgb(11, 28, 45);
}

.mobile-dropdown details {
    display: block;
}

.mobile-dropdown summary {
    list-style: none;
    cursor: default;
}

.mobile-dropdown summary::-webkit-details-marker {
    display: none;
}







/* TABLET */

@media(max-width:992px) {

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-trust {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE */

@media(max-width:768px) {

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 45px 20px;
    }

    .footer-trust {
        grid-template-columns: 1fr;
    }

    .trust-item {
        justify-content: flex-start;
        padding: 18px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .footer-col h3 {
        font-size: 24px;
    }

    .footer-col h4 {
        font-size: 20px;
    }

    .footer-col p,
    .footer-col ul li a {
        font-size: 15px;
    }
}

@media(max-width:768px) {

    .footer-col:not(:first-child) h4 {
        position: relative;
        cursor: pointer;
        margin-bottom: 0;
        padding: 0px 0;
        border-top: 1px solid rgba(255, 255, 255, .1);
    }

    .footer-col:not(:first-child) h4::after {
        content: "+";
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        font-size: 22px;
    }

    .footer-col:not(:first-child) ul {
        display: none;
        padding-top: 15px;
    }

    .footer-col.active ul {
        display: block;
    }

    .footer-col.active h4::after {
        content: "−";
    }
}

@media(max-width:768px) {

    .footer-trust {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .trust-item {
        justify-content: center;
        text-align: center;
        padding: 15px 10px;
        font-size: 14px;
    }

}

/* customize cta */
/* =========================
   Premium Custom Trip CTA
========================= */

.custom-trip-cta {
    position: relative;
    padding: 15px 20px;
    background: #f70759;
    overflow: hidden;
}

.custom-trip-cta::before {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    top: -180px;
    right: -120px;
}

.custom-trip-cta::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -120px;
    left: -80px;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    /* background: url('https://images.unsplash.com/photo-1501785888041-af3ef285b470?q=80&w=1800&auto=format&fit=crop') center/cover; */
    opacity: .08;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: auto;
    text-align: center;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

.cta-content h2 {
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.15;
}

.cta-content p {
    max-width: 720px;
    margin: auto;
    color: white;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 34px;
    background: #fff;
    color: #000000;
    text-decoration: none;
    border-radius: 60px;
    font-size: 16px;
    font-weight: 700;
    transition: .4s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.whatsapp-btn i {
    font-size: 22px;
}

.whatsapp-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* Mobile Responsive */

@media (max-width:768px) {

    .custom-trip-cta {
        padding: 70px 20px;
    }

    .cta-content h2 {
        font-size: 34px;
    }

    .cta-content p {
        font-size: 16px;
        line-height: 1.7;
    }

    .whatsapp-btn {
        width: 100%;
        justify-content: center;
        max-width: 320px;
    }
}

@media (max-width:480px) {

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-badge {
        font-size: 13px;
        padding: 9px 18px;
    }

    .cta-content p {
        font-size: 15px;
    }
}

/* =========================
   EASY BOOKING STEPS
========================= */

/* ============ EASY BOOKING STEPS ============ */
.booking-steps {
    padding: 30px 20px;
    background: #f4f6fb;
    overflow: hidden;
}

.steps-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading h2 {
    font-size: clamp(28px, 4vw, 35px);
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
    line-height: 1.2;
}

/* .section-heading h2 span {
    color: #f70759;
} */

.section-heading p {
    font-size: 16px;
    color: #000000;
    /* font-style: italic; */
    margin: 0;
}

/* ---- Grid ---- */
.steps-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* ---- Card ---- */
.step-card {
    background: #fff;
    border-radius: 4px 145px 0px 50px;
    border-right: none;
    padding: 32px 30px 30px;
    border: 1px solid #e8eaf0;
    box-shadow: 0 4px 20px rgba(22, 33, 62, .05);
    transition: transform .35s ease, box-shadow .35s ease;
    position: relative;
    overflow: visible;
}

/* U-shape semicircle */
/* .step-card::after {
    content: '';
    position: absolute;
    right: -34px;
    top: 50%;
    transform: translateY(-50%);
    width: 68px;
    height: 68px;
    background: #f4f6fb;
   
    border-radius: 50%;
    border: 1.5px solid #e0e4ef;
    clip-path: inset(0 0 0 50%);
    
    z-index: 1;
} */

/* card ke right edge pe white cover (border hide karne ke liye) */
/* .step-card::before {
    content: '';
    position: absolute;
    right: -2px;
    top: calc(50% - 34px);
    width: 4px;
    height: 68px;
    background: #fff;
    z-index: 2;
} */

/* .step-card::after {
    content: '';
    position: absolute;
    right: -34px;
    top: 50%;
    transform: translateY(-50%);
    width: 68px;
    height: 68px;
    background: #f4f6fb;
    
    border-radius: 50%;
    border: 1.5px solid #e0e4ef;
    clip-path: inset(0 0 0 50%);
    
    z-index: 1;
} */

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 48px rgba(22, 33, 62, .1);
}

/* ---- Top row: number left + icon right ---- */
.step-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

/* Dark blue number square */
.step-number-box {
    width: 68px;
    height: 68px;
    background: #f70759;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

/* Outlined circle icon */
.step-icon-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2.5px solid #f70759;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon-circle svg {
    width: 30px;
    height: 30px;
    color: #f70759;
}

/* ---- Card text ---- */
.step-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
    line-height: 1.3;
}

.step-card p {
    font-size: 15px;
    color: #000000;
    line-height: 1.7;
    margin: 0;
}

/* ---- Tablet ---- */
@media (max-width: 900px) {
    .steps-wrapper {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
        gap: 20px;
    }
}

/* ---- Mobile ---- */
@media (max-width: 560px) {
    .booking-steps {
        padding: 44px 16px;
    }

    .section-heading {
        margin-bottom: 34px;
    }

    .step-card {
        padding: 26px 22px;
        border-radius: 4px 145px 0px 50px;
    }

    .step-number-box {
        width: 56px;
        height: 56px;
        font-size: 24px;
        border-radius: 12px;
    }

    .step-icon-circle {
        width: 58px;
        height: 58px;
    }

    .step-icon-circle svg {
        width: 24px;
        height: 24px;
    }

    .step-card h3 {
        font-size: 19px;
    }

    .step-card p {
        font-size: 14px;
    }
}

/* itinerary */
.itin-hero-wrap {
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.itin-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 6px 24px 60px;
}

.itin-breadcrumb {
    font-size: 13.5px;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.itin-breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
}

.itin-breadcrumb a:hover {
    color: #2d364d;
}

.itin-breadcrumb span {
    color: #2d364d;
    font-weight: 600;
}

/* ══════════════════════════════
       TITLE BLOCK  (above photos)
    ══════════════════════════════ */
.itin-hero-title-block {
    margin-bottom: 18px;
}

.itin-hero-toprow {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

/* Package / tour name */
.itin-hero-name {
    /* font-family: 'Cormorant Garamond', serif; */
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
    margin-bottom: 10px;
}

/* Rating + reviews row */
.itin-hero-meta-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 12px;
}

.itin-hero-stars {
    display: flex;
    align-items: center;
    gap: 3px;
}

.itin-hero-stars i {
    color: #f5a623;
    font-size: 14px;
}

.itin-hero-rev-count {
    font-size: 14.5px;
    color: black;
    font-weight: 600;
}

/* ══════════════════════════════
       5-PHOTO GRID
    ══════════════════════════════ */
.itin-photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px;
    /* 240px se kam kiya — compact height */
    gap: 10px;
    border-radius: 0px;
    /* 0px se rounded kiya */
    overflow: hidden;
    cursor: pointer;
}

.itin-photo-main {
    grid-column: 1;
    grid-row: 1 / 3;
    position: relative;
    overflow: hidden;
    border-radius: 14px 0 0 14px;
    /* left side corners round */
}

.itin-photo-grid-right {
    grid-column: 2;
    grid-row: 1 / 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px;
    /* yahan bhi match karo */
    gap: 10px;
}

.itin-photo-thumb {
    position: relative;
    overflow: hidden;
}

.itin-photo-main img,
.itin-photo-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.itin-photo-main:hover img,
.itin-photo-thumb:hover img {
    transform: scale(1.05);
}

.itin-photo-grid-right .itin-photo-thumb:nth-child(2) {
    border-radius: 0 14px 0 0;
}

.itin-photo-grid-right .itin-photo-thumb:nth-child(4) {
    border-radius: 0 0 14px 0;
}

.itin-viewall-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--ink, #2d364d);
    padding: 7px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: background 0.2s;
    white-space: nowrap;
    font-family: inherit;
}

.itin-viewall-btn:hover {
    background: #fff;
}

/* ══════════════════════════════
       RESPONSIVE — tablet
    ══════════════════════════════ */
@media (max-width: 860px) and (min-width: 641px) {

    .itin-photo-grid,
    .itin-photo-grid-right {
        grid-template-rows: 190px 190px;
    }
}

/* ══════════════════════════════
       RESPONSIVE — mobile
    ══════════════════════════════ */
@media (max-width: 640px) {

    .itin-hero-inner {
        padding: 18px 14px 36px;
    }

    .itin-hero-name {
        font-size: 22px;
    }

    /* Stack: big photo on top, 4 thumbs as horizontal scroll below */
    .itin-photo-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        border-radius: 10px;
    }

    .itin-photo-main {
        grid-column: 1;
        grid-row: 1;
        height: 230px;
    }

    .itin-photo-grid-right {
        grid-column: 1;
        grid-row: 2;
        display: flex;
        overflow-x: auto;
        gap: 5px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .itin-photo-grid-right::-webkit-scrollbar {
        display: none;
    }

    .itin-photo-thumb {
        flex: 0 0 150px;
        height: 110px;
        scroll-snap-align: start;
        border-radius: 0;
    }
}

@media (max-width: 400px) {
    .itin-hero-name {
        font-size: 18px;
    }

    .itin-photo-main {
        height: 200px;
    }

    .itin-photo-thumb {
        flex: 0 0 130px;
        height: 95px;
    }
}

/* snapshot */


/* cards css */
.info-cards-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 13px 0px;
    border-top: 1px solid var(--border, #e5e7eb);
}

.info-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.info-card {
    background: white;
    border-left: 4px solid #f70759;
    border-radius: 12px;
    padding: 24px 26px;
}

.info-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    background: #fff;
    border-radius: 50%;
    color: #f70759;
    box-shadow: 0 4px 10px rgba(45, 54, 77, .1);
}

.info-icon svg {
    width: 19px;
    height: 19px;
}

.info-card-head h3 {
    /* font-family: 'Cormorant Garamond', serif; */
    font-weight: 700;
    font-size: 21px;
    color: #000000;
    margin: 0;
}

.info-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-list li {
    position: relative;
    padding-left: 16px;
    font-size: 14.5px;
    line-height: 1.6;
    color: #000000;
}

.info-list li::before {
    content: '›';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gold, #d4a017);
    font-weight: 700;
    font-size: 16px;
}

.info-list li strong {
    color: #000000;
    font-weight: 700;
}

.info-text {
    font-size: 14.5px;
    line-height: 1.7;
    color: #000000;
    margin: 0 0 10px;
}

.info-text-muted {
    color: #000000;
    margin-bottom: 0;
}

/* ---- Mobile ---- */
@media (max-width: 700px) {
    .info-cards-section {
        padding: 26px 14px;
    }

    .info-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .info-card {
        padding: 20px 20px;
    }

    .info-card-head h3 {
        font-size: 18px;
    }
}

/* tour highlights new section css */
.tour-highlights-section {
    width: 100%;
    padding: 10px 0;
    /* left-right padding hata diya, parent already padded hoga */
    border-bottom: 1px solid var(--border, #e5e7eb);
}

.highlights-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-top: 14px;
    width: 100%;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    max-width: 100%;
    /* ab parent column ki width follow karega */
    padding: 13px 4px;
    font-size: 15px;
    line-height: 1.5;
    color: #1f1f1f;
    font-weight: 500;
    border-bottom: 1px solid #eee;
    transition: background .2s ease, padding-left .2s ease;
}

.highlight-item:last-child {
    border-bottom: none;
}

.highlight-item:hover {
    background: #fafafa;
    padding-left: 10px;
}

.highlight-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    background: rgba(212, 160, 23, .12);
    border-radius: 50%;
    color: #ff2d7a;
}

.highlight-icon svg {
    width: 13px;
    height: 13px;
}

/* ---- Mobile ---- */
@media (max-width: 700px) {
    .tour-highlights-section {
        padding: 22px 0;
    }

    .highlight-item {
        font-size: 14px;
        padding: 12px 2px;
    }
}

/* 2nd itinerary section */
.itinerary-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 4px;
    border-bottom: 1px solid var(--border, #e5e7eb);
}

.itinerary-timeline {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.itinerary-step {
    background: white;
    border-radius: 12px;
    padding: 22px 26px;
}

.step-head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 12px;
}

.step-time {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 19px;
    color: black;
    white-space: nowrap;
}

.step-sep {
    color: #aab0c0;
    font-size: 16px;
}

.step-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 19px;
    color: #000000;
    margin: 0;
    line-height: 1.3;
}

.step-desc {
    font-size: 14.5px;
    line-height: 1.7;
    color: #000000;
    margin: 0;
}

/* ---- Mobile ---- */
@media (max-width: 700px) {
    .itinerary-section {
        padding: 24px 14px;
    }

    .itinerary-timeline {
        gap: 14px;
    }

    .itinerary-step {
        padding: 18px 18px;
    }

    .step-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .step-sep {
        display: none;
    }

    .step-time {
        font-size: 16px;
    }

    .step-title {
        font-size: 17px;
    }

    .step-desc {
        font-size: 14px;
    }
}

/* ─── LAYOUT ─── */
.itin-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 28px;
    max-width: 1280px;
    margin: 36px auto 60px;
    padding: 0 24px;
}


/* ─── LEFT SIDEBAR ─── */
.itin-left {
    display: flex;
    flex-direction: column;
    gap: 36px;
    min-width: 0;
}

/* section card base */
.itin-card {
    background: var(--white);
    border-radius: var(--radius);
    /* border: 1px solid #2d364d; */
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
}

.itin-card-header {
    padding: 0px 28px 0;
}

.itin-section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #000000;
    padding-top: 7px;
    margin-bottom: 6px;
}

.itin-section-title {
    /* font-family: 'Cormorant Garamond', serif; */
    font-size: 35px;
    font-weight: 700;
    color: #000000;
    line-height: 1.25;
}

/* ─── ABOUT ─── */
.about-body {
    padding: 2px 28px 28px;
}

.about-text {
    font-size: 15.5px;
    line-height: 1.8;
    color: black;
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.about-stat {
    background: var(--gold-pale);
    border-radius: 10px;
    padding: 14px 16px;
    text-align: center;
}

.about-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--gold);
}

.about-stat-label {
    font-size: 11.5px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ─── TOUR OVERVIEW ─── */
.overview-body {
    padding: 18px 28px 28px;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.ov-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: white;
    padding: 14px;
    background: #f70759;
    border-radius: 10px;
    border: 1px solid #f70759;
}

/* .ov-item:hover{
            background: #2d364d;
        } */

.ov-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #f70759;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.ov-label {
    font-size: 15px;
    color: rgb(255, 255, 255);
    margin-bottom: 3px;
}

.ov-val {
    font-size: 16.5px;
    font-weight: 600;
    color: white;
}

/* ─── HIGHLIGHTS ─── */


/* ─── DETAILED ITINERARY ─── */


/* ====== Day list ====== */

.detail-body {
    padding: 18px 28px 28px;
}

.day-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.day-item {
    position: relative;
    padding-left: 52px;
    padding-bottom: 28px;
}

.day-item:last-child {
    padding-bottom: 0;
}

/* vertical line */
.day-item::before {
    content: '';
    position: absolute;
    left: 17px;
    top: 38px;
    bottom: 0;
    width: 2px;
    background: #a28046;
}

.day-item:last-child::before {
    display: none;
}

/* icon dot (jaisa highlighted image me hai) */
.day-dot {
    position: absolute;
    left: 0;
    top: 4px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #a28046;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    box-shadow: #a28046;
    z-index: 1;
}

/* small "DAY 01" label above title */
.day-eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #a28046;
    margin-bottom: 3px;
}

.day-header {
    padding: 6px 0 8px;
}

.day-title-grp strong {
    font-size: 15.5px;
    font-weight: 700;
    color: var(--ink);
    display: block;
    margin-bottom: 2px;
}

.day-title-grp span.day-sub {
    font-size: 13.5px;
    color: #000000;
}

.day-content-inner {
    padding: 4px 0 0;
    font-size: 14.5px;
    color: #000000;
    line-height: 1.8;
}

.day-content-inner ul {
    padding-left: 18px;
    margin-top: 8px;
}

.day-content-inner li {
    margin-bottom: 5px;
}

.day-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 12px;
}

/* ====== View Full Itinerary show/hide ====== */

.extra-days {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 0.5s cubic-bezier(.4, 0, .2, 1);
}

.extra-days.expanded {
    grid-template-rows: 1fr;
}

.extra-days-inner {
    overflow: hidden;
    min-height: 0;
}

.view-full-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 12px 0 0 52px;
    background: none;
    border: none;
    padding: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    text-decoration: underline;
    cursor: pointer;
    font-family: inherit;
}

.view-full-btn:hover {
    color: var(--gold);
}

.view-full-btn i {
    font-size: 11px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.view-full-btn.expanded i {
    transform: rotate(180deg);
}

/* ─── INCLUDE / EXCLUDE ─── */
.inex-body {
    padding: 18px 28px 28px;
}

.inex-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.inex-col-title {
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 14px;
}

.inex-col-title.inc {
    color: #000000;
}

.inex-col-title.exc {
    color: #000000;
}

.inex-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.inex-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: black;
    line-height: 1.5;
}

.inex-list li i {
    font-size: 13px;
    margin-top: 2px;
    flex-shrink: 0;
}

.inc-icon {
    color: var(--green);
}

.exc-icon {
    color: var(--red);
}

/* ─── REVIEWS ─── */
/* ============ REVIEWS SLIDER ============ */
.reviews-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 32px 24px;
    border-bottom: 1px solid var(--border, #e5e7eb);
    background: #fff;
}

.itin-card-header {
    margin-bottom: 22px;
}

.itin-section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold, #d4a017);
    margin-bottom: 4px;
}

.itin-section-title {
    /* font-family: 'Cormorant Garamond', serif; */
    font-size: 26px;
    font-weight: 700;
    color: #2d364d;
}

/* ---- Track wrapper clips overflow ---- */
.reviews-body {
    position: relative;
}

.reviews-track-outer {
    overflow: hidden;
    width: 100%;
}

.reviews-track {
    display: flex;
    gap: 18px;
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
    will-change: transform;
}

/* ---- Each card takes up (50% - gap/2) on desktop, 100% on mobile ---- */
.review-card {
    flex: 0 0 calc(50% - 9px);
    background: linear-gradient(180deg, #f4f6fc 0%, #eef1fa 100%);
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 20px 22px;
    box-sizing: border-box;
    min-width: 0;
}

.review-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .1);
}

.review-name {
    font-size: 14.5px;
    font-weight: 700;
    color: #2d364d;
    margin-bottom: 2px;
}

.review-country {
    font-size: 12.5px;
    color: #6b7280;
    margin-bottom: 4px;
}

.review-stars {
    color: #f5a623;
    font-size: 13px;
    letter-spacing: 1.5px;
}

.review-text {
    font-size: 14px;
    line-height: 1.65;
    color: #3a4258;
    font-style: italic;
    margin: 0;
}

/* ---- Nav ---- */
.reviews-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 18px;
}

.rev-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid #dde1eb;
    background: #fff;
    color: #2d364d;
    font-size: 20px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s ease;
}

.rev-btn:hover {
    background: var(--gold, #d4a017);
    border-color: var(--gold, #d4a017);
    color: #fff;
}

.rev-btn:disabled {
    opacity: .35;
    cursor: not-allowed;
}

.rev-dots {
    display: flex;
    gap: 7px;
    align-items: center;
}

.rev-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #dde1eb;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background .2s, transform .2s;
}

.rev-dot.active {
    background: var(--gold, #d4a017);
    transform: scale(1.25);
}

/* ---- Mobile: 1 card per slide ---- */
/* ---- Mobile: 1 card per slide ---- */
@media (max-width: 600px) {
    .reviews-track {
        gap: 0 !important;
        /* gap hata do — cards exactly 100% width mein fit hon */
    }

    .review-card {
        flex: 0 0 100% !important;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin: 0 !important;
        padding: 18px 16px !important;
        /* thoda padding kam — text clip na ho */
    }

    .reviews-section {
        padding: 20px 14px !important;
        overflow: hidden !important;
    }

    .reviews-track-outer {
        overflow: hidden !important;
        width: 100% !important;
    }
}

/* ─── RIGHT SIDEBAR ─── */
.itin-right {
    display: flex;
    flex-direction: column;
    gap: 22px;

    position: sticky;
    top: 120px;
    align-self: start;
}

:root {
    --gold: #a28046;
    --gold-light: #d4a853;
    --ink: #1a1a2e;
    --dark-header: #2d364d;
    --radius: 16px;
    --border: #e8e2d9;
    --white: #ffffff;
    --green: #2e7d32;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ─── CARD ─────────────────────────────────────── */


/* ─── CONTACT CTA SMALL ─── */
/* .contact-cta-card {
            
            background: #2d364d;
            border-radius: var(--radius);
            padding: 24px;
            text-align: center;
        } */

.contact-cta-card {
    /* position: sticky; */
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    padding: 24px;
    z-index: 1;
    text-align: center;

    background-image:
        linear-gradient(rgba(15, 25, 35, 0.75),
            rgba(15, 25, 35, 0.75)),
        url('https://images.unsplash.com/photo-1564507592333-c60657eea523?w=1200&q=80');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.cta-sm-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .4);
}

.cta-sm-text {
    font-size: 13px;
    color: rgba(255, 255, 255, .95);
    line-height: 1.7;
    margin-bottom: 18px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, .4);
}

.cta-sm-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f70759;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    margin: 0 auto 14px;
}

.cta-sm-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.cta-sm-text {
    font-size: 13px;
    color: rgb(255, 255, 255);
    line-height: 1.6;
    margin-bottom: 18px;
}

.cta-sm-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: #f70759;
    color: #fff;
    border: none;
    border-radius: 26px;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    text-decoration: none;
    transition: background 0.2s;
    margin-bottom: 10px;
}

.cta-sm-btn:hover {
    background: #f70759;
}

.cta-sm-btn.outline {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.85);
}

/* .cta-sm-btn.outline:hover {
            border-color: var(--gold);
            color: #fff;
            background: rgba(162, 128, 70, 0.15);
        } */

/* ─── AVAILABILITY RESULT ─── */
.avail-result {
    display: none;
    margin-top: 14px;
    padding: 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}

.avail-result.success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.avail-result.checking {
    background: #fff8e1;
    color: #f57f17;
    border: 1px solid #ffe082;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .itin-layout {
        grid-template-columns: 1fr 320px;
        gap: 22px;
    }

    .review-card {
        flex: 0 0 100%;
    }
}

@media (max-width: 860px) {
    .itin-layout {
        grid-template-columns: 1fr;
        padding: 0 16px;
        margin: 24px auto 48px;
    }

    .itin-right {
        order: 1;
    }

    .booking-card {
        position: static;
    }

    .inex-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .inex-grid>div:first-child {
        margin-bottom: 20px;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .overview-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .itin-hero {
        height: 72vh;
    }

    .hero-content {
        padding: 0 20px 40px;
        max-width: 100%;
    }

    .hero-meta {
        gap: 16px;
    }

    .itin-card-header {
        padding: 18px 18px 0;
    }

    .about-body,
    .overview-body,
    .highlights-body,
    .detail-body,
    .inex-body,
    .reviews-body {
        padding: 14px 18px 22px;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }

    .overview-grid {
        grid-template-columns: 1fr;
    }

    .review-card {
        padding: 16px;
    }

    .booking-body {
        padding: 16px 18px;
    }

    .booking-header {
        padding: 18px;
    }

    .booking-price {
        font-size: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Desktop */
@media (min-width: 992px) {
    .itin-right {
        position: sticky;
        top: 120px;
        align-self: start;
    }
}

/* Mobile */
@media (max-width: 991px) {
    .itin-right {
        position: static;
        top: auto;
    }
}

/* tour packages section */
.tour-packages-section {
    padding: 31px 0;
    background: #ffffff;
}

.tour-container {
    width: 100%;
    max-width: 1300px;
    margin: auto;
    padding: 0 20px;
}

.tour-heading {
    text-align: center;
    margin-bottom: 50px;
}

.tour-heading span {
    color: #b88a44;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 14px;
}

.tour-heading h2 {
    font-size: 42px;
    font-family: 'Cormorant Garamond', serif;
    margin: 15px 0;
    color: #2d364d;
}

.tour-heading p {
    max-width: 700px;
    margin: auto;
    color: #000000;
    line-height: 1.7;
}

.tour-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.tour-item {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
    transition: .3s;
}

.tour-item:hover {
    transform: translateY(-8px);
}

.tour-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tour-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #b88a44;
    color: #fff;
    padding: 7px 14px;
    border-radius: 30px;
    font-size: 12px;
}

.tour-content {
    padding: 20px;
}

.tour-category {
    color: #b88a44;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
}

.tour-content h3 {
    font-size: 20px;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.5;
    margin-bottom: 15px;
    color: #111827;
}

.tour-meta {
    color: #000000;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: bold;
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tour-footer small {
    color: #000000;
}

.tour-footer h4 {
    margin-top: 5px;
    font-size: 24px;
    color: #111827;
}

.tour-btn {
    text-decoration: none;
    background: #2d364d;
    color: #fff;
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}

/* Tablet */
@media(max-width:991px) {

    .tour-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tour-heading h2 {
        font-size: 34px;
    }
}

/* Mobile */
@media(max-width:576px) {

    .tour-grid {
        grid-template-columns: 1fr;
    }

    .tour-heading h2 {
        font-size: 28px;
    }

    .tour-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .tour-btn {
        width: 100%;
        text-align: center;
    }
}

/* gallery */
/*  */

/* things to do css */
/* ══ THINGS TO DO SECTION ══ */
.ttd-section {
    background: white;
    padding: 18px 24px;
}

.ttd-inner {
    max-width: 1160px;
    margin: 0 auto;
}

.ttd-title {
    /* font-family: 'Cormorant Garamond', serif; */
    font-size: 46px;
    font-weight: 700;
    color: #2d364d;
    text-align: center;
    margin-bottom: 36px;
}

.ttd-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    align-items: start;
}

.ttd-item {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #818899;
    background: var(--white);
    transition: box-shadow 0.2s;
}

.ttd-item:hover {
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);

}

.ttd-item.open {
    border-color: #2d364d;
}

.ttd-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 14px;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s;
}

.ttd-header:hover {
    background: #f0f4f8;
}

.ttd-item.open .ttd-header {
    background: #f0f4f8;
}

.ttd-num {
    background: #2d364d;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ttd-item.open .ttd-num {
    background: #0f1923;
    color: #ffffff;
}

.ttd-name {
    flex: 1;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.35;
}

.ttd-icon {
    font-size: 18px;
    font-weight: 300;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: transform 0.3s, color 0.2s;
    line-height: 1;
}

.ttd-item.open .ttd-icon {
    transform: rotate(45deg);
    color: black;
}

.ttd-body {
    max-height: 0;
    overflow: hidden;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    padding: 0 14px;
    transition: max-height 0.4s cubic-bezier(.4, 0, .2, 1),
        padding 0.3s ease;
    border-top: 0px solid var(--border);
}

.ttd-item.open .ttd-body {
    max-height: 200px;
    padding: 12px 14px 14px;
    border-top: 1px solid var(--border);
    color: black;
}

/* Responsive */
@media (max-width: 1024px) {
    .ttd-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .ttd-section {
        padding: 44px 16px;
    }

    .ttd-title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .ttd-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .ttd-name {
        font-size: 12px;
    }
}

@media (max-width: 400px) {
    .ttd-grid {
        grid-template-columns: 1fr;
    }
}

/* mon section */
/* ══ MONUMENTS SECTION ══ */
.mon-section {
    background: white;
    padding: 64px 24px;
}

.mon-inner {
    max-width: 1160px;
    margin: 0 auto;
}

.mon-title {
    /* font-family: 'Cormorant Garamond', serif; */
    font-size: 46px;
    font-weight: 700;
    text-align: center;
    color: #2d364d;
    margin-bottom: 36px;
}

.mon-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    align-items: start;
}

.mon-item {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--white);
    transition: box-shadow 0.2s;
}

.mon-item.open {
    border-color: #0f1923;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.mon-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 14px;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s;
}

.mon-header:hover {
    background: #f0f4f8;
}

.mon-item.open .mon-header {
    background: #f0f4f8;
}

.mon-num {
    background: #2d364d;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mon-name {
    flex: 1;
    font-size: 12.5px;
    font-weight: 600;
    color: #0f1923;
    line-height: 1.35;
}

.mon-icon {
    font-size: 18px;
    font-weight: 300;
    color: #0f1923;
    flex-shrink: 0;
    transition: transform 0.3s;
    line-height: 1;
    width: 20px;
    text-align: center;
}

.mon-item.open .mon-icon {
    transform: rotate(45deg);
}

.mon-body {
    max-height: 0;
    overflow: hidden;
    font-size: 12.5px;
    color: #000000;
    line-height: 1.7;
    padding: 0 14px;
    border-top: 0px solid var(--border);
    transition: max-height 0.4s cubic-bezier(.4, 0, .2, 1),
        padding 0.3s ease;
}

.mon-item.open .mon-body {
    max-height: 200px;
    padding: 12px 14px 14px;
    border-top: 1px solid var(--border);
}

/* Responsive */
@media (max-width: 1024px) {
    .mon-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .mon-section {
        padding: 44px 16px;
    }

    .mon-title {
        font-size: 22px;
        margin-bottom: 22px;
    }

    .mon-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .mon-name {
        font-size: 12px;
    }
}

@media (max-width: 400px) {
    .mon-grid {
        grid-template-columns: 1fr;
    }
}



/* itinerary  activity section */
.tour-activity-section {
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid var(--border, #e5e7eb);
}

.activity-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 24px;
    margin-top: 16px;
}

.snapshot-heading {
    font-size: 41px;
}

.activity-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 12px;
    padding: 18px;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.activity-card:hover {
    border-color: #000000;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.activity-icon svg {
    width: 22px;
    height: 22px;
}

.activity-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    /* icon ko shrink/grow hone se roke */
    background: rgba(212, 160, 23, .1);
    border-radius: 12px;
    color: #ff2d7a;
    overflow: hidden;
    /* safety net */
}

.activity-icon svg {
    width: 22px !important;
    height: 22px !important;
    flex-shrink: 0;
}

.activity-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    /* minmax(0, 1fr) zaroori hai */
    gap: 18px 24px;
    margin-top: 16px;
}

.activity-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    min-width: 0;
    /* flex item ko apne content ki wajah se overflow karne se roke */
}

.activity-text h4 {
    margin: 0 0 4px;
    font-size: 15.5px;
    font-weight: 700;
    color: #1f1f1f;
}

.activity-text p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.5;
    color: #000000;
}

/* ---- Mobile ---- */
@media (max-width: 700px) {
    .tour-activity-section {
        padding: 22px 0;
    }

    .activity-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .activity-card {
        padding: 15px;
    }

    .activity-icon {
        width: 40px;
        height: 40px;
        font-size: 19px;
    }
}


/* new booking form */
/* ============ BOOKING FORM ============ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* ============ BOOKING FORM ============ */
.booking-form-wrapper {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.booking-card {
    width: 100%;
    max-width: 380px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #ececec;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.booking-header {
    background: #000000;
    padding: 20px 22px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.booking-header-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.booking-header-icon svg {
    width: 16px;
    height: 16px;
}

.booking-eyebrow {
    margin: 0 0 4px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ffffff;
}

.booking-title {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
}

.booking-trust-row {
    display: flex;
    justify-content: space-between;
    gap: 6px;
    padding: 12px 18px;
    background: #f6f4ee;
    border-bottom: 1px solid #ececec;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    padding: 10px 5px;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
}

.trust-item svg {
    width: 14px;
    height: 14px;
    color: #000000;
    flex-shrink: 0;
}

.booking-form {
    padding: 18px 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.form-field {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.field-icon {
    position: absolute;
    left: 12px;
    width: 16px;
    height: 16px;
    color: #9a9a9a;
    display: flex;
    pointer-events: none;
    z-index: 1;
}

.field-icon svg {
    width: 16px;
    height: 16px;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 11px 12px 11px 38px;
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    font-size: 14px;
    color: #1f1f1f;
    background: #fafafa;
    outline: none;
    transition: border-color .2s ease, background .2s ease;
    font-family: inherit;
    appearance: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #9a9a9a;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: #d4a017;
    background: #fff;
}

.select-field select {
    cursor: pointer;
}

.textarea-field .field-icon {
    top: 13px;
}

.textarea-field textarea {
    resize: none;
}

/* ---- Phone row: code + number side by side ---- */
.phone-field {
    display: flex;
    gap: 8px;
    width: 100%;
}

.code-select {
    width: 78px;
    flex-shrink: 0;
    padding: 11px 8px;
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    font-size: 13px;
    background: #fafafa;
    outline: none;
    appearance: none;
}

.phone-field input {
    flex: 1;
    min-width: 0;
    padding: 11px 12px;
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    font-size: 14px;
    background: #fafafa;
    outline: none;
}

.phone-field input:focus,
.code-select:focus {
    border-color: #d4a017;
    background: #fff;
}

/* ---- Guide language + hotel row ---- */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
    min-width: 0;
}

.form-row .form-field {
    min-width: 0;
}

.form-row select {
    min-width: 0;
}

.travellers-box {
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    padding: 12px 14px;
    background: #fafafa;
}

.travellers-label {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #6b6b6b;
}

.travellers-label svg {
    width: 14px;
    height: 14px;
    color: #000000;
}

.travellers-row {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.traveller-counter {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
}

.counter-label {
    font-size: 12.5px;
    font-weight: 600;
    color: #1f1f1f;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.counter-label small {
    font-size: 10.5px;
    font-weight: 400;
    color: #000000;
}

.counter-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.counter-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #000000;
    background: #fff;
    color: #000000;
    font-size: 15px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .15s ease, color .15s ease;
}

.counter-btn:hover {
    background: #000000;
    color: #fff;
}

.counter-value {
    min-width: 16px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: #1f1f1f;
}

.send-enquiry-btn {
    margin-top: 4px;
    width: 100%;
    padding: 13px;
    border: none;
    border-radius: 10px;
    background: #f70759;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background .2s ease, transform .15s ease;
}

.send-enquiry-btn svg {
    width: 16px;
    height: 16px;
}

.send-enquiry-btn:hover {
    background: #cf2a5c;
    transform: translateY(-1px);
}

.form-footnote {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 2px 0 0;
    font-size: 11.5px;
    color: #000000;
}

.form-footnote svg {
    width: 13px;
    height: 13px;
}

/* ---- Mobile ---- */
@media (max-width: 700px) {
    .booking-form-wrapper {
        justify-content: center;
    }

    .booking-card {
        max-width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .travellers-row {
        flex-wrap: wrap;
        row-gap: 14px;
    }
}

/* ============ THANK YOU POPUP ============ */
.thankyou-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.thankyou-overlay.active {
    display: flex;
}

.thankyou-popup {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    max-width: 360px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.thankyou-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: rgba(46, 160, 95, 0.12);
    color: #2ea05f;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thankyou-icon svg {
    width: 28px;
    height: 28px;
}

.thankyou-popup h3 {
    margin: 0 0 8px;
    font-size: 19px;
    font-weight: 700;
    color: #1f1f1f;
}

.thankyou-popup p {
    margin: 0 0 20px;
    font-size: 14px;
    line-height: 1.6;
    color: #6b6b6b;
}

.thankyou-close {
    padding: 11px 28px;
    border: none;
    border-radius: 10px;
    background: #1b2a4a;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}


/* new css tour activity */
.itin-card {
    background: var(--white);
    border-radius: var(--radius);
    /* border: 1px solid #2d364d; */
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
}

.itin-card-header {
    padding: 15px 28px 0;
}

.itin-section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ffffff;
    padding-top: 7px;
    margin-bottom: 6px;
}

.itin-section-title {
    /* font-family: 'Cormorant Garamond', serif; */
    font-size: 35px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
}

@media(max-width:768px) {
    .itin-section-title {
        font-size: 24px;
    }
}

/* new highlights css */
.highlights-body {
    padding: 2px 28px 28px;
}


@media(max-width:768px) {
    .highlights-body {
        padding: 0px 18px;
    }
}



.highlights-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hl-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    width: 100%;
    border-left: 4px solid rgb(247, 7, 89);
    padding: 14px 16px;
    /* background: #000000; */
    border-radius: 16px;
    /* border-radius: 10px;
    border: 1px solid var(--border); */
    transition: border-color 0.25s, box-shadow 0.25s;
}

/* .hl-item:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 18px rgba(162, 128, 70, 0.12);
} */

.hl-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 700;
    color: rgb(0, 0, 0);
    line-height: 1;
    flex-shrink: 0;
    min-width: 28px;
}

.hl-text strong {
    display: block;
    font-size: 15px;
    color: rgb(0, 0, 0);
    margin-bottom: 3px;
}

.hl-text span {
    font-size: 14px;
    color: rgb(0, 0, 0);
}

/*  */
.detail-body {
    padding: 18px 28px 28px;
}

@media(max-width:768px) {
    .detail-body {
        padding: 18px 12px 28px;
    }
}

.day-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.day-item {
    position: relative;
    padding-left: 52px;
    padding-bottom: 28px;
}

.day-item:last-child {
    padding-bottom: 0;
}

/* vertical line */
.day-item::before {
    content: '';
    position: absolute;
    left: 17px;
    top: 38px;
    bottom: 0;
    width: 2px;
    background: #f70759;
}

.day-item:last-child::before {
    display: none;
}

/* icon dot (jaisa highlighted image me hai) */
.day-dot {
    position: absolute;
    left: 0;
    top: 4px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f70759;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    box-shadow: #f70759;
    z-index: 1;
}

/* small "DAY 01" label above title */
.day-eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 3px;
}

.day-header {
    padding: 6px 0 8px;
}

.day-title-grp strong {
    font-size: 15.5px;
    font-weight: 700;
    color: var(--ink);
    display: block;
    margin-bottom: 2px;
}

.day-title-grp span.day-sub {
    font-size: 13.5px;
    color: #000000;
}

.day-content-inner {
    padding: 4px 0 0;
    font-size: 14.5px;
    color: #000000;
    line-height: 1.8;
}

.day-content-inner ul {
    padding-left: 18px;
    margin-top: 8px;
}

.day-content-inner li {
    margin-bottom: 5px;
}

.day-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 12px;
}

/* ====== View Full Itinerary show/hide ====== */

.extra-days {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 0.5s cubic-bezier(.4, 0, .2, 1);
}

.extra-days.expanded {
    grid-template-rows: 1fr;
}

.extra-days-inner {
    overflow: hidden;
    min-height: 0;
}

.view-full-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 12px 0 0 52px;
    background: none;
    border: none;
    padding: 0;
    font-size: 14px;
    font-weight: 600;
    color: #f70759;
    text-decoration: underline;
    cursor: pointer;
    font-family: inherit;
}

.view-full-btn:hover {
    color: var(--gold);
}

.view-full-btn i {
    font-size: 11px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.view-full-btn.expanded i {
    transform: rotate(180deg);
}

/* include css */
/* ─── INCLUDE / EXCLUDE ─── */
.inex-body {
    padding: 18px 28px 28px;
}

.inex-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.inex-col-title {
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 14px;
}

.inex-col-title.inc {
    color: #f70759;
}

.inex-col-title.exc {
    color: #f70759;
}

.inex-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.inex-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: black;
    line-height: 1.5;
}

.inex-list li i {
    font-size: 13px;
    margin-top: 2px;
    flex-shrink: 0;
}

.inc-icon {
    color: black;
}

.exc-icon {
    color: black;
}


@media(max-width:768px) {
    .inex-grid {
        grid-template-columns: inherit;
        gap: 20px;
    }
}

/* reviews css */
.reviews-body {
    padding: 18px 28px 28px;
    overflow: hidden;
}

.reviews-track-outer {
    overflow: hidden;
}

.reviews-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(.4, 0, .2, 1);
}

.review-card {
    flex: 0 0 calc(50% - 10px);
    background: white;
    border: 1px solid #e8dcc8;
    border-radius: 12px;
    padding: 20px;
}

.review-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.review-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
}

.review-country {
    font-size: 15px;
    color: black;
    margin-top: 2px;
}

.review-stars {
    color: #f70759;
    font-size: 12px;
}

.review-text {
    font-size: 15px;
    color: black;
    line-height: 1.7;
}

.reviews-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
}

.rev-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f70759;
    font-size: 13px;
    transition: background 0.2s, border-color 0.2s;
}

.rev-btn:hover {
    background: #f70759;
    color: #fff;
    border-color: #f70759;
}

.rev-dots {
    display: flex;
    gap: 6px;
}

.rev-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    border: none;
    transition: background 0.3s;
}

.rev-dot.active {
    background: var(--gold);
}

/* mobile fix */
/* ============ REVIEWS — FORCE MOBILE FIX ============ */
@media (max-width: 768px) {

    .reviews-section {
        padding: 20px 14px !important;
        overflow: hidden !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .reviews-body {
        width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    .reviews-track-outer {
        width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    .reviews-track {
        display: flex !important;
        flex-wrap: nowrap !important;
        width: 100%;
        gap: 0 !important;
    }

    .review-card {
        flex: 0 0 100% !important;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin: 0 !important;
    }

}

/* new form css */
/* ============ BOOKING FORM ============ */
/* ============ BOOKING FORM ============ */
.bk-wrapper {
    width: 100%;
}

.bk-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .08);
    width: 100%;
    max-width: 380px;
    overflow: hidden;
}

.bk-hidden {
    display: none !important;
}

/* ---- Progress ---- */
.bk-progress {
    display: flex;
    align-items: center;
    padding: 14px 16px 0;
    gap: 0;
}

.bk-prog-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    flex-shrink: 0;
}

.bk-prog-dot {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #9ca3af;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s, color .3s;
}

.bk-prog-item span {
    font-size: 10px;
    font-weight: 600;
    color: #9ca3af;
    transition: color .3s;
}

.bk-prog-item.active .bk-prog-dot {
    background: #f70759;
    color: #fff;
}

.bk-prog-item.active span {
    color: #f70759;
}

.bk-prog-item.done .bk-prog-dot {
    background: #16a34a;
    color: #fff;
}

.bk-prog-item.done span {
    color: #16a34a;
}

.bk-prog-line {
    flex: 1;
    height: 2px;
    background: #e5e7eb;
    margin: 0 4px;
    margin-bottom: 14px;
    transition: background .3s;
}

.bk-prog-line.done {
    background: #16a34a;
}

/* ---- Price bar ---- */
.bk-price-bar {
    display: flex;
    align-items: baseline;
    gap: 5px;
    padding: 14px 16px 12px;
    border-bottom: 1px solid #f0f0f0;
}

.bk-from {
    font-size: 12px;
    color: #000000;
}

.bk-price-old {
    font-size: 13px;
    color: #000000;
    text-decoration: line-through;
}

.bk-price {
    font-size: 24px;
    font-weight: 800;
    color: #111827;
    line-height: 1;
}

.bk-unit {
    font-size: 12px;
    color: #000000;
}

/* ---- Step ---- */
.bk-step {
    padding: 12px 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

/* ---- Travellers card ---- */
.bk-travellers-card {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fafafa;
    padding: 10px 12px;
}

.bk-travellers-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #000000;
    margin-bottom: 9px;
}

.bk-travellers-label svg {
    width: 14px;
    height: 14px;
}

.bk-travellers-row {
    display: flex;
    align-items: center;
}

.bk-counter-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.bk-counter-label {
    font-size: 12px;
    font-weight: 600;
    color: #000000;
}

.bk-counter-label small {
    font-weight: 400;
    color: #000000;
    margin-left: 2px;
}

.bk-counter {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bk-cnt-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1.5px solid #d1d5db;
    background: #fff;
    color: #374151;
    font-size: 15px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s;
}

.bk-cnt-btn:hover {
    border-color: #f70759;
    background: #f70759;
    color: #fff;
}

.bk-cnt-val {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    min-width: 14px;
    text-align: center;
}

.bk-divider-v {
    width: 1px;
    height: 40px;
    background: #e5e7eb;
    margin: 0 12px;
    flex-shrink: 0;
}

/* ---- Fields ---- */
.bk-field {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fafafa;
    transition: border-color .2s;
    cursor: pointer;
}

.bk-field:focus-within {
    border-color: #f70759;
    background: #fff;
}

.bk-field-icon {
    position: absolute;
    left: 11px;
    width: 16px;
    height: 16px;
    color: #9ca3af;
    pointer-events: none;
    display: flex;
    align-items: center;
}

.bk-field-icon svg {
    width: 16px;
    height: 16px;
}

.bk-input {
    width: 100%;
    padding: 11px 12px 11px 36px;
    border: none;
    background: transparent;
    font-size: 13.5px;
    color: #111827;
    outline: none;
    font-family: inherit;
}

.bk-select {
    appearance: none;
    cursor: pointer;
    padding-right: 28px;
}

.bk-select-arrow {
    position: absolute;
    right: 9px;
    width: 13px;
    height: 13px;
    color: #9ca3af;
    pointer-events: none;
}

.bk-select-arrow svg {
    width: 13px;
    height: 13px;
}

.bk-textarea-field {
    align-items: flex-start;
}

/* ---- CTA ---- */
.bk-cta {
    width: 100%;
    padding: 12px;
    background: #f70759;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 14.5px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: background .2s, transform .15s;
}

.bk-cta:hover:not(:disabled) {
    background: #d4044d;
    transform: translateY(-1px);
}

.bk-cta:disabled {
    background: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
    transform: none;
}

/* ---- Trust row ---- */
.bk-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: space-between;
}

.bk-trust-row span {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: black;
    font-weight: 500;
}

.bk-trust-row svg {
    width: 12px;
    height: 12px;
    color: #16a34a;
    flex-shrink: 0;
}

/* ---- Step nav ---- */
.bk-step-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 4px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 2px;
}

.bk-back-btn {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 12.5px;
    font-weight: 600;
    color: #374151;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
}

.bk-back-btn svg {
    width: 13px;
    height: 13px;
}

.bk-back-btn:hover {
    color: #f70759;
}

.bk-step-title {
    font-size: 13.5px;
    font-weight: 700;
    color: #111827;
}

/* ---- Package cards ---- */
.bk-packages {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 320px;
    overflow-y: auto;
    padding-right: 2px;
}

.bk-packages::-webkit-scrollbar {
    width: 3px;
}

.bk-packages::-webkit-scrollbar-thumb {
    background: #e5e7eb;
    border-radius: 3px;
}

.bk-pkg {
    display: block;
    cursor: pointer;
}

.bk-pkg input[type="radio"] {
    display: none;
}

.bk-pkg-inner {
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    padding: 11px 13px;
    background: #fafafa;
    transition: border-color .2s, background .2s;
}

.bk-pkg input:checked+.bk-pkg-inner {
    border-color: #f70759;
    background: #fff8fa;
}

.bk-pkg:hover .bk-pkg-inner {
    border-color: #f70759;
}

.bk-pkg-toprow {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 6px;
    margin-bottom: 6px;
}

.bk-pkg-toprow strong {
    font-size: 12.5px;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
}

.bk-pkg-badge {
    font-size: 13px;
    font-weight: 800;
    color: #f70759;
    white-space: nowrap;
    flex-shrink: 0;
}

.bk-pkg-duration {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    color: black;
    margin-bottom: 7px;
}

.bk-pkg-duration svg {
    width: 13px;
    height: 13px;
}

.bk-pkg-features {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 8px;
}

.bk-pkg-features span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    color: black;
}

.bk-pkg-features svg {
    width: 12px;
    height: 12px;
    color: #16a34a;
    flex-shrink: 0;
}

.bk-cancel-text svg {
    color: #f70759 !important;
}

.bk-time-picker {
    display: none;
    margin-top: 8px;
}

.bk-pkg input:checked~* .bk-time-picker,
.bk-pkg input:checked+.bk-pkg-inner .bk-time-picker {
    display: block;
}

.bk-time-date-display {
    font-size: 11.5px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}

.bk-time-field {
    margin-bottom: 0;
}

/* ---- Price summary ---- */
.bk-price-summary {
    background: #f4f6fb;
    border-radius: 8px;
    padding: 10px 12px;
}

.bk-summary-row {
    font-size: 12.5px;
    color: #374151;
    margin-bottom: 6px;
}

.bk-summary-divider {
    height: 1px;
    background: #e5e7eb;
    margin-bottom: 6px;
}

.bk-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bk-summary-total span {
    font-size: 11px;
    color: #6b7280;
}

.bk-summary-total strong {
    font-size: 15px;
    font-weight: 800;
    color: #111827;
}

/* ---- Step 3 selected summary ---- */
.bk-selected-summary {
    background: #f4f6fb;
    border-radius: 8px;
    padding: 9px 12px;
    font-size: 12px;
    color: #374151;
    line-height: 1.5;
}

/* ---- Thank You Overlay ---- */
.bk-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 16px;
}

.bk-thankyou {
    background: #fff;
    border-radius: 20px;
    padding: 36px 28px;
    max-width: 340px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .2);
}

.bk-ty-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #dcfce7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.bk-ty-icon svg {
    width: 28px;
    height: 28px;
    color: #16a34a;
}

.bk-thankyou h3 {
    font-size: 20px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 10px;
}

.bk-thankyou p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ---- Mobile ---- */
@media (max-width: 480px) {
    .bk-card {
        max-width: 100%;
        border-radius: 12px;
    }

    .bk-trust-row {
        flex-direction: column;
        gap: 5px;
    }
}

/*  */
.ttd-section {
    background: white;
    padding: 18px 24px;
}

.ttd-inner {
    max-width: 1160px;
    margin: 0 auto;
}

.ttd-title {
    /* font-family: 'Cormorant Garamond', serif; */
    font-size: 46px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 36px;
}

.ttd-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    align-items: start;
}

.ttd-item {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #f70759;
    background: var(--white);
    transition: box-shadow 0.2s;
}

.ttd-item:hover {
    box-shadow: black;

}

.ttd-item.open {
    border-color: #f70759;
}

.ttd-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 14px;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s;
}

.ttd-header:hover {
    background: #f0f4f8;
}

.ttd-item.open .ttd-header {
    background: #f0f4f8;
}

.ttd-num {
    background: #f70759;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ttd-item.open .ttd-num {
    background: #f70759;
    color: #ffffff;
}

.ttd-name {
    flex: 1;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.35;
}

.ttd-icon {
    font-size: 18px;
    font-weight: 300;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: transform 0.3s, color 0.2s;
    line-height: 1;
}

.ttd-item.open .ttd-icon {
    transform: rotate(45deg);
    color: black;
}

.ttd-body {
    max-height: 0;
    overflow: hidden;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    padding: 0 14px;
    transition: max-height 0.4s cubic-bezier(.4, 0, .2, 1),
        padding 0.3s ease;
    border-top: 0px solid var(--border);
}

.ttd-item.open .ttd-body {
    max-height: 200px;
    padding: 12px 14px 14px;
    border-top: 1px solid var(--border);
    color: black;
}

/* Responsive */
@media (max-width: 1024px) {
    .ttd-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .ttd-section {
        padding: 44px 16px;
    }

    .ttd-title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .ttd-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .ttd-name {
        font-size: 12px;
    }
}

@media (max-width: 400px) {
    .ttd-grid {
        grid-template-columns: 1fr;
    }
}

/* mon section */
/* ══ MONUMENTS SECTION ══ */
.mon-section {
    background: white;
    padding: 64px 24px;
}

.mon-inner {
    max-width: 1160px;
    margin: 0 auto;
}

.mon-title {
    /* font-family: 'Cormorant Garamond', serif; */
    font-size: 46px;
    font-weight: 700;
    text-align: center;
    color: black;
    margin-bottom: 36px;
}

.mon-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    align-items: start;
}

.mon-item {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #f70759;
    background: var(--white);
    transition: box-shadow 0.2s;
}

.mon-item.open {
    border-color: #0f1923;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.mon-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 14px;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s;
}

.mon-header:hover {
    background: #f0f4f8;
}

.mon-item.open .mon-header {
    background: #f0f4f8;
}

.mon-num {
    background: #f70759;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mon-name {
    flex: 1;
    font-size: 12.5px;
    font-weight: 600;
    color: #0f1923;
    line-height: 1.35;
}

.mon-icon {
    font-size: 18px;
    font-weight: 300;
    color: #0f1923;
    flex-shrink: 0;
    transition: transform 0.3s;
    line-height: 1;
    width: 20px;
    text-align: center;
}

.mon-item.open .mon-icon {
    transform: rotate(45deg);
}

.mon-body {
    max-height: 0;
    overflow: hidden;
    font-size: 12.5px;
    color: #000000;
    line-height: 1.7;
    padding: 0 14px;
    border-top: 0px solid var(--border);
    transition: max-height 0.4s cubic-bezier(.4, 0, .2, 1),
        padding 0.3s ease;
}

.mon-item.open .mon-body {
    max-height: 200px;
    padding: 12px 14px 14px;
    border-top: 1px solid var(--border);
}

/* Responsive */
@media (max-width: 1024px) {
    .mon-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .mon-section {
        padding: 44px 16px;
    }

    .mon-title {
        font-size: 22px;
        margin-bottom: 22px;
    }

    .mon-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .mon-name {
        font-size: 12px;
    }
}

@media (max-width: 400px) {
    .mon-grid {
        grid-template-columns: 1fr;
    }
}


/* lightbox css */
/* ============ LIGHTBOX ============ */
.lb-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.lb-overlay.is-open {
    display: flex;
}

.lb-img-wrap {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lb-img-wrap img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .6);
    transition: opacity .2s ease;
}

.lb-close {
    position: fixed;
    top: 18px;
    right: 22px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    z-index: 2;
}

.lb-close:hover {
    background: rgba(255, 255, 255, .25);
}

.lb-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    z-index: 2;
    line-height: 1;
}

.lb-arrow:hover {
    background: rgba(255, 255, 255, .25);
}

.lb-arrow:disabled {
    opacity: .2;
    cursor: not-allowed;
}

.lb-prev {
    left: 14px;
}

.lb-next {
    right: 14px;
}

.lb-counter {
    position: fixed;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, .7);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .06em;
    background: rgba(0, 0, 0, .4);
    padding: 5px 14px;
    border-radius: 20px;
}

@media (max-width: 560px) {
    .lb-arrow {
        width: 36px;
        height: 36px;
        font-size: 24px;
    }

    .lb-prev {
        left: 6px;
    }

    .lb-next {
        right: 6px;
    }
}


/* important information css */
/* ============ IMPORTANT INFORMATION ============ */
/* ============ IMPORTANT INFORMATION ============ */
.important-info-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 14px 24px;
    border-bottom: 1px solid var(--border, #e5e7eb);
}



.info-sub-block-full {
    margin-top: 20px;
    /* background: linear-gradient(180deg, #f4f6fc 0%, #eef1fa 100%); */
    border-radius: 14px;
    padding: 24px 28px;
    border-left: 4px solid #f70759;
}

.info-sub-heading {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 21px;
    font-weight: 700;
    color: black;
    margin: 0 0 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid #dde1eb;
}

.info-sub-heading svg {
    width: 18px;
    height: 18px;
    color: #f70759;
    flex-shrink: 0;
}

/* 2-column bullets on desktop */
.info-bullets-cols {
    columns: 2;
    column-gap: 40px;
}

.info-bullets {
    list-style: none;
    margin: 0;
    padding: 0;
}

.info-bullets li {
    position: relative;
    padding-left: 18px;
    font-size: 14.5px;
    line-height: 1.65;
    color: black;
    margin-bottom: 10px;
    break-inside: avoid;
}

.info-bullets li::before {
    content: '›';
    position: absolute;
    left: 0;
    top: 0;
    color: #f70759;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.3;
}

.info-bullets li strong {
    color: #2d364d;
    font-weight: 700;
}

/* ---- Mobile ---- */
@media (max-width: 640px) {
    .important-info-section {
        padding: 24px 14px;
    }

    .snapshot-heading {
        font-size: 30px;
    }

    .info-sub-block-full {
        padding: 18px 18px;
        border-radius: 10px;
    }

    .info-bullets-cols {
        columns: 1;
    }

    .info-sub-heading {
        font-size: 18px;
    }

    .info-bullets li {
        font-size: 14px;
    }
}


/* mobile sticky button */
/* ============ MOBILE STICKY BOTTOM BAR ============ */
.mob-sticky-bar {
    display: none;
    /* desktop pe hidden */
}

@media (max-width: 900px) {
    .mob-sticky-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 999;
        background: #fff;
        padding: 12px 16px 14px;
        border-top: 1px solid #e5e7eb;
        box-shadow: 0 -6px 24px rgba(0, 0, 0, .1);
    }

    .mob-sticky-price {
        display: flex;
        align-items: baseline;
        gap: 5px;
        flex-shrink: 0;
    }

    .mob-sticky-old {
        font-size: 12px;
        color: black;
        text-decoration: line-through;
    }

    .mob-sticky-new {
        font-size: 22px;
        font-weight: 800;
        color: black;
        line-height: 1;
    }

    .mob-sticky-unit {
        font-size: 12px;
        color: black;
    }

    .mob-sticky-btn {
        flex: 1;
        padding: 13px 0;
        background: #f70759;
        color: #fff;
        border: none;
        border-radius: 10px;
        font-size: 15px;
        font-weight: 700;
        cursor: pointer;
        font-family: inherit;
        transition: background .2s;
    }

    .mob-sticky-btn:hover {
        background: #d4044d;
    }

    /* Page ke content ko bottom bar se overlap na ho */
    body {
        padding-bottom: 76px;
    }
}


/* tbk.css */
/* ===================== TBK BOOKING FLOW (NEW) ===================== */
.tbk-hidden {
    display: none !important;
}

/* ---- Step 1 widget — lives inside .itin-right, so width:100% ---- */
.tbk-wrap {
    width: 100%;
}

.tbk-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 5px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .08);
    overflow: visible;
    margin-bottom: 18px;
}

.tbk-pricebar {
    display: flex;
    align-items: baseline;
    gap: 5px;
    background: #f70759;
    padding: 14px 16px 12px;
    border-bottom: 1px solid #f0f0f0;
    border-radius: 5px;
    flex-wrap: wrap;
}

.tbk-from {
    font-size: 12px;
    color: #ffffff;
}

.tbk-old {
    font-size: 13px;
    color: #ffffff;
    text-decoration: line-through;
}

.tbk-now {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.tbk-unit {
    font-size: 12px;
    color: #ffffff;
}

.tbk-perks {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: space-between;
    padding: 10px 16px 0;
}

.tbk-perks span {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12.5px;
    color: #000;
    font-weight: 500;
}

.tbk-perks svg {
    width: 12px;
    height: 12px;
    color: #16a34a;
    flex-shrink: 0;
}

.tbk-section {
    padding: 12px 14px 14px;
}

.tbk-sec-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #111827;
    margin-bottom: 9px;
}

.tbk-row3 {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tbk-row3 .tbk-field-wrap {
    width: 100%;
}

.tbk-field-wrap {
    position: relative;
}

.tbk-field-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgb(181 172 172);
    border-radius: 10px;
    background: #fafafa;
    padding: 11px 8px 11px 32px;
    font-size: 12.5px;
    color: #111827;
    cursor: pointer;
    position: relative;
    font-family: inherit;
    text-align: left;
    transition: border-color .2s;
}

.tbk-field-btn:hover,
.tbk-field-btn.tbk-open {
    border-color: #f70759;
    background: #fff;
}

.tbk-field-btn .tbk-ico {
    position: absolute;
    left: 9px;
    width: 15px;
    height: 15px;
    color: #000000;
}

.tbk-field-btn .tbk-ico svg {
    width: 15px;
    height: 15px;
}

.tbk-field-btn .tbk-arrow {
    margin-left: auto;
    width: 11px;
    height: 11px;
    color: #9ca3af;
    flex-shrink: 0;
}

.tbk-field-btn .tbk-arrow svg {
    width: 11px;
    height: 11px;
}

.tbk-field-btn.tbk-err {
    border-color: #f70759;
    background: #fff5f7;
}

.tbk-field-label {
    font-size: 9.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
    color: #000000;
    display: block;
    margin-bottom: 2px;
}

.tbk-field-val {
    font-size: 12.5px;
    font-weight: 600;
    color: #111827;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tbk-pop {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .14);
    z-index: 60;
    padding: 14px;
}

.tbk-pop.tbk-pop-wide {
    min-width: 260px;
}

.tbk-trav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
}

.tbk-trav-row+.tbk-trav-row {
    border-top: 1px solid #f0f0f0;
}

.tbk-trav-name {
    font-size: 13px;
    font-weight: 700;
    color: #111827;
}

.tbk-trav-sub {
    font-size: 10.5px;
    color: #000000;
}

.tbk-cnt {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tbk-cnt-btn {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1.5px solid #000000;
    background: #fff;
    color: #000000;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s;
    line-height: 1;
}

.tbk-cnt-btn:hover {
    border-color: #f70759;
    background: #f70759;
    color: #fff;
}

.tbk-cnt-btn:disabled {
    opacity: .35;
    cursor: not-allowed;
}

.tbk-cnt-val {
    min-width: 16px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
}

.tbk-pop-done {
    width: 100%;
    margin-top: 10px;
    background: #f70759;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 9px;
    font-weight: 700;
    font-size: 12.5px;
    cursor: pointer;
    font-family: inherit;
}

.tbk-opt-list {
    max-height: 220px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tbk-opt {
    padding: 9px 10px;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
    color: #000000;
}

.tbk-opt:hover {
    background: #fff5f7;
    color: #f70759;
}

.tbk-opt.tbk-sel {
    background: #f70759;
    color: #fff;
    font-weight: 700;
}

.tbk-cal {
    width: 100%;
}

.tbk-cal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.tbk-cal-title {
    font-size: 13.5px;
    font-weight: 800;
    color: #111827;
}

.tbk-cal-nav {
    display: flex;
    gap: 6px;
}

.tbk-cal-nav button {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background: #fafafa;
    color: #374151;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tbk-cal-nav button:hover {
    border-color: #f70759;
    color: #f70759;
}

.tbk-cal-nav button:disabled {
    opacity: .3;
    cursor: not-allowed;
}

.tbk-cal-nav svg {
    width: 13px;
    height: 13px;
}

.tbk-cal-dow {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    color: #9ca3af;
    margin-bottom: 4px;
}

.tbk-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.tbk-cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12.5px;
    border-radius: 8px;
    cursor: pointer;
    color: #111827;
    transition: background .15s;
}

.tbk-cal-day:hover:not(.tbk-day-disabled):not(.tbk-day-empty) {
    background: #fff0f4;
}

.tbk-day-empty {
    visibility: hidden;
}

.tbk-day-disabled {
    color: #d1d5db;
    cursor: not-allowed;
}

.tbk-day-today {
    box-shadow: inset 0 0 0 1.5px #f70759;
    font-weight: 700;
}

.tbk-day-sel {
    background: #f70759 !important;
    color: #fff;
    font-weight: 800;
}

.tbk-cal-foot {
    margin-top: 10px;
    font-size: 10.5px;
    color: #000000;
    text-align: center;
}

.tbk-cta {
    width: 100%;
    padding: 12px;
    background: #f70759;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 14.5px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: background .2s, transform .15s;
    margin-top: 10px;
}

.tbk-cta:hover {
    background: #d4044d;
    transform: translateY(-1px);
}

.tbk-cta.tbk-cta-outline {
    background: #fff;
    color: #f70759;
    border: 1.5px solid #f70759;
}

.tbk-cta.tbk-cta-outline:hover {
    background: #fff5f7;
    transform: none;
}

.tbk-cta:disabled {
    background: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
    transform: none;
}

.tbk-alert {
    position: fixed;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    background: #f70759;
    color: #fff;
    padding: 10px 22px;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 600;
    z-index: 99999;
    box-shadow: 0 8px 20px rgba(247, 7, 89, .3);
}

/* ---- Step 2: package section, lives as .itin-card in left column ---- */
.tbk-pkgsec-sub {
    font-size: 13.5px;
    color: #ffffff;
    margin-top: 4px;
}

.tbk-pkgsec-body {
    padding-top: 0px;
}

.tbk-pkg-card {
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    background: #fafafa;
    padding: 16px;
    margin: 20px;
    margin-bottom: 14px;
    transition: border-color .2s, background .2s;
    cursor: pointer;
}

.tbk-pkg-card.tbk-pkg-active {
    border-color: #f70759;
    background: #fff8fa;
}

.tbk-pkg-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 6px;
}

.tbk-pkg-name {
    font-size: 18.5px;
    font-weight: 700;
    color: #111827;
}

.tbk-pkg-desc {
    font-size: 13.5px;
    color: #000000;
    margin-bottom: 10px;
}

.tbk-pkg-badge {
    font-size: 15px;
    font-weight: 800;
    color: #f70759;
    white-space: nowrap;
}

.tbk-pkg-old {
    font-size: 12.5px;
    color: #000000;
    text-decoration: line-through;
    margin-right: 4px;
}

.tbk-pkg-pick {
    position: relative;
    margin-bottom: 10px;
}

.tbk-pkg-pick-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgb(181 172 172);
    border-radius: 10px;
    background: #fff;
    padding: 10px 12px;
    font-size: 13px;
    color: #111827;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
}

.tbk-pkg-pick-btn:hover,
.tbk-pkg-pick-btn.tbk-open {
    border-color: #f70759;
}

.tbk-pkg-pick-btn .tbk-ico {
    width: 14px;
    height: 14px;
    color: #9ca3af;
    flex-shrink: 0;
}

.tbk-pkg-pick-btn .tbk-ico svg {
    width: 14px;
    height: 14px;
}

.tbk-pkg-pick-btn .tbk-arrow {
    margin-left: auto;
    width: 11px;
    height: 11px;
    color: #9ca3af;
}

.tbk-pkg-pick-btn .tbk-arrow svg {
    width: 11px;
    height: 11px;
}

.tbk-pkg-pick-btn.tbk-err {
    border-color: #f70759;
    background: #fff5f7;
}

.tbk-pkg-calc {
    background: #fff;
    border-radius: 10px;
    padding: 10px 12px;
    border: 1px solid #f0f0f0;
}

.tbk-pkg-calc-row {
    display: flex;
    justify-content: space-between;
    font-size: 13.5px;
    color: #000000;
    padding: 3px 0;
}

.tbk-pkg-calc-div {
    height: 1px;
    background: #e5e7eb;
    margin: 6px 0;
}

.tbk-pkg-calc-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tbk-pkg-calc-total span {
    font-size: 13px;
    color: #000000;
}

.tbk-pkg-calc-total strong {
    font-size: 16px;
    font-weight: 800;
    color: #111827;
}

.tbk-pkg-continue {
    display: flex;
    justify-content: flex-end;
}

/* ---- Step 3: overlay modal (page NOT replaced — sits on top) ---- */
.tbk-overlay {
    position: fixed;
    inset: 0;
    background: rgba(17, 24, 39, .6);
    z-index: 9999;
}

.tbk-overlay-scroll {
    position: absolute;
    inset: 0;
    overflow-y: auto;
    padding: 30px 16px 50px;
}

.tbk-page-modal {
    max-width: 1000px;
    margin: 0 auto;
    background: #f4f6fb;
    border-radius: 18px;
    padding: 24px 22px 30px;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .3);
}

.tbk-overlay-close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: #374151;
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
    z-index: 5;
}

.tbk-overlay-close:hover {
    color: #f70759;
}

.tbk-progress {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 22px;
    max-width: 380px;
}

.tbk-prog-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    flex-shrink: 0;
}

.tbk-prog-dot {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #9ca3af;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s, color .3s;
}

.tbk-prog-item span {
    font-size: 10px;
    font-weight: 600;
    color: #9ca3af;
}

.tbk-prog-item.tbk-active .tbk-prog-dot {
    background: #f70759;
    color: #fff;
}

.tbk-prog-item.tbk-active span {
    color: #f70759;
}

.tbk-prog-item.tbk-done .tbk-prog-dot {
    background: #16a34a;
    color: #fff;
}

.tbk-prog-item.tbk-done span {
    color: #16a34a;
}

.tbk-prog-line {
    flex: 1;
    height: 2px;
    background: #e5e7eb;
    margin: 0 4px;
    margin-bottom: 14px;
}

.tbk-prog-line.tbk-done {
    background: #16a34a;
}

.tbk-page-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 22px;
    align-items: start;
}

@media (max-width:820px) {
    .tbk-page-grid {
        grid-template-columns: 1fr;
    }
}

.tbk-panel {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .06);
    padding: 22px;
}

.tbk-panel-title {
    font-size: 17px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 16px;
}

.tbk-form-field {
    margin-bottom: 13px;
}

.tbk-form-field label {
    display: block;
    font-size: 11.5px;
    font-weight: 700;
    color: #374151;
    margin-bottom: 5px;
}

.tbk-form-field input,
.tbk-form-field textarea,
.tbk-form-field select {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fafafa;
    padding: 11px 12px;
    font-size: 13.5px;
    color: #111827;
    font-family: inherit;
    outline: none;
    transition: border-color .2s;
}

.tbk-form-field input:focus,
.tbk-form-field textarea:focus,
.tbk-form-field select:focus {
    border-color: #f70759;
    background: #fff;
}

.tbk-form-field textarea {
    resize: vertical;
    min-height: 64px;
}

.tbk-form-field.tbk-err input,
.tbk-form-field.tbk-err select {
    border-color: #f70759;
    background: #fff5f7;
}

.tbk-row2 {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 8px;
}

@media (max-width:320px) {
    .tbk-row2 {
        grid-template-columns: 1fr;
    }
}

.tbk-country-select {
    position: relative;
}

.tbk-country-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fafafa;
    padding: 11px 10px;
    font-size: 13.5px;
    color: #111827;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
}

.tbk-country-btn .tbk-flag {
    font-size: 15px;
}

.tbk-country-list {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .14);
    max-height: 220px;
    overflow-y: auto;
    z-index: 50;
}

.tbk-country-list-search {
    padding: 8px;
    border-bottom: 1px solid #f0f0f0;
}

.tbk-country-list-search input {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 7px 9px;
    font-size: 12.5px;
    font-family: inherit;
    outline: none;
}

.tbk-country-opt {
    padding: 8px 12px;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #374151;
}

.tbk-country-opt:hover {
    background: #fff5f7;
    color: #f70759;
}

.tbk-pay-opt {
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    padding: 13px 14px;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    transition: border-color .2s, background .2s;
}

.tbk-pay-opt:hover {
    border-color: #f70759;
}

.tbk-pay-opt.tbk-pay-active {
    border-color: #f70759;
    background: #fff8fa;
}

.tbk-pay-opt-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tbk-pay-radio {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #d1d5db;
    flex-shrink: 0;
    position: relative;
}

.tbk-pay-opt.tbk-pay-active .tbk-pay-radio {
    border-color: #f70759;
}

.tbk-pay-opt.tbk-pay-active .tbk-pay-radio::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: #f70759;
}

.tbk-pay-name {
    font-size: 13.5px;
    font-weight: 700;
    color: #111827;
}

.tbk-pay-sub {
    font-size: 11.5px;
    color: #6b7280;
    margin-top: 1px;
}

.tbk-pay-amt {
    font-size: 14.5px;
    font-weight: 800;
    color: #111827;
    white-space: nowrap;
}

.tbk-pm-section {
    margin-top: 18px;
}

.tbk-pm-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #374151;
    margin-bottom: 10px;
}

.tbk-pm-grid {
    display: flex;
    gap: 10px;
}

.tbk-pm-card {
    flex: 1;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    padding: 14px 10px;
    text-align: center;
    cursor: pointer;
    transition: border-color .2s, background .2s;
}

.tbk-pm-card:hover {
    border-color: #f70759;
}

.tbk-pm-card.tbk-pm-active {
    border-color: #f70759;
    background: #fff8fa;
}

.tbk-pm-card svg {
    height: 26px;
}

.tbk-pm-card span {
    display: block;
    font-size: 11.5px;
    font-weight: 600;
    color: #374151;
    margin-top: 6px;
}

.tbk-sum-img {
    width: 100%;
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 14px;
}

.tbk-sum-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tbk-sum-title {
    font-size: 14.5px;
    font-weight: 700;
    color: #111827;
    line-height: 1.4;
    margin-bottom: 4px;
}

.tbk-sum-rating {
    font-size: 11.5px;
    color: #f59e0b;
    margin-bottom: 8px;
}

.tbk-sum-rating span {
    color: #000000;
    margin-left: 4px;
}

.tbk-sum-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 12px 0;
}

.tbk-sum-row {
    display: flex;
    justify-content: space-between;
    font-size: 12.5px;
    color: #000000;
    padding: 5px 0;
    gap: 10px;
}

.tbk-sum-row strong {
    color: #111827;
    font-weight: 700;
    text-align: right;
}

.tbk-sum-calc-row {
    display: flex;
    justify-content: space-between;
    font-size: 12.5px;
    color: #000000;
    padding: 3px 0;
}

.tbk-sum-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}

.tbk-sum-total span {
    font-size: 13px;
    color: #000000;
}

.tbk-sum-total strong {
    font-size: 18px;
    font-weight: 800;
    color: #111827;
}

.tbk-sum-secure {
    font-size: 13px;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 14px;
}

.tbk-sum-secure svg {
    width: 13px;
    height: 13px;
}

.tbk-pay-actions {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.tbk-pay-actions .tbk-cta {
    margin-top: 0;
}

/* ---- Thank-you overlay (separate, centered card) ---- */
#tbkOverlay {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

#tbkOverlay.tbk-hidden {
    display: none;
}

.tbk-thankyou {
    background: #fff;
    border-radius: 20px;
    padding: 36px 28px;
    max-width: 340px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .2);
}

.tbk-ty-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #dcfce7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.tbk-ty-icon svg {
    width: 28px;
    height: 28px;
    color: #16a34a;
}

.tbk-thankyou h3 {
    font-size: 20px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 10px;
}

.tbk-thankyou p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ---- Responsive: stack price-bar perks ---- */
@media (max-width:480px) {
    .tbk-page-modal {
        padding: 18px 14px 24px;
    }
}

/* ===================== booking-details.html page layout ===================== */
.tbk-detailspage {
    max-width: 1060px;
    margin: 0 auto;
    padding: 28px 18px 70px;
}

.tbk-back-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    text-decoration: none;
    margin-bottom: 22px;
    transition: color .2s;
}

.tbk-back-link svg {
    width: 14px;
    height: 14px;
}

.tbk-back-link:hover {
    color: #f70759;
}

/* progress bar — reused, just needs top margin */
.tbk-detailspage .tbk-progress {
    margin-bottom: 28px;
    max-width: 400px;
}

/* 2-col grid: left=forms, right=summary */
.tbk-detailspage .tbk-page-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
    align-items: start;
}

@media(max-width:840px) {
    .tbk-detailspage .tbk-page-grid {
        grid-template-columns: 1fr;
    }
}

/* summary sub-heading (Traveller details) */
.tbk-sum-subhead {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #000000;
    margin-bottom: 4px;
    margin-top: 2px;
}

/* ---- Thank-you overlay — centred card ---- */
#tbkOverlay {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

#tbkOverlay.tbk-hidden {
    display: none;
}


/*  */
/* .tbk-pkg-continue-btn {
  margin-top: 12px;
  width: 100%;
} */


/*  */
.tbk-pkg-cont-btn {
    width: 100%;
    margin-top: 14px;
    padding: 12px 0;
    font-size: 14.5px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    font-family: inherit;
    transition: background .2s, transform .15s, opacity .2s;
}

.tbk-pkg-cont-btn:disabled {
    background: #e5e7eb !important;
    color: #9ca3af !important;
    cursor: not-allowed;
    transform: none !important;
    opacity: .7;
}

.tbk-pkg-cont-btn:not(:disabled):hover {
    background: #d4044d;
    transform: translateY(-1px);
}


/* alert */
.tbk-alert {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #f70759;
    color: #fff;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    z-index: 99999;
    box-shadow: 0 8px 24px rgba(247, 7, 89, .35);
    white-space: nowrap;
    animation: tbkAlertIn .25s ease;
}

@keyframes tbkAlertIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* radio buttons */
/* ---- Radio button styling ---- */
.tbk-pkg-top {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex-direction: row-reverse;
    /* radio right mein chala jayega */
}

.tbk-pkg-radio-wrap {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-top: 2px;
    cursor: pointer;
}

.tbk-pkg-radio-input {
    display: none;
    /* native hide karo */
}

.tbk-pkg-radio-custom {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #d1d5db;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color .2s, background .2s;
    position: relative;
}

.tbk-pkg-radio-custom::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #f70759;
    opacity: 0;
    transition: opacity .2s;
}

/* Jab card active ho — radio fill ho */
.tbk-pkg-card.tbk-pkg-active .tbk-pkg-radio-custom {
    border-color: #f70759;
}

.tbk-pkg-card.tbk-pkg-active .tbk-pkg-radio-custom::after {
    opacity: 1;
}

/* Name thoda flex grow le */
.tbk-pkg-name {
    flex: 1;
    margin-left: -9px;
}