:root {
    --lux-black: #0b0a08;
    --lux-ink: #19120e;
    --lux-gold: #c99b45;
    --lux-gold-2: #edd29a;
    --lux-maroon: #6e1f1a;
    --lux-bronze: #9b6c35;
    --lux-cream: #fbf5e9;
    --lux-beige: #eadbc3;
    --lux-muted: #756a5c;
    --lux-line: #eadcc4;
    --shadow: 0 24px 70px rgba(42, 25, 12, 0.14);
    --radius: 24px;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: "Inter", "Poppins", Arial, sans-serif;
    color: var(--lux-ink);
    background: var(--lux-cream);
    line-height: 1.75;
}
a {
    text-decoration: none;
    color: inherit;
}
img {
    max-width: 100%;
    display: block;
}
.container {
    width: min(1180px, 92%);
    margin: auto;
}
.eyebrow {
    color: var(--lux-gold);
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.section {
    padding: 104px 0;
}
.section.soft {
    background: linear-gradient(180deg, #fffaf1, #f3e6d3);
}
.section-title {
    font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
    font-size: clamp(36px, 4.5vw, 55px);
    line-height: 1.02;
    margin: 0 0 18px;
    color: var(--lux-black);
}
.center {
    text-align: center;
}
.meta {
    color: var(--lux-muted);
    font-size: 15px;
}
.price {
    color: var(--lux-bronze);
    font-weight: 900;
    font-size: 28px;
}
.topbar {
    background: #090806;
    color: #eadcc4;
    font-size: 13px;
    border-bottom: 1px solid rgba(201, 155, 69, 0.28);
}
.topbar .container,
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}
.topbar span {
    display: inline-flex;
    margin-right: 22px;
}
.navbar {
    background: rgba(251, 245, 233, 0.92);
    backdrop-filter: blur(18px);
    position: sticky;
    top: 0;
    z-index: 40;
    box-shadow: 0 18px 50px rgba(42, 25, 12, 0.08);
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: #7b4b39;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 28px;
    font-weight: 900;
}
.brand img {
    height: 48px;
    width: auto;
}
.brand b {
    color: var(--lux-maroon);
}
.navlinks {
    display: flex;
    gap: 23px;
    align-items: center;
    font-weight: 800;
    font-size: 14px;
}
.navlinks a:not(.btn) {
    position: relative;
}
.navlinks a:not(.btn):after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    background: var(--lux-gold);
    transition: 0.25s;
}
.navlinks a:hover:after {
    width: 100%;
}
.mobile-toggle {
    display: none;
    background: var(--lux-black);
    color: #fff;
    border: 0;
    border-radius: 999px;
    width: 44px;
    height: 44px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--lux-gold), #a06d26);
    color: #130d08;
    padding: 13px 24px;
    font-weight: 900;
    box-shadow: 0 14px 35px rgba(160, 109, 38, 0.25);
    cursor: pointer;
    transition: 0.25s;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 45px rgba(160, 109, 38, 0.34);
}
.btn.secondary {
    background: #fff;
    color: var(--lux-black);
    border: 1px solid var(--lux-line);
    box-shadow: none;
}
.hero {
    position: relative;
    min-height: clamp(760px, 88vh, 940px);
    background:
        linear-gradient(
            110deg,
            rgba(11, 10, 8, 0.48),
            rgba(46, 24, 18, 0.34),
            rgba(11, 10, 8, 0.2)
        ),
        url("/assets/images/india/taj-mahal-sunrise.png") center/cover;
    color: #fff;
    display: flex;
    align-items: center;
    overflow: visible;
}
.hero-bg-slider,
.hero-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.hero-bg-slider {
    z-index: 0;
    overflow: hidden;
    background: #0b0a08;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
}
.hero-slide:first-child {
    opacity: 1;
}
.hero-overlay {
    z-index: 1;
    background:
        radial-gradient(circle at 76% 28%, rgba(201, 155, 69, 0.14), transparent 34%),
        linear-gradient(110deg, rgba(11, 10, 8, 0.5), rgba(46, 24, 18, 0.36), rgba(11, 10, 8, 0.22));
}
.hero:after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 120px;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(transparent, rgba(11, 10, 8, 0.18));
}
.hero .container {
    position: relative;
    z-index: 2;
}
.hero-content {
    max-width: 900px;
}
.hero-enquiry-layout {
    display: flex;
    min-height: inherit;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 46px;
    padding-top: 84px;
    padding-bottom: 54px;
}
.hero-enquiry-layout .hero-content {
    max-width: 820px;
}
.hero-cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}
.hero-enquiry-card {
    width: min(1380px, 96vw);
    align-self: center;
    margin-bottom: -55px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 26px;
    padding: 14px;
    background: rgba(255, 250, 241, 0.88);
    box-shadow: 0 30px 80px rgba(27, 16, 9, 0.28);
    backdrop-filter: blur(22px);
}
.hero-enquiry-intro {
    display: none;
}
.hero-enquiry-form {
    display: grid;
    grid-template-columns: 1.05fr 1.15fr 0.95fr 1fr 1fr auto;
    gap: 8px;
    align-items: stretch;
}
.hero-enquiry-form label {
    min-width: 0;
    display: grid;
    gap: 5px;
    padding: 8px 12px;
    border-right: 1px solid rgba(110, 31, 26, 0.12);
    color: var(--lux-maroon);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.hero-enquiry-form input,
.hero-enquiry-form select {
    min-width: 0;
    border: 0;
    border-radius: 0;
    padding: 3px 0;
    background: transparent;
    font-size: 13px;
    text-transform: none;
}
.hero-enquiry-submit {
    min-width: 150px;
    min-height: 66px;
    padding-inline: 22px;
    border-radius: 18px;
}
.hero-enquiry-submit.is-loading {
    opacity: 0.78;
    cursor: wait;
}
.hero-enquiry-submit.is-loading::before {
    content: "";
    width: 16px;
    height: 16px;
    border: 2px solid rgba(19, 13, 8, 0.3);
    border-top-color: #130d08;
    border-radius: 50%;
    animation: frontendSpin 0.7s linear infinite;
}
.hero h1 {
    font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
    max-width: 900px;
    font-size: clamp(54px, 7vw, 96px);
    line-height: 0.95;
    margin: 14px 0 22px;
}
.hero + .section {
    padding-top: 130px;
}

@media (max-width: 1199px) and (min-width: 992px) {
    .hero-enquiry-card {
        width: 96vw;
    }
    .hero-enquiry-form {
        grid-template-columns: 1fr 1.1fr 0.95fr 1fr 1fr auto;
    }
    .hero-enquiry-form label {
        padding-inline: 9px;
    }
    .hero-enquiry-submit {
        min-width: 132px;
        padding-inline: 16px;
    }
}

@media (max-width: 991px) {
    .hero {
        min-height: auto;
        padding: 76px 0 0;
    }
    .hero-enquiry-layout {
        gap: 38px;
        padding-top: 38px;
        padding-bottom: 0;
    }
    .hero-enquiry-card {
        width: 100%;
        margin-bottom: -104px;
        padding: 16px;
        border-radius: 26px;
    }
    .hero-enquiry-form {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }
    .hero-enquiry-form label {
        border: 1px solid rgba(110, 31, 26, 0.12);
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.62);
    }
    .hero-enquiry-submit {
        width: 100%;
        min-height: 62px;
        border-radius: 16px;
    }
    .hero + .section {
        padding-top: 160px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 54px 0 0;
    }
    .hero-enquiry-layout {
        gap: 30px;
        padding-top: 26px;
    }
    .hero-enquiry-card {
        margin-bottom: -36px;
        padding: 14px;
        border-radius: 22px;
    }
    .hero-enquiry-intro {
        display: block;
        padding: 3px 4px 12px;
    }
    .hero-enquiry-intro .eyebrow {
        margin: 0;
        font-size: 10px;
    }
    .hero-enquiry-intro h2 {
        margin: 3px 0 0;
        color: var(--lux-ink);
        font-family: "Playfair Display", Georgia, serif;
        font-size: 24px;
    }
    .hero-enquiry-form {
        grid-template-columns: 1fr;
        gap: 9px;
    }
    .hero-enquiry-form label {
        padding: 9px 12px;
    }
    .hero-enquiry-submit {
        min-height: 54px;
    }
    .hero + .section {
        padding-top: 100px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding-top: 42px;
    }
    .hero-enquiry-layout {
        gap: 26px;
    }
    .hero h1 {
        font-size: clamp(38px, 12vw, 48px);
    }
    .hero-cta-row {
        gap: 10px;
    }
    .hero-cta-row .btn {
        flex: 1 1 100%;
    }
}
.hero p {
    max-width: 690px;
    color: #f3e4c8;
    font-size: 18px;
}
.search-panel {
    margin-top: 36px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 26px;
    padding: 16px;
    display: grid;
    grid-template-columns: repeat(5, 1fr) auto;
    gap: 12px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
}
input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--lux-line);
    border-radius: 10px;
    padding: 10px 6px;
    font: inherit;
    background: #fff;
    color: var(--lux-ink);
    outline: none;
    transition: 0.2s;
}
input:focus,
select:focus,
textarea:focus {
    border-color: var(--lux-gold);
    box-shadow: 0 0 0 4px rgba(201, 155, 69, 0.15);
}
textarea {
    min-height: 132px;
}
.grid {
    display: grid;
    gap: 30px;
}
.grid.cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid.cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid.cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.span-2 {
    grid-column: span 2;
}
.card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(234, 220, 196, 0.9);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: 0.32s;
}
.card:hover {
    transform: translateY(-7px);
    box-shadow: 0 30px 90px rgba(42, 25, 12, 0.2);
}
.card-body {
    padding: 28px;
}
.package-card,
.destination-card,
.blog-card {
    height: 100%;
}
.package-card img,
.destination-card img,
.blog-card img {
    height: 260px;
    width: 100%;
    object-fit: cover;
    transition: 0.48s;
}
.package-card:hover img,
.destination-card:hover img,
.blog-card:hover img {
    transform: scale(1.045);
}
.package-badge {
    display: inline-flex;
    background: var(--lux-maroon);
    color: #fff1cf;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 32px 0;
}
.stat-tile {
    background: #fff;
    border: 1px solid var(--lux-line);
    border-radius: 20px;
    padding: 22px;
}
.stat-tile h3 {
    font-size: 28px;
    margin: 0;
    color: var(--lux-maroon);
}
.image-stack img {
    border-radius: 36px;
    box-shadow: var(--shadow);
    height: 560px;
    width: 100%;
    object-fit: cover;
}
.glass-card {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 24px;
    padding: 16px;
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}
.page-hero {
    position: relative;
    background:
        linear-gradient(100deg, rgba(11, 10, 8, 0.9), rgba(110, 31, 26, 0.55)),
        url("/assets/images/india/agra-fort-mughal.png") center/cover;
    color: #fff;
    text-align: center;
    padding: 150px 0 120px;
    overflow: hidden;
}
.page-hero h1 {
    font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
    font-size: clamp(44px, 6vw, 78px);
    line-height: 1;
    margin: 0 0 16px;
}
.page-hero p {
    color: #eadfcd;
}
.two-col {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 36px;
}
.sidebar-box {
    background: #fff;
    border: 1px solid var(--lux-line);
    border-radius: 24px;
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: 0 16px 45px rgba(42, 25, 12, 0.08);
}
.package-detail-body {
    overflow: hidden;
}
.package-featured-image {
    height: 540px;
    width: 100%;
    object-fit: cover;
    border-radius: 18px;
}
.tour-gallery-slider {
    position: relative;
    margin: 20px 0 34px;
    padding: 0 46px 34px;
}
.tour-gallery-viewport {
    overflow: hidden;
    border-radius: 18px;
}
.tour-gallery-track {
    display: flex;
    gap: 16px;
    transition: transform 0.42s ease;
    will-change: transform;
}
.tour-gallery-slide {
    flex: 0 0 calc((100% - 32px) / 3);
    min-width: 0;
    overflow: hidden;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(42, 25, 12, 0.12);
}
.tour-gallery-slide img {
    height: 160px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}
.tour-gallery-slide:hover img {
    transform: scale(1.06);
}
.tour-gallery-arrow {
    position: absolute;
    top: calc(50% - 17px);
    z-index: 2;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(201, 155, 69, 0.42);
    border-radius: 999px;
    background: rgba(255, 250, 241, 0.94);
    color: var(--lux-maroon);
    display: grid;
    place-items: center;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(42, 25, 12, 0.14);
    transition: 0.25s;
}
.tour-gallery-arrow:hover {
    background: var(--lux-gold);
    color: #130d08;
}
.tour-gallery-arrow:disabled {
    cursor: not-allowed;
    opacity: 0.42;
    transform: none;
}
.tour-gallery-prev {
    left: 0;
}
.tour-gallery-next {
    right: 0;
}
.tour-gallery-dots {
    position: absolute;
    left: 46px;
    right: 46px;
    bottom: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}
.tour-gallery-dot {
    width: 9px;
    height: 9px;
    border: 0;
    border-radius: 999px;
    background: rgba(110, 31, 26, 0.25);
    cursor: pointer;
    transition: 0.25s;
}
.tour-gallery-dot.is-active {
    width: 28px;
    background: var(--lux-gold);
}
.tour-gallery-slider.is-static {
    padding-left: 0;
    padding-right: 0;
}
.tour-gallery-slider.is-static .tour-gallery-arrow,
.tour-gallery-slider.is-static .tour-gallery-dots {
    display: none;
}
.tour-detail-section {
    margin-top: 30px;
}
.package-overview-title {
    font-size: clamp(26px, 3.2vw, 38px);
    overflow-wrap: anywhere;
}
.overview-stats {
    margin: 26px 0;
}
.package-detail-body h2:not(.section-title) {
    font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
    color: var(--lux-black);
    line-height: 1.15;
    margin: 0 0 16px;
    overflow-wrap: anywhere;
}
.package-detail-body ul {
    padding-left: 20px;
    margin-bottom: 0;
}
.package-detail-body li {
    margin-bottom: 8px;
    overflow-wrap: anywhere;
}
.itinerary-section {
    overflow: hidden;
}
.itinerary-title {
    font-size: clamp(26px, 3vw, 32px);
}
.timeline {
    border-left: 2px solid var(--lux-line);
    margin-left: 20px;
    padding: 4px 0 0;
    overflow: visible;
}
.timeline-item {
    position: relative;
    min-height: 0;
    height: auto;
    padding: 0 0 32px 38px;
    overflow-wrap: anywhere;
    word-break: normal;
}
.timeline-item:before {
    content: attr(data-day);
    position: absolute;
    left: -20px;
    top: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--lux-gold), #a06d26);
    color: #130d08;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 900;
}
.timeline-item h3 {
    margin: 0 0 8px;
    font-size: 22px;
    line-height: 1.25;
    overflow-wrap: anywhere;
}
.itinerary-description {
    margin-bottom: 0;
    white-space: normal;
    overflow-wrap: anywhere;
}
.itinerary-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 6px 0 10px;
}
.itinerary-meta span {
    display: inline-flex;
    border: 1px solid var(--lux-line);
    border-radius: 999px;
    background: #fffaf1;
    color: var(--lux-bronze);
    padding: 5px 11px;
    font-size: 13px;
    font-weight: 900;
}
.footer {
    background:
        radial-gradient(
            circle at 20% 0,
            rgba(201, 155, 69, 0.18),
            transparent 34%
        ),
        #080705;
    color: #fff;
    padding: 86px 0 30px;
    border-top: 1px solid rgba(201, 155, 69, 0.25);
}
.footer p,
.footer li {
    color: #cabfae;
}
.footer h2,
.footer h3 {
    font-family: "Playfair Display", Georgia, serif;
}
.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer li {
    margin: 12px 0;
}
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    margin-top: 48px;
    padding-top: 24px;
    color: #cabfae;
}
.flash {
    padding: 14px 18px;
    border-radius: 16px;
    margin-bottom: 22px;
}
.flash.success {
    background: #eaf9ef;
    color: #116234;
}
.flash.error {
    background: #fff0ed;
    color: #9a271a;
}
.frontend-toast {
    position: fixed;
    top: 96px;
    right: 24px;
    z-index: 10000;
    width: min(420px, calc(100% - 32px));
    display: grid;
    gap: 5px;
    border: 1px solid rgba(69, 139, 86, 0.28);
    border-radius: 20px;
    padding: 18px 48px 18px 20px;
    background: rgba(241, 252, 244, 0.97);
    color: #175c2c;
    box-shadow: 0 24px 70px rgba(18, 79, 39, 0.2);
    backdrop-filter: blur(18px);
    animation: toastReveal 0.4s ease both;
}
.frontend-toast span {
    font-size: 13px;
}
.frontend-toast button {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 50%;
    background: rgba(23, 92, 44, 0.1);
    color: #175c2c;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}
.frontend-toast.is-hiding {
    opacity: 0;
    transform: translateY(-12px);
    transition: 0.35s ease;
}
.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 58px;
    height: 58px;
    background: white;
    border-radius: 50%;
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 24px;
    z-index: 60;
    box-shadow: 0 18px 45px rgba(37, 211, 102, 0.34);
}
.cta-band {
    background:
        linear-gradient(110deg, rgba(11, 10, 8, 0.92), rgba(110, 31, 26, 0.7)),
        url("/assets/images/india/taj-mahal-sunrise.png") center/cover;
    color: #fff;
    border-radius: 36px;
    padding: 58px;
}
.newsletter {
    background: #fff;
    border: 1px solid var(--lux-line);
    border-radius: 30px;
    padding: 38px;
    box-shadow: var(--shadow);
}
.pagination {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
}
.page-link {
    display: block;
    padding: 10px 14px;
    border: 1px solid var(--lux-line);
    border-radius: 12px;
    background: #fff;
}
.active > .page-link {
    background: var(--lux-gold);
    color: #111;
}
.disabled > .page-link {
    opacity: 0.45;
}
.mobile-open .navlinks {
    display: flex;
}
@media (max-width: 1100px) {
    .search-panel {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 980px) {
    .mobile-toggle {
        display: block;
    }
    .navlinks {
        display: none;
        position: absolute;
        left: 4%;
        right: 4%;
        top: 82px;
        background: #fff;
        border: 1px solid var(--lux-line);
        border-radius: 20px;
        padding: 18px;
        flex-direction: column;
        align-items: flex-start;
        box-shadow: var(--shadow);
    }
    .hero {
        min-height: 720px;
    }
    .search-panel,
    .grid.cols-2,
    .grid.cols-3,
    .grid.cols-4,
    .two-col {
        grid-template-columns: 1fr;
    }
    .section {
        padding: 70px 0;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .image-stack img {
        height: 420px;
    }
    .cta-band {
        padding: 34px;
    }
    .topbar .container {
        display: block;
        padding: 8px 0;
    }
    .topbar span {
        margin: 4px 12px 4px 0;
    }
    .span-2 {
        grid-column: auto;
    }
}
@media (max-width: 576px) {
    .container {
        width: min(94%, 1180px);
    }
    .hero h1 {
        font-size: 44px;
    }
    .page-hero {
        padding: 104px 0 80px;
    }
    .card-body {
        padding: 22px;
    }
    .search-panel {
        border-radius: 20px;
    }
    .brand {
        font-size: 22px;
    }
    .brand img {
        height: 40px;
    }
}

@media (max-width: 1199px) and (min-width: 992px) {
    .container {
        width: min(1120px, 94%);
    }
    .section {
        padding: 70px 0;
    }
    .navbar .container {
        gap: 14px;
    }
    .brand {
        font-size: 24px;
        flex: 0 0 auto;
        white-space: nowrap;
    }
    .navlinks {
        gap: 13px;
        font-size: 13px;
    }
    .navlinks .btn {
        padding: 11px 15px;
    }
    .hero {
        min-height: 720px;
        align-items: center;
    }
    .hero-content {
        max-width: 780px;
    }
    .hero-enquiry-layout {
        grid-template-columns: minmax(0, 1fr) 390px;
        gap: 28px;
    }
    .hero h1 {
        font-size: clamp(50px, 6.2vw, 74px);
        line-height: 0.98;
    }
    .hero p {
        max-width: 620px;
    }
    .search-panel {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
        margin-top: 28px;
        max-width: 930px;
    }
    .search-panel .btn {
        width: 100%;
    }
    .grid.cols-4 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .grid.cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .grid.cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .two-col {
        grid-template-columns: minmax(0, 1fr) 330px;
        gap: 28px;
    }
    .package-featured-image {
        height: 460px;
    }
    .tour-gallery-slide img {
        height: 145px;
    }
    .itinerary-title {
        font-size: 28px;
    }
    .package-card img,
    .destination-card img,
    .blog-card img {
        height: 230px;
    }
    .card-body {
        padding: 24px;
    }
    .page-hero {
        padding: 122px 0 96px;
    }
    .image-stack img {
        height: 480px;
    }
    .cta-band {
        padding: 44px;
    }
}

@media (max-width: 991px) {
    .container {
        width: min(720px, 92%);
    }
    .topbar .container {
        display: block;
        padding: 8px 0;
    }
    .topbar span {
        margin: 4px 12px 4px 0;
    }
    .navbar .container {
        position: relative;
        gap: 14px;
        min-height: 70px;
    }
    .brand {
        font-size: 23px;
        line-height: 1.05;
        max-width: calc(100% - 78px);
    }
    .mobile-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: auto;
        min-width: 58px;
        padding: 0 13px;
        font-size: 12px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 0.08em;
    }
    .navlinks {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: calc(100% + 10px);
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid var(--lux-line);
        border-radius: 20px;
        padding: 16px;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        box-shadow: var(--shadow);
        backdrop-filter: blur(18px);
    }
    .mobile-open .navlinks {
        display: flex;
    }
    .navlinks a {
        width: 100%;
        padding: 9px 8px;
    }
    .navlinks .btn {
        margin-top: 8px;
        padding: 12px 16px;
    }
    .section {
        padding: 60px 0;
    }
    .hero {
        min-height: 680px;
        padding: 86px 0 56px;
    }
    .hero-enquiry-layout {
        grid-template-columns: 1fr;
        max-width: 720px;
        gap: 28px;
        padding-top: 0;
        padding-bottom: 0;
    }
    .hero-enquiry-card {
        width: 100%;
    }
    .hero h1 {
        font-size: clamp(42px, 7.2vw, 60px);
        line-height: 1;
        margin-bottom: 18px;
    }
    .hero p {
        font-size: 16px;
        max-width: 610px;
    }
    .hero .btn {
        padding: 12px 18px;
    }
    .search-panel {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        margin-top: 24px;
        border-radius: 22px;
    }
    .search-panel .btn {
        width: 100%;
    }
    .grid {
        gap: 22px;
    }
    .grid.cols-2,
    .grid.cols-3,
    .grid.cols-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .two-col {
        grid-template-columns: 1fr;
    }
    .package-featured-image {
        height: 420px;
    }
    .tour-gallery-slide {
        flex-basis: calc((100% - 16px) / 2);
    }
    .tour-gallery-slide img {
        height: 170px;
    }
    .tour-detail-section {
        margin-top: 26px;
    }
    .itinerary-title {
        font-size: clamp(22px, 4vw, 26px);
    }
    .timeline {
        margin-left: 18px;
    }
    .timeline-item {
        padding-left: 34px;
    }
    .stats-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .package-card,
    .destination-card,
    .blog-card {
        display: flex;
        flex-direction: column;
    }
    .package-card .card-body,
    .destination-card .card-body,
    .blog-card .card-body {
        display: flex;
        flex: 1;
        flex-direction: column;
    }
    .package-card .btn,
    .destination-card .btn,
    .blog-card .btn {
        align-self: flex-start;
        margin-top: auto;
    }
    .package-card img,
    .destination-card img,
    .blog-card img {
        height: 220px;
    }
    .package-badge {
        max-width: 100%;
        white-space: normal;
    }
    .page-hero {
        padding: 108px 0 84px;
    }
    .page-hero h1,
    .section-title {
        overflow-wrap: anywhere;
    }
    .image-stack img {
        height: 380px;
    }
    .cta-band {
        padding: 36px;
        border-radius: 28px;
    }
    .cta-band .grid.cols-2 {
        grid-template-columns: 1fr;
    }
    .cta-band [style*="text-align:right"] {
        text-align: left !important;
    }
    .footer .grid.cols-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .span-2 {
        grid-column: auto;
    }
    .whatsapp-float {
        width: 54px;
        height: 54px;
        right: 18px;
        bottom: 18px;
    }
    .scroll-top {
        right: 18px;
        bottom: 84px;
    }
}

@media (max-width: 820px) and (min-width: 641px) {
    .container {
        width: min(700px, 92%);
    }
    .hero {
        min-height: 660px;
    }
    .hero h1 {
        font-size: clamp(40px, 7vw, 54px);
    }
    .section-title {
        font-size: clamp(32px, 5.8vw, 44px);
    }
    .package-card img,
    .destination-card img,
    .blog-card img {
        height: 205px;
    }
    .card-body {
        padding: 22px;
    }
}

@media (max-width: 768px) {
    .container {
        width: min(94%, 680px);
    }
    .hero {
        min-height: auto;
        padding: 94px 0 58px;
    }
    .hero h1 {
        font-size: clamp(38px, 11vw, 48px);
    }
    .hero p {
        font-size: 15px;
    }
    .hero-enquiry-card {
        border-radius: 24px;
        padding: 22px;
    }
    .hero-enquiry-form {
        grid-template-columns: 1fr;
    }
    .hero-enquiry-form label,
    .hero-enquiry-submit {
        grid-column: auto;
    }
    .frontend-toast {
        top: 82px;
        right: 16px;
    }
    .search-panel,
    .grid.cols-2,
    .grid.cols-3,
    .grid.cols-4,
    .stats-grid,
    .footer .grid.cols-3 {
        grid-template-columns: 1fr;
    }
    .search-panel {
        padding: 14px;
    }
    .package-card img,
    .destination-card img,
    .blog-card img {
        height: 240px;
    }
    .image-stack img {
        height: 320px;
    }
    .page-hero {
        padding: 92px 0 68px;
    }
    .page-hero h1 {
        font-size: clamp(34px, 10vw, 46px);
    }
    .package-detail-body {
        padding: 18px;
    }
    .package-featured-image {
        height: 300px;
        border-radius: 16px;
    }
    .tour-gallery-slider {
        margin: 16px 0 28px;
        padding: 0 42px 32px;
    }
    .tour-gallery-slide {
        flex-basis: 100%;
    }
    .tour-gallery-slide img {
        height: 220px;
    }
    .tour-gallery-dots {
        left: 42px;
        right: 42px;
    }
    .package-overview-title {
        font-size: clamp(24px, 7vw, 32px);
    }
    .overview-stats {
        margin: 20px 0;
    }
    .stat-tile {
        padding: 18px;
    }
    .package-detail-body h2:not(.section-title) {
        font-size: 24px;
    }
    .itinerary-title {
        font-size: clamp(20px, 6vw, 22px);
    }
    .timeline {
        margin-left: 0;
        padding-left: 18px;
    }
    .timeline-item {
        background: rgba(255, 255, 255, 0.72);
        border: 1px solid rgba(234, 220, 196, 0.84);
        border-radius: 18px;
        margin-bottom: 18px;
        padding: 18px 18px 18px 28px;
        box-shadow: 0 12px 32px rgba(42, 25, 12, 0.08);
    }
    .timeline-item:before {
        left: -18px;
        top: 18px;
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    .timeline-item h3 {
        font-size: 19px;
    }
    .itinerary-description,
    .meta {
        font-size: 15px;
    }
    .sidebar-box {
        padding: 22px;
    }
    .sidebar-box .btn,
    .cta-band .btn {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .brand {
        font-size: 20px;
    }
    .mobile-toggle {
        min-width: 52px;
        padding: 0 10px;
        letter-spacing: 0.04em;
    }
    .hero .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    .hero-enquiry-card h2 {
        font-size: 27px;
    }
    .package-card img,
    .destination-card img,
    .blog-card img {
        height: 210px;
    }
    .package-featured-image {
        height: 240px;
    }
    .tour-gallery-slider {
        padding: 0 36px 30px;
    }
    .tour-gallery-arrow {
        width: 34px;
        height: 34px;
        font-size: 24px;
    }
    .tour-gallery-slide img {
        height: 190px;
    }
    .tour-gallery-dots {
        left: 36px;
        right: 36px;
    }
    .itinerary-description,
    .meta {
        font-size: 14px;
    }
}

@keyframes frontendSpin {
    to { transform: rotate(360deg); }
}
@keyframes toastReveal {
    from { opacity: 0; transform: translateY(-14px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Premium tour detail page */
.tour-loading-shell {
    display: none;
}
body.tour-page-loading {
    overflow: hidden;
}
body.tour-page-loading .tour-loading-shell {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: block;
    overflow-y: auto;
    background: #f7efe2;
}
.skeleton-shimmer,
.tour-loading-card,
.tour-loading-gallery > span,
.tour-loading-info-grid > span,
.tour-loading-itinerary > span,
.skeleton-line,
.skeleton-pill,
.skeleton-button {
    position: relative;
    overflow: hidden;
    background: #e8dccb;
}
.skeleton-shimmer::after,
.tour-loading-card::after,
.tour-loading-gallery > span::after,
.tour-loading-info-grid > span::after,
.tour-loading-itinerary > span::after,
.skeleton-line::after,
.skeleton-pill::after,
.skeleton-button::after {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.62), transparent);
    animation: tourSkeletonShimmer 1.35s infinite;
}
.tour-loading-hero {
    min-height: 520px;
    display: flex;
    align-items: end;
    padding: 90px 0 54px;
    background: #34281f;
}
.tour-loading-hero-content {
    position: relative;
    z-index: 1;
}
.skeleton-line {
    display: block;
    width: 100%;
    height: 14px;
    margin-bottom: 16px;
    border-radius: 999px;
}
.skeleton-line-short {
    width: 22%;
}
.skeleton-line-medium {
    width: 62%;
}
.skeleton-line-title {
    width: min(720px, 82%);
    height: 68px;
}
.skeleton-line-heading {
    width: 46%;
    height: 30px;
}
.tour-loading-pills {
    display: flex;
    gap: 12px;
    margin-top: 28px;
}
.skeleton-pill {
    width: 150px;
    height: 46px;
    border-radius: 999px;
}
.tour-loading-body {
    padding: 54px 0 80px;
}
.tour-loading-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 32px;
    align-items: start;
}
.tour-loading-card {
    min-height: 240px;
    margin-bottom: 24px;
    padding: 30px;
    border-radius: 26px;
}
.tour-loading-info-grid,
.tour-loading-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 26px;
}
.tour-loading-info-grid > span {
    height: 100px;
    border-radius: 18px;
}
.tour-loading-itinerary {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}
.tour-loading-itinerary > span {
    height: 76px;
    border-radius: 16px;
}
.tour-loading-gallery > span {
    height: 190px;
    border-radius: 22px;
}
.tour-loading-sidebar {
    min-height: 590px;
    position: sticky;
    top: 100px;
}
.skeleton-button {
    display: block;
    height: 50px;
    margin-top: 28px;
    border-radius: 999px;
}
.tour-loading-relevant {
    margin-top: 56px;
}

.tour-detail-page {
    background: #f8f1e7;
}
.tour-detail-hero {
    position: relative;
    min-height: 690px;
    display: flex;
    align-items: end;
    overflow: hidden;
    background: #1a130f;
    color: #fff;
}
.tour-detail-hero-image,
.tour-detail-hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.tour-detail-hero-image {
    object-fit: cover;
    object-position: center;
    animation: tourHeroReveal 1s ease both;
}
.tour-detail-hero-overlay {
    background:
        linear-gradient(180deg, rgba(11, 10, 8, 0.18), rgba(11, 10, 8, 0.88)),
        linear-gradient(90deg, rgba(11, 10, 8, 0.76), transparent 72%);
}
.tour-detail-hero-content {
    position: relative;
    z-index: 1;
    padding-top: 120px;
    padding-bottom: 42px;
}
.tour-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
    font-weight: 700;
}
.tour-breadcrumb a:hover {
    color: var(--lux-gold-2);
}
.tour-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}
.tour-hero-badges span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    padding: 6px 13px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff5df;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    backdrop-filter: blur(14px);
}
.tour-hero-badges .tour-favorite-badge {
    border-color: rgba(237, 210, 154, 0.52);
    color: var(--lux-gold-2);
}
.tour-detail-hero h1 {
    max-width: 940px;
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(48px, 6.5vw, 88px);
    line-height: 0.98;
    text-wrap: balance;
}
.tour-hero-intro {
    max-width: 720px;
    margin: 22px 0 0;
    color: #f0e3cf;
    font-size: 17px;
}
.tour-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}
.tour-hero-secondary {
    border-color: rgba(255, 255, 255, 0.32) !important;
    background: rgba(255, 255, 255, 0.12) !important;
    color: #fff !important;
    backdrop-filter: blur(14px);
}
.tour-hero-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(190px, 0.8fr);
    margin-top: 42px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 22px;
    overflow: hidden;
    background: rgba(20, 14, 10, 0.56);
    backdrop-filter: blur(20px);
}
.tour-hero-facts > div {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
}
.tour-hero-facts > div:last-child {
    border-right: 0;
}
.tour-fact-icon {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(237, 210, 154, 0.45);
    border-radius: 50%;
    color: var(--lux-gold-2);
    font-size: 11px;
    font-weight: 900;
}
.tour-hero-facts p {
    min-width: 0;
    margin: 0;
    line-height: 1.3;
}
.tour-hero-facts small,
.tour-hero-facts strong {
    display: block;
}
.tour-hero-facts small {
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.tour-hero-facts strong {
    overflow-wrap: anywhere;
    color: #fff;
    font-size: 14px;
}
.tour-hero-facts .tour-hero-price {
    background: linear-gradient(135deg, rgba(201, 155, 69, 0.34), rgba(110, 31, 26, 0.42));
}
.tour-hero-price strong {
    color: var(--lux-gold-2);
    font-size: 20px;
}

.tour-detail-content-section {
    padding: 72px 0 90px;
}
.tour-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 370px;
    gap: 34px;
    align-items: start;
}
.tour-detail-main {
    min-width: 0;
}
.tour-content-card {
    margin-bottom: 26px;
    padding: 34px;
    border: 1px solid rgba(234, 220, 196, 0.94);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 54px rgba(42, 25, 12, 0.09);
}
.tour-section-heading {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}
.tour-section-heading .eyebrow {
    margin: 0 0 6px;
    font-size: 11px;
}
.tour-section-heading h2 {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(27px, 3vw, 36px);
    line-height: 1.08;
}
.tour-section-number {
    color: rgba(110, 31, 26, 0.15);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
}
.tour-lead {
    margin: 0;
    color: #625749;
    font-size: 17px;
}
.tour-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}
.tour-info-grid article {
    min-width: 0;
    border: 1px solid var(--lux-line);
    border-radius: 20px;
    padding: 20px;
    background: linear-gradient(145deg, #fffdf8, #f6ead7);
}
.tour-info-grid span,
.tour-info-grid small {
    display: block;
    color: var(--lux-muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.tour-info-grid strong {
    display: block;
    margin: 5px 0;
    overflow-wrap: anywhere;
    color: var(--lux-maroon);
    font-size: 21px;
    line-height: 1.2;
}
.tour-highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.tour-highlight-item {
    display: flex;
    align-items: start;
    gap: 12px;
    border: 1px solid var(--lux-line);
    border-radius: 18px;
    padding: 16px;
    background: #fffaf2;
}
.tour-highlight-item span,
.tour-list-card li span {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(201, 155, 69, 0.18);
    color: var(--lux-bronze);
    font-weight: 900;
}
.tour-highlight-item p {
    margin: 0;
    overflow-wrap: anywhere;
}
.tour-inclusion-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.tour-list-card {
    border-radius: 22px;
    padding: 24px;
    background: #f8f3ea;
}
.tour-list-card.is-included {
    border: 1px solid rgba(75, 139, 91, 0.24);
    background: #f2f8f1;
}
.tour-list-card.is-excluded {
    border: 1px solid rgba(162, 75, 65, 0.2);
    background: #fbf2ef;
}
.tour-list-card h3 {
    margin: 0 0 16px;
    font-size: 19px;
}
.tour-list-card ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.tour-list-card li {
    display: flex;
    align-items: start;
    gap: 10px;
    overflow-wrap: anywhere;
    color: #5c5145;
}
.tour-list-card.is-excluded li span {
    background: rgba(162, 75, 65, 0.12);
    color: #9a382e;
}
.tour-content-card .tour-gallery-slider {
    margin: 0;
}
.tour-gallery-slide {
    position: relative;
    margin: 0;
}
.tour-gallery-slide img {
    height: 210px;
}
.tour-gallery-slide figcaption {
    position: absolute;
    inset: auto 0 0;
    padding: 28px 14px 12px;
    background: linear-gradient(transparent, rgba(11, 10, 8, 0.76));
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.itinerary-accordion {
    display: grid;
    gap: 14px;
}
.itinerary-accordion-item {
    position: relative;
    min-height: 0;
    height: auto;
    padding: 0;
    border: 1px solid var(--lux-line);
    border-radius: 20px;
    overflow: hidden;
    background: #fffdf9;
    box-shadow: 0 10px 28px rgba(42, 25, 12, 0.06);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}
.itinerary-accordion-item::before {
    content: none;
}
.itinerary-accordion-item:hover {
    transform: none;
    border-color: rgba(201, 155, 69, 0.72);
}
.itinerary-accordion-item.is-open {
    border-color: rgba(201, 155, 69, 0.78);
    background: linear-gradient(145deg, #fffdf8, #fbf2e5);
    box-shadow: 0 18px 44px rgba(104, 66, 28, 0.13);
}
.itinerary-accordion-trigger {
    width: 100%;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) 42px;
    gap: 16px;
    align-items: center;
    border: 0;
    padding: 18px;
    background: transparent;
    color: var(--lux-ink);
    text-align: left;
    cursor: pointer;
}
.itinerary-day {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    align-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--lux-gold), #a06d26);
    color: #160f09;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
}
.itinerary-day small {
    margin-bottom: 4px;
    font-family: "Inter", Arial, sans-serif;
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.itinerary-trigger-copy {
    min-width: 0;
}
.itinerary-trigger-copy > strong {
    display: block;
    overflow-wrap: anywhere;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 21px;
    line-height: 1.25;
}
.itinerary-trigger-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 8px;
}
.itinerary-trigger-meta span {
    border: 1px solid var(--lux-line);
    border-radius: 999px;
    padding: 3px 9px;
    background: #fff;
    color: var(--lux-bronze);
    font-size: 11px;
    font-weight: 800;
}
.itinerary-chevron {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid var(--lux-line);
    border-radius: 50%;
    background: #fff;
    color: var(--lux-maroon);
    transition: transform 0.32s ease, background-color 0.32s ease, color 0.32s ease;
}
.itinerary-accordion-item.is-open .itinerary-chevron {
    transform: rotate(180deg);
    background: var(--lux-maroon);
    color: #fff;
}
.itinerary-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.38s cubic-bezier(.22, 1, .36, 1);
}
.itinerary-accordion-item.is-open .itinerary-panel {
    grid-template-rows: 1fr;
}
.itinerary-panel-inner {
    min-height: 0;
    overflow: hidden;
}
.itinerary-panel-inner p {
    margin: 0;
    border-top: 1px solid var(--lux-line);
    padding: 0 24px;
    color: var(--lux-muted);
    opacity: 0;
    overflow-wrap: anywhere;
    transition: padding 0.38s ease, opacity 0.3s ease;
}
.itinerary-accordion-item.is-open .itinerary-panel-inner p {
    padding-top: 18px;
    padding-bottom: 22px;
    opacity: 1;
}
.tour-empty-state {
    grid-column: 1 / -1;
    border: 1px dashed var(--lux-line);
    border-radius: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.68);
    color: var(--lux-muted);
}
.tour-note-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.tour-note-card {
    border: 1px solid var(--lux-line);
    border-radius: 24px;
    padding: 26px;
    background: linear-gradient(145deg, #fffdf8, #f3e3ca);
    box-shadow: 0 16px 42px rgba(42, 25, 12, 0.09);
}
.tour-note-card span {
    color: var(--lux-bronze);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.tour-note-card h3 {
    margin: 8px 0 12px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 23px;
}
.tour-note-card p {
    margin: 0;
}
.tour-note-card-dark {
    border-color: rgba(201, 155, 69, 0.24);
    background: linear-gradient(135deg, #241711, #6e1f1a);
    color: #f8ead1;
}
.tour-note-card-dark h3 {
    color: #fff;
}
.tour-note-card-dark span {
    color: var(--lux-gold-2);
}

.tour-booking-column {
    min-width: 0;
}
.tour-booking-card {
    position: sticky;
    top: 104px;
    border: 1px solid rgba(201, 155, 69, 0.34);
    border-radius: 28px;
    padding: 28px;
    background:
        radial-gradient(circle at 100% 0, rgba(201, 155, 69, 0.18), transparent 32%),
        #fffdf9;
    box-shadow: 0 24px 70px rgba(42, 25, 12, 0.16);
}
.tour-booking-card .eyebrow {
    margin: 0;
    font-size: 10px;
}
.tour-booking-card h2 {
    margin: 8px 0 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 36px;
    color: var(--lux-maroon);
}
.tour-booking-subtitle {
    margin: 0 0 18px;
    color: var(--lux-muted);
    font-size: 13px;
}
.tour-booking-summary {
    display: grid;
    gap: 8px;
    margin: 0 0 20px;
    border-block: 1px solid var(--lux-line);
    padding: 16px 0;
}
.tour-booking-summary p {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin: 0;
    font-size: 13px;
}
.tour-booking-summary span {
    color: var(--lux-muted);
}
.tour-booking-summary strong {
    max-width: 58%;
    overflow-wrap: anywhere;
    text-align: right;
}
.tour-enquiry-form {
    display: grid;
    gap: 13px;
}
.tour-enquiry-form label {
    display: grid;
    gap: 5px;
    color: #55493d;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.tour-enquiry-form input,
.tour-enquiry-form select,
.tour-enquiry-form textarea {
    border-radius: 12px;
    padding: 11px 12px;
    font-size: 14px;
    text-transform: none;
}
.tour-enquiry-form textarea {
    min-height: 92px;
}
.tour-form-row {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 10px;
}
.tour-booking-button {
    width: 100%;
    margin-top: 4px;
}
.tour-form-note {
    margin: 14px 0 0;
    color: var(--lux-muted);
    font-size: 11px;
    line-height: 1.5;
    text-align: center;
}

.relevant-tours-section {
    padding: 90px 0;
    background:
        radial-gradient(circle at 85% 15%, rgba(201, 155, 69, 0.16), transparent 26%),
        linear-gradient(180deg, #efe0ca, #fbf5e9);
}
.relevant-tours-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px;
}
.relevant-tours-heading .eyebrow {
    margin: 0 0 6px;
}
.relevant-tours-heading .section-title {
    margin: 0;
}
@keyframes tourSkeletonShimmer {
    to { transform: translateX(100%); }
}
@keyframes tourHeroReveal {
    from { opacity: 0; transform: scale(1.025); }
    to { opacity: 1; transform: scale(1); }
}

@media (max-width: 1199px) {
    .tour-detail-layout,
    .tour-loading-layout {
        grid-template-columns: minmax(0, 1fr) 330px;
        gap: 26px;
    }
    .tour-detail-hero {
        min-height: 640px;
    }
    .tour-hero-facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .tour-hero-facts > div:nth-child(2) {
        border-right: 0;
    }
    .tour-hero-facts > div:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    }
    .tour-booking-card {
        padding: 24px;
    }
}

@media (max-width: 991px) {
    .tour-detail-layout,
    .tour-loading-layout {
        grid-template-columns: 1fr;
    }
    .tour-detail-hero {
        min-height: 610px;
    }
    .tour-detail-hero-content {
        padding-top: 90px;
    }
    .tour-booking-column {
        order: -1;
    }
    .tour-booking-card,
    .tour-loading-sidebar {
        position: static;
    }
    .tour-form-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .tour-loading-sidebar {
        min-height: 360px;
    }
}

@media (max-width: 768px) {
    .tour-loading-hero {
        min-height: 430px;
        padding: 70px 0 36px;
    }
    .skeleton-line-title {
        height: 48px;
    }
    .tour-loading-layout,
    .tour-loading-info-grid,
    .tour-loading-gallery {
        grid-template-columns: 1fr;
    }
    .tour-loading-gallery > span:nth-child(n + 2) {
        display: none;
    }
    .tour-detail-hero {
        min-height: auto;
    }
    .tour-detail-hero-content {
        padding-top: 76px;
        padding-bottom: 28px;
    }
    .tour-detail-hero h1 {
        font-size: clamp(38px, 12vw, 54px);
    }
    .tour-hero-intro {
        font-size: 15px;
    }
    .tour-hero-actions .btn {
        flex: 1 1 180px;
    }
    .tour-hero-facts {
        grid-template-columns: 1fr;
        margin-top: 28px;
    }
    .tour-hero-facts > div,
    .tour-hero-facts > div:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    }
    .tour-hero-facts > div:last-child {
        border-bottom: 0;
    }
    .tour-detail-content-section {
        padding: 42px 0 60px;
    }
    .tour-content-card {
        margin-bottom: 18px;
        border-radius: 22px;
        padding: 22px;
    }
    .tour-section-heading {
        margin-bottom: 18px;
    }
    .tour-section-number {
        font-size: 32px;
    }
    .tour-info-grid,
    .tour-highlight-grid,
    .tour-inclusion-grid,
    .tour-note-grid {
        grid-template-columns: 1fr;
    }
    .tour-gallery-slider {
        padding-inline: 38px;
    }
    .tour-gallery-slide img {
        height: 260px;
    }
    .itinerary-accordion-trigger {
        grid-template-columns: 50px minmax(0, 1fr) 34px;
        gap: 11px;
        padding: 14px;
    }
    .itinerary-day {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        font-size: 18px;
    }
    .itinerary-trigger-copy > strong {
        font-size: 18px;
    }
    .itinerary-chevron {
        width: 32px;
        height: 32px;
    }
    .itinerary-panel-inner p {
        font-size: 14px;
    }
    .tour-booking-card {
        border-radius: 22px;
        padding: 22px;
    }
    .relevant-tours-section {
        padding: 60px 0;
    }
    .relevant-tours-heading {
        display: block;
    }
    .relevant-tours-heading .btn {
        width: 100%;
        margin-top: 18px;
    }
}

@media (max-width: 576px) {
    .tour-loading-pills {
        display: grid;
    }
    .skeleton-pill {
        width: 100%;
    }
    .tour-detail-hero-content {
        padding-top: 62px;
    }
    .tour-breadcrumb {
        font-size: 11px;
    }
    .tour-hero-badges span {
        font-size: 10px;
    }
    .tour-hero-actions {
        display: grid;
    }
    .tour-hero-actions .btn {
        width: 100%;
    }
    .tour-section-heading h2 {
        font-size: 25px;
    }
    .tour-section-number {
        display: none;
    }
    .tour-info-grid article,
    .tour-list-card {
        padding: 18px;
    }
    .tour-gallery-slider {
        padding-inline: 34px;
    }
    .tour-gallery-slide img {
        height: 210px;
    }
    .tour-form-row {
        grid-template-columns: 1fr;
    }
    .itinerary-accordion-trigger {
        grid-template-columns: 46px minmax(0, 1fr) 30px;
        gap: 9px;
        padding: 12px;
    }
    .itinerary-day {
        width: 44px;
        height: 44px;
        font-size: 17px;
    }
    .itinerary-trigger-copy > strong {
        font-size: 16px;
    }
    .itinerary-trigger-meta {
        display: grid;
        justify-items: start;
    }
    .itinerary-chevron {
        width: 28px;
        height: 28px;
    }
    .itinerary-panel-inner p {
        padding-inline: 16px;
    }
}

/* Home hero responsive rules live last so legacy breakpoint styles cannot override the floating enquiry bar. */
@media (max-width: 1199px) and (min-width: 992px) {
    .hero {
        min-height: max(760px, 84vh);
    }
    .hero-enquiry-layout {
        display: flex;
        gap: 42px;
        padding-top: 70px;
        padding-bottom: 52px;
    }
    .hero-enquiry-card {
        width: 96vw;
    }
    .hero-enquiry-form {
        grid-template-columns: 1fr 1.1fr 0.95fr 1fr 1fr auto;
    }
}

@media (max-width: 991px) {
    .hero {
        min-height: auto;
        padding: 76px 0 0;
    }
    .hero-enquiry-layout {
        gap: 38px;
        padding-top: 38px;
        padding-bottom: 0;
    }
    .hero-enquiry-card {
        width: 100%;
        margin-bottom: -104px;
        padding: 16px;
        border-radius: 26px;
    }
    .hero-enquiry-form {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .hero-enquiry-form label {
        grid-column: auto;
    }
    .hero-enquiry-submit {
        grid-column: auto;
    }
    .hero + .section {
        padding-top: 160px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 54px 0 0;
    }
    .hero-enquiry-layout {
        gap: 30px;
        padding-top: 26px;
    }
    .hero-enquiry-card {
        margin-bottom: -36px;
        padding: 14px;
        border-radius: 22px;
    }
    .hero-enquiry-form {
        grid-template-columns: 1fr;
    }
    .hero + .section {
        padding-top: 100px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding-top: 42px;
    }
    .hero-enquiry-layout {
        gap: 26px;
    }
    .hero-cta-row .btn {
        flex: 1 1 100%;
    }
}
