:root {
    --black: #062112;
    --green: #13863c;
    --yellow: #fec60d;
    --ice: #eaf7ff;
    --ice-2: #cdeeff;
    --panel: rgba(7, 50, 25, .82);
    --line: rgba(234, 247, 255, .22);
    --text: #f8fbf8;
    --muted: #cbd8d1;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    max-width: 100%;
    overflow-x: hidden;
    color: var(--text);
    background: radial-gradient(circle at 12% 0%, rgba(254, 198, 13, .16), transparent 30%), radial-gradient(circle at 88% 12%, rgba(19, 134, 60, .5), transparent 30%), linear-gradient(180deg, #0b3f20 0%, #062112 46%, #031408 100%);
    font-family: Inter, Arial, Helvetica, sans-serif;
    transition: background .35s ease, color .35s ease;
}

a {
    color: inherit;
    text-decoration: none;
}

a,
button,
.package-card,
.image-card,
.blog-card,
.feature,
.content-card,
.reel-card,
.snow-control i {
    transition: color .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease, transform .22s ease, opacity .22s ease;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
textarea,
select {
    font: inherit;
}

.snow-surface {
    background: linear-gradient(180deg, rgba(6, 33, 18, .97), rgba(3, 20, 8, .95)), linear-gradient(90deg, rgba(19, 134, 60, .36), rgba(254, 198, 13, .12));
    color: var(--text);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    gap: clamp(8px, 1.2vw, 18px);
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    min-height: 88px;
    padding: 10px clamp(14px, 3vw, 42px);
    border-bottom: 1px solid rgba(19, 134, 60, .16);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .18);
}

.brand {
    flex: 0 0 clamp(132px, 13vw, 178px);
    width: clamp(132px, 13vw, 178px);
    min-width: clamp(132px, 13vw, 178px);
    max-width: 178px;
    overflow: hidden;
}

.brand img {
    width: 100%;
    height: 44px;
    object-fit: contain;
    object-position: left center;
}

.brand .logo-default {
    display: block;
    padding: 0;
    background: transparent;
    border-radius: 0;
}

.brand .logo-snow {
    display: none;
    padding: 0;
    background: transparent;
    border-radius: 0;
}

.brand .logo-default,
.brand .logo-snow {
    width: 100% !important;
    height: 44px !important;
    max-width: 178px !important;
    max-height: 44px !important;
    object-fit: contain;
}

header,
.main-nav {
    min-height: 80px;
    /* Keep the header fixed */
}

.brand {
    display: flex;
    align-items: center;
    height: 100%;
}

.brand img {
    width: 100% !important;
    height: 44px !important;
    max-width: 178px !important;
    max-height: 44px !important;
}

.main-nav {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(8px, 1vw, 16px);
    margin-left: 0;
}

.main-nav a {
    position: relative;
    padding: 12px 0;
    color: var(--text);
    font-size: 10.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    white-space: nowrap;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4px;
    height: 2px;
    transform: scaleX(0);
    background: var(--green);
    transition: transform .25s ease;
}

.main-nav a.active::after,
.main-nav a:hover::after {
    transform: scaleX(1);
}

.main-nav a.active,
.main-nav a:hover {
    color: var(--yellow);
}

.main-nav a:hover {
    transform: translateY(-1px);
}

.plan-btn,
.primary-btn,
.ghost-btn,
.trip-search button,
.package-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border: 0;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .05em;
    text-transform: uppercase;
    cursor: pointer;
}

.site-header .plan-btn {
    flex: 0 0 auto;
    max-width: 136px;
    min-height: 44px;
    padding-inline: 16px;
    text-align: center;
    line-height: 1.08;
}

.plan-btn,
.primary-btn,
.trip-search button,
.package-card a {
    background: var(--yellow);
    color: #090b04;
    box-shadow: 0 14px 28px rgba(254, 198, 13, .2);
}

.plan-btn:hover,
.primary-btn:hover,
.trip-search button:hover,
.package-card a:hover {
    transform: translateY(-2px);
    background: #ffd43a;
    box-shadow: 0 18px 38px rgba(254, 198, 13, .34);
}

.plan-btn:active,
.primary-btn:active,
.trip-search button:active,
.package-card a:active {
    transform: translateY(0);
    box-shadow: 0 10px 22px rgba(254, 198, 13, .24);
}

.ghost-btn {
    color: white;
    background: rgba(234, 247, 255, .08);
    border: 1px solid rgba(234, 247, 255, .42);
}

.ghost-btn:hover {
    transform: translateY(-2px);
    color: var(--yellow);
    border-color: rgba(254, 198, 13, .58);
    background: rgba(254, 198, 13, .08);
    box-shadow: 0 18px 38px rgba(0, 0, 0, .26);
}

.snow-control {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
}

.snow-control input {
    position: absolute;
    opacity: 0;
}

.snow-control i {
    position: relative;
    width: 44px;
    height: 26px;
    border-radius: 999px;
    background: #9eb6c2;
    box-shadow: inset 0 0 0 1px rgba(7, 16, 12, .16);
}

.snow-control i::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    top: 3px;
    left: 3px;
    background: white;
    transition: transform .25s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .18);
}

.snow-control input:checked+i {
    background: var(--green);
}

.snow-control:hover i {
    box-shadow: inset 0 0 0 1px rgba(254, 198, 13, .42), 0 10px 24px rgba(254, 198, 13, .18);
}

.snow-control input:checked+i::after {
    transform: translateX(18px);
}

.menu-toggle {
    display: none;
    margin-left: auto;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(7, 16, 12, .16);
    border-radius: 999px;
    background: white;
    color: #07100c;
}

.hero-slider {
    position: relative;
    min-height: clamp(560px, calc(100vh - 105px), 690px);
    overflow: hidden;
    isolation: isolate;
}

.slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: center;
    padding: clamp(58px, 8vw, 96px) clamp(20px, 5vw, 72px) clamp(150px, 16vw, 190px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .8s ease;
}

.slide::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background: var(--slide) center/cover;
    transform: scale(1.04);
}

.slide::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(3, 20, 8, .76), rgba(3, 20, 8, .2) 58%, rgba(3, 20, 8, .34));
}

.slide.active {
    opacity: 1;
    pointer-events: auto;
}

.slide-copy {
    max-width: 620px;
    padding-top: 18px;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--yellow);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.slide h1,
.slide h2 {
    margin: 0;
    max-width: 680px;
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.02;
    letter-spacing: 0;
    text-transform: uppercase;
}

.slide p:not(.eyebrow) {
    max-width: 420px;
    color: #eef7f0;
    font-size: clamp(16px, 1.7vw, 18px);
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.slider-dots {
    position: absolute;
    left: clamp(24px, 6vw, 90px);
    bottom: 40px;
    z-index: 3;
    display: flex;
    gap: 12px;
}

.slider-dots button {
    width: 42px;
    height: 5px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .4);
}

.slider-dots button.active {
    background: var(--yellow);
}

.trip-search {
    position: relative;
    display: grid;
    grid-template-columns: minmax(150px, .8fr) repeat(3, minmax(140px, 1fr)) minmax(150px, auto);
    gap: 14px;
    align-items: end;
    margin: 26px clamp(18px, 4vw, 56px) 0;
    padding: 18px;
    z-index: 5;
    background: rgba(4, 12, 10, .88);
    border: 1px solid rgba(234, 247, 255, .22);
    border-radius: 20px;
    backdrop-filter: blur(18px);
    box-shadow: 0 26px 80px rgba(0, 0, 0, .45);
}

.trip-search button {
    width: 100%;
    white-space: nowrap;
}

.trip-search h2 {
    margin: 0;
    font-size: 24px;
    line-height: 1.1;
}

.trip-search label {
    display: grid;
    gap: 8px;
    color: var(--ice);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.trip-search input,
.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    min-height: 46px;
    padding: 0 16px;
    color: white;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(234, 247, 255, .2);
    border-radius: 12px;
    outline: 0;
    transition: border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

.trip-search input:hover,
.contact-form input:hover,
.contact-form textarea:hover,
.contact-form select:hover {
    border-color: rgba(254, 198, 13, .36);
    background: rgba(255, 255, 255, .08);
}

.trip-search input:focus,
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--yellow);
    background: rgba(255, 255, 255, .1);
    box-shadow: 0 0 0 3px rgba(254, 198, 13, .14);
}

.trip-search input::placeholder,
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(234, 247, 255, .72);
}

.section {
    padding: clamp(56px, 7vw, 104px) clamp(18px, 4vw, 60px);
}

.spacious {
    max-width: 1480px;
    margin: 0 auto;
}

.airly,
.airy-band {
    background: linear-gradient(180deg, rgba(234, 247, 255, .06), rgba(19, 134, 60, .08));
}

.section-head {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 8px 22px;
    margin-bottom: 34px;
}

.section-head .eyebrow {
    grid-column: 1 / -1;
}

.section-head h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 50px);
    line-height: 1.05;
    text-transform: uppercase;
}

.section-head a {
    align-self: center;
    color: var(--yellow);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .08em;
}

.destination-grid,
.package-grid,
.blog-grid,
.feature-grid,
.reels-grid {
    display: grid;
    gap: 28px;
}

.destination-grid {
    grid-template-columns: repeat(4, 1fr);
}

.package-grid {
    display: flex;
    grid-template-columns: none;
    gap: 24px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    padding: 4px 4px 18px;
    scrollbar-width: thin;
    scrollbar-color: var(--yellow) rgba(255, 255, 255, .08);
}

.package-grid::-webkit-scrollbar {
    height: 8px;
}

.package-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, .08);
    border-radius: 999px;
}

.package-grid::-webkit-scrollbar-thumb {
    background: var(--yellow);
    border-radius: 999px;
}

.blog-grid {
    grid-template-columns: repeat(3, 1fr);
}

.reels-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid {
    grid-template-columns: repeat(3, 1fr);
}

.image-card,
.package-card,
.blog-card,
.reel-card,
.feature,
.content-card,
.stats-panel,
.modal-panel {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(234, 247, 255, .08), rgba(255, 255, 255, .03)), var(--panel);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, .34);
}

.image-card:hover,
.package-card:hover,
.blog-card:hover,
.reel-card:hover,
.feature:hover,
.content-card:hover {
    transform: translateY(-6px);
    border-color: rgba(254, 198, 13, .38);
    box-shadow: 0 34px 90px rgba(0, 0, 0, .46), 0 0 0 1px rgba(254, 198, 13, .08);
}

.image-card img,
.package-card img,
.blog-card img,
.reel-card img {
    transition: transform .45s ease, filter .45s ease;
}

.image-card:hover img,
.package-card:hover img,
.blog-card:hover img,
.reel-card:hover img {
    transform: scale(1.035);
    filter: saturate(1.08) contrast(1.04);
}

.image-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.image-card h3,
.image-card p {
    margin-left: 22px;
    margin-right: 22px;
}

.image-card h3 {
    margin-top: 22px;
    margin-bottom: 8px;
    color: var(--yellow);
    font-size: 24px;
    text-transform: uppercase;
}

.image-card p {
    margin-bottom: 24px;
    color: var(--muted);
    line-height: 1.55;
}

.package-card {
    flex: 0 0 clamp(260px, 24vw, 340px);
    display: grid;
    grid-template-rows: auto 1fr;
    background: linear-gradient(180deg, rgba(10, 65, 32, .98), rgba(4, 30, 14, .98));
    scroll-snap-align: start;
}

.package-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.package-card img[src^="assets/manali-"],
.package-card img[src^="assets/spiti-"] {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: top center;
}

.package-card div {
    padding: 22px;
    display: grid;
    gap: 14px;
    align-content: start;
    background: linear-gradient(180deg, rgba(8, 48, 24, .98), rgba(4, 28, 13, .98));
    border-top: 1px solid rgba(254, 198, 13, .12);
    z-index: 1;
}

.package-card span,
.blog-card span {
    width: fit-content;
    padding: 6px 10px;
    color: white;
    background: var(--green);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.package-card:hover span,
.blog-card:hover span {
    background: var(--yellow);
    color: #07100c;
}

.package-card h3,
.blog-card h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.15;
}

.package-card p,
.package-card strong {
    display: none;
}

.package-card p,
.blog-card p,
.content-card p,
.feature p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.package-card strong {
    color: var(--yellow);
    font-size: 24px;
}

.package-card a {
    margin-top: 2px;
    width: 100%;
}

.pdf-note {
    margin: 26px 0 0;
    color: var(--muted);
    text-align: center;
}

.package-long-grid {
    display: block;
    overflow: hidden;
    padding: 8px 0 22px;
    scroll-snap-type: none;
    scrollbar-width: none;
}

.package-long-grid::-webkit-scrollbar {
    display: none;
}

.package-ticker-track {
    display: flex;
    align-items: stretch;
    gap: 24px;
    width: max-content;
    min-width: max-content;
    animation: packageTicker 34s linear infinite;
    will-change: transform;
}

.package-long-grid:hover .package-ticker-track,
.package-long-grid:focus-within .package-ticker-track {
    animation-play-state: paused;
}

.package-long-card {
    flex: 0 0 clamp(300px, 28vw, 360px);
    min-height: 520px;
    border-radius: 26px;
    background: #fff;
    color: #07100c;
    border: 1px solid rgba(7, 16, 12, .08);
    box-shadow: 0 22px 42px rgba(0, 0, 0, .18);
}

@keyframes packageTicker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 12px));
    }
}

.package-long-card img,
.package-long-card img[src^="assets/manali-"],
.package-long-card img[src^="assets/spiti-"] {
    height: 230px !important;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center;
    border-radius: 26px 26px 0 0;
}

.package-long-card div {
    min-height: 290px;
    padding: 18px 24px 22px;
    gap: 9px;
    background: #fff;
    border-top: 0;
}

.package-long-card span {
    background: rgba(19, 134, 60, .1);
    color: var(--green);
    border: 1px solid rgba(19, 134, 60, .28);
}

.package-long-card small {
    color: #6b756f;
    font-weight: 800;
}

.package-long-card h3 {
    color: #07100c;
    font-size: 22px;
    line-height: 1.18;
}

.package-long-card p {
    display: block;
    min-height: 48px;
    color: #101c15;
    line-height: 1.45;
}

.package-long-card em {
    width: fit-content;
    margin-top: 2px;
    padding: 6px 10px;
    border-radius: 8px;
    background: rgba(19, 134, 60, .08);
    color: var(--green);
    border: 1px solid rgba(19, 134, 60, .28);
    font-size: 12px;
    font-style: normal;
    font-weight: 900;
}

.package-long-card strong {
    display: block;
    color: #f01414;
    font-size: 24px;
    line-height: 1.1;
}

.package-long-card strong small {
    color: #6b756f;
    font-size: 13px;
}

.package-long-card a {
    margin-top: 8px;
    color: #07100c;
}

.package-detail-hero {
    display: grid;
    grid-template-columns: minmax(320px, .95fr) minmax(320px, 1.05fr);
    gap: clamp(28px, 5vw, 70px);
    align-items: center;
    margin: clamp(24px, 5vw, 70px);
    padding: clamp(24px, 5vw, 60px);
    border-radius: 32px;
}

.package-detail-hero img {
    width: 100%;
    max-height: 620px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .32);
}

.package-detail-hero h1 {
    margin: 0 0 18px;
    font-size: clamp(42px, 6vw, 78px);
    line-height: .96;
}

.package-detail-hero p:not(.eyebrow) {
    max-width: 650px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
}

.package-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px 0;
}

.package-detail-meta span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(254, 198, 13, .12);
    color: var(--yellow);
    font-weight: 900;
}

.package-detail-hero strong {
    display: block;
    margin: 0 0 24px;
    color: var(--yellow);
    font-size: clamp(34px, 4vw, 52px);
}

.package-detail-hero strong small {
    font-size: 16px;
    color: var(--muted);
}

.package-detail-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    display: grid;
    gap: 22px;
}

/* Premium package detail pages */
.package-tour-page {
    background: #f4f5f1;
    color: #07100c;
}

.package-tour-page main {
    background: #f4f5f1;
}

.package-tour-shell {
    width: min(1016px, calc(100% - 32px));
    margin: 0 auto;
}

.package-tour-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 220px 220px;
    gap: 8px;
    padding-top: 40px;
}

.package-tour-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-tour-gallery img:first-child {
    grid-row: span 2;
    border-radius: 22px 0 0 22px;
}

.package-tour-gallery img:nth-child(3) {
    border-radius: 0 22px 0 0;
}

.package-tour-gallery img:nth-child(5) {
    border-radius: 0 0 22px 0;
}

.package-detail-tabs {
    position: sticky;
    top: 88px;
    z-index: 20;
    display: flex;
    gap: clamp(18px, 4vw, 54px);
    overflow-x: auto;
    padding: 15px max(16px, calc((100vw - 1016px) / 2));
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid rgba(7, 16, 12, .08);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .05);
    backdrop-filter: blur(14px);
}

.package-detail-tabs a {
    flex: 0 0 auto;
    color: #07100c;
    font-weight: 900;
    font-size: 14px;
    padding-bottom: 9px;
    border-bottom: 3px solid transparent;
}

.package-detail-tabs a:hover,
.package-detail-tabs a.active {
    color: var(--green);
    border-color: var(--yellow);
}

.package-tour-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 24px;
    padding: 28px 0 56px;
    align-items: start;
}

.package-tour-main {
    display: grid;
    gap: 24px;
}

.tour-card {
    background: #fff;
    border: 1px solid rgba(7, 16, 12, .08);
    border-radius: 22px;
    padding: clamp(22px, 3vw, 34px);
    box-shadow: 0 18px 42px rgba(7, 16, 12, .06);
}

.tour-title-card h1 {
    margin: 0 0 8px;
    color: #07100c;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1;
}

.tour-title-card > p {
    margin: 0 0 34px;
    color: #07100c;
    font-size: clamp(1rem, 2vw, 1.35rem);
    font-weight: 800;
}

.tour-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 28px;
    align-items: center;
    color: rgba(7, 16, 12, .62);
    font-weight: 800;
}

.tour-meta-row span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tour-inclusions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 34px;
}

.tour-inclusions span {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #07100c;
    font-weight: 900;
}

.tour-inclusions i {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    color: var(--green);
    font-style: normal;
}

.tour-card h2 {
    margin: 0 0 18px;
    color: #07100c;
    font-size: clamp(1.4rem, 2.4vw, 2rem);
}

.tour-card p,
.tour-card li {
    color: rgba(7, 16, 12, .78);
    font-size: 16px;
    line-height: 1.7;
}

.tour-card ul,
.tour-card ol {
    margin: 0;
    padding-left: 20px;
}

.tour-side {
    position: sticky;
    top: 158px;
    display: grid;
    gap: 22px;
}

.price-card {
    overflow: hidden;
    padding: 0;
}

.saving-ribbon {
    display: block;
    padding: 18px 24px;
    color: var(--green);
    background: linear-gradient(90deg, rgba(205, 255, 199, .82), rgba(224, 255, 220, .95));
    font-weight: 950;
    text-align: right;
}

.price-card-content {
    padding: 30px 24px 26px;
}

.price-card small {
    display: block;
    color: rgba(7, 16, 12, .64);
    font-weight: 800;
}

.price-card strong {
    display: block;
    margin: 8px 0 4px;
    color: #07100c;
    font-size: clamp(1.9rem, 3vw, 2.4rem);
    line-height: 1;
}

.price-card del {
    color: rgba(7, 16, 12, .42);
    font-size: 1.2rem;
    font-weight: 800;
}

.price-card hr {
    margin: 24px 0;
    border: 0;
    border-top: 1px solid rgba(7, 16, 12, .16);
}

.price-card .primary-btn {
    width: 100%;
    margin-top: 24px;
    color: #07100c;
}

.callback-card .ghost-btn {
    width: 100%;
    margin-top: 18px;
    color: var(--green);
    border-color: rgba(19, 134, 60, .28);
    background: rgba(19, 134, 60, .06);
}

.google-review-section {
    padding: 12px 0 70px;
}

.site-google-reviews {
    padding-top: clamp(42px, 5vw, 76px);
    padding-bottom: clamp(52px, 6vw, 88px);
}

.google-review-head {
    display: flex;
    justify-content: space-between;
    gap: 22px;
    align-items: end;
    margin-bottom: 22px;
}

.google-review-head h2 {
    margin: 0;
    color: #07100c;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.site-google-reviews .google-review-head h2 {
    color: var(--text);
}

.google-rating-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    color: #07100c;
    background: #fff;
    border: 1px solid rgba(7, 16, 12, .1);
    border-radius: 999px;
    font-weight: 950;
    box-shadow: 0 14px 32px rgba(7, 16, 12, .06);
}

.google-rating-pill b {
    color: var(--green);
}

.google-review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.google-review-card {
    padding: 22px;
    background: #fff;
    border: 1px solid rgba(7, 16, 12, .08);
    border-radius: 18px;
    box-shadow: 0 18px 42px rgba(7, 16, 12, .06);
}

.site-google-reviews .google-review-card {
    background: linear-gradient(180deg, rgba(234, 247, 255, .09), rgba(255, 255, 255, .04)), rgba(7, 50, 25, .72);
    border-color: rgba(234, 247, 255, .18);
    box-shadow: 0 24px 64px rgba(0, 0, 0, .28);
}

.google-review-card strong {
    display: block;
    color: #07100c;
    margin-bottom: 4px;
}

.site-google-reviews .google-review-card strong {
    color: #fff;
}

.google-review-card span {
    color: var(--yellow);
    font-weight: 950;
}

.google-review-card p {
    margin: 12px 0 0;
    color: rgba(7, 16, 12, .74);
    line-height: 1.6;
}

.site-google-reviews .google-review-card p {
    color: var(--muted);
}

.experience-strip {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(150px, 1fr));
    gap: 16px;
    margin: 0 clamp(20px, 5vw, 72px);
    padding: 18px;
    background: linear-gradient(180deg, rgba(234, 247, 255, .07), rgba(19, 134, 60, .08));
    border: 1px solid rgba(234, 247, 255, .16);
    border-radius: 24px;
}

.experience-strip a {
    min-height: 94px;
    padding: 18px 16px;
    display: grid;
    place-items: center;
    text-align: center;
    background: linear-gradient(180deg, rgba(19, 134, 60, .34), rgba(7, 50, 25, .72));
    border: 1px solid rgba(254, 198, 13, .14);
    border-radius: 18px;
    color: var(--ice);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
    line-height: 1.25;
    box-shadow: 0 18px 34px rgba(0, 0, 0, .16);
}

.experience-strip a:hover {
    transform: translateY(-3px);
    color: var(--yellow);
    border-color: rgba(254, 198, 13, .36);
    background: linear-gradient(180deg, rgba(19, 134, 60, .5), rgba(7, 50, 25, .86));
    box-shadow: 0 24px 44px rgba(0, 0, 0, .24);
}

.destination-experiences {
    background:
        radial-gradient(circle at 12% 8%, rgba(254, 198, 13, .13), transparent 30%),
        linear-gradient(180deg, #07361d 0%, #031309 100%);
}

.experience-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 260px;
    gap: 18px;
}

.experience-card {
    position: relative;
    min-height: 260px;
    overflow: hidden;
    border: 1px solid rgba(234, 247, 255, .15);
    border-radius: 24px;
    background: #071a10;
    box-shadow: 0 24px 52px rgba(0, 0, 0, .22);
}

.experience-card.large {
    grid-column: span 2;
    grid-row: span 2;
}

.experience-card.wide {
    grid-column: span 2;
}

.experience-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 500ms ease, filter 500ms ease;
}

.experience-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .04) 20%, rgba(0, 0, 0, .78) 100%),
        linear-gradient(90deg, rgba(3, 19, 9, .42), transparent 64%);
    pointer-events: none;
}

.experience-card div {
    position: absolute;
    z-index: 1;
    left: 22px;
    right: 22px;
    bottom: 22px;
    display: grid;
    gap: 10px;
}

.experience-card span {
    width: fit-content;
    border-radius: 999px;
    background: var(--yellow);
    color: #061d10;
    padding: 8px 12px;
    font-size: .72rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.experience-card h3 {
    max-width: 520px;
    margin: 0;
    color: #fff;
    font-size: clamp(1.35rem, 2.1vw, 2.45rem);
    line-height: 1.05;
    text-shadow: 0 8px 22px rgba(0, 0, 0, .45);
}

.experience-card:not(.large) h3 {
    font-size: clamp(1.15rem, 1.45vw, 1.55rem);
}

.experience-card:hover {
    transform: translateY(-5px);
    border-color: rgba(254, 198, 13, .44);
    box-shadow: 0 34px 70px rgba(0, 0, 0, .3);
}

.experience-card:hover img {
    transform: scale(1.08);
    filter: saturate(1.08) contrast(1.04);
}

.two-col {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: clamp(28px, 4vw, 54px);
    align-items: stretch;
}

.trust-section {
    align-items: center;
}

.content-card {
    padding: clamp(32px, 4.5vw, 64px);
}

.content-card h2 {
    margin: 0 0 20px;
    font-size: clamp(30px, 3.8vw, 52px);
    line-height: 1.08;
    text-transform: uppercase;
}

.content-card p:not(.eyebrow) {
    max-width: 680px;
    font-size: 17px;
}

.content-card .primary-btn {
    margin-top: 28px;
}

.stats-panel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding: 18px;
}

.stats-panel div {
    display: grid;
    place-items: center;
    gap: 12px;
    min-height: 132px;
    padding: 20px 12px;
    text-align: center;
    background: linear-gradient(180deg, rgba(254, 198, 13, .1), rgba(234, 247, 255, .045));
    border: 1px solid rgba(254, 198, 13, .12);
    border-radius: 18px;
}

.stats-panel strong {
    color: var(--yellow);
    font-size: clamp(30px, 3.4vw, 44px);
    line-height: 1;
}

.stats-panel span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.snow-banner {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    margin: 0 clamp(20px, 5vw, 72px);
    padding: clamp(36px, 6vw, 80px);
    background: linear-gradient(90deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .18)), url("https://images.unsplash.com/photo-1519985176271-adb1088fa94c?auto=format&fit=crop&w=1700&q=85") center/cover;
    border: 1px solid rgba(234, 247, 255, .24);
    border-radius: 24px;
}

.snow-banner div {
    max-width: 740px;
}

.snow-banner h2 {
    margin: 0 0 20px;
    color: var(--ice);
    font-size: clamp(38px, 6vw, 78px);
    line-height: 1;
    text-transform: uppercase;
}

.snow-banner p:not(.eyebrow) {
    color: #edf8ff;
    font-size: 18px;
    line-height: 1.65;
}

.route-highlights-section {
    padding-top: clamp(28px, 3.6vw, 50px);
    padding-bottom: clamp(28px, 3.8vw, 54px);
}

.route-highlights-section .section-head {
    margin-bottom: 22px;
}

.route-highlights-section .destination-grid {
    gap: 18px;
}

.route-highlights-section .image-card {
    border-radius: 16px;
}

.route-highlights-section .image-card img {
    height: clamp(150px, 15vw, 198px);
}

.route-highlights-section .image-card h3 {
    margin-top: 16px;
    margin-bottom: 6px;
    font-size: clamp(18px, 1.7vw, 22px);
}

.route-highlights-section .image-card p {
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.45;
    display: -webkit-box;
    min-height: 40px;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.snow-banner {
    min-height: 260px;
    padding: clamp(22px, 3vw, 38px);
}

.snow-banner h2 {
    max-width: 620px;
    margin-bottom: 14px;
    font-size: clamp(28px, 3.6vw, 42px);
}

.snow-banner p:not(.eyebrow) {
    max-width: 560px;
    font-size: 15px;
    line-height: 1.45;
    margin-block: 10px 14px;
}

.snow-banner .primary-btn {
    min-height: 40px;
    padding-inline: 18px;
    font-size: 11px;
}

.journey-films-section {
    background:
        radial-gradient(circle at 18% 12%, rgba(254, 198, 13, .12), transparent 32%),
        linear-gradient(180deg, #03170d 0%, #062714 100%);
}

.journey-video-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.journey-video-card {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid rgba(234, 247, 255, .16);
    background: #07140f;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .28);
}

.journey-video-card video {
    width: 100%;
    height: 100%;
    min-height: 520px;
    display: block;
    object-fit: cover;
    transform: scale(1.02);
    filter: saturate(1.06) contrast(1.04);
    transition: transform 500ms ease, filter 500ms ease;
}

.journey-video-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 34%, rgba(0, 0, 0, .82) 100%),
        linear-gradient(90deg, rgba(2, 14, 8, .42), transparent 70%);
    pointer-events: none;
}

.journey-video-card div {
    position: absolute;
    z-index: 1;
    left: 20px;
    right: 20px;
    bottom: 20px;
    display: grid;
    gap: 10px;
}

.journey-video-card span {
    width: fit-content;
    border-radius: 999px;
    background: var(--yellow);
    color: #061d10;
    padding: 8px 12px;
    font-size: .72rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.journey-video-card h3 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.2rem, 1.5vw, 1.65rem);
    line-height: 1.12;
    text-shadow: 0 8px 22px rgba(0, 0, 0, .42);
}

.journey-video-card:hover {
    transform: translateY(-5px);
    border-color: rgba(254, 198, 13, .42);
    box-shadow: 0 34px 76px rgba(0, 0, 0, .34);
}

.journey-video-card:hover video {
    transform: scale(1.08);
    filter: saturate(1.14) contrast(1.08);
}

.blog-card {
    display: grid;
    grid-template-rows: 260px 1fr;
}

.blog-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.blog-card div {
    padding: 24px;
    display: grid;
    gap: 13px;
}

.instagram-section {
    background: linear-gradient(180deg, rgba(234, 247, 255, .05), rgba(19, 134, 60, .08)), radial-gradient(circle at 82% 18%, rgba(254, 198, 13, .12), transparent 28%);
}

.reel-card {
    min-height: clamp(390px, 48vw, 520px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    isolation: isolate;
}

.reel-fallback,
.reel-video-card {
    aspect-ratio: 9 / 16;
    width: 100%;
    min-height: auto;
    padding: 0;
    background: rgba(4, 12, 10, .78);
}

.reel-video-card::after {
    display: none;
}

.reel-fallback::before {
    content: "";
    position: absolute;
    inset: 50% auto auto 50%;
    z-index: 2;
    width: 0;
    height: 0;
    transform: translate(-38%, -50%);
    border-top: 28px solid transparent;
    border-bottom: 28px solid transparent;
    border-left: 44px solid rgba(255, 255, 255, .92);
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, .34));
    pointer-events: none;
}

.reel-card img {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.62) saturate(1.08);
}

.reel-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(3, 20, 8, .06), rgba(3, 20, 8, .58));
    pointer-events: none;
}

.reel-card span {
    position: relative;
    z-index: 2;
    width: fit-content;
    margin: auto 18px 18px;
    padding: 7px 11px;
    color: #07100c;
    background: var(--yellow);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.reel-card h3 {
    margin: 0;
    max-width: 300px;
    color: white;
    font-size: 30px;
    line-height: 1.05;
    text-transform: uppercase;
}

.reel-embed {
    width: 100%;
    min-width: 0 !important;
    max-width: 100% !important;
    min-height: 500px;
    margin: 0 auto !important;
    padding: 0 !important;
    background: #ffffff !important;
    border: 1px solid var(--line) !important;
    border-radius: 18px !important;
    box-shadow: 0 28px 70px rgba(0, 0, 0, .34) !important;
    overflow: hidden;
}

.reel-video {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: 9 / 16;
    display: block;
    object-fit: cover;
    border: 0;
    border-radius: 18px;
    background: rgba(4, 12, 10, .78);
}

.reel-link {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 2;
    width: fit-content;
    padding: 7px 11px;
    color: #07100c;
    background: var(--yellow);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.embed-slot {
    border-style: dashed;
}

.embed-note {
    display: none;
}

.page-hero {
    min-height: 380px;
    display: grid;
    align-items: end;
    padding: clamp(70px, 9vw, 112px) clamp(24px, 6vw, 90px);
    background: linear-gradient(90deg, rgba(6, 33, 18, .86), rgba(19, 134, 60, .32)), var(--page-image) center/cover;
}

.page-hero h1 {
    margin: 0;
    color: var(--yellow);
    font-size: clamp(38px, 5.6vw, 72px);
    line-height: 1;
    text-transform: uppercase;
}

.page-hero p {
    max-width: 760px;
    color: var(--ice);
    font-size: clamp(16px, 1.8vw, 18px);
    line-height: 1.55;
}

.content-wrap {
    padding: clamp(70px, 9vw, 120px) clamp(20px, 5vw, 72px);
    max-width: 1420px;
    margin: 0 auto;
}

.feature {
    padding: 34px;
    min-height: 220px;
}

.feature h3 {
    margin: 0 0 14px;
    color: var(--yellow);
    font-size: 26px;
}

.contact-form {
    display: grid;
    gap: 16px;
}

.contact-form textarea {
    min-height: 140px;
    padding-top: 15px;
    resize: vertical;
}

.contact-form button:disabled {
    cursor: wait;
    opacity: .72;
}

.form-status {
    margin: 0;
    padding: 12px 14px;
    border-radius: 12px;
    color: var(--ice);
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(234, 247, 255, .16);
    line-height: 1.45;
}

.form-status:empty {
    display: none;
}

.form-status[data-type="success"] {
    color: #dfffe8;
    border-color: rgba(19, 134, 60, .44);
    background: rgba(19, 134, 60, .16);
}

.form-status[data-type="error"] {
    color: #fff0d2;
    border-color: rgba(254, 198, 13, .5);
    background: rgba(254, 198, 13, .12);
}

.site-footer {
    position: relative;
    margin-top: 70px;
    overflow: hidden;
    border-top: 1px solid rgba(19, 134, 60, .16);
}

.footer-art {
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    width: min(66vw, 660px);
    max-width: 68%;
    height: auto;
    opacity: .17;
    pointer-events: none;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 18px 34px rgba(0, 0, 0, .32));
    z-index: 0;
}

.footer-gallery {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding: 22px clamp(20px, 5vw, 72px) 0;
}

.footer-gallery img {
    width: 100%;
    height: 155px;
    object-fit: cover;
    border-radius: 16px;
}

.footer-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 38px;
    padding: 42px clamp(20px, 5vw, 72px);
    color: var(--yellow);
}

.footer-logo {
    width: min(260px, 100%);
    height: 92px;
    object-fit: contain;
    object-position: left center;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, .24));
}

.footer-logo-snow {
    display: none;
    width: min(270px, 100%);
    height: 170px;
    object-fit: contain;
    object-position: left center;
}

body.snow-on .footer-logo-default {
    display: none;
}

body.snow-on .footer-logo-snow {
    display: block;
    filter: none;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 10px;
}

.footer-socials a {
    display: inline-grid;
    place-items: center;
    width: 26px;
    height: 26px;
    margin: 0;
    color: var(--yellow);
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.footer-socials a:hover {
    transform: translateY(-2px);
    color: var(--green);
    background: transparent;
    box-shadow: none;
}

.footer-socials svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-socials a[aria-label="Facebook"] svg {
    fill: currentColor;
    stroke: none;
}

.site-footer h3 {
    margin: 0 0 14px;
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.site-footer p {
    color: rgba(254, 198, 13, .86);
    line-height: 1.6;
}

.site-footer a {
    display: block;
    color: var(--yellow);
    margin: 8px 0;
    font-weight: 800;
}

.site-footer .primary-btn {
    display: inline-flex;
    margin-top: 8px;
    color: #090b04;
}

.copyright {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 18px clamp(20px, 5vw, 72px);
    color: rgba(254, 198, 13, .82);
    border-top: 1px solid rgba(254, 198, 13, .18);
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: none;
    place-items: center;
    padding: 22px;
    background: rgba(0, 0, 0, .72);
    backdrop-filter: blur(10px);
}

.modal.open {
    display: grid;
}

.modal-panel {
    width: min(640px, 100%);
    padding: 34px;
}

.modal-panel h2 {
    margin: 0 0 22px;
    font-size: 36px;
    line-height: 1.05;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: var(--ice);
    color: #07100c;
    font-size: 26px;
    cursor: pointer;
}

.trip-popup {
    display: grid;
    grid-template-columns: minmax(300px, .95fr) minmax(320px, .9fr);
    gap: 28px;
    width: min(920px, calc(100vw - 36px));
    max-height: calc(100vh - 44px);
    padding: 18px;
    overflow: visible;
    background: #fff;
    color: #202020;
    border: 0;
    border-radius: 24px;
    box-shadow: 0 34px 90px rgba(0, 0, 0, .38);
}

.trip-popup .modal-close {
    top: 18px;
    right: 18px;
    z-index: 4;
    background: transparent;
    color: #111;
    font-size: 34px;
    font-weight: 900;
    box-shadow: none;
}

.trip-popup-preview {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    border-radius: 18px;
    background: #061d10;
}

.trip-popup-preview img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
}

.trip-popup-preview::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, .78));
}

.trip-popup-preview div {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 20px;
    z-index: 2;
    color: #fff;
}

.trip-popup-preview span {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--yellow);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .04em;
}

.trip-popup-preview h3 {
    margin: 0 0 6px;
    color: #fff;
    font-size: clamp(1.8rem, 3vw, 2.65rem);
    line-height: 1;
}

.trip-popup-preview p {
    margin: 0;
    color: rgba(255, 255, 255, .92);
    font-weight: 800;
}

.trip-popup-form {
    align-self: center;
    padding: 18px 12px 18px 0;
}

.trip-popup-form .eyebrow {
    margin-bottom: 8px;
    color: var(--green);
}

.trip-popup-form h2 {
    margin: 0 0 24px;
    color: #202020;
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    line-height: 1.05;
}

.popup-form {
    gap: 14px;
}

.popup-form input,
.popup-form textarea,
.phone-field {
    min-height: 44px;
    color: #202020;
    background: #fff;
    border: 1px solid rgba(20, 20, 20, .16);
    border-radius: 9px;
}

.popup-form input::placeholder,
.popup-form textarea::placeholder {
    color: rgba(20, 20, 20, .42);
}

.phone-field {
    display: grid;
    grid-template-columns: 46px 1fr;
    align-items: center;
    overflow: hidden;
}

.phone-field span {
    display: grid;
    place-items: center;
    height: 100%;
    color: #202020;
    border-right: 1px solid rgba(20, 20, 20, .12);
}

.phone-field input {
    min-height: 42px;
    border: 0;
    border-radius: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.popup-form textarea {
    min-height: 78px;
}

.popup-form .primary-btn {
    width: 100%;
    min-height: 52px;
    margin-top: 6px;
    color: #fff;
    background: #ed1c24;
    box-shadow: 0 16px 32px rgba(237, 28, 36, .22);
}

.popup-form .primary-btn:hover {
    background: #d8151d;
    box-shadow: 0 22px 42px rgba(237, 28, 36, .3);
}

.popup-form .form-status {
    color: #0d3d21;
    background: rgba(19, 134, 60, .1);
    border-color: rgba(19, 134, 60, .24);
}

.snow-layer {
    pointer-events: none;
    position: fixed;
    inset: 0;
    z-index: 80;
    display: none;
    opacity: .58;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, .88) 0 2.4px, transparent 3.8px),
        radial-gradient(circle at 46% 28%, rgba(255, 255, 255, .82) 0 2.8px, transparent 4.2px),
        radial-gradient(circle at 72% 14%, rgba(218, 244, 255, .78) 0 2px, transparent 3.6px),
        radial-gradient(circle at 88% 34%, rgba(255, 255, 255, .82) 0 2.4px, transparent 4px);
    background-size: 340px 340px, 520px 520px, 420px 420px, 620px 620px;
    filter: drop-shadow(0 1px 1px rgba(2, 8, 10, .22));
    animation: premiumSnow 22s linear infinite;
}

.snow-layer,
body.snow-on .snow-layer {
    display: none !important;
}

.snow-layer::before,
.snow-layer::after {
    content: "";
    position: absolute;
    inset: -20%;
    background:
        radial-gradient(circle at 15% 10%, rgba(255, 255, 255, .72) 0 1.6px, transparent 3px),
        radial-gradient(circle at 58% 18%, rgba(229, 247, 255, .7) 0 2px, transparent 3.4px);
    background-size: 380px 380px, 560px 560px;
    animation: premiumSnow 28s linear infinite;
}

.snow-layer::after {
    display: none;
}

body.snow-on .snow-layer {
    display: block;
}

.monsoon-layer {
    pointer-events: none;
    position: fixed;
    inset: 0;
    z-index: 22;
    display: none;
    overflow: hidden;
    opacity: .96;
    --storm-scroll: 0;
    background:
        radial-gradient(circle at 16% 0%, rgba(176, 190, 198, .16), transparent 26%),
        radial-gradient(circle at 82% 10%, rgba(110, 128, 136, .22), transparent 28%),
        linear-gradient(180deg, rgba(48, 57, 62, .16), rgba(8, 11, 13, .08));
    backdrop-filter: none;
}

.rain-canvas,
.storm-clouds,
.storm-haze {
    position: absolute;
    inset: 0;
}

.rain-canvas {
    z-index: 2;
    opacity: .84;
    filter: drop-shadow(0 0 8px rgba(210, 244, 255, .24));
}

.storm-clouds {
    z-index: 4;
    top: clamp(68px, 7vw, 104px);
    bottom: auto;
    height: clamp(150px, 22vh, 260px);
    opacity: calc(.92 - (var(--storm-scroll) * .34));
    filter: none;
    background: none;
    perspective: 900px;
    transform-style: preserve-3d;
    transform: translate3d(0, calc(var(--storm-scroll) * -42px), 0) scale(calc(1 - (var(--storm-scroll) * .28)));
    transition: opacity .18s ease, transform .18s ease;
    overflow: visible;
}

.storm-cloud {
    position: absolute;
    display: block;
    width: clamp(230px, 28vw, 520px);
    height: clamp(108px, 12vw, 205px);
    border-radius: 52% 48% 50% 46% / 58% 55% 44% 42%;
    background:
        url("assets/cloud-obj.svg") center/112% 118% no-repeat,
        radial-gradient(ellipse at 21% 58%, rgba(255, 255, 255, .96) 0 15%, rgba(226, 239, 247, .9) 31%, transparent 57%),
        radial-gradient(ellipse at 39% 34%, rgba(255, 255, 255, .98) 0 23%, rgba(215, 232, 243, .9) 45%, transparent 69%),
        radial-gradient(ellipse at 58% 43%, rgba(255, 255, 255, .96) 0 24%, rgba(207, 225, 237, .88) 46%, transparent 70%),
        radial-gradient(ellipse at 78% 58%, rgba(245, 251, 255, .92) 0 18%, rgba(187, 208, 221, .8) 40%, transparent 65%),
        radial-gradient(ellipse at 50% 86%, rgba(36, 45, 52, .68) 0 38%, rgba(8, 13, 16, .2) 70%, transparent 100%);
    box-shadow:
        inset 24px 22px 30px rgba(255, 255, 255, .42),
        inset -28px -24px 34px rgba(82, 112, 136, .34);
    filter: saturate(.82) contrast(1.18) drop-shadow(0 28px 34px rgba(0, 0, 0, .42));
    transform-origin: center;
    isolation: isolate;
    transform-style: preserve-3d;
}

.storm-cloud::before,
.storm-cloud::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.storm-cloud::before {
    left: 7%;
    top: -30%;
    width: 78%;
    height: 112%;
    background:
        radial-gradient(ellipse at 18% 64%, rgba(250, 255, 255, .94) 0 18%, rgba(220, 235, 244, .82) 41%, transparent 64%),
        radial-gradient(ellipse at 39% 30%, rgba(255, 255, 255, .98) 0 20%, rgba(218, 234, 244, .85) 43%, transparent 67%),
        radial-gradient(ellipse at 65% 47%, rgba(245, 252, 255, .94) 0 24%, rgba(195, 215, 229, .84) 47%, transparent 71%);
    filter: blur(.6px);
    z-index: -1;
}

.storm-cloud::after {
    right: -2%;
    top: 18%;
    width: 68%;
    height: 78%;
    background:
        radial-gradient(ellipse at 28% 38%, rgba(255, 255, 255, .85) 0 18%, rgba(201, 221, 235, .75) 42%, transparent 68%),
        radial-gradient(ellipse at 66% 60%, rgba(226, 239, 247, .78) 0 21%, rgba(132, 154, 168, .42) 55%, transparent 78%);
    filter: blur(1px);
    z-index: -2;
}

.storm-cloud.cloud-back {
    opacity: .38;
    filter: blur(2.4px) saturate(.78) brightness(.86) drop-shadow(0 22px 28px rgba(0, 0, 0, .36));
}

.storm-cloud.cloud-mid {
    opacity: .6;
    filter: blur(.9px) saturate(.82) brightness(.92) drop-shadow(0 24px 32px rgba(0, 0, 0, .38));
}

.storm-cloud.cloud-front {
    opacity: .78;
    filter: saturate(.9) contrast(1.22) drop-shadow(0 30px 40px rgba(0, 0, 0, .46));
}

.storm-cloud.cloud-a {
    left: -4%;
    top: 76px;
    transform: translateZ(-220px) scale(.58);
    animation: cloudFloatA 14s ease-in-out infinite alternate;
}

.storm-cloud.cloud-b {
    right: -4%;
    top: 64px;
    transform: translateZ(-180px) scale(.62);
    animation: cloudFloatB 16s ease-in-out infinite alternate;
}

.storm-cloud.cloud-c {
    left: 8%;
    top: 102px;
    transform: translateZ(-80px) scale(.66);
    animation: cloudFloatB 15s ease-in-out infinite alternate;
}

.storm-cloud.cloud-d {
    right: 9%;
    top: 104px;
    transform: translateZ(-50px) scale(.6);
    animation: cloudFloatA 17s ease-in-out infinite alternate;
}

.storm-cloud.cloud-e {
    left: 13%;
    top: 28px;
    transform: translateZ(60px) scale(.82);
    animation: cloudFloatA 13s ease-in-out infinite alternate;
}

.storm-cloud.cloud-f {
    right: 14%;
    top: 124px;
    transform: translateZ(90px) scale(.52);
    animation: cloudFloatB 14s ease-in-out infinite alternate;
}

.storm-clouds::before,
.storm-clouds::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.storm-clouds::before {
    left: 64%;
    top: 56%;
    width: 70px;
    height: 150px;
    opacity: 0;
    background:
        linear-gradient(118deg, transparent 0 35%, rgba(255, 255, 255, .96) 36% 41%, transparent 42%),
        linear-gradient(142deg, transparent 0 47%, rgba(180, 230, 255, .88) 48% 54%, transparent 55%);
    clip-path: polygon(42% 0, 72% 0, 55% 38%, 82% 38%, 28% 100%, 42% 54%, 18% 54%);
    filter: drop-shadow(0 0 16px rgba(228, 248, 255, .96));
    animation: cloudThunder 7.6s infinite;
}

.storm-clouds::after {
    display: none;
}

.storm-haze {
    display: none;
}

.monsoon-layer::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 6;
    opacity: 0;
    background:
        linear-gradient(112deg, transparent 0 44%, rgba(255, 255, 255, .98) 44.4% 44.8%, transparent 45.6% 52%, rgba(195, 235, 255, .82) 53% 53.5%, transparent 55%),
        radial-gradient(circle at 64% 17%, rgba(245, 251, 255, .74), transparent 19%),
        radial-gradient(circle at 30% 16%, rgba(170, 224, 255, .2), transparent 18%),
        linear-gradient(180deg, rgba(255, 255, 255, .18), transparent 38%);
    mix-blend-mode: screen;
    animation: monsoonLightning 9.5s infinite;
}

.monsoon-layer::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    background:
        radial-gradient(circle at 50% 100%, transparent 46%, rgba(0, 0, 0, .11) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, .1), transparent 24%, transparent 76%, rgba(0, 0, 0, .1));
}

body.monsoon-on .monsoon-layer {
    display: block;
}

body.monsoon-on {
    background:
        radial-gradient(circle at 18% 0%, rgba(160, 170, 176, .2), transparent 34%),
        radial-gradient(circle at 86% 16%, rgba(64, 74, 82, .36), transparent 32%),
        linear-gradient(180deg, #333d42 0%, #20282c 42%, #090d0f 100%);
}

body.monsoon-on .snow-surface {
    background:
        linear-gradient(180deg, rgba(28, 35, 39, .92), rgba(11, 15, 18, .88)),
        radial-gradient(circle at 18% 0, rgba(205, 238, 255, .12), transparent 42%);
    color: #effff8;
    border-color: rgba(205, 238, 255, .26);
    box-shadow: 0 20px 55px rgba(0, 0, 0, .25), inset 0 1px 0 rgba(205, 238, 255, .22);
    backdrop-filter: blur(16px) saturate(1.2);
}

body.monsoon-on .site-header {
    z-index: 120;
    background:
        linear-gradient(180deg, rgba(22, 28, 32, .98), rgba(10, 14, 16, .96)),
        radial-gradient(circle at 14% 0, rgba(205, 238, 255, .08), transparent 34%);
}

body.monsoon-on.home-page .slide::after,
body.monsoon-on .home-page .slide::after {
    background:
        linear-gradient(90deg, rgba(9, 12, 14, .74), rgba(25, 31, 35, .22) 48%, rgba(7, 10, 12, .56)),
        linear-gradient(180deg, rgba(38, 46, 50, .24), rgba(0, 0, 0, .32));
}

body.monsoon-on .route-icon-strip {
    z-index: 100;
}

body.monsoon-on .main-nav a,
body.monsoon-on .snow-control {
    color: #effff8;
}

body.monsoon-on .monsoon-control::before {
    content: "Rain active";
    color: #cdeeff;
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

body.snow-on .monsoon-control::before,
body.monsoon-on .snow-control:not(.monsoon-control)::before {
    display: none;
}

body.monsoon-on .monsoon-control input:checked+i,
.monsoon-control input:checked+i {
    background: linear-gradient(90deg, #244f54, #13863c);
    box-shadow: inset 0 0 0 1px rgba(205, 238, 255, .28), 0 0 26px rgba(125, 204, 211, .28);
}

body.monsoon-on .image-card,
body.monsoon-on .package-card,
body.monsoon-on .blog-card,
body.monsoon-on .journey-video-card,
body.monsoon-on .feature,
body.monsoon-on .content-card,
body.monsoon-on .stats-panel,
body.monsoon-on .modal-panel,
body.monsoon-on .trip-search,
body.monsoon-on .experience-strip,
body.monsoon-on .snow-banner,
body.monsoon-on .tour-card {
    background: linear-gradient(180deg, rgba(234, 247, 255, .14), rgba(255, 255, 255, .045)), rgba(6, 31, 28, .62);
    border-color: rgba(205, 238, 255, .24);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .18), 0 0 34px rgba(126, 211, 220, .1);
    backdrop-filter: blur(14px) saturate(1.12);
}

body.monsoon-on .hero-slider::after {
    content: "RAIN MODE ACTIVE";
    position: absolute;
    right: clamp(24px, 5vw, 72px);
    bottom: 56px;
    z-index: 4;
    padding: 10px 16px;
    color: #effff8;
    background: rgba(8, 41, 43, .48);
    border: 1px solid rgba(205, 238, 255, .5);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .08em;
    box-shadow: 0 16px 34px rgba(0, 0, 0, .24);
}

@keyframes monsoonRain {
    from {
        background-position: 0 -320px, 0 -440px, 0 0, 0 0;
    }

    to {
        background-position: -70px 320px, -96px 440px, 0 0, 0 0;
    }
}

@keyframes stormCloudDrift {
    from {
        transform: translate3d(-2%, -1%, 0) scale(1.08);
    }

    to {
        transform: translate3d(3%, 1%, 0) scale(1.12);
    }
}

@keyframes cloudRainCurtain {
    from {
        background-position: 0 -190px, 0 0;
    }

    to {
        background-position: -42px 190px, 0 0;
    }
}

@keyframes cloudThunder {
    0%, 84%, 100% {
        opacity: 0;
        transform: translateY(-8px) scale(.94);
    }

    85% {
        opacity: .92;
        transform: translateY(0) scale(1);
    }

    86% {
        opacity: .12;
    }

    87.5% {
        opacity: .72;
    }

    89% {
        opacity: 0;
    }
}

@keyframes monsoonLightning {
    0%, 88%, 100% {
        opacity: 0;
    }

    89% {
        opacity: .72;
    }

    90% {
        opacity: .08;
    }

    91% {
        opacity: .54;
    }

    93% {
        opacity: 0;
    }
}

body.snow-on {
    background:
        radial-gradient(circle at 12% 0%, rgba(234, 247, 255, .42), transparent 34%),
        radial-gradient(circle at 86% 18%, rgba(255, 255, 255, .24), transparent 32%),
        linear-gradient(180deg, #9fbccc 0%, #7597a7 44%, #4f6d7a 100%);
}

body.snow-on .snow-surface {
    background: linear-gradient(180deg, rgba(255, 255, 255, .99), rgba(226, 247, 255, .98)), radial-gradient(circle at 18% 0, rgba(255, 255, 255, .96), transparent 42%);
    box-shadow: 0 20px 55px rgba(178, 225, 248, .34), inset 0 1px 0 rgba(255, 255, 255, .9);
    border-color: rgba(163, 217, 241, .7);
    color: #07100c;
}

body.snow-on .main-nav a,
body.snow-on .snow-control {
    color: #07100c;
}

body.snow-on .main-nav a.active,
body.snow-on .main-nav a:hover {
    color: var(--green);
}

body.snow-on .brand .logo-default {
    display: none;
}

body.snow-on .brand .logo-snow {
    display: block;
    background: transparent;
    box-shadow: none;
}

body.snow-on .footer-art {
    display: block;
    opacity: .09;
    filter: brightness(0) saturate(100%) invert(30%) sepia(64%) saturate(1030%) hue-rotate(105deg) brightness(88%) contrast(88%);
}

body.snow-on .footer-content,
body.snow-on .site-footer h3,
body.snow-on .site-footer p,
body.snow-on .site-footer a,
body.snow-on .copyright {
    color: var(--green);
}

body.snow-on .copyright {
    border-top-color: rgba(19, 134, 60, .22);
}

body.snow-on .site-header {
    border-bottom-color: rgba(205, 238, 255, .64);
}

body.snow-on .image-card,
body.snow-on .package-card,
body.snow-on .blog-card,
body.snow-on .reel-card,
body.snow-on .journey-video-card,
body.snow-on .feature,
body.snow-on .content-card,
body.snow-on .stats-panel,
body.snow-on .modal-panel,
body.snow-on .trip-search,
body.snow-on .experience-strip,
body.snow-on .snow-banner {
    border-color: rgba(205, 238, 255, .42);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .36), inset 0 1px 0 rgba(255, 255, 255, .18), 0 0 32px rgba(205, 238, 255, .08);
}

body.snow-on .image-card:hover,
body.snow-on .package-card:hover,
body.snow-on .blog-card:hover,
body.snow-on .reel-card:hover,
body.snow-on .journey-video-card:hover,
body.snow-on .feature:hover,
body.snow-on .content-card:hover {
    border-color: rgba(19, 134, 60, .34);
    box-shadow: 0 30px 80px rgba(145, 205, 230, .32), 0 0 0 1px rgba(19, 134, 60, .08);
}

body.snow-on .primary-btn,
body.snow-on .plan-btn,
body.snow-on .trip-search button,
body.snow-on .package-card a {
    box-shadow: 0 14px 30px rgba(254, 198, 13, .18), 0 0 22px rgba(205, 238, 255, .22);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
    }
}

body.snow-on .snow-control::before {
    content: "Winter active";
    color: var(--green);
    font-size: 10px;
    letter-spacing: .12em;
}

@keyframes premiumSnow {
    from {
        background-position: 0 -420px, 0 -560px, 0 -460px, 0 -660px;
    }
    to {
        background-position: 24px 420px, -18px 560px, 20px 460px, -14px 660px;
    }
}

body.snow-on .edge-snow::before {
    content: "";
    position: absolute;
    z-index: 2;
    left: 18px;
    right: 18px;
    top: 0;
    height: 18px;
    pointer-events: none;
    border-radius: 0 0 18px 18px;
    background: radial-gradient(22px 10px at 10% 0, rgba(255, 255, 255, .9) 48%, transparent 54%), radial-gradient(31px 14px at 31% 0, rgba(246, 252, 255, .84) 48%, transparent 54%), radial-gradient(23px 11px at 52% 0, rgba(255, 255, 255, .88) 48%, transparent 54%), radial-gradient(34px 15px at 76% 0, rgba(241, 250, 255, .82) 48%, transparent 54%), radial-gradient(22px 10px at 94% 0, rgba(255, 255, 255, .84) 48%, transparent 54%), linear-gradient(180deg, rgba(255, 255, 255, .7), rgba(232, 247, 255, .2) 72%, rgba(232, 247, 255, 0));
    filter: drop-shadow(0 4px 8px rgba(205, 238, 255, .26));
    opacity: .82;
}

.hero-slider.edge-snow::before {
    display: none;
}

body.snow-on .hero-slider::after {
    content: "SNOW MODE ACTIVE";
    position: absolute;
    right: clamp(24px, 5vw, 72px);
    bottom: 56px;
    z-index: 4;
    padding: 10px 16px;
    color: #07100c;
    background: rgba(234, 247, 255, .86);
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    box-shadow: 0 12px 30px rgba(205, 238, 255, .2);
}

@media (max-width: 1260px) {
    .site-header {
        flex-wrap: wrap;
        height: auto;
        min-height: auto;
        overflow: visible;
    }
    .menu-toggle {
        display: inline-grid;
        place-items: center;
        order: 2;
        margin-left: auto;
    }
    .main-nav {
        display: none;
        order: 5;
        width: 100%;
        height: auto;
        min-height: 0;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        margin: 0;
    }
    .main-nav.open {
        display: grid;
    }
    .main-nav a {
        padding: 16px 0;
        text-align: center;
        white-space: normal;
    }
    .plan-btn {
        order: 3;
        margin-left: 0;
    }
    .snow-control {
        order: 4;
    }
    .trip-search {
        grid-template-columns: 1fr 1fr;
        margin-top: 22px;
    }
    .trip-search>div,
    .trip-search button {
        grid-column: 1 / -1;
    }
    .destination-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .experience-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 250px;
    }
    .journey-video-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    .two-col {
        grid-template-columns: 1fr;
    }
    .stats-panel {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 980px) {
    .trip-search {
        grid-template-columns: 1fr;
        margin-inline: 14px;
    }
    .trip-search>div,
    .trip-search label,
    .trip-search button {
        grid-column: 1 / -1;
    }
    .experience-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
}

@media (max-width: 1340px) {
    .snow-control span {
        display: none;
    }
    .plan-btn {
        padding-inline: 16px;
    }
}

@media (max-width: 720px) {
    .site-header {
        display: grid;
        grid-template-columns: minmax(118px, 1fr) 42px 42px;
        align-items: center;
        gap: 8px;
        padding: 8px 12px;
        height: auto;
        min-height: 58px;
    }
    .brand {
        width: 140px;
        min-width: 0;
        max-width: 140px;
    }
    .brand img {
        width: 140px !important;
        height: 38px !important;
        max-width: 140px !important;
        max-height: 38px !important;
    }
    .plan-btn {
        display: none;
    }
    .menu-toggle {
        grid-column: 2;
        margin-left: 0;
        width: 42px;
        height: 42px;
        justify-self: center;
    }
    .snow-control {
        grid-column: 3;
        justify-self: end;
    }

    .snow-control i {
        width: 42px;
        height: 24px;
    }
    .snow-control i::after {
        width: 18px;
        height: 18px;
    }
    .snow-control input:checked+i::after {
        transform: translateX(18px);
    }
    .main-nav {
        grid-column: 1 / -1;
        grid-template-columns: 1fr;
        width: 100%;
        margin-top: 6px;
        border-top: 1px solid rgba(254, 198, 13, .18);
    }
    .main-nav.open {
        display: grid;
    }
    .main-nav a {
        padding: 13px 8px;
        font-size: 12px;
        text-align: left;
    }
    .snow-control span {
        display: none;
    }
    .snow-control::before {
        display: none;
    }
    .hero-slider {
        min-height: 520px;
    }
    .slide {
        padding: 34px 18px 96px;
        align-items: end;
    }
    .slide h1,
    .slide h2 {
        font-size: clamp(36px, 12vw, 48px);
    }
    .slide p:not(.eyebrow) {
        font-size: 15px;
        max-width: 100%;
    }
    .hero-actions {
        gap: 10px;
        margin-top: 18px;
    }
    .hero-actions .primary-btn,
    .hero-actions .ghost-btn {
        width: 100%;
    }
    .primary-btn,
    .ghost-btn,
    .trip-search button,
    .package-card a {
        min-height: 42px;
        padding-inline: 16px;
        font-size: 11px;
    }
    .slider-dots {
        bottom: 28px;
        left: 18px;
    }
    .slider-dots button {
        width: 30px;
    }
    .trip-search {
        margin: 18px 12px 0;
        padding: 16px;
        border-radius: 16px;
    }
    .content-card {
        padding: 26px 20px;
    }
    .content-card h2 {
        font-size: 32px;
    }
    .stats-panel {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 14px;
    }
    .stats-panel div {
        min-height: 104px;
    }
    .page-hero {
        min-height: 320px;
        padding: 72px 18px 44px;
    }
    .page-hero h1 {
        font-size: clamp(34px, 12vw, 48px);
    }
    .page-hero p {
        font-size: 15px;
    }
    .trip-search h2 {
        font-size: 22px;
    }
    .trip-search,
    .destination-grid,
    .package-grid,
    .blog-grid,
    .reels-grid,
    .journey-video-grid,
    .feature-grid,
    .experience-gallery,
    .experience-strip,
    .two-col,
    .stats-panel,
    .footer-content,
    .footer-gallery {
        grid-template-columns: 1fr;
    }
    .experience-strip {
        margin-inline: 14px;
        padding: 12px;
    }
    .experience-strip a {
        min-height: 76px;
        padding: 16px 12px;
        font-size: 12px;
    }
    .experience-gallery {
        grid-auto-rows: auto;
        gap: 14px;
    }
    .experience-card,
    .experience-card.large,
    .experience-card.wide {
        grid-column: auto;
        grid-row: auto;
        min-height: 320px;
    }
    .experience-card div {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }
    .journey-video-card,
    .journey-video-card video {
        min-height: 420px;
    }
    .section-head {
        grid-template-columns: 1fr;
    }
    .package-card,
    .blog-card {
        grid-template-rows: auto 1fr;
    }
    .package-card img,
    .blog-card img,
    .image-card img {
        height: 240px;
    }
    .package-card img[src^="assets/manali-"],
    .package-card img[src^="assets/spiti-"] {
        height: auto !important;
        aspect-ratio: 4 / 5;
    }
    .package-grid {
        display: flex;
        grid-template-columns: none;
        gap: 16px;
        padding-bottom: 16px;
        margin-inline: -4px;
    }
    .package-card {
        flex-basis: min(82vw, 310px);
    }

    .package-long-card {
        flex-basis: min(86vw, 330px);
        min-height: 500px;
    }

    .package-detail-hero,
    .package-detail-grid {
        grid-template-columns: 1fr;
        margin: 18px;
    }

    .package-detail-hero {
        padding: 20px;
        border-radius: 24px;
    }

    .package-detail-hero h1 {
        font-size: clamp(36px, 12vw, 52px);
    }
    .footer-gallery img {
        height: 190px;
    }
    .footer-content {
        gap: 24px;
        padding: 34px 18px;
    }
    .footer-logo {
        width: min(230px, 82vw);
        height: 76px;
    }
    .footer-logo-snow {
        width: min(220px, 82vw);
        height: 140px;
    }
    .footer-socials {
        gap: 14px;
        flex-wrap: wrap;
    }
    .footer-socials a {
        width: 26px;
        height: 26px;
    }
    .footer-art {
        width: 280px;
        max-width: 76%;
        height: auto;
        left: 50%;
        right: auto;
        top: 54%;
        bottom: auto;
        opacity: .12;
        transform: translate(-50%, -50%);
    }
    .modal {
        padding: 14px;
        align-items: start;
        overflow-y: auto;
    }
    .modal-panel {
        max-height: calc(100vh - 28px);
        overflow-y: auto;
        padding: 26px 18px;
    }
    .modal-panel h2 {
        font-size: 30px;
    }

    .trip-popup {
        grid-template-columns: 1fr;
        gap: 16px;
        width: min(100%, calc(100vw - 24px));
        padding: 12px;
        max-height: calc(100vh - 24px);
        overflow-y: auto;
    }

    .trip-popup-preview {
        min-height: 220px;
    }

    .trip-popup-preview img {
        min-height: 220px;
    }

    .trip-popup-form {
        padding: 4px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .trip-popup .modal-close {
        top: 12px;
        right: 12px;
        background: rgba(255, 255, 255, .86);
        border-radius: 999px;
    }

    body.snow-on .hero-slider::after {
        display: none;
    }
}

@media (max-width: 980px) {
    .package-tour-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 260px 160px 160px;
        padding-top: 22px;
    }

    .package-tour-gallery img:first-child {
        grid-column: 1 / -1;
        grid-row: auto;
        border-radius: 18px 18px 0 0;
    }

    .package-tour-gallery img:nth-child(3),
    .package-tour-gallery img:nth-child(5) {
        border-radius: 0;
    }

    .package-tour-layout {
        grid-template-columns: 1fr;
    }

    .tour-side {
        position: static;
    }

    .google-review-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .package-tour-shell {
        width: min(100% - 22px, 1016px);
    }

    .package-tour-gallery {
        grid-template-rows: 220px 120px 120px;
        gap: 5px;
    }

    .package-detail-tabs {
        top: 58px;
        gap: 22px;
        padding: 12px 12px;
    }

    .package-detail-tabs a {
        font-size: 12px;
    }

    .tour-inclusions {
        grid-template-columns: 1fr;
    }

    .tour-card {
        border-radius: 18px;
    }

    .google-review-head {
        display: grid;
        align-items: start;
    }
}

@media (max-width: 420px) {
    .site-header {
        grid-template-columns: minmax(104px, 1fr) 40px 44px;
        padding-inline: 10px;
    }
    .brand {
        width: 124px;
        max-width: 124px;
    }
    .brand img {
        width: 124px !important;
        height: 34px !important;
        max-width: 124px !important;
        max-height: 34px !important;
    }
    .menu-toggle {
        width: 38px;
        height: 38px;
    }
    .snow-control i {
        width: 40px;
        height: 23px;
    }
    .snow-control i::after {
        width: 17px;
        height: 17px;
    }
    .snow-control input:checked+i::after {
        transform: translateX(17px);
    }
    .slide h1,
    .slide h2 {
        font-size: 34px;
    }
    .section {
        padding-inline: 14px;
    }
    .section-head h2,
    .content-card h2 {
        font-size: 28px;
    }
    .stats-panel strong {
        font-size: 30px;
    }
    .package-card {
        flex-basis: 84vw;
    }
    .footer-gallery img {
        height: 150px;
    }
}

@media (hover: none) and (pointer: coarse) {
    .main-nav a:hover,
    .plan-btn:hover,
    .primary-btn:hover,
    .ghost-btn:hover,
    .trip-search button:hover,
    .package-card a:hover,
    .image-card:hover,
    .package-card:hover,
    .blog-card:hover,
    .reel-card:hover,
    .feature:hover,
    .content-card:hover,
    .image-card:hover img,
    .package-card:hover img,
    .blog-card:hover img,
    .reel-card:hover img {
        transform: none;
    }
}


.trip-game-section {
    background:
        radial-gradient(circle at 78% 14%, rgba(254, 198, 13, .16), transparent 30%),
        linear-gradient(180deg, #07331b 0%, #04170d 100%);
}

.mountain-game {
    display: grid;
    grid-template-columns: minmax(260px, .72fr) minmax(420px, 1.28fr);
    gap: clamp(20px, 3vw, 42px);
    padding: clamp(22px, 4vw, 46px);
    border: 1px solid rgba(254, 198, 13, .24);
    border-radius: 30px;
    background:
        linear-gradient(135deg, rgba(19, 134, 60, .24), rgba(2, 13, 8, .92)),
        #06180d;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .3);
    overflow: hidden;
}

.game-copy {
    align-self: center;
}

.game-copy h3 {
    max-width: 560px;
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(2.25rem, 5vw, 5rem);
    line-height: .94;
    letter-spacing: 0;
}

.game-copy p:not(.eyebrow) {
    max-width: 520px;
    color: rgba(255, 255, 255, .76);
    font-size: 1.05rem;
}

.drive-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.drive-controls button {
    min-width: 104px;
    min-height: 48px;
    border: 1px solid rgba(254, 198, 13, .28);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-weight: 950;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.drive-controls button:hover {
    transform: translateY(-3px);
    background: var(--yellow);
    color: #061d10;
    box-shadow: 0 14px 34px rgba(254, 198, 13, .22);
}

.drive-stage {
    position: relative;
    min-height: clamp(430px, 46vw, 560px);
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid rgba(234, 247, 255, .28);
    background:
        radial-gradient(circle at 72% 18%, rgba(255, 236, 158, .5), transparent 17%),
        linear-gradient(180deg, #35596a 0%, #7190a0 27%, #c8d8de 42%, #516e61 43%, #173d2a 74%, #061611 100%);
    box-shadow: inset 0 -90px 130px rgba(0, 0, 0, .38), inset 0 0 80px rgba(2, 10, 12, .28), 0 24px 60px rgba(0, 0, 0, .24);
    outline: none;
}

.drive-stage::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .08), transparent 35%),
        radial-gradient(circle at 50% 82%, rgba(255, 255, 255, .14), transparent 34%),
        linear-gradient(90deg, rgba(3, 18, 13, .46), transparent 28%, transparent 72%, rgba(3, 18, 13, .46));
    mix-blend-mode: screen;
    opacity: .62;
}

.drive-stage::after {
    content: "";
    position: absolute;
    inset: auto -8% 0;
    z-index: 2;
    height: 46%;
    background:
        radial-gradient(ellipse at 18% 100%, rgba(6, 42, 26, .88), transparent 46%),
        radial-gradient(ellipse at 86% 100%, rgba(5, 34, 23, .9), transparent 44%),
        linear-gradient(180deg, rgba(28, 79, 48, .2), rgba(3, 22, 13, .92));
    pointer-events: none;
}

.finish-gate {
    position: absolute;
    z-index: 7;
    left: 50%;
    top: -92px;
    min-width: 210px;
    padding: 12px 18px;
    transform: translateX(-50%);
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .28), transparent 34%),
        linear-gradient(135deg, var(--green), #063f1d);
    color: #061d10;
    border: 2px solid rgba(254, 198, 13, .9);
    font-size: 1rem;
    font-weight: 950;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .3);
    box-shadow: 0 18px 38px rgba(0, 0, 0, .34), inset 0 1px 0 rgba(255, 255, 255, .24);
    opacity: 0;
}

.finish-gate::before,
.finish-gate::after {
    content: "";
    position: absolute;
    top: 38px;
    width: 7px;
    height: 82px;
    border-radius: 999px;
    background: linear-gradient(180deg, #f7fff9, #a4b8bd);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, .08);
}

.finish-gate::before {
    left: 18px;
}

.finish-gate::after {
    right: 18px;
}

.drive-hud {
    position: absolute;
    z-index: 9;
    top: 16px;
    left: 16px;
    right: 16px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: #061d10;
    font-size: .78rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.drive-hud span {
    border-radius: 999px;
    background: rgba(3, 18, 13, .72);
    color: rgba(255, 255, 255, .9);
    border: 1px solid rgba(255, 255, 255, .18);
    padding: 10px 13px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .18);
}

.drive-hud strong {
    color: var(--yellow);
}

.sky-glow {
    position: absolute;
    top: 42px;
    right: 14%;
    width: 132px;
    height: 132px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 244, 190, .95) 0 18%, rgba(254, 198, 13, .28) 19% 42%, transparent 64%);
    filter: blur(2px);
    opacity: .78;
}

.mountain-range {
    position: absolute;
    left: -10%;
    right: -10%;
    bottom: 39%;
    height: 46%;
    clip-path: polygon(0 78%, 8% 56%, 16% 69%, 27% 18%, 38% 65%, 49% 30%, 62% 71%, 73% 14%, 85% 61%, 100% 34%, 100% 100%, 0 100%);
}

.mountain-back {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .92) 0 15%, transparent 16% 100%),
        linear-gradient(160deg, #e7f2f5 0%, #8faab2 38%, #486a77 72%, #314b56 100%);
    opacity: .92;
    filter: saturate(.86);
}

.mountain-front {
    bottom: 31%;
    height: 38%;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .9) 0 12%, transparent 13% 100%),
        linear-gradient(135deg, #f8ffff 0%, #789186 23%, #2f5b3c 58%, #102b1d 100%);
    clip-path: polygon(0 84%, 8% 59%, 18% 75%, 27% 26%, 38% 77%, 50% 39%, 60% 83%, 72% 20%, 84% 74%, 100% 43%, 100% 100%, 0 100%);
    filter: drop-shadow(0 18px 34px rgba(0, 0, 0, .28));
}

.road {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: -18%;
    width: 54%;
    height: 82%;
    transform: translateX(-50%) perspective(520px) rotateX(60deg);
    transform-origin: bottom center;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .28) 0 2%, transparent 3% 97%, rgba(255, 255, 255, .28) 98% 100%),
        linear-gradient(90deg, #151819 0 6%, #303739 7% 48%, #222729 49% 51%, #303739 52% 93%, #151819 94% 100%);
    clip-path: polygon(41% 0, 59% 0, 100% 100%, 0 100%);
    box-shadow: 0 0 0 8px rgba(255, 255, 255, .08), 0 -16px 60px rgba(0, 0, 0, .42);
}

.road span {
    position: absolute;
    left: 50%;
    width: 7px;
    height: 62px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .95), rgba(255, 255, 255, .52));
    transform: translateX(-50%);
    animation: roadLine 900ms linear infinite;
}

.road span:nth-child(1) { top: -10%; }
.road span:nth-child(2) { top: 18%; }
.road span:nth-child(3) { top: 46%; }
.road span:nth-child(4) { top: 74%; }

.road-edge {
    position: absolute;
    z-index: 4;
    bottom: 0;
    width: 30%;
    height: 44%;
    background:
        radial-gradient(ellipse at 50% 100%, rgba(234, 247, 255, .32), transparent 54%),
        linear-gradient(180deg, rgba(255, 255, 255, .18), rgba(19, 134, 60, .18));
    opacity: .48;
    filter: blur(20px);
}

.road-edge.left { left: 1%; transform: skewX(-18deg); }
.road-edge.right { right: 1%; transform: skewX(18deg); }

.drive-car {
    position: absolute;
    z-index: 10;
    left: 50%;
    bottom: 34px;
    width: 82px;
    height: 126px;
    transform: translateX(-50%);
    border-radius: 30px 30px 16px 16px;
    background:
        radial-gradient(circle at 24% 78%, rgba(254, 198, 13, .95) 0 4px, transparent 5px),
        radial-gradient(circle at 76% 78%, rgba(254, 198, 13, .95) 0 4px, transparent 5px),
        linear-gradient(90deg, transparent 0 12px, rgba(255, 255, 255, .18) 13px 18px, transparent 19px 64px, rgba(255, 255, 255, .18) 65px 70px, transparent 71px),
        linear-gradient(180deg, #182322 0%, #101817 42%, #07100f 100%);
    border: 2px solid rgba(255, 255, 255, .18);
    box-shadow: 0 22px 36px rgba(0, 0, 0, .48), inset 0 2px 0 rgba(255, 255, 255, .18), inset 0 -18px 24px rgba(0, 0, 0, .38);
    transition: left 150ms ease;
}

.drive-car::before {
    content: "";
    position: absolute;
    left: 13px;
    right: 13px;
    top: 16px;
    height: 39px;
    border-radius: 18px 18px 10px 10px;
    background:
        linear-gradient(90deg, transparent 48%, rgba(255, 255, 255, .25) 49% 51%, transparent 52%),
        linear-gradient(180deg, rgba(224, 246, 255, .92), rgba(34, 80, 91, .94));
    border: 1px solid rgba(255, 255, 255, .3);
}

.drive-car::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 10px;
    height: 14px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 20% 50%, rgba(254, 198, 13, .95) 0 5px, transparent 6px),
        radial-gradient(circle at 80% 50%, rgba(254, 198, 13, .95) 0 5px, transparent 6px),
        linear-gradient(90deg, #050807, #1b2421, #050807);
}

.drive-car i,
.drive-car i::before {
    position: absolute;
    bottom: 26px;
    width: 13px;
    height: 34px;
    border-radius: 999px;
    background: linear-gradient(180deg, #050706, #171b19);
    content: "";
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .06);
}

.drive-car i { left: -7px; }
.drive-car i::before { left: 83px; }

.drive-obstacle {
    position: absolute;
    z-index: 7;
    left: 50%;
    top: -70px;
    width: 58px;
    height: 44px;
    transform: translateX(-50%);
    border-radius: 12px 12px 12px 2px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .18), transparent 42%),
        linear-gradient(135deg, #d3a000, var(--yellow));
    border: 2px solid rgba(255, 255, 255, .72);
    box-shadow: 0 16px 30px rgba(0, 0, 0, .3);
}

.drive-obstacle::after {
    content: "";
    position: absolute;
    left: 9px;
    bottom: -50px;
    width: 6px;
    height: 50px;
    border-radius: 999px;
    background: linear-gradient(180deg, #f7fff9, #9cb2b9);
    box-shadow: 9px 48px 0 rgba(255, 255, 255, .16);
}

.mountain-game.playing .road span {
    animation-duration: var(--drive-road-duration, 520ms);
}

.mountain-game.crashed .drive-stage {
    animation: crashPulse 420ms ease;
}

@keyframes roadLine {
    from { transform: translate(-50%, -120%); }
    to { transform: translate(-50%, 360%); }
}

@keyframes crashPulse {
    0%, 100% { filter: none; }
    45% { filter: saturate(1.5) contrast(1.2); }
}

@media (max-width: 980px) {
    .mountain-game {
        grid-template-columns: 1fr;
    }

    .drive-stage {
        min-height: 420px;
    }
}

/* Colorful dino-runner style game */
.mountain-game {
    align-items: stretch;
}

.game-copy h3 {
    max-width: 620px;
    font-size: clamp(2rem, 4.2vw, 4.45rem);
    line-height: 1;
}

.game-copy p:not(.eyebrow) {
    max-width: 560px;
    line-height: 1.55;
}

.drive-controls {
    align-items: center;
    gap: 14px;
    padding-bottom: 4px;
}

.drive-controls button {
    min-width: 118px;
    min-height: 52px;
    padding: 0 24px;
    display: inline-grid;
    place-items: center;
    line-height: 1;
    touch-action: manipulation;
    user-select: none;
}

.drive-stage {
    min-height: clamp(380px, 38vw, 500px);
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    background:
        radial-gradient(circle at 16% 18%, rgba(255, 255, 255, .88) 0 44px, transparent 45px),
        radial-gradient(circle at 74% 16%, rgba(254, 198, 13, .88) 0 56px, rgba(254, 198, 13, .16) 57px 94px, transparent 96px),
        linear-gradient(180deg, #68c7f2 0%, #a9e7ff 38%, #d7f6ff 39%, #84d27a 40%, #35a75f 72%, #13863c 100%);
    border: 3px solid rgba(255, 255, 255, .55);
    box-shadow: inset 0 -32px 0 rgba(9, 82, 38, .2), 0 26px 70px rgba(0, 0, 0, .28);
    transform: translateZ(0);
}

.drive-stage::before {
    z-index: 4;
    opacity: .86;
    mix-blend-mode: normal;
    background:
        radial-gradient(ellipse at 18% 76%, rgba(255, 255, 255, .72), transparent 11%),
        radial-gradient(ellipse at 52% 72%, rgba(255, 255, 255, .62), transparent 12%),
        radial-gradient(ellipse at 82% 77%, rgba(255, 255, 255, .6), transparent 10%),
        linear-gradient(180deg, transparent 64%, rgba(3, 52, 24, .24) 65%, rgba(3, 52, 24, .34) 100%);
}

.drive-stage::after {
    z-index: 5;
    inset: auto 0 0;
    height: 86px;
    background:
        repeating-linear-gradient(90deg, rgba(255, 255, 255, .18) 0 22px, transparent 23px 58px),
        linear-gradient(180deg, #2b2f30, #171b1b);
    border-top: 8px solid rgba(254, 198, 13, .9);
}

.mountain-range {
    left: -4%;
    right: -4%;
    bottom: 31%;
    height: 44%;
    clip-path: polygon(0 88%, 10% 54%, 18% 74%, 29% 22%, 41% 78%, 52% 36%, 63% 78%, 74% 26%, 85% 70%, 100% 40%, 100% 100%, 0 100%);
}

.mountain-back {
    background:
        linear-gradient(135deg, #ffffff 0 14%, transparent 15%),
        linear-gradient(145deg, #d5f5ff, #69a5c5 54%, #357198);
    opacity: .82;
    animation: runnerScenery 24s linear infinite;
    will-change: transform;
}

.mountain-front {
    bottom: 24%;
    height: 34%;
    background:
        linear-gradient(135deg, #fff 0 12%, transparent 13%),
        linear-gradient(145deg, #f7fff5, #2f9e58 54%, #0b5f2a);
    animation: runnerScenery 16s linear infinite;
    will-change: transform;
}

.sky-glow {
    top: 40px;
    right: 12%;
    width: 120px;
    height: 120px;
    opacity: .92;
    filter: none;
}

.road {
    z-index: 6;
    left: 0;
    right: 0;
    bottom: 42px;
    width: 100%;
    height: 18px;
    transform: none;
    background: repeating-linear-gradient(90deg, #fff 0 46px, transparent 47px 92px);
    clip-path: none;
    box-shadow: none;
    animation: runnerRoad 760ms linear infinite;
    will-change: background-position;
}

.road span {
    display: none;
}

.road-edge {
    display: none;
}

.drive-car {
    left: min(130px, 22%);
    bottom: 78px;
    width: 92px;
    height: 58px;
    transform: translateY(0);
    border-radius: 22px 28px 14px 14px;
    background:
        radial-gradient(circle at 24% 88%, #101514 0 10px, #f2f6f3 11px 14px, transparent 15px),
        radial-gradient(circle at 78% 88%, #101514 0 10px, #f2f6f3 11px 14px, transparent 15px),
        linear-gradient(90deg, transparent 0 10px, rgba(255, 255, 255, .25) 11px 16px, transparent 17px 100%),
        linear-gradient(135deg, #fec60d 0 48%, #13863c 49% 100%);
    border: 3px solid rgba(255, 255, 255, .78);
    box-shadow: 0 14px 0 rgba(0, 0, 0, .12), 0 20px 34px rgba(0, 0, 0, .28);
    transition: none;
    will-change: transform;
}

.drive-car::before {
    left: 34px;
    right: 16px;
    top: 8px;
    height: 22px;
    border-radius: 14px 18px 6px 6px;
    background: linear-gradient(180deg, #eafaff, #6bc8ef);
    border: 2px solid rgba(255, 255, 255, .82);
}

.drive-car::after {
    left: 12px;
    right: 12px;
    bottom: 8px;
    height: 8px;
    background: rgba(6, 29, 16, .75);
}

.drive-car i,
.drive-car i::before {
    display: none;
}

.mountain-game.jumping .drive-car {
    box-shadow: 0 28px 0 rgba(0, 0, 0, .07), 0 34px 38px rgba(0, 0, 0, .22);
}

.drive-obstacle {
    z-index: 9;
    top: auto;
    bottom: 82px;
    width: 44px;
    height: 58px;
    transform: none;
    border: 3px solid rgba(255, 255, 255, .74);
    border-radius: 10px 10px 6px 6px;
    background:
        radial-gradient(circle at 50% 18%, rgba(255, 255, 255, .55) 0 5px, transparent 6px),
        linear-gradient(180deg, #fec60d, #df9700);
    box-shadow: 0 12px 0 rgba(0, 0, 0, .08), 0 18px 26px rgba(0, 0, 0, .22);
    will-change: left;
}

.drive-obstacle::after {
    display: none;
}

.finish-gate {
    top: auto;
    bottom: 150px;
    min-width: 190px;
    transform: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #13863c, #075827);
    color: #fff;
}

.finish-gate::before,
.finish-gate::after {
    top: 43px;
    height: 88px;
}

.drive-hud {
    z-index: 12;
}

@keyframes runnerRoad {
    from { background-position: 0 0; }
    to { background-position: -92px 0; }
}

@keyframes runnerScenery {
    from { transform: translateX(0); }
    to { transform: translateX(-8%); }
}

@media (max-width: 720px) {
    .mountain-game {
        gap: 18px;
        padding: 18px;
        border-radius: 22px;
    }

    .game-copy h3 {
        font-size: clamp(2rem, 11vw, 3.1rem);
    }

    .game-copy p:not(.eyebrow) {
        font-size: 0.98rem;
    }

    .drive-controls {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin-top: 18px;
    }

    .drive-controls button {
        width: 100%;
        min-width: 0;
        min-height: 54px;
        padding-inline: 14px;
        font-size: 12px;
    }

    .drive-stage {
        min-height: min(74vw, 390px);
        border-radius: 20px;
    }

    .drive-car {
        left: 52px;
        bottom: 72px;
        width: 72px;
        height: 46px;
    }

    .drive-car::before {
        left: 27px;
        right: 11px;
        top: 7px;
        height: 18px;
    }

    .drive-obstacle {
        bottom: 76px;
        width: 38px;
        height: 50px;
    }

    .drive-hud {
        top: 10px;
        left: 10px;
        right: 10px;
        font-size: 0.68rem;
    }

    .drive-hud span {
        padding: 8px 9px;
    }
}

@media (min-width: 721px) and (max-width: 1180px) {
    .mountain-game {
        grid-template-columns: 1fr;
    }

    .drive-stage {
        min-height: 430px;
    }
}

/* Homepage landing refresh inspired by clean travel marketplace layouts */
.home-page .site-header {
    position: sticky;
    top: 0;
    min-height: 94px;
    padding: 18px clamp(22px, 6vw, 150px);
    background: linear-gradient(180deg, rgba(6, 33, 18, .97), rgba(3, 20, 8, .95)), linear-gradient(90deg, rgba(19, 134, 60, .36), rgba(254, 198, 13, .12));
    color: var(--text);
    border-bottom: 1px solid rgba(19, 134, 60, .16);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .18);
}

.home-page .brand,
.home-page .brand img,
.home-page .brand .logo-default,
.home-page .brand .logo-snow {
    max-width: 190px !important;
    height: 54px !important;
}

.home-page .brand {
    flex-basis: 190px;
    width: 190px;
    min-width: 190px;
}

.home-page .brand img {
    object-position: left center;
}

.home-page .main-nav {
    gap: clamp(18px, 4vw, 64px);
}

.home-page .main-nav a {
    color: var(--text);
    font-size: 14px;
    font-weight: 800;
    text-transform: none;
    letter-spacing: 0;
}

.home-page .main-nav a.active,
.home-page .main-nav a:hover {
    color: var(--green);
}

.home-page .main-nav a::after {
    bottom: -7px;
    height: 3px;
    background: var(--yellow);
}

.home-page .site-header .plan-btn {
    max-width: none;
    min-height: 48px;
    padding-inline: 24px;
    color: #090b04;
}

.home-page .snow-control {
    color: var(--text);
}

.route-icon-strip {
    position: sticky;
    top: 94px;
    z-index: 24;
    display: flex;
    gap: clamp(10px, 2vw, 28px);
    align-items: center;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    padding: 22px clamp(22px, 10vw, 190px) 18px;
    background: rgba(255, 255, 255, .98);
    color: #061d10;
    border-bottom: 1px solid rgba(7, 16, 12, .12);
    box-shadow: 0 12px 22px rgba(0, 0, 0, .04);
}

.route-icon-strip a {
    flex: 0 0 132px;
    display: grid;
    justify-items: center;
    gap: 8px;
    min-height: 66px;
    scroll-snap-align: center;
    color: #061d10;
    font-size: 14px;
    font-weight: 800;
}

.route-icon-strip::-webkit-scrollbar {
    height: 7px;
}

.route-icon-strip::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(19, 134, 60, .35);
}

.route-icon-strip svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.route-icon-strip a:hover {
    color: var(--green);
    transform: translateY(-2px);
}

.route-icon-strip a:hover svg {
    stroke: var(--yellow);
}

.home-page .hero-slider {
    min-height: clamp(430px, calc(100vh - 210px), 560px);
    background: #f6f7f2;
}

.home-page .slide {
    padding: clamp(74px, 10vw, 132px) clamp(24px, 14vw, 196px) clamp(76px, 8vw, 110px);
}

.home-page .slide::before {
    opacity: .54;
    filter: grayscale(.2) saturate(.85) contrast(.95);
    background-position: center;
}

.home-page .slide::after {
    background:
        linear-gradient(90deg, rgba(5, 13, 9, .62) 0%, rgba(6, 33, 18, .52) 23%, rgba(255, 255, 255, .72) 64%, rgba(255, 255, 255, .96) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, .2), rgba(255, 255, 255, .88));
}

.home-page .slide-copy {
    max-width: 520px;
    padding-top: 0;
}

.home-page .slide h1,
.home-page .slide h2 {
    max-width: 560px;
    color: #fff;
    font-size: clamp(42px, 5.4vw, 72px);
    line-height: .98;
    text-transform: none;
    text-shadow: 0 10px 28px rgba(0, 0, 0, .22);
}

.home-page .slide p:not(.eyebrow) {
    max-width: 460px;
    color: rgba(255, 255, 255, .94);
    font-size: clamp(16px, 1.5vw, 20px);
}

.home-page .eyebrow {
    color: var(--yellow);
}

.home-page .hero-actions {
    margin-top: 28px;
}

.home-page .ghost-btn {
    color: #fff;
    background: rgba(6, 33, 18, .28);
    border-color: rgba(255, 255, 255, .6);
}

.home-page .trip-search {
    margin-top: -34px;
}

body.snow-on.home-page .route-icon-strip {
    background: linear-gradient(180deg, rgba(255, 255, 255, .99), rgba(226, 247, 255, .98));
    color: #061d10;
}

body.snow-on.home-page .route-icon-strip a,
body.snow-on.home-page .route-icon-strip {
    color: #061d10;
}

@media (max-width: 1260px) {
    .home-page .site-header {
        padding-inline: 22px;
    }

    .home-page .main-nav {
        gap: 18px;
    }

    .route-icon-strip {
        top: 86px;
        padding-inline: 24px;
    }
}

@media (max-width: 980px) {
    .route-icon-strip {
        position: relative;
        top: auto;
        padding: 16px 14px;
    }

    .route-icon-strip a {
        flex-basis: 104px;
        font-size: 12px;
    }

    .home-page .hero-slider {
        min-height: 500px;
    }

    .home-page .slide {
        padding: 52px 22px 96px;
    }
}

@media (max-width: 720px) {
    .home-page .site-header {
        grid-template-columns: minmax(132px, 1fr) 42px 42px;
        min-height: 68px;
        padding: 10px 12px;
    }

    .home-page .brand,
    .home-page .brand img,
    .home-page .brand .logo-default,
    .home-page .brand .logo-snow {
        width: 150px !important;
        min-width: 150px;
        max-width: 150px !important;
        height: 42px !important;
    }

    .home-page .main-nav a {
        font-size: 12px;
        text-transform: uppercase;
    }

    .home-page .slide h1,
    .home-page .slide h2 {
        font-size: clamp(38px, 12vw, 54px);
    }
}

/* Final landing overlap fixes */
.home-page .site-header {
    overflow: visible;
    min-height: 64px;
    padding: 8px clamp(18px, 4vw, 84px);
    gap: clamp(16px, 2.4vw, 34px);
    background: linear-gradient(180deg, rgba(6, 33, 18, .97), rgba(3, 20, 8, .95)), linear-gradient(90deg, rgba(19, 134, 60, .34), rgba(254, 198, 13, .1));
    color: #fff;
}

.home-page .brand {
    overflow: visible;
    flex: 0 0 170px;
    width: 170px;
    min-width: 170px;
    max-width: 170px;
}

.home-page .brand .logo-default {
    display: block;
    width: 170px !important;
    max-width: 170px !important;
    height: 42px !important;
    object-fit: contain;
    object-position: left center;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .22));
}

.home-page .main-nav {
    flex: 1 1 auto;
    justify-content: center;
    gap: clamp(20px, 2.5vw, 42px);
    min-width: 0;
    min-height: 0;
    height: auto;
}

.home-page .main-nav a {
    font-size: 13px;
    line-height: 1;
    padding-block: 8px;
    white-space: nowrap;
}

.home-page .site-header .plan-btn {
    min-height: 42px;
    padding-inline: 20px;
    font-size: 12px;
}

.home-page .snow-control {
    gap: 8px;
    font-size: 11px;
}

.home-page .snow-control i {
    width: 46px;
    height: 26px;
}

.home-page .snow-control i::after {
    width: 20px;
    height: 20px;
}

body.snow-on .home-page .snow-control i::after,
body.snow-on .snow-control i::after {
    transform: translateX(20px);
}

.route-icon-strip {
    top: 71px;
    justify-content: flex-start;
    overflow: hidden;
    padding: 6px 0;
    gap: clamp(8px, 1.6vw, 22px);
}

.route-icon-track {
    display: flex;
    align-items: center;
    gap: clamp(26px, 5vw, 74px);
    width: max-content;
    min-width: max-content;
    padding-inline: clamp(18px, 6vw, 90px);
    animation: routeTicker 24s linear infinite;
    will-change: transform;
}

.route-icon-strip:hover .route-icon-track {
    animation-play-state: paused;
}

.route-icon-strip a {
    flex: 0 0 auto;
    min-width: 96px;
    min-height: 34px;
    gap: 2px;
    font-size: 11px;
}

.route-icon-strip svg {
    width: 18px;
    height: 18px;
}

@keyframes routeTicker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.home-page .hero-slider {
    min-height: 540px;
    margin-bottom: 0;
}

.home-page .slide {
    align-items: center;
    padding-top: clamp(72px, 9vw, 118px);
    padding-bottom: clamp(92px, 10vw, 140px);
}

.home-page .slide::before {
    opacity: 1;
    filter: saturate(1.04) contrast(1.02);
}

.home-page .slide::after {
    background:
        linear-gradient(90deg, rgba(3, 20, 8, .78) 0%, rgba(3, 20, 8, .56) 34%, rgba(3, 20, 8, .18) 72%, rgba(255, 255, 255, .12) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .18));
}

.home-page .slide-copy {
    max-width: 560px;
    position: relative;
    z-index: 2;
}

.home-page .slide h1,
.home-page .slide h2,
.home-page .slide p:not(.eyebrow) {
    color: #fff;
    text-shadow: 0 8px 28px rgba(0, 0, 0, .46);
}

.home-page .hero-actions {
    position: relative;
    z-index: 4;
    margin-top: 26px;
    padding-bottom: 4px;
}

.home-page .slider-dots {
    bottom: 24px;
}

.home-page .trip-search {
    margin: 30px clamp(18px, 4vw, 56px) 0;
    position: relative;
    z-index: 6;
    transform: none;
}

@media (max-width: 720px) {
    .home-page .site-header {
        min-height: 64px;
        padding: 9px 12px;
        gap: 10px;
    }

    .home-page .brand,
    .home-page .brand img,
    .home-page .brand .logo-default,
    .home-page .brand .logo-snow {
        width: 138px !important;
        min-width: 138px;
        max-width: 138px !important;
        height: 38px !important;
    }

    .home-page .site-header .plan-btn {
        min-height: 38px;
        padding-inline: 14px;
        font-size: 11px;
    }

    .route-icon-strip {
        padding: 5px 0;
    }

    .route-icon-strip a {
        min-width: 82px;
        min-height: 32px;
        font-size: 10px;
    }

    .route-icon-strip svg {
        width: 17px;
        height: 17px;
    }

    .route-icon-track {
        gap: 24px;
        animation-duration: 18s;
    }

    .home-page .hero-slider {
        min-height: 560px;
    }

    .home-page .slide {
        padding: 58px 18px 128px;
    }

    .home-page .slide h1,
    .home-page .slide h2 {
        font-size: clamp(34px, 11vw, 48px);
    }

    .home-page .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .home-page .hero-actions .primary-btn,
    .home-page .hero-actions .ghost-btn {
        width: 100%;
    }

    .home-page .trip-search {
        margin: 24px 14px 0;
    }
}

/* Premium finishing pass */
html {
    scroll-padding-top: 118px;
}

body {
    text-rendering: geometricPrecision;
}

.site-header {
    backdrop-filter: blur(18px) saturate(1.08);
}

.main-nav a,
.route-icon-strip a,
.plan-btn,
.primary-btn,
.ghost-btn,
.package-card a,
.package-long-card a {
    transition:
        color .22s ease,
        background .22s ease,
        border-color .22s ease,
        box-shadow .22s ease,
        transform .22s ease,
        opacity .22s ease;
}

.plan-btn:hover,
.primary-btn:hover,
.package-card a:hover,
.package-long-card a:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(254, 198, 13, .26), 0 0 0 1px rgba(254, 198, 13, .18);
}

.ghost-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(254, 198, 13, .7);
    background: rgba(255, 255, 255, .12);
}

.home-page .site-header {
    border-bottom-color: rgba(254, 198, 13, .1);
    box-shadow: 0 16px 42px rgba(0, 0, 0, .2);
}

.home-page .brand .logo-default {
    transform: translateZ(0);
}

.home-page .hero-slider {
    isolation: isolate;
    box-shadow: inset 0 -90px 120px rgba(3, 20, 8, .24);
}

.home-page .slide::before {
    transform: scale(1.035);
    transition: transform 5.2s ease, opacity .8s ease;
}

.home-page .slide.active::before {
    transform: scale(1);
}

.home-page .slide-copy {
    animation: heroCopyIn .72s ease both;
}

.home-page .slide.active .slide-copy {
    animation-name: heroCopyIn;
}

.home-page .slide h1,
.home-page .slide h2 {
    max-width: 620px;
    letter-spacing: 0;
}

.home-page .slide p:not(.eyebrow) {
    max-width: 500px;
    line-height: 1.55;
}

.slider-dots button {
    cursor: pointer;
    transition: width .22s ease, background .22s ease, opacity .22s ease;
}

.slider-dots button.active {
    width: 54px;
}

.trip-search {
    box-shadow: 0 24px 70px rgba(0, 0, 0, .24), inset 0 1px 0 rgba(255, 255, 255, .12);
}

.image-card,
.package-card,
.blog-card,
.journey-video-card,
.google-review-card,
.content-card,
.stats-panel,
.mountain-game {
    transition:
        transform .28s ease,
        box-shadow .28s ease,
        border-color .28s ease,
        filter .28s ease;
}

.image-card:hover,
.package-card:hover,
.blog-card:hover,
.journey-video-card:hover,
.google-review-card:hover {
    transform: translateY(-6px);
    border-color: rgba(254, 198, 13, .34);
    box-shadow: 0 30px 85px rgba(0, 0, 0, .36), 0 0 0 1px rgba(254, 198, 13, .08);
}

.image-card img,
.package-card img,
.blog-card img,
.journey-video-card video {
    transition: transform .55s ease, filter .35s ease;
}

.image-card:hover img,
.package-card:hover img,
.blog-card:hover img,
.journey-video-card:hover video {
    transform: scale(1.045);
    filter: saturate(1.08) contrast(1.04);
}

.package-long-grid {
    scroll-behavior: smooth;
    scrollbar-color: rgba(254, 198, 13, .76) rgba(255, 255, 255, .1);
}

.package-long-card {
    background: #fff;
    color: #07100c;
}

.package-long-card div {
    background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(247, 250, 247, .98));
}

.package-long-card span,
.package-long-card em {
    box-shadow: inset 0 0 0 1px rgba(19, 134, 60, .18);
}

.stats-panel div {
    min-height: 138px;
    background:
        radial-gradient(circle at 50% 0%, rgba(254, 198, 13, .1), transparent 42%),
        rgba(255, 255, 255, .06);
}

.stats-panel strong {
    letter-spacing: 0;
}

.journey-video-card {
    min-height: clamp(360px, 42vw, 520px);
}

.journey-video-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, .58)),
        radial-gradient(circle at 70% 12%, rgba(254, 198, 13, .16), transparent 30%);
}

.journey-video-card div {
    position: relative;
    z-index: 2;
}

.footer-socials a:hover {
    color: var(--yellow);
    transform: translateY(-2px);
}

.destination-packages-section {
    background:
        radial-gradient(circle at 12% 8%, rgba(254, 198, 13, .12), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(19, 134, 60, .08));
}

.destination-package-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.destination-package-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-rows: 230px 1fr;
    min-height: 620px;
    background: linear-gradient(180deg, rgba(234,247,255,.08), rgba(255,255,255,.035)), var(--panel);
    border: 1px solid var(--line);
    border-radius: 26px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .23);
    transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.destination-package-card:hover {
    transform: translateY(-7px);
    border-color: rgba(254, 198, 13, .42);
    box-shadow: 0 34px 86px rgba(0, 0, 0, .34);
}

.destination-package-card > img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    filter: saturate(1.08) contrast(1.03) brightness(.9);
    transition: transform .55s ease, filter .35s ease;
}

.destination-package-card:hover > img {
    transform: scale(1.045);
    filter: saturate(1.15) contrast(1.06) brightness(.98);
}

.destination-package-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 26px;
}

.destination-package-content > span {
    width: fit-content;
    padding: 7px 12px;
    color: #fff;
    background: var(--green);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.destination-package-content h3 {
    margin: 0;
    font-size: clamp(25px, 2.2vw, 34px);
    line-height: 1.05;
}

.destination-package-content p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.destination-trip-list {
    display: grid;
    gap: 12px;
    margin-top: auto;
}

.destination-trip-list a {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
    min-height: 68px;
    padding: 14px 16px;
    color: var(--text);
    text-decoration: none;
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 18px;
    transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.destination-trip-list a:hover {
    transform: translateX(4px);
    background: rgba(19, 134, 60, .16);
    border-color: rgba(254, 198, 13, .36);
}

.destination-trip-list b {
    font-size: 15px;
    line-height: 1.25;
}

.destination-trip-list small {
    color: var(--yellow);
    font-weight: 900;
    white-space: nowrap;
}

.destination-package-card-single {
    grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr);
    grid-template-rows: 1fr;
    min-height: auto;
}

.destination-package-card-single > img {
    height: 100%;
    min-height: 520px;
}

.destination-package-card-single .destination-package-content {
    padding: clamp(28px, 4vw, 48px);
}

.destination-trip-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 8px;
}

.destination-trip-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
}

.destination-trip-group h4 {
    margin: 0;
    color: var(--yellow);
    font-size: 15px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.destination-trip-group .destination-trip-list {
    margin-top: 0;
}

.destination-package-simple-grid {
    grid-template-columns: repeat(3, minmax(260px, 1fr));
    align-items: stretch;
}

.destination-simple-card {
    grid-template-rows: 230px 1fr;
    min-height: 430px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .96);
    color: #06140b;
    border-color: rgba(4, 18, 10, .08);
    box-shadow: 0 18px 38px rgba(0, 0, 0, .18);
}

.destination-simple-card > img {
    height: 230px;
    border-radius: 24px 24px 18px 18px;
    filter: saturate(1.08) contrast(1.02);
}

.destination-simple-card .destination-package-content {
    gap: 16px;
    padding: 22px 24px 24px;
}

.destination-simple-card h3 {
    color: #06140b;
    font-size: clamp(25px, 2vw, 32px);
}

.destination-simple-card .destination-trip-list {
    margin-top: 0;
    gap: 8px;
}

.destination-simple-card .destination-trip-list a {
    min-height: 0;
    padding: 0 0 8px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(6, 20, 11, .16);
    border-radius: 0;
    color: #06140b;
}

.destination-simple-card .destination-trip-list a:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.destination-simple-card .destination-trip-list a:hover {
    transform: translateX(3px);
    background: transparent;
    border-color: rgba(19, 134, 60, .35);
}

.destination-simple-card .destination-trip-list b {
    font-size: 16px;
}

.upcoming-trips-section {
    background:
        radial-gradient(circle at 16% 10%, rgba(254, 198, 13, .09), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(19, 134, 60, .08));
}

.upcoming-trip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 24px;
}

.upcoming-trip-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 420px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 24px;
    background: rgba(4, 18, 10, .9);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.upcoming-trip-card:hover {
    transform: translateY(-6px);
    border-color: rgba(254, 198, 13, .42);
    box-shadow: 0 32px 86px rgba(0, 0, 0, .36);
}

.upcoming-trip-card img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.58) saturate(1.05);
    transition: transform .55s ease, filter .35s ease;
}

.upcoming-trip-card:hover img {
    transform: scale(1.045);
    filter: brightness(.66) saturate(1.12);
}

.upcoming-trip-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .02) 10%, rgba(0, 0, 0, .52) 58%, rgba(0, 0, 0, .88)),
        radial-gradient(circle at 18% 18%, rgba(254, 198, 13, .22), transparent 32%);
    pointer-events: none;
}

.upcoming-trip-card div {
    display: grid;
    gap: 10px;
    padding: 24px;
    color: #fff;
}

.upcoming-trip-card span {
    width: fit-content;
    padding: 7px 11px;
    border-radius: 999px;
    background: var(--green);
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.upcoming-trip-card h3 {
    margin: 0;
    color: #fff;
    font-size: clamp(22px, 2.6vw, 32px);
    line-height: 1.05;
}

.upcoming-trip-card p {
    margin: 0;
    color: rgba(255, 255, 255, .84);
    line-height: 1.55;
}

.upcoming-trip-card small {
    color: var(--yellow);
    font-weight: 900;
}

.upcoming-trip-card a {
    width: fit-content;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    background: var(--yellow);
    color: #091006;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.upcoming-trip-card a:hover {
    transform: translateY(-2px);
    background: #ffd84b;
    box-shadow: 0 14px 28px rgba(254, 198, 13, .26);
}

.modal.open .modal-panel {
    animation: modalLift .26s ease both;
}

.storm-cloud {
    background:
        url("assets/cloud-obj.svg") center/118% 124% no-repeat,
        radial-gradient(ellipse at 18% 54%, rgba(255, 255, 255, .94) 0 13%, rgba(223, 235, 243, .84) 30%, transparent 58%),
        radial-gradient(ellipse at 39% 31%, rgba(255, 255, 255, .96) 0 22%, rgba(199, 218, 231, .86) 46%, transparent 72%),
        radial-gradient(ellipse at 61% 41%, rgba(242, 249, 252, .92) 0 24%, rgba(176, 198, 214, .82) 46%, transparent 72%),
        radial-gradient(ellipse at 82% 59%, rgba(221, 234, 242, .84) 0 19%, rgba(121, 146, 162, .66) 42%, transparent 68%),
        radial-gradient(ellipse at 50% 88%, rgba(24, 30, 35, .72) 0 37%, rgba(4, 8, 10, .24) 72%, transparent 100%);
    filter: saturate(.78) contrast(1.24) brightness(.96) drop-shadow(0 30px 42px rgba(0, 0, 0, .5));
    box-shadow:
        inset 28px 24px 34px rgba(255, 255, 255, .36),
        inset -34px -30px 42px rgba(36, 54, 66, .48),
        inset 0 -22px 42px rgba(6, 10, 12, .24);
}

.storm-cloud.cloud-a {
    --cloud-opacity: .38;
    --cloud-transform: translate3d(0, 0, -220px) scale(.58);
    --cloud-drift: translate3d(32px, 10px, -220px) scale(.61);
    opacity: var(--cloud-opacity);
    animation: stormFloatA 14s ease-in-out infinite alternate, stormArrive 1.2s ease-out both;
}

.storm-cloud.cloud-b {
    --cloud-opacity: .38;
    --cloud-transform: translate3d(0, 0, -180px) scale(.62);
    --cloud-drift: translate3d(-34px, 12px, -180px) scale(.65);
    opacity: var(--cloud-opacity);
    animation: stormFloatB 16s ease-in-out infinite alternate, stormArrive 1.35s ease-out both;
}

.storm-cloud.cloud-c {
    --cloud-opacity: .6;
    --cloud-transform: translate3d(0, 0, -80px) scale(.66);
    --cloud-drift: translate3d(26px, -8px, -80px) scale(.69);
    opacity: var(--cloud-opacity);
    animation: stormFloatA 15s ease-in-out infinite alternate, stormArrive 1.5s ease-out both;
}

.storm-cloud.cloud-d {
    --cloud-opacity: .6;
    --cloud-transform: translate3d(0, 0, -50px) scale(.6);
    --cloud-drift: translate3d(-28px, -6px, -50px) scale(.63);
    opacity: var(--cloud-opacity);
    animation: stormFloatB 17s ease-in-out infinite alternate, stormArrive 1.45s ease-out both;
}

.storm-cloud.cloud-e {
    --cloud-opacity: .78;
    --cloud-transform: translate3d(0, 0, 60px) scale(.82);
    --cloud-drift: translate3d(42px, 14px, 60px) scale(.86);
    opacity: var(--cloud-opacity);
    animation: stormFloatA 13s ease-in-out infinite alternate, stormArrive 1.15s ease-out both;
}

.storm-cloud.cloud-f {
    --cloud-opacity: .78;
    --cloud-transform: translate3d(0, 0, 90px) scale(.52);
    --cloud-drift: translate3d(-38px, 9px, 90px) scale(.55);
    opacity: var(--cloud-opacity);
    animation: stormFloatB 14s ease-in-out infinite alternate, stormArrive 1.3s ease-out both;
}

body.monsoon-on .home-page .slide::after,
body.monsoon-on.home-page .slide::after {
    background:
        linear-gradient(90deg, rgba(9, 12, 14, .78), rgba(24, 30, 34, .34) 48%, rgba(7, 10, 12, .5)),
        linear-gradient(180deg, rgba(52, 61, 66, .18), rgba(0, 0, 0, .34));
}

body.monsoon-on .route-icon-strip {
    background: rgba(228, 235, 237, .92);
    backdrop-filter: blur(16px);
}

body.monsoon-on .package-long-card,
body.monsoon-on .google-review-card {
    background: linear-gradient(180deg, rgba(234, 239, 241, .95), rgba(215, 224, 228, .92));
}

@keyframes heroCopyIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes modalLift {
    from {
        opacity: 0;
        transform: translateY(16px) scale(.985);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes stormFloatA {
    0% { transform: var(--cloud-transform); }
    50% { transform: translate3d(16px, -8px, 0) var(--cloud-transform); }
    100% { transform: var(--cloud-drift); }
}

@keyframes stormFloatB {
    0% { transform: var(--cloud-transform); }
    52% { transform: translate3d(-18px, -10px, 0) var(--cloud-transform); }
    100% { transform: var(--cloud-drift); }
}

@keyframes stormArrive {
    from {
        opacity: 0;
        filter: blur(8px) saturate(.65) brightness(.74);
    }

    to {
        opacity: var(--cloud-opacity, 1);
    }
}

@media (max-width: 980px) {
    .section {
        padding-block: clamp(48px, 8vw, 76px);
    }

    .section-head h2 {
        font-size: clamp(30px, 8vw, 48px);
    }

    .trip-search {
        grid-template-columns: 1fr;
    }

    .package-long-card {
        flex-basis: min(86vw, 380px);
    }

    .journey-video-grid,
    .google-review-grid {
        grid-template-columns: 1fr;
    }

    .destination-package-grid {
        grid-template-columns: 1fr;
    }

    .destination-package-simple-grid {
        grid-template-columns: 1fr;
    }

    .destination-package-card {
        min-height: auto;
    }

    .destination-package-card-single {
        grid-template-columns: 1fr;
    }

    .destination-package-card-single > img {
        height: 300px;
        min-height: 300px;
    }

    .destination-trip-columns {
        grid-template-columns: 1fr;
    }

    .upcoming-trip-grid {
        grid-template-columns: 1fr;
    }

    .upcoming-trip-card {
        min-height: 360px;
    }

    .storm-cloud {
        width: clamp(210px, 58vw, 420px);
        height: clamp(100px, 24vw, 180px);
    }
}

@media (max-width: 720px) {
    html {
        scroll-padding-top: 82px;
    }

    .main-nav.open {
        border-radius: 18px;
        padding: 8px;
        background: rgba(3, 20, 8, .98);
        box-shadow: 0 20px 60px rgba(0, 0, 0, .32);
    }

    .home-page .slide-copy {
        max-width: 100%;
    }

    .trip-search label,
    .trip-search input,
    .trip-search button {
        min-width: 0;
    }

    .stats-panel div {
        min-height: 112px;
    }

    .footer-content {
        gap: 24px;
    }

    .destination-package-card {
        grid-template-rows: 210px 1fr;
        border-radius: 22px;
    }

    .destination-simple-card {
        grid-template-rows: 220px 1fr;
    }

    .destination-package-card-single {
        grid-template-rows: auto 1fr;
    }

    .destination-package-card > img {
        height: 210px;
    }

    .destination-simple-card > img {
        height: 220px;
    }

    .destination-package-card-single > img {
        height: 220px;
        min-height: 220px;
    }

    .destination-package-content {
        padding: 22px;
    }

    .destination-trip-list a {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .destination-trip-list small {
        white-space: normal;
    }
}

/* Avian-style marketplace shape pass */
.home-page {
    background: #f6f7f4;
}

.home-page .site-header {
    min-height: 82px;
    padding: 12px clamp(22px, 7vw, 170px);
    background: rgba(255, 255, 255, .98);
    color: #06140b;
    border-bottom: 1px solid rgba(6, 20, 11, .08);
    box-shadow: 0 16px 38px rgba(6, 20, 11, .10);
}

.home-page .brand {
    width: clamp(150px, 16vw, 220px);
    height: 58px;
    background: transparent;
    box-shadow: none;
}

.home-page .brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.home-page .main-nav {
    gap: clamp(22px, 3vw, 46px);
    margin-inline: auto;
}

.home-page .main-nav a {
    color: #06140b;
    font-size: 14px;
    letter-spacing: 0;
    text-transform: none;
}

.home-page .main-nav a.active,
.home-page .main-nav a:hover {
    color: var(--green);
}

.home-page .site-header .plan-btn {
    min-height: 48px;
    padding-inline: 26px;
    border-radius: 999px;
}

.home-page .snow-control span {
    color: var(--green);
}

.route-icon-strip {
    top: 82px;
    padding: 14px clamp(18px, 9vw, 180px);
    background: rgba(255, 255, 255, .98);
    border-bottom: 1px solid rgba(6, 20, 11, .1);
    box-shadow: 0 12px 24px rgba(6, 20, 11, .07);
}

.route-icon-track {
    gap: clamp(28px, 5vw, 78px);
}

.route-icon-strip a {
    min-width: 104px;
    color: #06140b;
    font-size: 14px;
    font-weight: 800;
    text-transform: none;
}

.route-icon-strip svg {
    width: 31px;
    height: 31px;
    stroke: #06140b;
}

.home-page main,
.site-google-reviews {
    background: #f6f7f4;
}

.home-page .hero-slider {
    min-height: clamp(430px, calc(100vh - 190px), 560px);
    margin: 0;
    border-radius: 0;
    border: 0;
    box-shadow: none;
}

.home-page .slide::after {
    background:
        linear-gradient(90deg, rgba(6, 20, 11, .72), rgba(6, 20, 11, .28) 45%, rgba(255, 255, 255, .32) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, .06), rgba(0, 0, 0, .18));
}

.home-page .slide-copy {
    left: clamp(28px, 14vw, 190px);
    max-width: min(540px, 72vw);
}

.home-page .slide-copy h1,
.home-page .slide-copy h2 {
    font-size: clamp(44px, 6vw, 72px);
    line-height: .98;
    letter-spacing: 0;
}

.home-page .slide-copy p:not(.eyebrow) {
    max-width: 520px;
    font-size: clamp(17px, 2vw, 22px);
}

.home-page .trip-search {
    max-width: 980px;
    margin: -46px auto 0;
    background: rgba(255, 255, 255, .96);
    color: #06140b;
    border: 1px solid rgba(6, 20, 11, .1);
    border-radius: 26px;
    box-shadow: 0 24px 60px rgba(6, 20, 11, .14);
}

.home-page .trip-search h2,
.home-page .trip-search label {
    color: #06140b;
}

.home-page .trip-search input {
    background: #f8faf7;
    color: #06140b;
    border-color: rgba(6, 20, 11, .18);
}

.home-page .section {
    width: min(1120px, calc(100% - 40px));
    margin-inline: auto;
}

.home-page .section-head {
    margin-bottom: 28px;
}

.home-page .section-head h2 {
    color: #06140b;
    font-size: clamp(28px, 3.2vw, 44px);
}

.home-page .section-head a {
    color: var(--green);
}

.destination-packages-section {
    padding-top: clamp(70px, 8vw, 110px);
    background: transparent;
}

.destination-package-simple-grid {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 8px 12px 30px;
    margin-inline: -12px;
}

.destination-package-simple-grid::-webkit-scrollbar {
    height: 8px;
}

.destination-package-simple-grid::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(19, 134, 60, .35);
}

.destination-simple-card {
    flex: 0 0 clamp(300px, 31vw, 360px);
    scroll-snap-align: start;
    min-height: 430px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(6, 20, 11, .08);
    box-shadow: 0 20px 38px rgba(6, 20, 11, .15);
}

.destination-simple-card > img {
    height: 230px;
    border-radius: 24px 24px 18px 18px;
}

.destination-simple-card .destination-package-content {
    padding: 22px 26px 26px;
}

.destination-simple-card h3 {
    font-size: 27px;
    letter-spacing: 0;
}

.destination-simple-card .destination-trip-list a {
    color: #06140b;
}

.trust-section,
.trip-game-section,
.journey-video-section,
.site-google-reviews {
    width: min(1120px, calc(100% - 40px));
    margin-inline: auto;
}

.home-page .content-card,
.home-page .stats-panel,
.google-review-card {
    background: #fff;
    color: #06140b;
    border-color: rgba(6, 20, 11, .08);
    box-shadow: 0 18px 38px rgba(6, 20, 11, .10);
}

.home-page .content-card h2,
.home-page .content-card p,
.home-page .stats-panel span,
.google-review-card p,
.google-review-card strong {
    color: #06140b;
}

@media (max-width: 980px) {
    .home-page .site-header {
        padding-inline: 18px;
    }

    .route-icon-strip {
        top: auto;
        padding-inline: 14px;
    }

    .home-page .hero-slider {
        min-height: 500px;
    }

    .home-page .trip-search {
        margin: 18px 18px 0;
    }
}

@media (max-width: 720px) {
    .home-page .site-header {
        min-height: 68px;
        grid-template-columns: minmax(120px, 1fr) 40px 44px;
        background: rgba(255, 255, 255, .98);
    }

    .home-page .brand {
        width: 142px;
        height: 44px;
    }

    .home-page .main-nav.open {
        background: rgba(255, 255, 255, .98);
        border: 1px solid rgba(6, 20, 11, .1);
    }

    .home-page .main-nav.open a {
        color: #06140b;
    }

    .route-icon-strip a {
        min-width: 88px;
        font-size: 11px;
    }

    .home-page .slide-copy {
        left: 22px;
        max-width: calc(100% - 44px);
    }

    .home-page .slide-copy h1,
    .home-page .slide-copy h2 {
        font-size: clamp(38px, 13vw, 54px);
    }

    .home-page .section,
    .trust-section,
    .trip-game-section,
    .journey-video-section,
    .site-google-reviews {
        width: min(100% - 28px, 1120px);
    }
}

/* Live-ready sharpening pass */
:root {
    text-rendering: geometricPrecision;
}

html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img,
video {
    max-width: 100%;
    background: #e7eee8;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.drive-stage:focus-visible {
    outline: 3px solid rgba(254, 198, 13, .9);
    outline-offset: 4px;
}

.page-hero {
    isolation: isolate;
    min-height: clamp(340px, 46vw, 520px);
}

.page-hero::before {
    background:
        linear-gradient(90deg, rgba(3, 20, 8, .82), rgba(3, 20, 8, .34) 54%, rgba(3, 20, 8, .62)),
        radial-gradient(circle at 18% 22%, rgba(254, 198, 13, .18), transparent 28%);
}

.page-hero h1 {
    color: #fff;
    letter-spacing: 0;
    text-shadow: 0 16px 42px rgba(0, 0, 0, .42);
}

.page-hero p {
    max-width: 680px;
}

.image-card,
.blog-card,
.feature,
.content-card,
.google-review-card,
.tour-card {
    box-shadow: 0 18px 48px rgba(3, 20, 8, .12);
}

.image-card,
.blog-card {
    background: #fff;
    color: #06140b;
}

.image-card img,
.blog-card img {
    filter: saturate(1.06) contrast(1.02);
    transition: transform .45s ease, filter .3s ease;
}

.image-card:hover img,
.blog-card:hover img,
.package-tour-gallery img:hover {
    transform: scale(1.035);
    filter: saturate(1.12) contrast(1.04);
}

.image-card h3,
.blog-card h3,
.feature h3 {
    letter-spacing: 0;
}

.destination-grid {
    align-items: stretch;
}

.destination-grid .image-card {
    min-height: 430px;
    display: flex;
    flex-direction: column;
}

.destination-grid .image-card p {
    margin-top: auto;
}

.footer-gallery img {
    filter: saturate(1.06) contrast(1.04);
}

.site-footer {
    border-top: 1px solid rgba(254, 198, 13, .18);
}

.tour-title-card h1,
.tour-card h2 {
    letter-spacing: 0;
}

.package-tour-gallery img {
    background: #dfe8e1;
}

.google-rating-pill {
    white-space: nowrap;
}

.form-status {
    margin: 12px 0 0;
    font-weight: 800;
}

.form-status[data-type="success"] {
    color: var(--green);
}

.form-status[data-type="error"] {
    color: #d92222;
}

@media (max-width: 720px) {
    .destination-grid .image-card {
        min-height: auto;
    }

    .page-hero {
        min-height: 330px;
    }

    .google-review-head {
        gap: 18px;
    }
}

/* Final section repair pass */
.home-page {
    background: #f7f8f3;
    color: #06140b;
}

.home-page .site-header {
    min-height: 76px;
    padding: 10px clamp(18px, 5vw, 120px);
    gap: clamp(14px, 2vw, 30px);
    overflow: visible;
    background: rgba(255, 255, 255, .98);
    color: #06140b;
    border-bottom: 1px solid rgba(6, 20, 11, .08);
    box-shadow: 0 14px 34px rgba(6, 20, 11, .1);
}

.home-page .brand {
    flex: 0 0 clamp(168px, 15vw, 220px);
    width: clamp(168px, 15vw, 220px);
    min-width: clamp(168px, 15vw, 220px);
    max-width: 220px;
    height: 48px;
}

.home-page .brand img,
.home-page .brand .logo-default,
.home-page .brand .logo-snow {
    width: 100% !important;
    height: 48px !important;
    max-width: 220px !important;
    max-height: 48px !important;
    object-fit: contain;
    object-position: left center;
}

.home-page .brand .logo-default {
    display: block;
}

.home-page .brand .logo-snow {
    display: none;
}

body.monsoon-on .home-page .brand .logo-default,
body.monsoon-on.home-page .brand .logo-default {
    display: none;
}

body.monsoon-on .home-page .brand .logo-snow,
body.monsoon-on.home-page .brand .logo-snow {
    display: block;
}

.home-page .main-nav {
    gap: clamp(18px, 2.4vw, 38px);
}

.home-page .main-nav a {
    color: #06140b;
    font-size: 13px;
    font-weight: 850;
}

.home-page .main-nav a.active,
.home-page .main-nav a:hover {
    color: var(--green);
}

.home-page .site-header .plan-btn {
    min-height: 46px;
    padding-inline: 24px;
    white-space: nowrap;
}

.home-page .snow-control span {
    color: var(--green);
}

.route-icon-strip {
    top: 76px;
    min-height: 66px;
    padding: 8px 0;
    overflow: hidden;
    background: rgba(255, 255, 255, .98);
    border-bottom: 1px solid rgba(6, 20, 11, .08);
    box-shadow: 0 8px 20px rgba(6, 20, 11, .06);
}

.route-icon-track {
    gap: clamp(36px, 6vw, 90px);
    animation-duration: 28s;
}

.route-icon-strip a {
    min-width: 118px;
    min-height: 48px;
    gap: 5px;
    color: #06140b;
    font-size: 13px;
}

.route-icon-strip svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

.home-page .hero-slider {
    min-height: clamp(520px, calc(100vh - 142px), 640px);
    box-shadow: none;
}

.home-page .slide {
    align-items: center;
    padding: clamp(74px, 9vw, 116px) clamp(22px, 14vw, 190px) clamp(96px, 10vw, 130px);
}

.home-page .slide::before {
    opacity: 1;
    filter: saturate(1.04) contrast(1.03);
}

.home-page .slide::after {
    background:
        linear-gradient(90deg, rgba(3, 20, 8, .78) 0%, rgba(3, 20, 8, .54) 42%, rgba(3, 20, 8, .2) 74%, rgba(3, 20, 8, .12) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, .04), rgba(0, 0, 0, .2));
}

.home-page .slide-copy {
    left: auto;
    max-width: 560px;
}

.home-page .slide-copy h1,
.home-page .slide-copy h2 {
    color: #fff;
    font-size: clamp(42px, 5.8vw, 72px);
    line-height: 1;
    text-shadow: 0 14px 34px rgba(0, 0, 0, .42);
}

.home-page .slide-copy p:not(.eyebrow) {
    color: rgba(255, 255, 255, .95);
    text-shadow: 0 8px 22px rgba(0, 0, 0, .34);
}

.home-page .trip-search {
    position: relative;
    z-index: 8;
    max-width: 1040px;
    margin: 26px auto 0;
    grid-template-columns: minmax(150px, .72fr) repeat(3, minmax(170px, 1fr)) minmax(170px, auto);
    background: rgba(255, 255, 255, .98);
    color: #06140b;
    border: 1px solid rgba(6, 20, 11, .1);
    border-radius: 24px;
    box-shadow: 0 22px 54px rgba(6, 20, 11, .12);
}

.home-page .trip-search h2,
.home-page .trip-search label {
    color: #06140b;
}

.home-page .trip-search input {
    background: #fff;
    color: #06140b;
    border-color: rgba(6, 20, 11, .2);
}

.home-page .trip-search input::placeholder {
    color: rgba(6, 20, 11, .46);
}

.destination-packages-section {
    padding-top: clamp(70px, 7vw, 96px);
}

/* Destination menu and grouped destination package pages */
.home-destination-carousel {
    display: flex;
    gap: clamp(18px, 2.2vw, 28px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 10px 12px 34px;
    margin-inline: -12px;
}

.home-destination-carousel::-webkit-scrollbar,
.destination-tour-scroll::-webkit-scrollbar {
    height: 8px;
}

.home-destination-carousel::-webkit-scrollbar-thumb,
.destination-tour-scroll::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(19, 134, 60, .36);
}

.home-destination-card {
    position: relative;
    flex: 0 0 clamp(250px, 24vw, 330px);
    height: clamp(330px, 36vw, 420px);
    scroll-snap-align: start;
    overflow: hidden;
    border-radius: 26px;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 22px 42px rgba(6, 20, 11, .18);
    isolation: isolate;
}

.home-destination-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .08) 46%, rgba(0, 0, 0, .42)),
        radial-gradient(circle at 50% 12%, rgba(254, 198, 13, .18), transparent 34%);
}

.home-destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease, filter .35s ease;
}

.home-destination-card span {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 24px;
    z-index: 2;
    color: #fff;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 900;
    line-height: .95;
    text-shadow: 0 4px 18px rgba(0, 0, 0, .45);
}

.home-destination-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(6, 20, 11, .26);
}

.home-destination-card:hover img {
    transform: scale(1.055);
    filter: saturate(1.12) contrast(1.04);
}

.destination-detail-hero {
    min-height: clamp(340px, 42vw, 520px);
}

.destination-detail-section {
    background: var(--paper);
}

.destination-tour-scroll {
    display: flex;
    gap: clamp(18px, 2.2vw, 28px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 8px 12px 34px;
    margin-inline: -12px;
}

.destination-tour-card {
    flex: 0 0 clamp(280px, 28vw, 360px);
    scroll-snap-align: start;
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
    color: #06140b;
    border: 1px solid rgba(6, 20, 11, .08);
    box-shadow: 0 20px 38px rgba(6, 20, 11, .14);
}

.destination-tour-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform .5s ease, filter .35s ease;
}

.destination-tour-card div {
    display: grid;
    gap: 11px;
    padding: 22px 24px 24px;
}

.destination-tour-card small {
    color: rgba(6, 20, 11, .62);
    font-size: 13px;
    font-weight: 800;
}

.destination-tour-card h3 {
    margin: 0;
    font-size: 23px;
    line-height: 1.18;
}

.destination-tour-card p {
    margin: 0;
    color: rgba(6, 20, 11, .82);
    line-height: 1.48;
}

.destination-tour-card strong {
    color: #f21f2b;
    font-size: 24px;
    line-height: 1;
}

.destination-tour-card strong span {
    color: rgba(6, 20, 11, .62);
    font-size: 13px;
}

.destination-tour-card .primary-btn {
    width: 100%;
    min-height: 48px;
    margin-top: 6px;
}

.destination-tour-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(6, 20, 11, .24);
}

.destination-tour-card:hover img {
    transform: scale(1.045);
    filter: saturate(1.08) contrast(1.04);
}

body.monsoon-on .destination-detail-section {
    background: rgba(23, 30, 33, .94);
}

body.monsoon-on .destination-tour-card {
    background: rgba(238, 244, 244, .94);
}

@media (max-width: 720px) {
    .home-destination-card {
        flex-basis: min(76vw, 320px);
        height: 360px;
    }

    .destination-tour-card {
        flex-basis: min(84vw, 330px);
    }
}

/* Header logo consistency across every page and mode */
body:not(.home-page) .brand .logo-default {
    display: none !important;
}

body:not(.home-page) .brand .logo-snow {
    display: block !important;
}

body.home-page:not(.monsoon-on):not(.snow-on) .brand .logo-default {
    display: block !important;
}

body.home-page:not(.monsoon-on):not(.snow-on) .brand .logo-snow {
    display: none !important;
}

body.monsoon-on .brand .logo-default,
body.snow-on .brand .logo-default {
    display: none !important;
}

body.monsoon-on .brand .logo-snow,
body.snow-on .brand .logo-snow {
    display: block !important;
}

.site-header .brand,
.site-header .brand img,
.site-header .brand .logo-default,
.site-header .brand .logo-snow {
    background: transparent !important;
    box-shadow: none !important;
}

/* Homepage package carousel */
.home-package-carousel {
    display: flex;
    gap: clamp(18px, 2.2vw, 28px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 12px 12px 36px;
    margin-inline: -12px;
}

.home-package-carousel::-webkit-scrollbar {
    height: 8px;
}

.home-package-carousel::-webkit-scrollbar-track {
    background: rgba(19, 134, 60, .12);
    border-radius: 999px;
}

.home-package-carousel::-webkit-scrollbar-thumb {
    background: var(--yellow);
    border-radius: 999px;
}

.home-package-card {
    flex: 0 0 clamp(280px, 27vw, 360px);
    scroll-snap-align: start;
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
    color: #06140b;
    border: 1px solid rgba(6, 20, 11, .08);
    box-shadow: 0 20px 42px rgba(6, 20, 11, .14);
}

.home-package-card > a:first-child {
    display: block;
    overflow: hidden;
    border-radius: 24px 24px 18px 18px;
}

.home-package-card img {
    display: block;
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform .55s ease, filter .35s ease;
}

.home-package-card div {
    display: grid;
    gap: 10px;
    padding: 20px 24px 24px;
}

.home-package-card span {
    width: fit-content;
    padding: 6px 11px;
    border-radius: 999px;
    background: rgba(19, 134, 60, .1);
    color: var(--green);
    border: 1px solid rgba(19, 134, 60, .3);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.home-package-card-trending span {
    background: var(--yellow);
    border-color: var(--yellow);
    color: #06140b;
}

.home-package-card small {
    color: rgba(6, 20, 11, .62);
    font-size: 13px;
    font-weight: 800;
}

.home-package-card h3 {
    margin: 0;
    color: #06140b;
    font-size: 23px;
    line-height: 1.16;
}

.home-package-card p {
    margin: 0;
    min-height: 48px;
    color: rgba(6, 20, 11, .82);
    line-height: 1.45;
}

.home-package-card strong {
    color: #f21f2b;
    font-size: 25px;
    line-height: 1;
}

.home-package-card strong small {
    color: rgba(6, 20, 11, .62);
    font-size: 13px;
}

.home-package-card .primary-btn {
    width: 100%;
    min-height: 48px;
    margin-top: 6px;
    color: #06140b;
}

.home-package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 72px rgba(6, 20, 11, .24);
}

.home-package-card:hover img {
    transform: scale(1.045);
    filter: saturate(1.08) contrast(1.04);
}

body.monsoon-on .home-package-card {
    background: rgba(238, 244, 244, .95);
}

@media (max-width: 720px) {
    .home-package-card {
        flex-basis: min(84vw, 330px);
    }

    .home-package-card img {
        height: 215px;
    }
}

.trust-section {
    display: grid;
    grid-template-columns: minmax(0, .98fr) minmax(0, 1.02fr);
    gap: clamp(26px, 5vw, 56px);
    align-items: center;
}

.home-page .content-card {
    padding: clamp(30px, 4vw, 54px);
    border-radius: 22px;
}

.home-page .content-card h2 {
    font-size: clamp(28px, 3.2vw, 46px);
    line-height: 1.08;
}

.home-page .stats-panel {
    width: 100%;
    max-width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    padding: 18px;
    overflow: hidden;
    border-radius: 22px;
}

.home-page .stats-panel div {
    min-width: 0;
    min-height: 120px;
    padding: 18px 10px;
}

.home-page .stats-panel strong {
    font-size: clamp(28px, 3vw, 40px);
    white-space: nowrap;
}

.home-page .stats-panel span {
    color: #06140b;
    font-size: 11px;
    line-height: 1.25;
}

.snow-banner {
    width: min(1120px, calc(100% - 40px));
    min-height: 230px;
    margin: 28px auto 0;
    border-radius: 22px;
}

.trip-game-section,
.journey-films-section {
    width: min(1120px, calc(100% - 40px));
    margin-inline: auto;
    border-radius: 0;
}

.trip-game-section {
    background: linear-gradient(180deg, #06371a, #03180d);
}

.trip-game-section .section-head h2,
.trip-game-section .section-head a,
.journey-films-section .section-head h2,
.journey-films-section .section-head a {
    color: #fff;
}

.mountain-game {
    background: rgba(2, 18, 10, .84);
    border-color: rgba(254, 198, 13, .2);
}

.mountain-game h3,
.mountain-game p {
    color: #fff;
}

.journey-films-section {
    background: linear-gradient(180deg, #052a14, #03190d);
    padding-block: clamp(52px, 7vw, 88px);
}

.journey-video-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.journey-video-card {
    min-height: 390px;
    border-radius: 24px;
}

.journey-video-card video {
    min-height: 390px;
    height: 390px;
    object-fit: cover;
}

.journey-video-card::after,
.journey-video-card div {
    display: none !important;
}

.site-google-reviews {
    background: #f7f8f3;
}

.site-footer {
    margin-top: 0;
    color: var(--yellow);
    background:
        radial-gradient(circle at 50% 45%, rgba(255,255,255,.07), transparent 34%),
        linear-gradient(180deg, #062512, #020d07);
}

.footer-art {
    width: min(44vw, 520px);
    max-width: 46%;
    opacity: .075;
}

.footer-content {
    grid-template-columns: minmax(230px, .95fr) repeat(3, minmax(0, 1fr));
    gap: clamp(24px, 4vw, 46px);
    background: transparent;
}

.footer-logo {
    width: min(240px, 100%);
    height: 86px;
}

.footer-logo-snow {
    height: 120px;
}

.site-footer p,
.site-footer a {
    color: var(--yellow);
}

.copyright {
    color: var(--yellow);
}

body.monsoon-on {
    background: #d9dedf;
}

body.monsoon-on .monsoon-layer {
    opacity: .34;
}

body.monsoon-on .storm-clouds {
    top: 82px;
    height: 150px;
    opacity: calc(.46 - (var(--storm-scroll) * .24));
    transform: translate3d(0, calc(var(--storm-scroll) * -48px), 0) scale(calc(.78 - (var(--storm-scroll) * .22)));
}

body.monsoon-on .storm-cloud {
    width: clamp(150px, 18vw, 320px);
    height: clamp(70px, 8vw, 130px);
}

body.monsoon-on .storm-cloud.cloud-a,
body.monsoon-on .storm-cloud.cloud-c,
body.monsoon-on .storm-cloud.cloud-e {
    left: -2%;
}

body.monsoon-on .storm-cloud.cloud-b,
body.monsoon-on .storm-cloud.cloud-d,
body.monsoon-on .storm-cloud.cloud-f {
    right: -2%;
}

body.monsoon-on .rain-canvas {
    opacity: .28;
}

body.monsoon-on .site-header {
    background: linear-gradient(180deg, rgba(7, 15, 16, .96), rgba(3, 10, 9, .94));
}

body.monsoon-on .main-nav a,
body.monsoon-on .snow-control span {
    color: #f8fbf8;
}

body.monsoon-on .route-icon-strip {
    background: rgba(235, 241, 242, .94);
}

body.monsoon-on .hero-slider::after {
    display: none;
}

body.monsoon-on .home-page .slide::after,
body.monsoon-on.home-page .slide::after {
    background:
        linear-gradient(90deg, rgba(3, 20, 8, .75), rgba(3, 20, 8, .42) 52%, rgba(3, 20, 8, .16)),
        linear-gradient(180deg, rgba(20, 28, 30, .12), rgba(0, 0, 0, .18));
}

/* Dark monsoon mode: visible rain, subtle clouds, premium storm mood */
body.monsoon-on {
    background:
        radial-gradient(circle at 18% 0%, rgba(74, 92, 98, .28), transparent 34%),
        radial-gradient(circle at 88% 12%, rgba(18, 44, 43, .34), transparent 32%),
        linear-gradient(180deg, #1f292d 0%, #12191b 42%, #06110d 100%) !important;
    color: #eef7f2;
}

body.monsoon-on .monsoon-layer {
    display: block;
    opacity: 1 !important;
}

body.monsoon-on .rain-canvas {
    opacity: .68 !important;
    filter:
        drop-shadow(0 0 8px rgba(205, 238, 255, .34))
        drop-shadow(0 0 18px rgba(117, 186, 202, .18));
}

body.monsoon-on .storm-clouds {
    top: clamp(76px, 7vw, 112px) !important;
    height: clamp(150px, 16vw, 230px) !important;
    opacity: calc(.72 - (var(--storm-scroll, 0) * .34)) !important;
    mix-blend-mode: normal;
}

body.monsoon-on .storm-cloud {
    width: clamp(190px, 24vw, 420px) !important;
    height: clamp(86px, 11vw, 170px) !important;
    filter: saturate(.82) contrast(1.12) brightness(.9) drop-shadow(0 24px 42px rgba(0, 0, 0, .44));
}

body.monsoon-on .storm-cloud.cloud-back {
    opacity: .34 !important;
}

body.monsoon-on .storm-cloud.cloud-mid {
    opacity: .48 !important;
}

body.monsoon-on .storm-cloud.cloud-front {
    opacity: .58 !important;
}

body.monsoon-on .storm-haze,
body.monsoon-on .monsoon-layer::after {
    opacity: .18 !important;
    background:
        radial-gradient(circle at 50% 0%, rgba(205, 238, 255, .16), transparent 40%),
        linear-gradient(180deg, rgba(7, 14, 16, .18), transparent 54%, rgba(4, 12, 9, .18));
}

body.monsoon-on .snow-surface,
body.monsoon-on .site-header {
    background:
        linear-gradient(180deg, rgba(12, 22, 24, .97), rgba(4, 13, 10, .95)),
        radial-gradient(circle at 18% 0%, rgba(205, 238, 255, .1), transparent 42%) !important;
    color: #f4fff8;
}

body.monsoon-on .route-icon-strip {
    background: rgba(215, 226, 228, .88) !important;
    color: #07100c;
}

body.monsoon-on .home-page .slide::after,
body.monsoon-on.home-page .slide::after,
body.monsoon-on .slide::after {
    background:
        linear-gradient(90deg, rgba(4, 13, 10, .7), rgba(17, 28, 31, .42) 50%, rgba(4, 13, 10, .22)),
        linear-gradient(180deg, rgba(4, 10, 12, .1), rgba(0, 0, 0, .2)) !important;
}

body.monsoon-on .image-card,
body.monsoon-on .package-card,
body.monsoon-on .blog-card,
body.monsoon-on .journey-video-card,
body.monsoon-on .feature,
body.monsoon-on .content-card,
body.monsoon-on .stats-panel,
body.monsoon-on .modal-panel,
body.monsoon-on .trip-search,
body.monsoon-on .experience-strip,
body.monsoon-on .snow-banner,
body.monsoon-on .tour-card {
    background: linear-gradient(180deg, rgba(236, 244, 246, .13), rgba(8, 22, 20, .58)), rgba(5, 24, 18, .72) !important;
    border-color: rgba(205, 238, 255, .24) !important;
    color: #f5fff9;
}

@media (max-width: 1100px) {
    .home-page .site-header {
        flex-wrap: wrap;
    }

    .home-page .main-nav {
        order: 5;
        width: 100%;
        flex-basis: 100%;
        justify-content: center;
    }

    .route-icon-strip {
        position: relative;
        top: auto;
    }

    .home-page .trip-search,
    .trust-section {
        grid-template-columns: 1fr 1fr;
        width: min(100% - 32px, 1040px);
    }

    .home-page .trip-search > div,
    .home-page .trip-search button {
        grid-column: 1 / -1;
    }

    .journey-video-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .home-page .site-header {
        display: grid;
        grid-template-columns: minmax(146px, 1fr) 42px 46px;
        min-height: 64px;
        padding: 8px 12px;
    }

    .home-page .brand,
    .home-page .brand img,
    .home-page .brand .logo-default,
    .home-page .brand .logo-snow {
        width: 150px !important;
        min-width: 150px;
        max-width: 150px !important;
        height: 42px !important;
    }

    .home-page .plan-btn {
        display: none;
    }

    .home-page .main-nav.open {
        grid-column: 1 / -1;
        width: 100%;
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 20px 44px rgba(6,20,11,.12);
    }

    .home-page .main-nav.open a {
        color: #06140b;
    }

    .home-page .hero-slider {
        min-height: 520px;
    }

    .home-page .slide {
        padding: 54px 18px 90px;
    }

    .home-page .slide-copy h1,
    .home-page .slide-copy h2 {
        font-size: clamp(34px, 11vw, 48px);
    }

    .home-page .trip-search,
    .trust-section,
    .home-page .stats-panel,
    .footer-content,
    .footer-gallery,
    .journey-video-grid {
        grid-template-columns: 1fr;
    }

    .home-page .trip-search {
        margin-top: 18px;
    }

    .journey-video-card,
    .journey-video-card video {
        min-height: 360px;
        height: 360px;
    }

    .footer-art {
        width: 86vw;
        max-width: 86vw;
    }
}

/* Live polish: destination cards and footer logo cleanup */
.home-package-card p {
    min-height: 24px !important;
    max-width: 100%;
    font-size: 15px;
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.site-footer .footer-logo,
.site-footer .footer-logo-default,
.site-footer .footer-logo-snow {
    display: block;
    width: min(220px, 100%) !important;
    height: auto !important;
    max-height: 82px;
    object-fit: contain;
    object-position: left center;
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
    padding: 0 !important;
}

.site-footer .footer-logo-snow {
    max-height: 120px;
}

.destination-pick-section {
    background: #f7faf6;
}

.destination-pick-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(22px, 3vw, 34px);
}

.destination-pick-card {
    position: relative;
    display: block;
    min-height: clamp(300px, 34vw, 430px);
    overflow: hidden;
    border-radius: 30px;
    color: #fff;
    background: #07190f;
    box-shadow: 0 28px 70px rgba(6, 20, 11, .18);
}

.destination-pick-card img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform .55s ease, filter .55s ease;
}

.destination-pick-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, .68) 100%);
    pointer-events: none;
}

.destination-pick-card span {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 24px;
    z-index: 1;
    color: #fff;
    font-size: clamp(26px, 3vw, 42px);
    font-weight: 1000;
    line-height: 1;
    letter-spacing: 0;
}

.destination-pick-card:hover img {
    transform: scale(1.07);
    filter: saturate(1.12) contrast(1.04);
}

@media (max-width: 880px) {
    .destination-pick-grid {
        grid-template-columns: 1fr;
    }

    .destination-pick-card {
        min-height: 280px;
        border-radius: 24px;
    }
}
/* Footer rebuild: consistent in default and rain modes. */
.home-package-carousel.is-auto-scrolling {
    scroll-snap-type: none;
    scroll-behavior: auto;
}

.home-package-carousel.is-paused .home-package-card:not(:hover) {
    opacity: .88;
}

.site-footer {
    margin-top: 0 !important;
    overflow: hidden;
    color: #fec60d;
    background:
        radial-gradient(circle at 18% 20%, rgba(254, 198, 13, .12), transparent 30%),
        radial-gradient(circle at 82% 8%, rgba(19, 134, 60, .2), transparent 28%),
        linear-gradient(180deg, #063819 0%, #02160c 100%) !important;
    border-top: 1px solid rgba(254, 198, 13, .18);
}

.footer-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(12px, 1.6vw, 20px);
    padding: clamp(28px, 4vw, 50px) clamp(18px, 5vw, 68px) 0;
}

.footer-gallery img {
    width: 100%;
    height: clamp(120px, 14vw, 180px);
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid rgba(254, 198, 13, .2);
    filter: saturate(1.06) contrast(1.05);
}

.footer-content {
    display: grid;
    grid-template-columns: minmax(220px, .9fr) minmax(160px, .7fr) minmax(250px, 1fr) minmax(240px, .9fr);
    gap: clamp(26px, 4vw, 52px);
    padding: clamp(38px, 5vw, 64px) clamp(18px, 5vw, 68px);
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
}

.footer-content > div {
    min-width: 0;
    background: transparent !important;
}

.footer-brand-block {
    display: grid;
    align-content: start;
    gap: 18px;
}

.site-footer .footer-logo,
.site-footer .footer-logo-default,
.site-footer .footer-logo-snow {
    width: min(230px, 100%) !important;
    height: auto !important;
    max-height: 76px;
    object-fit: contain;
    object-position: left center;
    background: transparent !important;
    filter: drop-shadow(0 14px 28px rgba(0, 0, 0, .26));
    box-shadow: none !important;
    border: 0 !important;
    padding: 0 !important;
}

.site-footer h3 {
    color: #fec60d !important;
    margin-bottom: 16px;
}

.site-footer p,
.site-footer a {
    color: rgba(254, 198, 13, .92) !important;
}

.site-footer a:hover {
    color: #fff !important;
}

.site-footer .primary-btn {
    width: fit-content;
    color: #06140b !important;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-socials a {
    display: inline-flex !important;
    margin: 0 !important;
    color: #fec60d !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    font-weight: 1000;
}

.copyright {
    margin: 0;
    padding: 18px clamp(18px, 5vw, 68px);
    color: rgba(254, 198, 13, .76) !important;
    border-top: 1px solid rgba(254, 198, 13, .16);
    background: rgba(0, 0, 0, .12);
}

body.snow-on .site-footer {
    background:
        radial-gradient(circle at 16% 12%, rgba(255, 255, 255, .08), transparent 28%),
        radial-gradient(circle at 78% 14%, rgba(143, 224, 171, .14), transparent 30%),
        linear-gradient(180deg, #1d292b 0%, #0b1517 58%, #06100d 100%) !important;
    border-top-color: rgba(143, 224, 171, .24);
}

body.snow-on .site-footer p,
body.snow-on .site-footer a,
body.snow-on .copyright {
    color: rgba(143, 224, 171, .9) !important;
}

body.snow-on .site-footer h3,
body.snow-on .footer-socials a {
    color: #fec60d !important;
}

@media (max-width: 980px) {
    .footer-content,
    .footer-gallery {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 620px) {
    .footer-content,
    .footer-gallery {
        grid-template-columns: 1fr;
    }

    .site-footer .footer-logo {
        width: min(210px, 78vw) !important;
    }
}
/* Packages page catalogue polish */
body.packages-page {
    background: #f7faf6;
    color: #06140b;
}

body.packages-page .page-hero {
    min-height: clamp(320px, 42vw, 510px);
    margin-bottom: 0;
}

body.packages-page main > .section.spacious {
    background: linear-gradient(180deg, #f7faf6 0%, #ffffff 48%, #f3f8f1 100%);
    padding-top: clamp(54px, 7vw, 92px);
    padding-bottom: clamp(70px, 9vw, 118px);
}

body.packages-page .section-head {
    max-width: 1180px;
    margin-inline: auto;
    padding-inline: 0;
}

body.packages-page .package-grid.package-long-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 310px), 1fr)) !important;
    gap: clamp(24px, 3vw, 36px) !important;
    overflow: visible !important;
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: 0;
    scroll-snap-type: none !important;
}

body.packages-page .package-long-card,
body.packages-page .package-card.package-long-card {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    min-height: 0 !important;
    flex: none !important;
    display: grid;
    grid-template-rows: 252px 1fr;
    overflow: hidden;
    border-radius: 28px;
    background: #ffffff;
    color: #06140b;
    border: 1px solid rgba(19, 134, 60, .14);
    box-shadow: 0 24px 70px rgba(6, 20, 11, .12);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

body.packages-page .package-long-card img,
body.packages-page .package-long-card img[src^="assets/manali-"],
body.packages-page .package-long-card img[src^="assets/spiti-"] {
    width: 100%;
    height: 252px !important;
    object-fit: cover;
    object-position: center;
    border-radius: 28px 28px 0 0;
    transition: transform .45s ease, filter .45s ease;
}

body.packages-page .package-long-card > div {
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 24px;
}

body.packages-page .package-long-card span {
    width: fit-content;
    border: 1px solid rgba(19, 134, 60, .28);
    background: rgba(19, 134, 60, .09);
    color: #13863c;
}

body.packages-page .package-long-card small {
    color: rgba(6, 20, 11, .58);
    font-weight: 900;
}

body.packages-page .package-long-card h3 {
    color: #06140b;
    font-size: clamp(22px, 2vw, 29px);
    line-height: 1.08;
}

body.packages-page .package-long-card p {
    color: rgba(6, 20, 11, .74);
    line-height: 1.5;
    min-height: 0;
}

body.packages-page .package-long-card strong {
    color: #f21f2b;
    font-size: clamp(25px, 2.4vw, 32px);
}

body.packages-page .package-long-card > div > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    margin-top: 8px;
    border-radius: 999px;
    background: #fec60d;
    color: #06140b;
    font-weight: 1000;
    text-transform: uppercase;
    letter-spacing: .03em;
    box-shadow: 0 16px 34px rgba(254, 198, 13, .26);
    transition: transform .24s ease, box-shadow .24s ease, background .24s ease;
}

body.packages-page .package-long-card:hover {
    transform: translateY(-7px);
    border-color: rgba(19, 134, 60, .32);
    box-shadow: 0 34px 82px rgba(6, 20, 11, .18);
}

body.packages-page .package-long-card:hover img {
    transform: scale(1.045);
    filter: saturate(1.08) contrast(1.04);
}

body.packages-page .package-long-card > div > a:hover {
    transform: translateY(-2px);
    background: #ffd338;
    box-shadow: 0 22px 42px rgba(254, 198, 13, .34);
}

body.rain-on.packages-page,
body.snow-on.packages-page {
    background: #172322;
}

body.rain-on.packages-page main > .section.spacious,
body.snow-on.packages-page main > .section.spacious {
    background: linear-gradient(180deg, #1b2b2b 0%, #12211c 100%);
}

body.rain-on.packages-page .section-head h2,
body.snow-on.packages-page .section-head h2 {
    color: #f7fbf8;
}

body.rain-on.packages-page .package-long-card,
body.snow-on.packages-page .package-long-card {
    background: rgba(245, 249, 246, .96);
}

@media (max-width: 760px) {
    body.packages-page .package-grid.package-long-grid {
        width: min(100% - 24px, 520px);
        grid-template-columns: 1fr !important;
    }

    body.packages-page .package-long-card {
        grid-template-rows: 220px 1fr;
        border-radius: 22px;
    }

    body.packages-page .package-long-card img,
    body.packages-page .package-long-card img[src^="assets/manali-"],
    body.packages-page .package-long-card img[src^="assets/spiti-"] {
        height: 220px !important;
        border-radius: 22px 22px 0 0;
    }

    body.packages-page .package-long-card > div {
        padding: 20px;
    }
}
/* Performance and smoothness pass */
.section,
.page-hero,
.package-detail-hero,
.destination-showcase,
.video-section,
.travel-game-section,
footer {
    content-visibility: auto;
    contain-intrinsic-size: 1px 760px;
}

.site-header,
.destination-strip,
.home-package-carousel,
.package-grid,
.gallery-grid,
.footer-gallery {
    contain: layout paint;
}

.monsoon-layer {
    contain: strict;
    will-change: opacity;
}

.rain-canvas {
    filter: none !important;
    transform: translateZ(0);
}

.storm-clouds {
    will-change: transform, opacity;
}

.storm-cloud {
    filter: saturate(.9) contrast(1.08) drop-shadow(0 18px 22px rgba(0, 0, 0, .28));
    box-shadow: inset 14px 12px 20px rgba(255, 255, 255, .32), inset -16px -14px 22px rgba(82, 112, 136, .24);
}

.home-package-carousel.is-auto-scrolling,
.package-ticker-track {
    transform: translateZ(0);
    backface-visibility: hidden;
}

img,
video {
    content-visibility: auto;
}

/* Unified premium footer: same layout and colors on every page. */
.site-footer.unified-footer {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    margin-top: 0 !important;
    padding: clamp(24px, 3.2vw, 44px) clamp(18px, 5vw, 68px) 0 !important;
    color: #fec60d !important;
    background:
        radial-gradient(circle at 50% 44%, rgba(19, 134, 60, .22), transparent 42%),
        linear-gradient(180deg, #052613 0%, #021107 100%) !important;
    border-top: 1px solid rgba(254, 198, 13, .14);
}

.site-footer.unified-footer .footer-art {
    position: absolute;
    z-index: -1;
    top: 51%;
    left: 50%;
    width: min(780px, 62vw) !important;
    height: auto !important;
    max-width: none !important;
    opacity: .16 !important;
    object-fit: contain;
    transform: translate(-50%, -50%);
    pointer-events: none;
    filter: none !important;
}

.site-footer.unified-footer .footer-gallery {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(14px, 2vw, 22px);
    width: min(1220px, 100%);
    margin: 0 auto clamp(34px, 5vw, 58px);
    padding: 0 !important;
    background: transparent !important;
}

.site-footer.unified-footer .footer-gallery img {
    display: block;
    width: 100%;
    height: clamp(118px, 12vw, 162px);
    object-fit: cover;
    border: 0 !important;
    border-radius: 16px;
    background: #0f2819;
    box-shadow: none !important;
    filter: saturate(1.04) contrast(1.03);
}

.site-footer.unified-footer .footer-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(240px, 1fr) minmax(150px, .62fr) minmax(240px, .92fr) minmax(235px, .9fr);
    gap: clamp(28px, 5vw, 78px);
    width: min(1220px, 100%);
    margin: 0 auto;
    padding: 0 0 clamp(52px, 7vw, 84px) !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.site-footer.unified-footer .footer-content > div {
    min-width: 0;
    background: transparent !important;
}

.site-footer.unified-footer .footer-brand-block {
    display: block;
}

.site-footer.unified-footer .footer-logo,
.site-footer.unified-footer .footer-logo-default,
.site-footer.unified-footer .footer-logo-snow {
    display: block !important;
    width: min(230px, 86%) !important;
    height: auto !important;
    max-height: 118px !important;
    margin: 0 0 20px !important;
    padding: 0 !important;
    object-fit: contain !important;
    object-position: left center !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    filter: none !important;
}

.site-footer.unified-footer .footer-logo-snow {
    display: none !important;
}

.site-footer.unified-footer h3 {
    margin: 0 0 18px !important;
    color: #fec60d !important;
    font-size: 13px !important;
    font-weight: 1000;
    letter-spacing: .18em;
    line-height: 1.2;
    text-transform: uppercase;
}

.site-footer.unified-footer p,
.site-footer.unified-footer a {
    color: #fec60d !important;
    font-size: clamp(16px, 1.45vw, 20px);
    font-weight: 700;
    line-height: 1.55;
}

.site-footer.unified-footer p {
    max-width: 360px;
    margin: 0 0 14px;
}

.site-footer.unified-footer a {
    text-decoration: none;
    transition: color .2s ease, opacity .2s ease, transform .2s ease;
}

.site-footer.unified-footer a:hover {
    color: #ffffff !important;
    opacity: 1;
}

.site-footer.unified-footer .footer-links a {
    display: block;
    width: max-content;
    max-width: 100%;
    margin: 0 0 8px;
    font-weight: 1000;
}

.site-footer.unified-footer .footer-socials {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-top: 26px;
}

.site-footer.unified-footer .footer-socials a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    color: #fec60d !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.site-footer.unified-footer .footer-socials svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.25;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.site-footer.unified-footer .primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content !important;
    max-width: 100%;
    min-height: 48px;
    margin-top: 18px;
    padding: 0 30px !important;
    color: #06140b !important;
    background: #fec60d !important;
    border: 0 !important;
    border-radius: 999px;
    box-shadow: 0 18px 36px rgba(254, 198, 13, .22);
    white-space: nowrap;
}

.site-footer.unified-footer .primary-btn:hover {
    color: #06140b !important;
    transform: translateY(-2px);
}

.site-footer.unified-footer .copyright {
    position: relative;
    z-index: 1;
    width: calc(100% + (clamp(18px, 5vw, 68px) * 2));
    max-width: none;
    margin: 0 calc(clamp(18px, 5vw, 68px) * -1) !important;
    padding: 20px clamp(18px, 5vw, 68px) !important;
    color: #fec60d !important;
    background: rgba(0, 0, 0, .14);
    border-top: 1px solid rgba(254, 198, 13, .22);
}

body.monsoon-on .site-footer.unified-footer,
body.snow-on .site-footer.unified-footer {
    color: #fec60d !important;
    background:
        radial-gradient(circle at 50% 42%, rgba(19, 134, 60, .18), transparent 43%),
        linear-gradient(180deg, #061d15 0%, #020d0b 100%) !important;
}

body.monsoon-on .site-footer.unified-footer p,
body.monsoon-on .site-footer.unified-footer a,
body.monsoon-on .site-footer.unified-footer h3,
body.monsoon-on .site-footer.unified-footer .copyright,
body.snow-on .site-footer.unified-footer p,
body.snow-on .site-footer.unified-footer a,
body.snow-on .site-footer.unified-footer h3,
body.snow-on .site-footer.unified-footer .copyright {
    color: #fec60d !important;
}

@media (max-width: 980px) {
    .site-footer.unified-footer .footer-gallery,
    .site-footer.unified-footer .footer-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .site-footer.unified-footer {
        padding-top: 22px !important;
    }

    .site-footer.unified-footer .footer-gallery,
    .site-footer.unified-footer .footer-content {
        grid-template-columns: 1fr;
    }

    .site-footer.unified-footer .footer-gallery img {
        height: 148px;
    }

    .site-footer.unified-footer .footer-art {
        top: 58%;
        width: 92vw !important;
        opacity: .12 !important;
    }

    .site-footer.unified-footer .footer-logo {
        width: min(220px, 82vw) !important;
    }

    .site-footer.unified-footer .primary-btn {
        width: 100% !important;
    }
}

@media (max-width: 760px) {
    .storm-clouds {
        height: 132px;
        opacity: calc(.7 - (var(--storm-scroll) * .28));
    }

    .storm-cloud {
        width: clamp(170px, 46vw, 260px);
        height: clamp(78px, 18vw, 118px);
        filter: drop-shadow(0 12px 16px rgba(0, 0, 0, .22));
    }

    .rain-canvas {
        opacity: .55;
    }

    .home-package-card:hover,
    body.packages-page .package-long-card:hover,
    .destination-card:hover,
    .blog-card:hover {
        transform: none !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .001ms !important;
    }

    .monsoon-layer,
    .rain-canvas,
    .storm-clouds {
        display: none !important;
    }
}
/* Packages page render fix */
body.packages-page main,
body.packages-page .section.spacious,
body.packages-page .package-grid.package-long-grid,
body.packages-page .package-long-card,
body.packages-page .package-long-card img,
body.packages-page .package-long-card > div {
    content-visibility: visible !important;
    contain: none !important;
    contain-intrinsic-size: auto !important;
}

body.packages-page .package-grid.package-long-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    align-items: stretch;
    background: transparent !important;
    isolation: auto;
}

body.packages-page .package-long-card {
    display: flex !important;
    flex-direction: column;
    height: 100%;
    opacity: 1 !important;
    visibility: visible !important;
    background: #fff !important;
}

body.packages-page .package-long-card img {
    display: block !important;
    flex: 0 0 auto;
    width: 100% !important;
    height: 252px !important;
    min-height: 252px !important;
    max-height: 252px !important;
    opacity: 1 !important;
    visibility: visible !important;
    background: #e9efe8;
}

body.packages-page .package-long-card > div {
    display: grid !important;
    flex: 1 1 auto;
    min-height: 0 !important;
    background: #fff !important;
    opacity: 1 !important;
    visibility: visible !important;
}

@media (max-width: 1080px) {
    body.packages-page .package-grid.package-long-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 720px) {
    body.packages-page .package-grid.package-long-grid {
        grid-template-columns: 1fr !important;
    }
}
/* Homepage trust strip: one horizontal block */
.home-page .trust-section {
    width: min(1120px, calc(100% - 40px)) !important;
    margin: clamp(54px, 7vw, 92px) auto clamp(24px, 4vw, 42px) !important;
    display: grid !important;
    grid-template-columns: minmax(260px, .82fr) minmax(520px, 1.18fr) !important;
    gap: clamp(24px, 3.5vw, 48px) !important;
    align-items: center !important;
    padding: clamp(28px, 4vw, 48px) !important;
    border-radius: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fbf6 54%, rgba(19, 134, 60, .08) 100%);
    border: 1px solid rgba(19, 134, 60, .12);
    box-shadow: 0 32px 90px rgba(6, 20, 11, .12);
}

.home-page .trust-section .content-card,
.home-page .trust-section .stats-panel {
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.home-page .trust-section .content-card h2 {
    max-width: 470px;
    margin-bottom: 14px;
    font-size: clamp(25px, 3vw, 42px) !important;
}

.home-page .trust-section .content-card p:not(.eyebrow) {
    max-width: 520px;
    font-size: 15.5px;
    line-height: 1.55;
}

.home-page .trust-section .content-card .primary-btn {
    margin-top: 20px;
}

.home-page .trust-section .stats-panel {
    display: grid !important;
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    gap: 10px !important;
    overflow: visible !important;
}

.home-page .trust-section .stats-panel div {
    min-height: 118px !important;
    padding: 16px 10px !important;
    border-radius: 18px;
    background: rgba(255, 255, 255, .74) !important;
    border: 1px solid rgba(254, 198, 13, .24) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7);
}

.home-page .trust-section .stats-panel strong {
    color: #fec60d !important;
    font-size: clamp(25px, 2.5vw, 36px) !important;
}

.home-page .trust-section .stats-panel span {
    color: #06140b !important;
    font-size: 10px !important;
    letter-spacing: .04em;
}

body.monsoon-on.home-page .trust-section {
    background: linear-gradient(135deg, rgba(25, 36, 38, .94), rgba(39, 54, 55, .88));
    border-color: rgba(205, 238, 255, .16);
}

body.monsoon-on.home-page .trust-section .content-card h2,
body.monsoon-on.home-page .trust-section .content-card p:not(.eyebrow),
body.monsoon-on.home-page .trust-section .stats-panel span {
    color: #eef8f5 !important;
}

body.monsoon-on.home-page .trust-section .stats-panel div {
    background: rgba(255, 255, 255, .08) !important;
    border-color: rgba(254, 198, 13, .22) !important;
}

@media (max-width: 1040px) {
    .home-page .trust-section {
        grid-template-columns: 1fr !important;
    }

    .home-page .trust-section .stats-panel {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 620px) {
    .home-page .trust-section {
        width: min(100% - 28px, 1120px) !important;
        padding: 24px !important;
    }

    .home-page .trust-section .stats-panel {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}
/* Packages page: Avian-style grouped catalogue */
body.packages-page {
    background: #f7faf6 !important;
}

.packages-catalog-main {
    background: #f7faf6;
    color: #06140b;
    padding: clamp(48px, 7vw, 86px) 0 clamp(80px, 9vw, 128px);
}

.packages-catalog-intro,
.tour-package-group {
    width: min(1030px, calc(100% - 40px));
    margin-inline: auto;
}

.packages-catalog-intro {
    margin-bottom: clamp(34px, 5vw, 64px);
}

.packages-catalog-intro h1 {
    margin: 8px 0 10px;
    color: #06140b;
    font-size: clamp(38px, 5.2vw, 72px);
    line-height: .95;
    letter-spacing: 0;
    text-transform: none;
}

.packages-catalog-intro p:not(.eyebrow) {
    max-width: 620px;
    color: rgba(6, 20, 11, .72);
    font-size: 18px;
    line-height: 1.55;
}

.tour-package-group {
    margin-top: clamp(50px, 6vw, 78px);
}

.tour-package-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.tour-package-head h2 {
    margin: 0;
    color: #06140b;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.1;
    letter-spacing: 0;
    text-transform: none;
}

.tour-package-head a {
    flex: 0 0 auto;
    color: #13863c;
    font-size: 12px;
    font-weight: 1000;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.tour-package-row {
    display: flex;
    gap: 26px;
    overflow-x: auto;
    overflow-y: visible;
    padding: 4px 12px 36px;
    margin-inline: -12px;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    scrollbar-color: rgba(19, 134, 60, .38) transparent;
}

.tour-package-row::-webkit-scrollbar {
    height: 8px;
}

.tour-package-row::-webkit-scrollbar-thumb {
    background: rgba(19, 134, 60, .38);
    border-radius: 999px;
}

.tour-package-card {
    flex: 0 0 clamp(290px, 30vw, 310px);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    overflow: visible;
    color: #06140b;
    text-decoration: none;
    transition: transform .28s ease;
}

.tour-package-card img {
    position: relative;
    z-index: 2;
    display: block !important;
    width: 100%;
    height: 228px;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    box-shadow: 0 18px 26px rgba(6, 20, 11, .24);
    background: #dfe8df;
    transition: transform .42s ease, filter .42s ease, box-shadow .42s ease;
}

.tour-package-card > div {
    margin: -22px 10px 0;
    padding: 42px 26px 24px;
    min-height: 238px;
    border-radius: 0 0 22px 22px;
    background: #fff;
    box-shadow: 0 16px 32px rgba(6, 20, 11, .13);
    border: 1px solid rgba(6, 20, 11, .06);
}

.tour-package-card small {
    display: block;
    margin-bottom: 8px;
    color: rgba(6, 20, 11, .52);
    font-size: 14px;
    font-weight: 700;
}

.tour-package-card h3 {
    margin: 0 0 8px;
    color: #06140b;
    font-size: 22px;
    line-height: 1.16;
    letter-spacing: 0;
    text-transform: none;
}

.tour-package-card p {
    min-height: 46px;
    margin: 0 0 14px;
    color: #06140b;
    font-size: 15.5px;
    line-height: 1.45;
}

.tour-package-card p::after {
    content: "";
    display: block;
    height: 1px;
    margin-top: 14px;
    background: rgba(6, 20, 11, .28);
}

.tour-package-card em {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    padding: 5px 10px;
    border-radius: 7px;
    background: rgba(42, 226, 63, .12);
    border: 1px solid rgba(19, 134, 60, .38);
    color: #13863c;
    font-size: 12px;
    font-style: normal;
    font-weight: 900;
}

.tour-package-card em::before {
    content: "✓";
    display: inline-grid;
    place-items: center;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: #18c942;
    color: #fff;
    font-size: 9px;
}

.tour-package-card strong {
    display: block;
    color: #f01414;
    font-size: 18px;
    line-height: 1;
}

.tour-package-card del {
    margin-left: 6px;
    color: rgba(6, 20, 11, .45);
    font-size: 14px;
    font-weight: 600;
}

.tour-package-card:hover {
    transform: translateY(-6px);
}

.tour-package-card:hover img {
    transform: translateY(-2px) scale(1.025);
    filter: saturate(1.08) contrast(1.04);
    box-shadow: 0 24px 36px rgba(6, 20, 11, .28);
}

body.monsoon-on.packages-page .packages-catalog-main {
    background: #172322;
}

body.monsoon-on.packages-page .packages-catalog-intro h1,
body.monsoon-on.packages-page .tour-package-head h2 {
    color: #f7fbf8;
}

body.monsoon-on.packages-page .packages-catalog-intro p:not(.eyebrow) {
    color: rgba(247, 251, 248, .72);
}

@media (max-width: 760px) {
    .packages-catalog-intro,
    .tour-package-group {
        width: min(100% - 28px, 1030px);
    }

    .tour-package-head {
        align-items: flex-start;
    }

    .tour-package-card {
        flex-basis: min(82vw, 310px);
    }

    .tour-package-card img {
        height: 210px;
    }
}
/* Rain mode dark-background text contrast */
body.monsoon-on,
body.monsoon-on main,
body.monsoon-on .section,
body.monsoon-on .packages-catalog-main,
body.monsoon-on .journey-films-section,
body.monsoon-on .travel-game-section,
body.monsoon-on .destination-pick-section,
body.monsoon-on .snow-banner,
body.monsoon-on .page-hero,
body.monsoon-on .package-tour-page,
body.monsoon-on .package-tour-shell {
    color: #f7fbf8 !important;
}

body.monsoon-on h1,
body.monsoon-on h2,
body.monsoon-on h3,
body.monsoon-on h4,
body.monsoon-on .section-head h2,
body.monsoon-on .content-card h2,
body.monsoon-on .tour-card h2,
body.monsoon-on .package-detail-hero h1,
body.monsoon-on .packages-catalog-intro h1,
body.monsoon-on .tour-package-head h2,
body.monsoon-on .destination-pick-card h3,
body.monsoon-on .blog-card h3,
body.monsoon-on .google-review-head h2 {
    color: #ffffff !important;
}

body.monsoon-on p,
body.monsoon-on li,
body.monsoon-on small,
body.monsoon-on .muted,
body.monsoon-on .section-head p,
body.monsoon-on .content-card p,
body.monsoon-on .tour-card p,
body.monsoon-on .package-detail-hero p,
body.monsoon-on .packages-catalog-intro p:not(.eyebrow),
body.monsoon-on .blog-card p,
body.monsoon-on .google-review-card p {
    color: rgba(247, 251, 248, .86) !important;
}

body.monsoon-on a:not(.primary-btn):not(.plan-btn):not(.ghost-btn):not(.tour-package-card):not(.destination-pick-card),
body.monsoon-on .section-head a,
body.monsoon-on .tour-package-head a {
    color: #fec60d !important;
}

body.monsoon-on .eyebrow,
body.monsoon-on .tour-package-card em,
body.monsoon-on .home-package-card span,
body.monsoon-on .destination-tour-card span,
body.monsoon-on .package-long-card span {
    color: #fec60d !important;
}

body.monsoon-on .content-card,
body.monsoon-on .tour-card,
body.monsoon-on .stats-panel,
body.monsoon-on .google-review-card,
body.monsoon-on .blog-card,
body.monsoon-on .destination-card,
body.monsoon-on .package-card,
body.monsoon-on .home-package-card,
body.monsoon-on .tour-package-card > div {
    background: rgba(13, 28, 27, .86) !important;
    color: #f7fbf8 !important;
    border-color: rgba(205, 238, 255, .16) !important;
}

body.monsoon-on .tour-package-card h3,
body.monsoon-on .tour-package-card p,
body.monsoon-on .tour-package-card small,
body.monsoon-on .home-package-card h3,
body.monsoon-on .home-package-card p,
body.monsoon-on .home-package-card small,
body.monsoon-on .package-card h3,
body.monsoon-on .package-card p,
body.monsoon-on .package-card small,
body.monsoon-on .blog-card h3,
body.monsoon-on .blog-card p,
body.monsoon-on .google-review-card strong {
    color: #f7fbf8 !important;
}

body.monsoon-on .primary-btn,
body.monsoon-on .plan-btn {
    color: #06140b !important;
}

body.monsoon-on .ghost-btn {
    color: #ffffff !important;
    border-color: rgba(255,255,255,.68) !important;
}

/* Final global review polish */
.section.google-review-section.site-google-reviews {
    width: min(1180px, calc(100% - 32px));
    margin: clamp(56px, 7vw, 104px) auto;
    padding: clamp(30px, 5vw, 54px) !important;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(circle at 88% 16%, rgba(254, 198, 13, .18), transparent 28%),
        linear-gradient(135deg, #06140b 0%, #0a2c18 48%, #13863c 100%) !important;
    border: 1px solid rgba(254, 198, 13, .18);
    border-radius: 30px;
    box-shadow: 0 34px 90px rgba(4, 22, 12, .24);
}

.section.google-review-section.site-google-reviews::before {
    content: "";
    position: absolute;
    inset: auto -8% -50% 28%;
    height: 360px;
    background: url("assets/thrillosphere-footer-sphere-white.png") center / contain no-repeat;
    opacity: .075;
    pointer-events: none;
}

.section.google-review-section.site-google-reviews .google-review-head {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: clamp(22px, 3vw, 34px);
}

.section.google-review-section.site-google-reviews .eyebrow {
    margin: 0 0 10px;
    color: #fec60d !important;
}

.section.google-review-section.site-google-reviews h2,
body.monsoon-on .section.google-review-section.site-google-reviews h2 {
    max-width: 680px;
    margin: 0;
    color: #ffffff !important;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: .96;
}

.section.google-review-section.site-google-reviews .google-rating-pill {
    flex: 0 0 auto;
    padding: 13px 20px;
    color: #06140b !important;
    background: #ffffff !important;
    border: 1px solid rgba(254, 198, 13, .42);
    box-shadow: 0 18px 46px rgba(0, 0, 0, .18);
}

.section.google-review-section.site-google-reviews .google-rating-pill b {
    color: #13863c !important;
}

.section.google-review-section.site-google-reviews .google-review-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.section.google-review-section.site-google-reviews .google-review-card,
body.monsoon-on .section.google-review-section.site-google-reviews .google-review-card {
    min-height: 178px;
    padding: 24px;
    color: #ffffff !important;
    background: linear-gradient(180deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .07)) !important;
    border: 1px solid rgba(255, 255, 255, .18) !important;
    border-radius: 20px;
    box-shadow: none;
    backdrop-filter: blur(14px);
}

.section.google-review-section.site-google-reviews .google-review-card strong,
body.monsoon-on .section.google-review-section.site-google-reviews .google-review-card strong {
    display: block;
    color: #ffffff !important;
    font-size: 1.04rem;
}

.section.google-review-section.site-google-reviews .google-review-card span {
    display: block;
    margin: 8px 0 14px;
    color: #fec60d !important;
    font-size: 1rem;
    letter-spacing: 2px;
}

.section.google-review-section.site-google-reviews .google-review-card p,
body.monsoon-on .section.google-review-section.site-google-reviews .google-review-card p {
    margin: 0;
    color: rgba(255, 255, 255, .82) !important;
    line-height: 1.62;
}

body.monsoon-on .section.google-review-section.site-google-reviews {
    background:
        radial-gradient(circle at 86% 10%, rgba(254, 198, 13, .13), transparent 30%),
        linear-gradient(135deg, #10181f 0%, #1a252b 52%, #263842 100%) !important;
    border-color: rgba(220, 236, 244, .18);
}

@media (max-width: 900px) {
    .section.google-review-section.site-google-reviews .google-review-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .section.google-review-section.site-google-reviews .google-review-grid {
        grid-template-columns: 1fr;
    }

    .section.google-review-section.site-google-reviews .google-rating-pill {
        width: 100%;
        justify-content: center;
    }
}

/* Domestic destination category cards */
.domestic-categories-section {
    background: var(--paper, #f7faf5);
}

.domestic-category-carousel {
    display: flex;
    gap: clamp(18px, 2vw, 28px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 14px 10px 36px;
    margin-inline: -10px;
    scrollbar-color: rgba(19, 134, 60, .38) rgba(19, 134, 60, .1);
}

.domestic-category-carousel::-webkit-scrollbar {
    height: 9px;
}

.domestic-category-carousel::-webkit-scrollbar-track {
    background: rgba(19, 134, 60, .1);
    border-radius: 999px;
}

.domestic-category-carousel::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #fec60d, #13863c);
    border-radius: 999px;
}

.domestic-category-card {
    flex: 0 0 clamp(250px, 23vw, 310px);
    scroll-snap-align: start;
    overflow: hidden;
    border-radius: 28px;
    background: #fff;
    color: #06140b;
    box-shadow: 0 22px 44px rgba(6, 20, 11, .14);
    transition: transform .3s ease, box-shadow .3s ease;
}

.domestic-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 68px rgba(6, 20, 11, .22);
}

.domestic-category-image {
    display: block;
    height: clamp(320px, 36vw, 430px);
    overflow: hidden;
    border-radius: 28px;
    background: #dce8df;
}

.domestic-category-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .55s ease, filter .35s ease;
}

.domestic-category-card:hover .domestic-category-image img {
    transform: scale(1.045);
    filter: saturate(1.08) contrast(1.03);
}

.domestic-category-trips {
    display: grid;
    gap: 0;
    padding: 20px 24px 24px;
}

.domestic-category-trips a,
.domestic-category-trips span {
    color: #06140b;
    font-size: 15px;
    font-weight: 850;
    line-height: 1.25;
    text-decoration: none;
}

.domestic-category-trips a {
    padding: 11px 0;
    border-bottom: 1px solid rgba(6, 20, 11, .12);
    transition: color .22s ease, padding-left .22s ease;
}

.domestic-category-trips a:last-child {
    border-bottom: 0;
}

.domestic-category-trips a:hover {
    color: #13863c;
    padding-left: 6px;
}

.domestic-category-trips span {
    color: rgba(6, 20, 11, .58);
}

body.monsoon-on .domestic-categories-section,
body.monsoon-on .domestic-category-carousel {
    background: #0f1718;
}

body.monsoon-on .domestic-category-card {
    background: #172120;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .08);
}

body.monsoon-on .domestic-category-trips a,
body.monsoon-on .domestic-category-trips span {
    color: #fff;
}

body.monsoon-on .domestic-category-trips a {
    border-bottom-color: rgba(255, 255, 255, .12);
}

body.monsoon-on .domestic-category-trips a:hover {
    color: #fec60d;
}

@media (max-width: 760px) {
    .domestic-category-card {
        flex-basis: min(82vw, 320px);
        border-radius: 24px;
    }

    .domestic-category-image {
        height: 360px;
        border-radius: 24px;
    }

    .domestic-category-trips {
        padding: 18px 20px 22px;
    }
}

/* Final package-card image pass: location photos must fill their frames. */
.home-package-card > a:first-child,
.tour-package-card {
    background: #08160f;
    overflow: hidden;
}

.home-package-card img,
.tour-package-card img {
    width: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    background: transparent !important;
}

.home-package-card img,
.tour-package-card img {
    height: 250px;
}

@media (max-width: 720px) {
    .home-package-card img,
    .tour-package-card img {
        height: 225px;
    }
}

/* Clean destination category cards: homepage cards should open location pages, not carry package lists. */
.domestic-category-card {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.domestic-category-card .domestic-category-trips {
    display: none !important;
}

.domestic-category-image {
    box-shadow: 0 22px 42px rgba(6, 20, 11, .18);
}

.domestic-category-image:focus-visible {
    outline: 3px solid #fec60d;
    outline-offset: 5px;
}

/* Destination pages: package rows should feel like clean location package catalogues. */
.destination-detail-section {
    background: #f7faf6;
}

.destination-tour-scroll {
    display: flex;
    gap: clamp(18px, 2.4vw, 30px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 14px 2px 34px;
    scrollbar-color: #fec60d rgba(19, 134, 60, .14);
}

.destination-tour-card {
    flex: 0 0 clamp(292px, 30vw, 330px);
    border-radius: 24px;
    background: #fff;
    border: 0;
    box-shadow: 0 18px 34px rgba(6, 20, 11, .13);
}

.destination-tour-card img {
    height: 220px;
    object-fit: cover;
    object-position: center;
    background: transparent;
}

/* Final readability and overlap polish: keep text clean across every page and mode. */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

h1, h2, h3, h4, p, a, span, strong, small, li, label, button {
    overflow-wrap: anywhere;
}

.section,
.content-wrap,
.package-tour-shell,
.trust-section,
.site-google-reviews,
.google-review-section {
    max-width: min(1180px, calc(100vw - 40px));
}

.home-page .trust-section {
    display: grid !important;
    grid-template-columns: minmax(280px, 0.95fr) minmax(420px, 1.35fr) !important;
    align-items: center !important;
    gap: clamp(28px, 5vw, 72px) !important;
    padding: clamp(34px, 5vw, 64px) !important;
}

.home-page .trust-section .content-card {
    min-width: 0 !important;
}

.home-page .trust-section .content-card h2 {
    max-width: 560px !important;
    font-size: clamp(2.15rem, 4.2vw, 4.35rem) !important;
    line-height: 1.08 !important;
    letter-spacing: 0 !important;
}

.home-page .trust-section .content-card p:not(.eyebrow) {
    max-width: 520px !important;
    font-size: clamp(0.98rem, 1.4vw, 1.12rem) !important;
    line-height: 1.65 !important;
}

.home-page .trust-section .stats-panel,
.stats-panel {
    min-width: 0 !important;
}

.home-page .trust-section .stats-panel {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(118px, 1fr)) !important;
    gap: 12px !important;
    padding: 18px !important;
}

.home-page .trust-section .stats-panel div,
.stats-panel div {
    min-width: 0 !important;
    min-height: 112px !important;
    padding: 16px 10px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    text-align: center !important;
}

.home-page .trust-section .stats-panel strong,
.stats-panel strong {
    display: block !important;
    width: 100% !important;
    font-size: clamp(1.85rem, 3.1vw, 3rem) !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: clip !important;
}

.home-page .trust-section .stats-panel span,
.stats-panel span {
    display: block !important;
    max-width: 100% !important;
    font-size: clamp(0.64rem, 0.9vw, 0.78rem) !important;
    line-height: 1.18 !important;
    letter-spacing: 0.04em !important;
    white-space: normal !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
}

.google-review-card,
.tour-card,
.content-card,
.home-package-card,
.tour-package-card,
.destination-card,
.destination-tour-card {
    min-width: 0;
}

.google-review-card strong,
.google-review-card p,
.tour-card h1,
.tour-card h2,
.tour-card p,
.tour-card li,
.home-package-card h3,
.tour-package-card h3,
.destination-card h3,
.destination-tour-card h3 {
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
}

body.monsoon-on {
    color: #f5fbf7;
}

body.monsoon-on .trust-section,
body.monsoon-on .content-card,
body.monsoon-on .tour-card,
body.monsoon-on .google-review-section,
body.monsoon-on .site-google-reviews {
    color: #f7fff9 !important;
}

body.monsoon-on .trust-section h2,
body.monsoon-on .trust-section p,
body.monsoon-on .stats-panel span,
body.monsoon-on .google-review-card p,
body.monsoon-on .google-review-card strong,
body.monsoon-on .tour-card h1,
body.monsoon-on .tour-card h2,
body.monsoon-on .tour-card p,
body.monsoon-on .tour-card li {
    color: #f7fff9 !important;
}

body.monsoon-on .stats-panel div,
body.monsoon-on .google-review-card,
body.monsoon-on .content-card,
body.monsoon-on .tour-card {
    background: rgba(8, 22, 15, 0.72) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

@media (max-width: 980px) {
    .home-page .trust-section {
        grid-template-columns: 1fr !important;
        padding: 28px !important;
    }

    .home-page .trust-section .stats-panel {
        grid-template-columns: repeat(3, minmax(92px, 1fr)) !important;
    }
}

@media (max-width: 680px) {
    .section,
    .content-wrap,
    .package-tour-shell,
    .trust-section,
    .site-google-reviews,
    .google-review-section {
        max-width: calc(100vw - 24px);
    }

    .home-page .trust-section {
        padding: 22px 16px !important;
        border-radius: 24px !important;
    }

    .home-page .trust-section .content-card h2 {
        font-size: clamp(1.85rem, 10vw, 2.7rem) !important;
    }

    .home-page .trust-section .stats-panel {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
        padding: 12px !important;
    }

    .home-page .trust-section .stats-panel div,
    .stats-panel div {
        min-height: 96px !important;
        padding: 12px 8px !important;
    }

    .home-page .trust-section .stats-panel strong,
    .stats-panel strong {
        font-size: clamp(1.55rem, 8vw, 2.25rem) !important;
    }

    .home-page .trust-section .stats-panel span,
    .stats-panel span {
        font-size: 0.62rem !important;
    }
}

/* Rain mode contrast contract: light surfaces use dark text, dark surfaces use white text. */
body.monsoon-on {
    color: #f7fff9 !important;
    background:
        radial-gradient(circle at 18% 0%, rgba(255, 255, 255, .08), transparent 28%),
        linear-gradient(180deg, #111b1b 0%, #07110d 46%, #031008 100%) !important;
}

body.monsoon-on main,
body.monsoon-on .dark-section,
body.monsoon-on .hero-slider,
body.monsoon-on .page-hero,
body.monsoon-on .snow-banner,
body.monsoon-on .journey-films-section,
body.monsoon-on .travel-game-section,
body.monsoon-on .destination-detail-section,
body.monsoon-on .site-footer,
body.monsoon-on .unified-footer {
    color: #f7fff9 !important;
}

body.monsoon-on .hero-slider h1,
body.monsoon-on .hero-slider h2,
body.monsoon-on .hero-slider p,
body.monsoon-on .page-hero h1,
body.monsoon-on .page-hero p,
body.monsoon-on .dark-section h1,
body.monsoon-on .dark-section h2,
body.monsoon-on .dark-section h3,
body.monsoon-on .dark-section p,
body.monsoon-on .destination-detail-section .section-head h2,
body.monsoon-on .destination-detail-section .section-head a {
    color: #fff !important;
}

body.monsoon-on .trip-search,
body.monsoon-on .trust-section,
body.monsoon-on .site-google-reviews,
body.monsoon-on .google-review-section,
body.monsoon-on .packages-catalog-main,
body.monsoon-on .packages-catalog-intro,
body.monsoon-on .modal-panel,
body.monsoon-on .destination-tour-card,
body.monsoon-on .contact-card,
body.monsoon-on .contact-form,
body.monsoon-on .package-tour-shell .tour-card {
    color: #06140b !important;
}

body.monsoon-on .trip-search h1,
body.monsoon-on .trip-search h2,
body.monsoon-on .trip-search h3,
body.monsoon-on .trip-search p,
body.monsoon-on .trust-section h1,
body.monsoon-on .trust-section h2,
body.monsoon-on .trust-section h3,
body.monsoon-on .trust-section p,
body.monsoon-on .site-google-reviews h1,
body.monsoon-on .site-google-reviews h2,
body.monsoon-on .site-google-reviews h3,
body.monsoon-on .site-google-reviews p,
body.monsoon-on .google-review-section h1,
body.monsoon-on .google-review-section h2,
body.monsoon-on .google-review-section h3,
body.monsoon-on .google-review-section p,
body.monsoon-on .packages-catalog-main h1,
body.monsoon-on .packages-catalog-main h2,
body.monsoon-on .packages-catalog-main h3,
body.monsoon-on .packages-catalog-main p,
body.monsoon-on .modal-panel h1,
body.monsoon-on .modal-panel h2,
body.monsoon-on .modal-panel h3,
body.monsoon-on .modal-panel p,
body.monsoon-on .destination-tour-card h3,
body.monsoon-on .destination-tour-card p,
body.monsoon-on .destination-tour-card small,
body.monsoon-on .package-tour-shell .tour-card h1,
body.monsoon-on .package-tour-shell .tour-card h2,
body.monsoon-on .package-tour-shell .tour-card h3,
body.monsoon-on .package-tour-shell .tour-card p,
body.monsoon-on .package-tour-shell .tour-card li {
    color: #06140b !important;
}

body.monsoon-on .trust-section,
body.monsoon-on .site-google-reviews,
body.monsoon-on .google-review-section,
body.monsoon-on .trip-search,
body.monsoon-on .modal-panel,
body.monsoon-on .destination-tour-card,
body.monsoon-on .packages-catalog-main,
body.monsoon-on .package-tour-shell .tour-card {
    background: rgba(250, 253, 249, .95) !important;
    border-color: rgba(19, 134, 60, .18) !important;
}

body.monsoon-on .home-package-card,
body.monsoon-on .package-card,
body.monsoon-on .journey-video-card,
body.monsoon-on .video-card,
body.monsoon-on .blog-card,
body.monsoon-on .destination-pick-card {
    color: #f7fff9 !important;
    background: rgba(7, 21, 16, .82) !important;
    border-color: rgba(255, 255, 255, .18) !important;
}

body.monsoon-on .home-package-card h3,
body.monsoon-on .home-package-card p,
body.monsoon-on .home-package-card small,
body.monsoon-on .package-card h3,
body.monsoon-on .package-card p,
body.monsoon-on .package-card small,
body.monsoon-on .journey-video-card h3,
body.monsoon-on .journey-video-card p,
body.monsoon-on .blog-card h3,
body.monsoon-on .blog-card p,
body.monsoon-on .destination-pick-card h3,
body.monsoon-on .destination-pick-card p {
    color: #f7fff9 !important;
}

body.monsoon-on .stats-panel {
    color: #06140b !important;
    background: transparent !important;
}

body.monsoon-on .stats-panel div,
body.monsoon-on .google-review-card {
    color: #06140b !important;
    background: rgba(255, 255, 255, .76) !important;
    border-color: rgba(254, 198, 13, .28) !important;
}

body.monsoon-on .stats-panel strong,
body.monsoon-on .stats-panel span,
body.monsoon-on .google-review-card strong,
body.monsoon-on .google-review-card p {
    color: #06140b !important;
}

body.monsoon-on .site-footer,
body.monsoon-on .site-footer p,
body.monsoon-on .site-footer .copyright {
    color: #f7fff9 !important;
}

body.monsoon-on .site-footer h3,
body.monsoon-on .site-footer a,
body.monsoon-on .footer-socials a {
    color: var(--yellow) !important;
}

body.monsoon-on input,
body.monsoon-on textarea,
body.monsoon-on select {
    color: #06140b !important;
    background: rgba(255, 255, 255, .94) !important;
    border-color: rgba(6, 20, 11, .16) !important;
}

body.monsoon-on input::placeholder,
body.monsoon-on textarea::placeholder {
    color: rgba(6, 20, 11, .52) !important;
}

/* Final modal frame polish */
.modal {
    padding: clamp(16px, 3vw, 32px);
}

.trip-popup.modal-panel {
    width: min(920px, calc(100vw - 32px));
    max-height: calc(100vh - 48px);
    grid-template-columns: minmax(300px, .96fr) minmax(320px, 1fr);
    gap: 28px;
    padding: 18px;
    overflow: hidden;
    border-radius: 24px;
}

.trip-popup .modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: transparent;
    font-size: 0;
    line-height: 0;
    box-shadow: none;
    z-index: 8;
}

.trip-popup .modal-close::before,
.trip-popup .modal-close::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 3px;
    border-radius: 999px;
    background: #111;
    transition: background .2s ease, transform .2s ease;
}

.trip-popup .modal-close::before {
    transform: rotate(45deg);
}

.trip-popup .modal-close::after {
    transform: rotate(-45deg);
}

.trip-popup .modal-close:hover::before,
.trip-popup .modal-close:hover::after {
    background: var(--green);
}

.trip-popup-preview {
    min-height: 0;
    height: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 18px;
}

.trip-popup-preview img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center;
}

.trip-popup-preview h3 {
    max-width: 92%;
    font-size: clamp(1.85rem, 3vw, 2.45rem);
}

.trip-popup-preview p {
    max-width: 92%;
    font-size: .96rem;
}

.trip-popup-form {
    align-self: center;
    padding: 18px 12px 18px 0;
}

.trip-popup-form h2 {
    margin-right: 54px;
    font-size: clamp(2rem, 3vw, 2.55rem);
}

.popup-form input,
.popup-form textarea,
.phone-field {
    min-height: 46px;
}

.popup-form textarea {
    min-height: 82px;
}

.popup-form .primary-btn {
    min-height: 54px;
}

@media (max-width: 820px) {
    .trip-popup.modal-panel {
        width: min(100%, calc(100vw - 24px));
        max-height: calc(100vh - 24px);
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 12px;
        overflow-y: auto;
    }

    .trip-popup-preview {
        aspect-ratio: 16 / 10;
        max-height: 280px;
    }

    .trip-popup-form {
        padding: 0 4px 4px;
    }

    .trip-popup-form h2 {
        margin-right: 50px;
        font-size: clamp(1.75rem, 8vw, 2.2rem);
    }
}

@media (max-width: 520px) {
    .modal {
        padding: 10px;
    }

    .trip-popup.modal-panel {
        width: calc(100vw - 20px);
        border-radius: 18px;
    }

    .trip-popup-preview {
        max-height: 220px;
    }

    .trip-popup-preview div {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }
}

/* Final premium footer refresh */
.site-footer.unified-footer {
    position: relative !important;
    isolation: isolate;
    overflow: hidden !important;
    margin-top: clamp(76px, 9vw, 118px) !important;
    padding: clamp(64px, 7vw, 88px) 0 0 !important;
    background:
        radial-gradient(circle at 50% 42%, rgba(19, 134, 60, 0.28), transparent 42%),
        linear-gradient(180deg, #062211 0%, #031509 58%, #020c06 100%) !important;
    color: #fec60d !important;
    border-top: 1px solid rgba(254, 198, 13, 0.14) !important;
}

.site-footer.unified-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.14), transparent 24%, transparent 76%, rgba(0, 0, 0, 0.18)),
        radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.06), transparent 28%);
    pointer-events: none;
}

.site-footer.unified-footer .footer-contact-strip,
.site-footer.unified-footer .footer-gallery,
.site-footer.unified-footer .footer-content,
.site-footer.unified-footer .copyright {
    position: relative;
    z-index: 2;
}

.site-footer.unified-footer .footer-contact-strip {
    width: min(1040px, calc(100vw - 40px));
    margin: calc(clamp(64px, 7vw, 88px) * -1 - 8px) auto 44px !important;
    padding: 22px 28px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 28px;
    background: #ffffff;
    color: #031509;
    border-radius: 0 0 22px 22px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.site-footer.unified-footer .footer-contact-strip::after {
    content: "";
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 50%;
    width: 1px;
    background: rgba(3, 21, 9, 0.12);
}

.site-footer.unified-footer .footer-whatsapp-call {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    color: #031509 !important;
    text-decoration: none !important;
}

.site-footer.unified-footer .footer-whatsapp-mark {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    color: #20c866;
    flex: 0 0 auto;
}

.site-footer.unified-footer .footer-whatsapp-mark svg {
    width: 56px;
    height: 56px;
    fill: currentColor;
}

.site-footer.unified-footer .footer-contact-strip small {
    display: block;
    margin-bottom: 4px;
    color: #031509;
    font-size: 0.94rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
}

.site-footer.unified-footer .footer-contact-strip strong {
    display: block;
    color: #000;
    font-size: clamp(1.8rem, 3.2vw, 2.55rem);
    line-height: 1;
    letter-spacing: 0.04em;
}

.site-footer.unified-footer .footer-social-strip {
    text-align: center;
}

.site-footer.unified-footer .footer-strip-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.site-footer.unified-footer .footer-strip-icons a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: #fff !important;
    font-size: 0.82rem;
    font-weight: 900;
    text-decoration: none !important;
    letter-spacing: 0;
    transform: translateY(0);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.site-footer.unified-footer .footer-strip-icons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.18);
}

.site-footer.unified-footer .footer-strip-icons .instagram {
    background: linear-gradient(135deg, #ffbd32, #f3396b 52%, #6b46ff);
}

.site-footer.unified-footer .footer-strip-icons .youtube {
    background: #ff2b13;
}

.site-footer.unified-footer .footer-strip-icons .facebook {
    background: #1769aa;
    font-size: 1.25rem;
}

.site-footer.unified-footer .footer-strip-icons .mail {
    background: #13863c;
}

.site-footer.unified-footer .footer-gallery {
    width: min(1180px, calc(100vw - 40px)) !important;
    margin: 0 auto 40px !important;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 14px !important;
}

.site-footer.unified-footer .footer-gallery img {
    width: 100% !important;
    height: clamp(112px, 12vw, 146px) !important;
    display: block;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 18px !important;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24) !important;
    opacity: 0.94 !important;
}

.site-footer.unified-footer .footer-art {
    position: absolute !important;
    z-index: 0 !important;
    left: 50% !important;
    top: 54% !important;
    width: min(660px, 58vw) !important;
    max-width: none !important;
    height: auto !important;
    object-fit: contain !important;
    transform: translate(-50%, -50%) !important;
    opacity: 0.15 !important;
    filter: none !important;
    mix-blend-mode: screen;
    pointer-events: none;
}

.site-footer.unified-footer .footer-content {
    width: min(1180px, calc(100vw - 40px)) !important;
    margin: 0 auto !important;
    padding: 0 0 58px !important;
    display: grid !important;
    grid-template-columns: minmax(230px, 1.05fr) minmax(150px, 0.62fr) minmax(240px, 0.9fr) minmax(240px, 0.9fr) !important;
    align-items: start !important;
    gap: clamp(32px, 5vw, 74px) !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.site-footer.unified-footer .footer-content > div {
    min-width: 0;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.site-footer.unified-footer .footer-brand-block {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 18px !important;
}

.site-footer.unified-footer .footer-logo,
.site-footer.unified-footer .footer-logo-default,
.site-footer.unified-footer .footer-logo-snow {
    width: min(220px, 72vw) !important;
    max-width: 220px !important;
    height: auto !important;
    object-fit: contain !important;
    object-position: left center !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.site-footer.unified-footer h3 {
    margin: 0 0 16px !important;
    color: #fec60d !important;
    font-size: 0.92rem !important;
    line-height: 1.2 !important;
    letter-spacing: 0.16em !important;
    text-transform: uppercase !important;
}

.site-footer.unified-footer p,
.site-footer.unified-footer a,
.site-footer.unified-footer .copyright {
    color: #fec60d !important;
    font-size: clamp(1rem, 1.35vw, 1.12rem) !important;
    line-height: 1.5 !important;
    letter-spacing: 0 !important;
}

.site-footer.unified-footer a {
    text-decoration: none !important;
    transition: color 180ms ease, transform 180ms ease;
}

.site-footer.unified-footer a:hover {
    color: #ffffff !important;
}

.site-footer.unified-footer .footer-links a {
    display: block !important;
    width: fit-content;
    margin: 0 0 8px !important;
    font-weight: 800 !important;
}

.site-footer.unified-footer .footer-contact p {
    margin: 0 0 16px !important;
    font-weight: 800 !important;
}

.site-footer.unified-footer .footer-socials {
    display: flex !important;
    align-items: center !important;
    gap: 22px !important;
    margin-top: 10px !important;
}

.site-footer.unified-footer .footer-socials a {
    width: auto !important;
    height: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    color: #fec60d !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.site-footer.unified-footer .footer-socials svg {
    width: 23px !important;
    height: 23px !important;
    stroke: currentColor !important;
}

.site-footer.unified-footer .primary-btn {
    width: fit-content !important;
    min-width: 188px !important;
    padding: 16px 26px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: #fec60d !important;
    color: #031509 !important;
    box-shadow: 0 16px 34px rgba(254, 198, 13, 0.26) !important;
}

.site-footer.unified-footer .primary-btn:hover {
    background: #13863c !important;
    color: #fec60d !important;
}

.site-footer.unified-footer .copyright {
    width: 100% !important;
    margin: 0 !important;
    padding: 20px min(5vw, 68px) !important;
    border-top: 1px solid rgba(254, 198, 13, 0.26) !important;
    background: rgba(0, 0, 0, 0.12) !important;
}

body.monsoon-on .site-footer.unified-footer {
    background:
        radial-gradient(circle at 50% 42%, rgba(20, 37, 34, 0.58), transparent 44%),
        linear-gradient(180deg, #17201f 0%, #0c1312 58%, #050808 100%) !important;
}

body.monsoon-on .site-footer.unified-footer .footer-art {
    opacity: 0.18 !important;
}

@media (max-width: 980px) {
    .site-footer.unified-footer .footer-contact-strip {
        grid-template-columns: 1fr;
        gap: 18px;
        text-align: center;
        border-radius: 0 0 20px 20px;
    }

    .site-footer.unified-footer .footer-contact-strip::after {
        display: none;
    }

    .site-footer.unified-footer .footer-whatsapp-call {
        justify-content: center;
    }

    .site-footer.unified-footer .footer-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .site-footer.unified-footer .footer-content {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 34px !important;
    }
}

@media (max-width: 640px) {
    .site-footer.unified-footer {
        margin-top: 86px !important;
        padding-top: 58px !important;
    }

    .site-footer.unified-footer .footer-contact-strip {
        width: calc(100vw - 24px);
        margin-top: -112px !important;
        padding: 20px 16px;
    }

    .site-footer.unified-footer .footer-contact-strip strong {
        font-size: 1.85rem;
    }

    .site-footer.unified-footer .footer-gallery {
        width: calc(100vw - 24px) !important;
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 12px !important;
        padding-bottom: 8px;
    }

    .site-footer.unified-footer .footer-gallery img {
        min-width: 76vw;
        height: 122px !important;
        scroll-snap-align: start;
    }

    .site-footer.unified-footer .footer-content {
        width: calc(100vw - 32px) !important;
        grid-template-columns: 1fr !important;
        gap: 28px !important;
        padding-bottom: 40px !important;
    }

    .site-footer.unified-footer .footer-art {
        top: 58% !important;
        width: 118vw !important;
        opacity: 0.1 !important;
    }

    .site-footer.unified-footer .footer-logo,
    .site-footer.unified-footer .footer-logo-default,
    .site-footer.unified-footer .footer-logo-snow {
        width: min(190px, 64vw) !important;
    }
}

/* Final stats strip correction: one clean row on desktop, intentional wrap on small screens. */
@media (min-width: 981px) {
    .home-page .trust-section {
        grid-template-columns: minmax(300px, 0.82fr) minmax(620px, 1.48fr) !important;
        gap: clamp(30px, 4vw, 64px) !important;
    }

    .home-page .trust-section .stats-panel {
        grid-template-columns: repeat(6, minmax(88px, 1fr)) !important;
        gap: 10px !important;
    }

    .home-page .trust-section .stats-panel div {
        min-height: 118px !important;
        padding: 14px 8px !important;
    }

    .home-page .trust-section .stats-panel strong {
        font-size: clamp(1.75rem, 2.55vw, 2.55rem) !important;
    }

    .home-page .trust-section .stats-panel span {
        font-size: clamp(0.56rem, 0.68vw, 0.68rem) !important;
        letter-spacing: 0.025em !important;
    }
}

@media (max-width: 520px) {
    .stats-panel,
    .home-page .trust-section .stats-panel {
        grid-template-columns: 1fr !important;
    }
}

.destination-tour-card div {
    min-height: 292px;
    align-content: start;
}

.destination-tour-card small {
    color: rgba(6, 20, 11, .62);
    font-size: 14px;
}

.destination-tour-card h3 {
    font-size: 24px;
}

.destination-tour-card p {
    min-height: 48px;
}

.destination-tour-card .primary-btn {
    align-self: end;
    margin-top: auto;
    border-radius: 999px;
}

body.monsoon-on .destination-detail-section {
    background: #101b1b;
}

body.monsoon-on .destination-detail-section .section-head h2,
body.monsoon-on .destination-detail-section .section-head a {
    color: #fff;
}

body.monsoon-on .destination-tour-card {
    background: rgba(246, 249, 246, .96);
}

@media (max-width: 760px) {
    .destination-tour-card {
        flex-basis: min(84vw, 330px);
    }

    .destination-tour-card img {
        height: 205px;
    }

    .destination-tour-card div {
        min-height: 270px;
    }
}
/* Final readability and overlap polish: keep text clean across every page and mode. */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

h1, h2, h3, h4, p, a, span, strong, small, li, label, button {
    overflow-wrap: anywhere;
}

.section,
.content-wrap,
.package-tour-shell,
.trust-section,
.site-google-reviews,
.google-review-section {
    max-width: min(1180px, calc(100vw - 40px));
}

.home-page .trust-section {
    display: grid !important;
    grid-template-columns: minmax(280px, 0.95fr) minmax(420px, 1.35fr) !important;
    align-items: center !important;
    gap: clamp(28px, 5vw, 72px) !important;
    padding: clamp(34px, 5vw, 64px) !important;
}

.home-page .trust-section .content-card {
    min-width: 0 !important;
}

.home-page .trust-section .content-card h2 {
    max-width: 560px !important;
    font-size: clamp(2.15rem, 4.2vw, 4.35rem) !important;
    line-height: 1.08 !important;
    letter-spacing: 0 !important;
}

.home-page .trust-section .content-card p:not(.eyebrow) {
    max-width: 520px !important;
    font-size: clamp(0.98rem, 1.4vw, 1.12rem) !important;
    line-height: 1.65 !important;
}

.home-page .trust-section .stats-panel,
.stats-panel {
    min-width: 0 !important;
}

.home-page .trust-section .stats-panel {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(118px, 1fr)) !important;
    gap: 12px !important;
    padding: 18px !important;
}

.home-page .trust-section .stats-panel div,
.stats-panel div {
    min-width: 0 !important;
    min-height: 112px !important;
    padding: 16px 10px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    text-align: center !important;
}

.home-page .trust-section .stats-panel strong,
.stats-panel strong {
    display: block !important;
    width: 100% !important;
    font-size: clamp(1.85rem, 3.1vw, 3rem) !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: clip !important;
}

.home-page .trust-section .stats-panel span,
.stats-panel span {
    display: block !important;
    max-width: 100% !important;
    font-size: clamp(0.64rem, 0.9vw, 0.78rem) !important;
    line-height: 1.18 !important;
    letter-spacing: 0.04em !important;
    white-space: normal !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
}

.google-review-card,
.tour-card,
.content-card,
.home-package-card,
.tour-package-card,
.destination-card,
.destination-tour-card {
    min-width: 0;
}

.google-review-card strong,
.google-review-card p,
.tour-card h1,
.tour-card h2,
.tour-card p,
.tour-card li,
.home-package-card h3,
.tour-package-card h3,
.destination-card h3,
.destination-tour-card h3 {
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
}

body.monsoon-on {
    color: #f5fbf7;
}

body.monsoon-on .trust-section,
body.monsoon-on .content-card,
body.monsoon-on .tour-card,
body.monsoon-on .google-review-section,
body.monsoon-on .site-google-reviews {
    color: #f7fff9 !important;
}

body.monsoon-on .trust-section h2,
body.monsoon-on .trust-section p,
body.monsoon-on .stats-panel span,
body.monsoon-on .google-review-card p,
body.monsoon-on .google-review-card strong,
body.monsoon-on .tour-card h1,
body.monsoon-on .tour-card h2,
body.monsoon-on .tour-card p,
body.monsoon-on .tour-card li {
    color: #f7fff9 !important;
}

body.monsoon-on .stats-panel div,
body.monsoon-on .google-review-card,
body.monsoon-on .content-card,
body.monsoon-on .tour-card {
    background: rgba(8, 22, 15, 0.72) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

@media (max-width: 980px) {
    .home-page .trust-section {
        grid-template-columns: 1fr !important;
        padding: 28px !important;
    }

    .home-page .trust-section .stats-panel {
        grid-template-columns: repeat(3, minmax(92px, 1fr)) !important;
    }
}

@media (max-width: 680px) {
    .section,
    .content-wrap,
    .package-tour-shell,
    .trust-section,
    .site-google-reviews,
    .google-review-section {
        max-width: calc(100vw - 24px);
    }

    .home-page .trust-section {
        padding: 22px 16px !important;
        border-radius: 24px !important;
    }

    .home-page .trust-section .content-card h2 {
        font-size: clamp(1.85rem, 10vw, 2.7rem) !important;
    }

    .home-page .trust-section .stats-panel {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
        padding: 12px !important;
    }

    .home-page .trust-section .stats-panel div,
    .stats-panel div {
        min-height: 96px !important;
        padding: 12px 8px !important;
    }

    .home-page .trust-section .stats-panel strong,
    .stats-panel strong {
        font-size: clamp(1.55rem, 8vw, 2.25rem) !important;
    }

    .home-page .trust-section .stats-panel span,
    .stats-panel span {
        font-size: 0.62rem !important;
    }
}
/* Final readability and footer cleanup overrides */
body:not(.monsoon-on) .section h1,
body:not(.monsoon-on) .section h2,
body:not(.monsoon-on) .section h3,
body:not(.monsoon-on) .section-title,
body:not(.monsoon-on) .section-heading,
body:not(.monsoon-on) .package-lineup-section h2,
body:not(.monsoon-on) .packages-section h2,
body:not(.monsoon-on) .destinations-section h2,
body:not(.monsoon-on) .blog-section h2,
body:not(.monsoon-on) .experiences-section h2,
body:not(.monsoon-on) .trust-section h2,
body:not(.monsoon-on) .package-moments-section h2 {
  color: #001b10 !important;
  opacity: 1 !important;
  text-shadow: none !important;
  -webkit-text-fill-color: #001b10 !important;
}

body:not(.monsoon-on) .section .eyebrow,
body:not(.monsoon-on) .section-kicker,
body:not(.monsoon-on) .section-label {
  color: #fec60d !important;
  opacity: 1 !important;
  text-shadow: none !important;
}

body.monsoon-on .section:not(.hero):not(.site-footer):not(.dark-section) h1,
body.monsoon-on .section:not(.hero):not(.site-footer):not(.dark-section) h2,
body.monsoon-on .section:not(.hero):not(.site-footer):not(.dark-section) h3 {
  color: #08140f !important;
  opacity: 1 !important;
  text-shadow: none !important;
  -webkit-text-fill-color: #08140f !important;
}

body.monsoon-on .dark-section h1,
body.monsoon-on .dark-section h2,
body.monsoon-on .dark-section h3,
body.monsoon-on .site-footer h1,
body.monsoon-on .site-footer h2,
body.monsoon-on .site-footer h3 {
  color: #fff !important;
  opacity: 1 !important;
  -webkit-text-fill-color: #fff !important;
}

.site-footer.unified-footer,
footer.site-footer {
  position: relative !important;
  overflow: hidden !important;
  background: #002414 !important;
  color: #fec60d !important;
}

.site-footer.unified-footer::before,
footer.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/thrillosphere-footer-sphere-white.png") center 54% / min(760px, 62vw) auto no-repeat;
  opacity: .14;
  pointer-events: none;
  z-index: 0;
}

.site-footer.unified-footer > *,
footer.site-footer > * {
  position: relative;
  z-index: 1;
}

.site-footer.unified-footer .footer-content,
.site-footer.unified-footer .footer-brand-block,
.site-footer.unified-footer .footer-gallery,
.site-footer.unified-footer .footer-bottom,
footer.site-footer .footer-content,
footer.site-footer .footer-brand-block,
footer.site-footer .footer-gallery,
footer.site-footer .footer-bottom {
  background: transparent !important;
  box-shadow: none !important;
}

.site-footer.unified-footer .footer-art,
footer.site-footer .footer-art {
  display: none !important;
}
html body .trust-section {
  min-height: auto !important;
  padding-top: clamp(34px, 5vw, 72px) !important;
  padding-bottom: clamp(34px, 5vw, 72px) !important;
  gap: clamp(22px, 4vw, 56px) !important;
  align-items: center !important;
}

html body .trust-section .content-card {
  padding: clamp(26px, 4vw, 54px) !important;
}

html body .trust-section .content-card h2 {
  max-width: 620px !important;
  font-size: clamp(2.15rem, 4.2vw, 4.8rem) !important;
  line-height: .96 !important;
  letter-spacing: 0 !important;
}

html body .trust-section .content-card p {
  max-width: 560px !important;
  margin-top: 18px !important;
  margin-bottom: 24px !important;
}

html body .trust-section .stats-panel {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(112px, 1fr)) !important;
  gap: 12px !important;
  padding: clamp(16px, 2.2vw, 24px) !important;
  align-self: center !important;
}

html body .trust-section .stats-panel div {
  min-height: 96px !important;
  padding: 14px 10px !important;
}

html body .trust-section .stats-panel strong {
  display: block !important;
  font-size: clamp(1.9rem, 3vw, 3.3rem) !important;
  line-height: 1 !important;
}

html body .trust-section .stats-panel span {
  display: block !important;
  margin-top: 10px !important;
  font-size: .72rem !important;
  line-height: 1.12 !important;
  overflow-wrap: anywhere !important;
}

html body .package-moments-section {
  overflow: hidden !important;
  padding: clamp(26px, 4vw, 52px) clamp(18px, 5vw, 72px) !important;
  background: #f7faf5 !important;
}

html body.monsoon-on .package-moments-section {
  background: #202827 !important;
  color: #fff !important;
}

html body .package-moments-head {
  display: flex !important;
  align-items: end !important;
  justify-content: space-between !important;
  gap: 18px !important;
  margin: 0 auto 18px !important;
  max-width: 1180px !important;
}

html body .package-moments-head h2 {
  margin: 0 !important;
  font-size: clamp(1.9rem, 3.4vw, 3.4rem) !important;
  line-height: 1 !important;
}

html body .package-moments-head a {
  color: #13863c !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: .08em !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

html body .package-moments-viewport {
  max-width: 1180px !important;
  margin: 0 auto !important;
  overflow: hidden !important;
  border-radius: 24px !important;
  outline: none !important;
}

html body .package-moments-track {
  display: flex !important;
  width: max-content !important;
  gap: 14px !important;
  animation: packageMomentScroll 58s linear infinite !important;
  will-change: transform !important;
}

html body .package-moments-section:hover .package-moments-track,
html body .package-moments-viewport:focus-within .package-moments-track {
  animation-play-state: paused !important;
}

html body .package-moments-track img {
  flex: 0 0 auto !important;
  width: clamp(150px, 17vw, 230px) !important;
  height: clamp(150px, 17vw, 210px) !important;
  object-fit: cover !important;
  border-radius: 18px !important;
  box-shadow: 0 18px 38px rgba(0, 27, 16, .16) !important;
}

@keyframes packageMomentScroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

@media (max-width: 900px) {
  html body .trust-section {
    padding-top: 30px !important;
    padding-bottom: 34px !important;
  }

  html body .trust-section .stats-panel {
    grid-template-columns: repeat(2, minmax(120px, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  html body .package-moments-head {
    align-items: flex-start !important;
    flex-direction: column !important;
  }

  html body .trust-section .stats-panel {
    grid-template-columns: 1fr 1fr !important;
  }
}
/* Final dark-panel readability and compact spacing fix */
html body:not(.monsoon-on) .dark-section h1,
html body:not(.monsoon-on) .dark-section h2,
html body:not(.monsoon-on) .dark-section h3,
html body:not(.monsoon-on) .game-section h1,
html body:not(.monsoon-on) .game-section h2,
html body:not(.monsoon-on) .game-section h3,
html body:not(.monsoon-on) .travel-game h1,
html body:not(.monsoon-on) .travel-game h2,
html body:not(.monsoon-on) .travel-game h3,
html body:not(.monsoon-on) .mountain-drive h1,
html body:not(.monsoon-on) .mountain-drive h2,
html body:not(.monsoon-on) .mountain-drive h3,
html body:not(.monsoon-on) [class*="game"] h1,
html body:not(.monsoon-on) [class*="game"] h2,
html body:not(.monsoon-on) [class*="game"] h3,
html body:not(.monsoon-on) [class*="drive"] h1,
html body:not(.monsoon-on) [class*="drive"] h2,
html body:not(.monsoon-on) [class*="drive"] h3 {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  opacity: 1 !important;
  text-shadow: none !important;
}

html body:not(.monsoon-on) .dark-section .eyebrow,
html body:not(.monsoon-on) .game-section .eyebrow,
html body:not(.monsoon-on) .travel-game .eyebrow,
html body:not(.monsoon-on) .mountain-drive .eyebrow,
html body:not(.monsoon-on) [class*="game"] .eyebrow,
html body:not(.monsoon-on) [class*="drive"] .eyebrow {
  color: #fec60d !important;
  -webkit-text-fill-color: #fec60d !important;
  opacity: 1 !important;
}

html body:not(.monsoon-on) .dark-section p,
html body:not(.monsoon-on) .game-section p,
html body:not(.monsoon-on) .travel-game p,
html body:not(.monsoon-on) .mountain-drive p,
html body:not(.monsoon-on) [class*="game"] p,
html body:not(.monsoon-on) [class*="drive"] p {
  color: rgba(255, 255, 255, .82) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, .82) !important;
}

html body .game-section,
html body .travel-game,
html body .mountain-drive,
html body section[class*="game"],
html body section[class*="drive"] {
  padding-top: clamp(28px, 4vw, 56px) !important;
  padding-bottom: clamp(30px, 4vw, 60px) !important;
}

html body .game-section .section-head,
html body .travel-game .section-head,
html body .mountain-drive .section-head,
html body [class*="game"] .section-head,
html body [class*="drive"] .section-head {
  margin-bottom: clamp(14px, 2vw, 24px) !important;
}

html body .game-section h2,
html body .travel-game h2,
html body .mountain-drive h2,
html body [class*="game"] h2,
html body [class*="drive"] h2 {
  margin-bottom: 12px !important;
  line-height: 1 !important;
}

html body .game-section .content-card,
html body .travel-game .content-card,
html body .mountain-drive .content-card,
html body [class*="game"] .content-card,
html body [class*="drive"] .content-card {
  padding-top: clamp(22px, 3vw, 36px) !important;
  padding-bottom: clamp(22px, 3vw, 36px) !important;
}
/* Emergency dark-section readability and spacing fix */
html body:not(.monsoon-on) section[class*="game"],
html body:not(.monsoon-on) section[class*="drive"],
html body:not(.monsoon-on) .game-section,
html body:not(.monsoon-on) .travel-game,
html body:not(.monsoon-on) .mountain-drive,
html body:not(.monsoon-on) .dark-section {
  color: #ffffff !important;
}

html body:not(.monsoon-on) section[class*="game"] h1,
html body:not(.monsoon-on) section[class*="game"] h2,
html body:not(.monsoon-on) section[class*="game"] h3,
html body:not(.monsoon-on) section[class*="drive"] h1,
html body:not(.monsoon-on) section[class*="drive"] h2,
html body:not(.monsoon-on) section[class*="drive"] h3,
html body:not(.monsoon-on) .game-section h1,
html body:not(.monsoon-on) .game-section h2,
html body:not(.monsoon-on) .game-section h3,
html body:not(.monsoon-on) .travel-game h1,
html body:not(.monsoon-on) .travel-game h2,
html body:not(.monsoon-on) .travel-game h3,
html body:not(.monsoon-on) .mountain-drive h1,
html body:not(.monsoon-on) .mountain-drive h2,
html body:not(.monsoon-on) .mountain-drive h3,
html body:not(.monsoon-on) .dark-section h1,
html body:not(.monsoon-on) .dark-section h2,
html body:not(.monsoon-on) .dark-section h3 {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  opacity: 1 !important;
  text-shadow: none !important;
}

html body:not(.monsoon-on) section[class*="game"] p,
html body:not(.monsoon-on) section[class*="drive"] p,
html body:not(.monsoon-on) .game-section p,
html body:not(.monsoon-on) .travel-game p,
html body:not(.monsoon-on) .mountain-drive p,
html body:not(.monsoon-on) .dark-section p {
  color: rgba(255, 255, 255, 0.84) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.84) !important;
}

html body:not(.monsoon-on) section[class*="game"] .eyebrow,
html body:not(.monsoon-on) section[class*="drive"] .eyebrow,
html body:not(.monsoon-on) .game-section .eyebrow,
html body:not(.monsoon-on) .travel-game .eyebrow,
html body:not(.monsoon-on) .mountain-drive .eyebrow {
  color: #fec60d !important;
  -webkit-text-fill-color: #fec60d !important;
}

html body section[class*="game"],
html body section[class*="drive"],
html body .game-section,
html body .travel-game,
html body .mountain-drive {
  min-height: auto !important;
  padding-top: clamp(28px, 4vw, 54px) !important;
  padding-bottom: clamp(30px, 4vw, 58px) !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

html body section[class*="game"] .section-head,
html body section[class*="drive"] .section-head,
html body .game-section .section-head,
html body .travel-game .section-head,
html body .mountain-drive .section-head {
  margin-bottom: 16px !important;
}

html body section[class*="game"] .content-card,
html body section[class*="game"] .game-card,
html body section[class*="game"] .game-shell,
html body section[class*="drive"] .content-card,
html body section[class*="drive"] .game-card,
html body section[class*="drive"] .game-shell,
html body .game-section .content-card,
html body .game-section .game-card,
html body .game-section .game-shell {
  padding: clamp(18px, 3vw, 34px) !important;
}

html body section[class*="game"] h2,
html body section[class*="drive"] h2,
html body .game-section h2,
html body .travel-game h2,
html body .mountain-drive h2 {
  font-size: clamp(2rem, 5vw, 4.5rem) !important;
  line-height: 0.95 !important;
  max-width: 9ch !important;
}
@import url("./zz-polish.css");
/* Footer final polish: dark footer, white copy, green action button */
html body footer,
html body .site-footer,
html body .footer,
html body .footer-shell {
  background: #031f12 !important;
  color: #ffffff !important;
}

html body footer *,
html body .site-footer *,
html body .footer *,
html body .footer-shell * {
  color: #ffffff !important;
}

html body footer a:hover,
html body .site-footer a:hover,
html body .footer a:hover,
html body .footer-shell a:hover {
  color: #fec60d !important;
}

html body footer .footer-contact-strip,
html body footer .footer-social-strip,
html body footer .footer-connect-card,
html body footer .footer-contact-card,
html body footer .footer-top-card,
html body footer .footer-callout,
html body footer .footer-contact-banner,
html body footer .pre-footer,
html body .site-footer .footer-contact-strip,
html body .site-footer .footer-social-strip,
html body .site-footer .footer-connect-card,
html body .site-footer .footer-contact-card,
html body .site-footer .footer-top-card,
html body .site-footer .footer-callout,
html body .site-footer .footer-contact-banner,
html body .site-footer .pre-footer {
  background: rgba(3, 31, 18, 0.96) !important;
  border-color: rgba(255, 255, 255, 0.14) !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28) !important;
}

html body footer .btn,
html body footer .primary-btn,
html body footer .footer-cta,
html body footer .footer-button,
html body footer .footer-whatsapp,
html body footer .footer-action,
html body footer [href*="wa.me"],
html body footer [href*="whatsapp"],
html body .site-footer .btn,
html body .site-footer .primary-btn,
html body .site-footer .footer-cta,
html body .site-footer .footer-button,
html body .site-footer .footer-whatsapp,
html body .site-footer .footer-action,
html body .site-footer [href*="wa.me"],
html body .site-footer [href*="whatsapp"] {
  background: #13863c !important;
  border-color: #13863c !important;
  color: #ffffff !important;
  box-shadow: 0 18px 40px rgba(19, 134, 60, 0.28) !important;
}

html body footer img,
html body .site-footer img,
html body .footer img,
html body .footer-shell img {
  background: transparent !important;
}
/* Footer White Green Override */
html body footer,
html body .site-footer,
html body .footer,
html body .footer-shell,
html body .footer-main {
  background: #ffffff !important;
  color: #13863c !important;
  border-color: rgba(19, 134, 60, 0.16) !important;
}

html body footer::before,
html body footer::after,
html body .site-footer::before,
html body .site-footer::after,
html body .footer::before,
html body .footer::after,
html body .footer-shell::before,
html body .footer-shell::after,
html body .footer-main::before,
html body .footer-main::after {
  opacity: 0.04 !important;
}

html body footer *,
html body .site-footer *,
html body .footer *,
html body .footer-shell *,
html body .footer-main * {
  color: #13863c !important;
}

html body footer a,
html body .site-footer a,
html body .footer a,
html body .footer-shell a,
html body .footer-main a {
  color: #13863c !important;
}

html body footer a:hover,
html body .site-footer a:hover,
html body .footer a:hover,
html body .footer-shell a:hover,
html body .footer-main a:hover {
  color: #0b5c28 !important;
}

html body footer .btn,
html body footer .primary-btn,
html body footer .footer-cta,
html body footer .footer-button,
html body footer [href*="wa.me"],
html body footer [href*="whatsapp"],
html body .site-footer .btn,
html body .site-footer .primary-btn,
html body .site-footer .footer-cta,
html body .site-footer .footer-button,
html body .site-footer [href*="wa.me"],
html body .site-footer [href*="whatsapp"],
html body .footer .btn,
html body .footer .primary-btn,
html body .footer .footer-cta,
html body .footer .footer-button,
html body .footer [href*="wa.me"],
html body .footer [href*="whatsapp"] {
  background: #13863c !important;
  border-color: #13863c !important;
  color: #ffffff !important;
  box-shadow: 0 14px 30px rgba(19, 134, 60, 0.2) !important;
}

html body footer .btn *,
html body footer .primary-btn *,
html body footer .footer-cta *,
html body footer .footer-button *,
html body .site-footer .btn *,
html body .site-footer .primary-btn *,
html body .site-footer .footer-cta *,
html body .site-footer .footer-button *,
html body .footer .btn *,
html body .footer .primary-btn *,
html body .footer .footer-cta *,
html body .footer .footer-button * {
  color: #ffffff !important;
}

html body footer img,
html body .site-footer img,
html body .footer img,
html body .footer-shell img,
html body .footer-main img {
  background: transparent !important;
}
/* Footer Final White Theme */
:root {
  --thrill-footer-bg: #ffffff;
  --thrill-footer-text: #13863c;
  --thrill-footer-text-dark: #0b5c28;
}

html body footer,
html body .site-footer,
html body .footer,
html body .footer-shell,
html body .footer-main,
html body .footer-inner,
html body .footer-grid,
html body .footer-top,
html body .footer-bottom,
html body .footer-contact-card,
html body .footer-contact,
html body .footer-social,
html body .footer-gallery,
html body .footer-card,
html body.rain-mode footer,
html body.rain-mode .site-footer,
html body.monsoon-mode footer,
html body.monsoon-mode .site-footer {
  background: var(--thrill-footer-bg) !important;
  background-image: none !important;
  color: var(--thrill-footer-text) !important;
  border-color: rgba(19, 134, 60, 0.16) !important;
}

html body footer::before,
html body footer::after,
html body .site-footer::before,
html body .site-footer::after,
html body .footer::before,
html body .footer::after,
html body .footer-shell::before,
html body .footer-shell::after,
html body .footer-main::before,
html body .footer-main::after {
  opacity: 0 !important;
  background: transparent !important;
}

html body footer,
html body footer :where(h1, h2, h3, h4, h5, h6, p, a, span, small, strong, b, li, div),
html body .site-footer,
html body .site-footer :where(h1, h2, h3, h4, h5, h6, p, a, span, small, strong, b, li, div),
html body .footer,
html body .footer :where(h1, h2, h3, h4, h5, h6, p, a, span, small, strong, b, li, div) {
  color: var(--thrill-footer-text) !important;
}

html body footer a:hover,
html body .site-footer a:hover,
html body .footer a:hover {
  color: var(--thrill-footer-text-dark) !important;
}

html body footer :where(.btn, .primary-btn, .footer-cta, .footer-button, [href*="wa.me"], [href*="whatsapp"]),
html body .site-footer :where(.btn, .primary-btn, .footer-cta, .footer-button, [href*="wa.me"], [href*="whatsapp"]),
html body .footer :where(.btn, .primary-btn, .footer-cta, .footer-button, [href*="wa.me"], [href*="whatsapp"]) {
  background: var(--thrill-footer-text) !important;
  border-color: var(--thrill-footer-text) !important;
  color: #ffffff !important;
  box-shadow: 0 14px 30px rgba(19, 134, 60, 0.2) !important;
}

html body footer :where(.btn, .primary-btn, .footer-cta, .footer-button, [href*="wa.me"], [href*="whatsapp"]) *,
html body .site-footer :where(.btn, .primary-btn, .footer-cta, .footer-button, [href*="wa.me"], [href*="whatsapp"]) *,
html body .footer :where(.btn, .primary-btn, .footer-cta, .footer-button, [href*="wa.me"], [href*="whatsapp"]) * {
  color: #ffffff !important;
}

html body footer img,
html body .site-footer img,
html body .footer img {
  background: transparent !important;
}

/* Footer White Green Lock - 2026-08-06
   Keep this block at the very end so the footer stays white in every mode. */
html body :is(footer, [class*="footer"], [id*="footer"]) {
  background: #ffffff !important;
  background-color: #ffffff !important;
  background-image: none !important;
  color: #13863c !important;
  border-color: rgba(19, 134, 60, 0.16) !important;
  box-shadow: none !important;
}

html body :is(footer, [class*="footer"], [id*="footer"])::before,
html body :is(footer, [class*="footer"], [id*="footer"])::after {
  background: transparent !important;
  background-image: none !important;
  opacity: 0 !important;
  box-shadow: none !important;
}

html body :is(footer, [class*="footer"], [id*="footer"]) *:not(.btn):not(.primary-btn):not(.footer-cta):not(.footer-button):not(.social-link):not(.cta-button) {
  color: #13863c !important;
}

html body :is(footer, [class*="footer"], [id*="footer"]) a:not(.btn):not(.primary-btn):not(.footer-cta):not(.footer-button):not(.social-link):not(.cta-button) {
  color: #13863c !important;
}

html body :is(footer, [class*="footer"], [id*="footer"]) :is(.btn, .primary-btn, .footer-cta, .footer-button, .cta-button, a[href*="wa.me"], a[href*="whatsapp"]) {
  background: #13863c !important;
  background-color: #13863c !important;
  background-image: none !important;
  color: #ffffff !important;
  border-color: #13863c !important;
  box-shadow: 0 14px 30px rgba(19, 134, 60, 0.22) !important;
}

html body :is(footer, [class*="footer"], [id*="footer"]) :is(.btn, .primary-btn, .footer-cta, .footer-button, .cta-button, a[href*="wa.me"], a[href*="whatsapp"]) * {
  color: #ffffff !important;
}

html body :is(footer, [class*="footer"], [id*="footer"]) img {
  background: transparent !important;
}

html body :is(footer, [class*="footer"], [id*="footer"]) .social-link,
html body :is(footer, [class*="footer"], [id*="footer"]) .social-link * {
  color: #13863c !important;
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

/* Footer Final White Lock - 2026-08-06 */
:root {
  --footer-bg-final: #ffffff;
  --footer-text-final: #13863c;
}

html body footer,
html body .site-footer,
html body .main-footer,
html body .footer,
html body .footer-wrap,
html body .footer-wrapper,
html body .footer-section,
html body .footer-band,
html body .footer-shell,
html body .footer-main,
html body .footer-panel,
html body .footer-content,
html body .footer-grid,
html body .footer-gallery,
html body .footer-showcase,
html body .footer-visuals,
html body .footer-strip,
html body .footer-bottom,
html body .footer-map,
html body .footer-brand,
html body .footer-links,
html body .footer-contact,
html body .footer-cta {
  background: #ffffff !important;
  background-color: #ffffff !important;
  background-image: none !important;
  color: #13863c !important;
  border-color: rgba(19, 134, 60, 0.16) !important;
  box-shadow: none !important;
}

html body footer::before,
html body footer::after,
html body .site-footer::before,
html body .site-footer::after,
html body .main-footer::before,
html body .main-footer::after,
html body [class*="footer"]::before,
html body [class*="footer"]::after {
  content: none !important;
  display: none !important;
  background: transparent !important;
  background-image: none !important;
  opacity: 0 !important;
  box-shadow: none !important;
}

html body footer *,
html body .site-footer *,
html body .main-footer *,
html body [class*="footer"] * {
  color: #13863c !important;
}

html body footer :is(.btn, .button, .primary-btn, .footer-cta, .cta-button, a[href*="wa.me"], a[href*="whatsapp"]),
html body .site-footer :is(.btn, .button, .primary-btn, .footer-cta, .cta-button, a[href*="wa.me"], a[href*="whatsapp"]),
html body [class*="footer"] :is(.btn, .button, .primary-btn, .footer-cta, .cta-button, a[href*="wa.me"], a[href*="whatsapp"]) {
  background: #13863c !important;
  background-color: #13863c !important;
  color: #ffffff !important;
  border-color: #13863c !important;
}

html body footer :is(.btn, .button, .primary-btn, .footer-cta, .cta-button, a[href*="wa.me"], a[href*="whatsapp"]) *,
html body .site-footer :is(.btn, .button, .primary-btn, .footer-cta, .cta-button, a[href*="wa.me"], a[href*="whatsapp"]) *,
html body [class*="footer"] :is(.btn, .button, .primary-btn, .footer-cta, .cta-button, a[href*="wa.me"], a[href*="whatsapp"]) * {
  color: #ffffff !important;
}

html body footer img,
html body .site-footer img,
html body [class*="footer"] img {
  background: transparent !important;
  mix-blend-mode: normal !important;
}

html body footer .social-link,
html body footer .social-link *,
html body .site-footer .social-link,
html body .site-footer .social-link *,
html body [class*="footer"] .social-link,
html body [class*="footer"] .social-link * {
  background: transparent !important;
  color: #13863c !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

/* Final requested footer theme. Keep this at the end so page/theme rules cannot override it. */
html body footer.site-footer.unified-footer,
html body footer.site-footer.unified-footer .footer-gallery,
html body footer.site-footer.unified-footer .footer-content,
html body footer.site-footer.unified-footer .footer-bottom {
  background: #ffffff !important;
  background-color: #ffffff !important;
  background-image: none !important;
}

html body footer.site-footer.unified-footer :where(h1, h2, h3, h4, h5, h6, p, a, span, small, strong, b, li, div) {
  color: #13863c !important;
}

html body footer.site-footer.unified-footer a[href*="wa.me"],
html body footer.site-footer.unified-footer a[class*="btn"] {
  background: #13863c !important;
  color: #ffffff !important;
}

/* Remove the auxiliary contact/social banner and the decorative footer lockup. */
html body footer.site-footer.unified-footer .footer-contact-strip,
html body footer.site-footer.unified-footer .footer-logo,
html body footer.site-footer.unified-footer .footer-logo-default,
html body footer.site-footer.unified-footer .footer-logo-snow {
  display: none !important;
}

/* Keep the email contact, but remove the extra WhatsApp bar beneath it. */
html body footer.site-footer.unified-footer .footer-contact p:nth-of-type(2) {
  display: none !important;
}

/* WhatsApp in the compact social row is an icon, not a filled action button. */
html body footer.site-footer.unified-footer .footer-socials a[href*="wa.me"] {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  color: #13863c !important;
  border: 0 !important;
  box-shadow: none !important;
}

html body footer.site-footer.unified-footer .footer-socials a[href*="wa.me"] svg {
  width: 22px;
  height: 22px;
  fill: none !important;
  stroke: #13863c !important;
  stroke-width: 1.8;
}

/* Package cards should sit on the light page surface, without the black image-frame background. */
html body .home-package-card > a:first-child,
html body .tour-package-card {
  background: #ffffff !important;
  background-color: #ffffff !important;
}

/* White copy for the dark domestic-destinations section. */
html body .domestic-categories-section .section-head h2,
html body .domestic-categories-section .section-head p,
html body .domestic-categories-section .section-head a {
  color: #ffffff !important;
}

html body .domestic-categories-section .section-head .eyebrow,
html body .domestic-categories-section .section-head a {
  color: #fec60d !important;
}

/* Keep the footer consistent when Rain Mode (monsoon-on) is enabled. */
html body.monsoon-on footer.site-footer.unified-footer,
html body.monsoon-on footer.site-footer.unified-footer::before,
html body.monsoon-on footer.site-footer.unified-footer::after,
html body.monsoon-on footer.site-footer.unified-footer .footer-gallery,
html body.monsoon-on footer.site-footer.unified-footer .footer-content,
html body.monsoon-on footer.site-footer.unified-footer .copyright {
  background: #ffffff !important;
  background-color: #ffffff !important;
  background-image: none !important;
}

html body.monsoon-on footer.site-footer.unified-footer :where(h1, h2, h3, h4, h5, h6, p, a, span, small, strong, b, li, div) {
  color: #13863c !important;
}

/* Rain Mode contrast pass: consistent light surfaces and readable green copy. */
html body.monsoon-on {
  background: #f7faf5 !important;
  color: #13863c !important;
}

html body.monsoon-on .section:not(.hero):not(.domestic-categories-section),
html body.monsoon-on .content-wrap,
html body.monsoon-on .package-tour-shell,
html body.monsoon-on .tour-package-section {
  background: #ffffff !important;
  color: #13863c !important;
}

html body.monsoon-on .section:not(.hero):not(.domestic-categories-section) :where(h1, h2, h3, h4, p, a, span, small, strong, li),
html body.monsoon-on .content-wrap :where(h1, h2, h3, h4, p, a, span, small, strong, li),
html body.monsoon-on .package-tour-shell :where(h1, h2, h3, h4, p, a, span, small, strong, li) {
  color: #13863c !important;
}

html body.monsoon-on .domestic-categories-section,
html body.monsoon-on .domestic-categories-section :where(h1, h2, h3, h4, p, a, span, small, strong, li) {
  color: #ffffff !important;
}

/* Rain Mode package cards: all card copy stays white on the dark card surface. */
html body.monsoon-on :where(.home-package-card, .tour-package-card, .package-card) :where(h1, h2, h3, h4, p, a, span, small, strong, em, del) {
  color: #ffffff !important;
}

html body.monsoon-on :where(.home-package-card, .tour-package-card, .package-card) .primary-btn,
html body.monsoon-on :where(.home-package-card, .tour-package-card, .package-card) .primary-btn * {
  color: #13863c !important;
}

/* Route icon strip: use the brand green for labels and icons. */
html body .route-icon-strip,
html body .route-icon-strip a,
html body .route-icon-strip a:hover,
html body .route-icon-strip span {
  color: #13863c !important;
}

html body .route-icon-strip svg,
html body .route-icon-strip a:hover svg {
  stroke: #13863c !important;
}

/* Google Reviews section: keep the copy readable on its dark background. */
html body .google-review-section,
html body .google-review-section h1,
html body .google-review-section h2,
html body .google-review-section h3,
html body .google-review-section p,
html body .google-review-section strong,
html body .google-review-section span,
html body .google-review-section a:not(.google-rating-pill) {
  color: #ffffff !important;
}

html body .google-review-section .eyebrow,
html body .google-review-section .google-review-card span {
  color: #fec60d !important;
}

/* Final Rain Mode readability overrides. */
html body.monsoon-on .domestic-categories-section .section-head h2 {
  color: #ffffff !important;
}

html body.monsoon-on .trust-section :where(h1, h2, h3, p, span, strong, li) {
  color: #13863c !important;
}

html body.monsoon-on .google-review-section :where(h1, h2, h3, p, strong, a, span) {
  color: #13863c !important;
}

html body.monsoon-on .google-review-section .eyebrow,
html body.monsoon-on .google-review-section .google-review-card span {
  color: #13863c !important;
}

html body.monsoon-on .journey-films-section .section-head h2,
html body.monsoon-on .journey-films-section .section-head p,
html body.monsoon-on .journey-films-section .section-head a {
  color: #ffffff !important;
}

/* Destinations page Rain Mode: stable light section surfaces and readable reviews. */
html body.monsoon-on .site-google-reviews,
html body.monsoon-on .site-google-reviews::before,
html body.monsoon-on .site-google-reviews .google-review-card {
  background: #ffffff !important;
  background-color: #ffffff !important;
  background-image: none !important;
}

html body.monsoon-on .site-google-reviews :where(h1, h2, h3, p, strong, a, span) {
  color: #13863c !important;
}

html body.monsoon-on .site-google-reviews .eyebrow,
html body.monsoon-on .site-google-reviews .google-review-card span {
  color: #13863c !important;
}

html body.monsoon-on .domestic-categories-section {
  background: #ffffff !important;
  color: #13863c !important;
}

/* Reviews contrast by mode: black copy in Rain Mode, white heading in normal mode. */
html body.monsoon-on .site-google-reviews :where(h1, h2, h3, p, strong, a, span) {
  color: #06140b !important;
}

html body:not(.monsoon-on) .site-google-reviews h2,
html body:not(.monsoon-on) .site-google-reviews h3,
html body:not(.monsoon-on) .site-google-reviews p,
html body:not(.monsoon-on) .site-google-reviews strong {
  color: #ffffff !important;
}

/* Destinations carousel Rain Mode: remove the black track behind the cards. */
html body.monsoon-on .domestic-categories-section .domestic-category-carousel {
  background: #ffffff !important;
  background-color: #ffffff !important;
  color: #13863c !important;
}

html body.monsoon-on .domestic-categories-section .section-head h2,
html body.monsoon-on .domestic-categories-section .section-head a,
html body.monsoon-on .domestic-categories-section .section-head p {
  color: #13863c !important;
}

html body.monsoon-on .domestic-categories-section .domestic-category-card {
  background: #ffffff !important;
  background-color: #ffffff !important;
}

html body.monsoon-on .domestic-categories-section .domestic-category-carousel::before,
html body.monsoon-on .domestic-categories-section .domestic-category-carousel::after {
  background: transparent !important;
  box-shadow: none !important;
}

/* Rain Mode review cards: black names, stars, and review copy. */
html body.monsoon-on .site-google-reviews .google-review-card strong,
html body.monsoon-on .site-google-reviews .google-review-card span,
html body.monsoon-on .site-google-reviews .google-review-card p {
  color: #000000 !important;
}

/* Adaptive Reviews contrast: light Rain Mode uses dark copy; normal dark mode uses white copy. */
html body.monsoon-on .site-google-reviews,
html body.monsoon-on .site-google-reviews .google-review-card {
  background: #ffffff !important;
  color: #000000 !important;
}

html body:not(.monsoon-on) .site-google-reviews,
html body:not(.monsoon-on) .site-google-reviews .google-review-card {
  background: #031f12 !important;
  color: #ffffff !important;
}

html body:not(.monsoon-on) .site-google-reviews .google-review-card :where(strong, span, p) {
  color: #ffffff !important;
}

html body.monsoon-on .site-google-reviews h2,
html body.monsoon-on .site-google-reviews .google-review-head,
html body.monsoon-on .site-google-reviews .google-review-card :where(strong, span, p) {
  color: #000000 !important;
}

html body:not(.monsoon-on) .site-google-reviews h2 {
  color: #ffffff !important;
}
