:root {
    --ink-900: #111827;
    --ink-700: #2b3a4d;
    --ink-500: #4b5e78;
    --ocean: #12436b;
    --ocean-deep: #0a2b47;
    --sun: #ff7a2f;
    --sun-deep: #d95811;
    --mint: #dbf3eb;
    --sand: #fff3e7;
    --line: #d8e4f2;
    --paper: #ffffff;
    --paper-soft: #f4f8ff;
    --radius-sm: 12px;
    --radius: 18px;
    --radius-lg: 24px;
    --shadow-sm: 0 8px 22px rgba(9, 28, 49, 0.09);
    --shadow-lg: 0 24px 54px rgba(7, 24, 44, 0.16);
    --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    box-sizing: border-box;
}

html,
body {
    overflow-x: clip;
}

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    color: var(--ink-900);
    background: linear-gradient(170deg, #eff5ff 0%, #f8fbff 52%, #f5f8fc 100%);
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, var(--sun), #ffae7f);
    z-index: 120;
    box-shadow: 0 4px 10px rgba(255, 122, 47, 0.4);
}

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

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

.bg-orb {
    position: fixed;
    border-radius: 999px;
    filter: blur(52px);
    pointer-events: none;
    z-index: -2;
    opacity: 0.65;
}

.orb-a {
    width: 340px;
    height: 340px;
    background: #d5f5e4;
    top: -80px;
    left: -80px;
    animation: driftA 14s ease-in-out infinite alternate;
}

.orb-b {
    width: 380px;
    height: 380px;
    background: #ffd7bd;
    right: -130px;
    top: 180px;
    animation: driftB 18s ease-in-out infinite alternate;
}

.bg-grid {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -3;
    background-image: radial-gradient(circle, rgba(18, 67, 107, 0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), transparent 55%);
}

@keyframes driftA {
    from {
        transform: translate(0, 0);
    }
    to {
        transform: translate(38px, 42px);
    }
}

@keyframes driftB {
    from {
        transform: translate(0, 0);
    }
    to {
        transform: translate(-28px, -38px);
    }
}

.utility-bar {
    background: linear-gradient(120deg, #0a2b47 0%, #15436a 100%);
    color: #d9e8f8;
    font-size: 0.84rem;
}

.utility-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 8px 0;
}

.utility-links,
.utility-contact {
    display: flex;
    align-items: center;
    gap: 14px;
}

.utility-bar a {
    opacity: 0.92;
}

.utility-bar a:hover {
    opacity: 1;
    color: #fff;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 90;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
}

.brand {
    display: flex;
    gap: 11px;
    align-items: center;
    flex-shrink: 0;
}

.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--sun) 0%, #ff9f5f 100%);
    box-shadow: 0 10px 20px rgba(255, 122, 47, 0.32);
}

.brand-logo {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid #d8e3f2;
    background: #fff;
}

.brand strong {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 1.06rem;
    letter-spacing: 0.02em;
}

.brand small {
    color: var(--ink-500);
    font-size: 0.78rem;
}

.menu-toggle {
    display: none;
    border: 1px solid #c6d7eb;
    border-radius: 10px;
    background: #fff;
    color: var(--ocean-deep);
    font-weight: 700;
    padding: 8px 12px;
}

.mobile-nav-tools {
    display: none;
    align-items: center;
    gap: 6px;
}

.mobile-icon-btn {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid #c6d7eb;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ocean-deep);
}

.mobile-icon-btn svg {
    width: 15px;
    height: 15px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nav-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
}

nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

nav a {
    font-weight: 700;
    color: #2f4c68;
    border-bottom: 2px solid transparent;
    padding-bottom: 4px;
}

nav a.active,
nav a:hover {
    color: var(--ocean);
    border-bottom-color: var(--sun);
}

.btn {
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.22s var(--ease-soft), box-shadow 0.22s var(--ease-soft), background 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn.primary {
    background: linear-gradient(120deg, var(--sun) 0%, #ff965d 100%);
    color: #fff;
    box-shadow: 0 12px 22px rgba(255, 122, 47, 0.25);
}

.btn.primary:hover {
    background: linear-gradient(120deg, var(--sun-deep) 0%, #ee7f43 100%);
}

.btn.ghost {
    border-color: #c8d8eb;
    background: #fff;
    color: var(--ocean);
}

.btn.nav-cta {
    background: var(--ocean-deep);
    color: #fff;
}

.hero-home {
    position: relative;
    padding: 72px 0 58px;
    overflow: hidden;
    background: url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?auto=format&fit=crop&w=2200&q=80') center/cover no-repeat;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
    isolation: isolate;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(7, 24, 44, 0.9) 0%, rgba(9, 39, 68, 0.64) 50%, rgba(16, 57, 95, 0.44) 100%);
    z-index: 0;
}

.hero-magic-layer {
    position: absolute;
    inset: -6% -4%;
    z-index: 1;
    pointer-events: none;
    transition: transform 0.35s var(--ease-soft);
    will-change: transform;
}

.magic-node {
    position: absolute;
    display: block;
    border-radius: 50%;
    filter: blur(2px);
    opacity: 0.72;
}

.magic-node::after {
    content: '';
    position: absolute;
    inset: 14%;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.44);
    opacity: 0.65;
}

.magic-node-a {
    width: 280px;
    height: 280px;
    left: -72px;
    top: -28px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 201, 157, 0.64) 0%, rgba(255, 137, 61, 0.32) 38%, rgba(255, 137, 61, 0) 72%);
    animation: heroNodeDriftA 16s ease-in-out infinite alternate;
}

.magic-node-b {
    width: 240px;
    height: 240px;
    right: 18%;
    top: 14%;
    background: radial-gradient(circle at 42% 42%, rgba(106, 180, 255, 0.52) 0%, rgba(48, 132, 224, 0.22) 46%, rgba(48, 132, 224, 0) 72%);
    animation: heroNodeDriftB 18s ease-in-out infinite alternate;
}

.magic-node-c {
    width: 340px;
    height: 340px;
    right: -130px;
    bottom: -122px;
    background: radial-gradient(circle at 38% 30%, rgba(118, 196, 255, 0.44) 0%, rgba(56, 143, 234, 0.18) 44%, rgba(56, 143, 234, 0) 72%);
    animation: heroNodeDriftC 20s ease-in-out infinite alternate;
}

@keyframes heroNodeDriftA {
    from {
        transform: translate3d(0, 0, 0) scale(0.97);
        opacity: 0.6;
    }
    to {
        transform: translate3d(28px, 22px, 0) scale(1.08);
        opacity: 0.84;
    }
}

@keyframes heroNodeDriftB {
    from {
        transform: translate3d(0, 0, 0) scale(0.94);
    }
    to {
        transform: translate3d(-26px, 18px, 0) scale(1.04);
    }
}

@keyframes heroNodeDriftC {
    from {
        transform: translate3d(0, 0, 0) scale(0.98);
    }
    to {
        transform: translate3d(-20px, -28px, 0) scale(1.06);
    }
}

.hero-home-wrap {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.32fr 0.88fr;
    gap: 26px;
    align-items: start;
}

.hero-copy {
    color: #f5f9ff;
    max-width: 760px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 7px 13px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.eyebrow.dark {
    background: #e7f0fb;
    border-color: #c9d8eb;
    color: #284f76;
}

h1,
h2,
h3,
h4,
h5 {
    margin-top: 0;
    font-family: 'Sora', sans-serif;
    letter-spacing: 0.01em;
}

h1 {
    margin: 13px 0;
    font-size: clamp(2.1rem, 5vw, 3.35rem);
    line-height: 1.12;
}

h2 {
    font-size: clamp(1.45rem, 3vw, 2.2rem);
}

.lead {
    margin: 0;
    color: #d7e8fb;
    line-height: 1.8;
    max-width: 710px;
}

.hero-live-strip {
    margin-top: 16px;
    max-width: 680px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    transition: transform 0.3s var(--ease-soft);
    transform-style: preserve-3d;
}

.hero-live-strip article {
    position: relative;
    padding: 11px 12px;
    border-radius: 14px;
    background: linear-gradient(142deg, rgba(255, 255, 255, 0.22) 0%, rgba(187, 221, 255, 0.12) 100%);
    border: 1px solid rgba(255, 255, 255, 0.36);
    box-shadow: 0 14px 28px rgba(3, 19, 34, 0.18);
    backdrop-filter: blur(8px);
    overflow: hidden;
    animation: heroPulseFloat 8.5s ease-in-out infinite;
}

.hero-live-strip article:nth-child(2) {
    animation-delay: 0.18s;
}

.hero-live-strip article:nth-child(3) {
    animation-delay: 0.36s;
}

.hero-live-strip article::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.02) 64%);
    opacity: 0.8;
}

.hero-live-strip article > * {
    position: relative;
    z-index: 1;
}

.hero-live-strip small {
    display: block;
    font-size: 0.66rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 800;
    color: #dcecff;
}

.hero-live-strip strong {
    display: block;
    margin-top: 3px;
    font-family: 'Sora', sans-serif;
    font-size: 0.93rem;
    color: #fff;
}

@keyframes heroPulseFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

.lead.dark {
    color: var(--ink-700);
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.hero-tags span {
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.33);
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.78rem;
}

.hero-actions {
    margin-top: 18px;
    display: flex;
    gap: 9px;
}

.hero-ref-mobile {
    display: none;
}

.hero-ref-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.hero-ref-feature-card,
.hero-ref-destination-card {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    min-height: 116px;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255, 218, 167, 0.4);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.26);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 9px;
}

.hero-ref-feature-card::before,
.hero-ref-destination-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(9, 18, 32, 0.04) 0%, rgba(9, 18, 32, 0.84) 86%);
}

.hero-ref-feature-card > *,
.hero-ref-destination-card > * {
    position: relative;
    z-index: 1;
}

.hero-ref-feature-card strong,
.hero-ref-destination-card strong {
    font-family: 'Sora', sans-serif;
    font-size: 0.78rem;
    color: #fff0d7;
    line-height: 1.26;
}

.hero-ref-feature-card small {
    margin-top: 2px;
    color: #f6d5a6;
    font-size: 0.65rem;
}

.hero-ref-destination-wrap {
    margin-top: 8px;
}

.hero-ref-destination-head {
    text-align: center;
    margin-bottom: 6px;
}

.hero-ref-destination-head span {
    display: block;
    font-family: 'Sora', sans-serif;
    color: #f4debe;
    font-size: 0.95rem;
}

.hero-ref-destination-head small {
    color: #e6cb9f;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-ref-destination-strip {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.hero-ref-destination-strip::-webkit-scrollbar {
    display: none;
}

.hero-ref-destination-card {
    min-height: 100px;
    min-width: 128px;
    scroll-snap-align: start;
}

.hero-ref-destination-card.is-main {
    min-width: 172px;
}

.hero-ref-destination-card span {
    margin-top: 6px;
    width: fit-content;
    border-radius: 999px;
    padding: 5px 9px;
    font-size: 0.62rem;
    font-weight: 700;
    color: #ffe8ca;
    border: 1px solid rgba(255, 209, 155, 0.44);
    background: rgba(11, 21, 36, 0.58);
}

.hero-slider-block {
    margin-top: 14px;
    max-width: 760px;
}

.hero-slider-kicker {
    margin: 0 0 8px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 800;
    color: #cfe0f4;
}

.trust-strip {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.trust-strip span {
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    padding: 7px 10px;
    font-size: 0.78rem;
}

.hero-metrics {
    margin-top: 17px;
    max-width: 620px;
    display: grid;
    gap: 9px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-metrics article {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 12px;
    padding: 10px;
    backdrop-filter: blur(4px);
    transition: transform 0.25s var(--ease-soft), background 0.25s ease;
}

.hero-metrics article:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.18);
}

.hero-metrics strong {
    display: block;
}

.hero-metrics span {
    font-size: 0.75rem;
    color: #c3d8f1;
}

.hero-side-stack {
    display: grid;
    gap: 12px;
}

.quote-card,
.postcard-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid #deebf8;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(7px);
}

.quote-card {
    padding: 20px;
}

.quote-card h3 {
    margin-bottom: 7px;
}

.quote-card p {
    margin-top: 0;
    color: var(--ink-500);
}

.hero-demand-meter {
    margin: 4px 0 10px;
    display: grid;
    gap: 5px;
    padding: 8px 10px;
    border-radius: 12px;
    background: linear-gradient(145deg, #eef6ff 0%, #f9fcff 100%);
    border: 1px solid #d2e2f3;
}

.hero-demand-meter span {
    position: relative;
    display: block;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 122, 47, 0.26) 0%, rgba(18, 67, 107, 0.15) 100%);
    overflow: hidden;
}

.hero-demand-meter span::after {
    content: '';
    position: absolute;
    top: 0;
    left: -35%;
    width: 35%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(255, 122, 47, 0) 0%, rgba(255, 122, 47, 0.95) 50%, rgba(255, 122, 47, 0) 100%);
    animation: meterSweep 2.7s linear infinite;
}

.hero-demand-meter small {
    font-size: 0.69rem;
    color: #32597f;
    font-weight: 700;
    line-height: 1.35;
}

@keyframes meterSweep {
    from {
        left: -35%;
    }
    to {
        left: 100%;
    }
}

.quote-form {
    margin-top: 8px;
    display: grid;
    gap: 9px;
}

.quote-form label {
    font-size: 0.81rem;
    color: #335678;
    font-weight: 700;
}

.quote-form .full {
    width: 100%;
}

.postcard-card {
    padding: 16px;
    background: linear-gradient(145deg, #fff 0%, #f6f9ff 100%);
    border-radius: 18px;
}

.postcard-card small {
    color: #4c6b8c;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.postcard-card h4 {
    margin: 7px 0 8px;
    font-size: 1.1rem;
}

.postcard-card p {
    margin: 0;
    color: var(--ink-500);
    line-height: 1.6;
}

.section {
    padding: 52px 0;
}

.section.soft {
    background: linear-gradient(180deg, #f8fbff 0%, #f0f6ff 100%);
    border-top: 1px solid #e4ecf8;
    border-bottom: 1px solid #e4ecf8;
}

.section.alt {
    background: linear-gradient(160deg, #f2f7ff 0%, #ebf3ff 100%);
    border-top: 1px solid #e2ebf8;
    border-bottom: 1px solid #e2ebf8;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 10px;
    margin-bottom: 17px;
}

.section-head p {
    margin: 0;
    color: var(--ink-500);
}

.section-head a {
    color: var(--ocean);
    font-weight: 700;
}

.home-slider {
    position: relative;
}

.home-slider-viewport {
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid #d3e3f6;
    box-shadow: var(--shadow-lg);
}

.home-slider-track {
    display: flex;
    transition: transform 0.6s var(--ease-soft);
}

.home-slide {
    min-width: 100%;
    position: relative;
    min-height: 360px;
}

.home-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(130deg, rgba(7, 24, 44, 0.2) 0%, rgba(7, 24, 44, 0.88) 75%);
}

.home-slide-content {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    color: #fff;
    max-width: 580px;
}

.home-slide-content h3 {
    margin: 8px 0 6px;
    font-size: clamp(1.2rem, 2.8vw, 1.8rem);
}

.home-slide-content p {
    margin: 0;
    color: #dce9f7;
    line-height: 1.6;
}

.home-slide-meta {
    margin: 10px 0;
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 0.9rem;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 0.78rem;
    border: 1px solid rgba(255, 255, 255, 0.65);
    background: rgba(9, 34, 58, 0.52);
    color: #fff;
}

.slider-nav.prev {
    left: 12px;
}

.slider-nav.next {
    right: 12px;
}

.slider-dots {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.slider-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    border: 1px solid #b8cae2;
    background: #edf4ff;
}

.slider-dot.active {
    background: var(--sun);
    border-color: color-mix(in srgb, var(--sun) 70%, #fff);
}

.hero-cinematic-slider .home-slider-viewport {
    border-color: rgba(206, 224, 245, 0.48);
    box-shadow: 0 18px 42px rgba(7, 24, 44, 0.4);
    background: #0b243d;
    height: var(--hero-cinematic-height, 238px);
}

.hero-cinematic-slider {
    --hero-cinematic-height: 238px;
}

.hero-cinematic-slider .home-slide {
    height: var(--hero-cinematic-height, 238px);
    min-height: 0;
    overflow: hidden;
}

.hero-cinematic-slider .home-slide img {
    display: block;
    width: 100%;
    height: 100%;
    filter: saturate(1.08) contrast(1.04);
}

.hero-cinematic-slider .home-slide-overlay {
    background: linear-gradient(138deg, rgba(7, 24, 44, 0.24) 0%, rgba(7, 24, 44, 0.68) 52%, rgba(7, 24, 44, 0.92) 100%);
}

.hero-cinematic-slider .home-slide-content {
    left: 16px;
    right: 16px;
    bottom: 14px;
    max-width: 520px;
}

.hero-cinematic-slider .home-slide-content h3 {
    margin: 6px 0 5px;
    font-size: clamp(1rem, 2.1vw, 1.35rem);
}

.hero-cinematic-slider .home-slide-content p {
    font-size: 0.84rem;
    line-height: 1.45;
    max-height: 2.9em;
    overflow: hidden;
}

.hero-cinematic-slider .home-slide-meta {
    margin: 7px 0 8px;
    font-size: 0.8rem;
    gap: 9px;
}

.hero-cinematic-slider .home-slide-content .btn {
    padding: 7px 11px;
    font-size: 0.73rem;
}

.hero-cinematic-slider .slider-nav {
    top: auto;
    bottom: 9px;
    transform: none;
    padding: 5px 8px;
    font-size: 0.69rem;
}

.hero-cinematic-slider .slider-nav.prev {
    left: 8px;
}

.hero-cinematic-slider .slider-nav.next {
    right: 8px;
}

.hero-cinematic-slider .slider-dots {
    position: absolute;
    right: 10px;
    bottom: 11px;
    margin-top: 0;
    z-index: 3;
    justify-content: flex-end;
}

.hero-cinematic-slider .slider-dot {
    background: rgba(239, 246, 255, 0.55);
    border-color: rgba(255, 255, 255, 0.55);
}

.journey-lab {
    position: relative;
}

.journey-lab::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 20% 20%, rgba(255, 122, 47, 0.1), transparent 46%);
}

.journey-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
    gap: 14px;
}

.journey-card {
    position: relative;
    min-height: 260px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    color: #fff;
    isolation: isolate;
}

.journey-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.75s var(--ease-soft);
}

.journey-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(165deg, rgba(8, 24, 42, 0.2) 0%, rgba(7, 24, 43, 0.92) 85%);
    z-index: -1;
}

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

.journey-card-content {
    position: relative;
    z-index: 2;
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 8px;
    min-height: 100%;
}

.journey-card-content h3 {
    margin: 0;
    font-size: 1.12rem;
}

.journey-card-content p {
    margin: 0;
    color: rgba(236, 245, 255, 0.92);
    line-height: 1.55;
}

.journey-meta {
    margin-top: 4px;
    display: flex;
    justify-content: space-between;
    gap: 8px;
    font-size: 0.86rem;
    color: #ddedff;
}

.journey-card-content .text-link {
    color: #fff;
}

.journey-card-1 {
    min-height: 350px;
}

.section-route {
    background: linear-gradient(160deg, #eaf2ff 0%, #f8fbff 55%, #f6faff 100%);
    border-top: 1px solid #dde8f8;
    border-bottom: 1px solid #dde8f8;
}

.plan-track {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    position: relative;
}

.plan-track::before {
    content: '';
    position: absolute;
    left: 5%;
    right: 5%;
    top: 34px;
    height: 2px;
    background: linear-gradient(90deg, rgba(18, 67, 107, 0.35), rgba(255, 122, 47, 0.4), rgba(18, 67, 107, 0.35));
    animation: routePulse 4.5s ease-in-out infinite;
}

.plan-step {
    position: relative;
    background: #fff;
    border: 1px solid #d3e2f5;
    border-radius: 18px;
    padding: 14px;
    box-shadow: var(--shadow-sm);
    z-index: 1;
}

.plan-meta {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #4f6f93;
    font-weight: 800;
}

.plan-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: linear-gradient(125deg, var(--ocean) 0%, #2d6da1 100%);
    color: #fff;
    font-weight: 800;
    font-size: 0.78rem;
}

.plan-step h3 {
    margin: 10px 0 7px;
}

.plan-step p {
    margin: 0;
    color: var(--ink-500);
    line-height: 1.65;
}

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

.why-grid article {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.why-grid article::after {
    content: '';
    position: absolute;
    right: -18px;
    top: -18px;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(18, 67, 107, 0.18), rgba(18, 67, 107, 0));
}

.why-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: linear-gradient(130deg, var(--ocean) 0%, #2f6ca1 100%);
    color: #fff;
    font-weight: 800;
    font-size: 0.72rem;
}

.why-grid h3 {
    margin-bottom: 7px;
    font-size: 1.07rem;
}

.why-grid p {
    margin: 0;
    color: var(--ink-500);
    line-height: 1.66;
}

.why-grid small {
    display: block;
    margin-top: 8px;
    color: #35597e;
    font-size: 0.76rem;
    font-weight: 700;
}

.editorial-strip {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.editorial-strip span {
    background: var(--paper);
    border: 1px dashed #c6d8ed;
    border-radius: 999px;
    color: #2e5278;
    font-size: 0.8rem;
    padding: 7px 11px;
}

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

.theme-card {
    background: linear-gradient(130deg, #fff 0%, #f7fbff 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 17px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.theme-card::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(130deg, rgba(255, 122, 47, 0.2), rgba(255, 122, 47, 0));
    right: -20px;
    top: -20px;
}

.theme-card h3 {
    margin-bottom: 6px;
}

.theme-card p {
    margin: 0;
    color: var(--ink-500);
    line-height: 1.6;
}

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

.destination-mosaic {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 11px;
}

.mosaic-card {
    grid-column: span 3;
    min-height: 150px;
    border-radius: 16px;
    border: 1px solid #d2e1f3;
    background: linear-gradient(150deg, #fff 0%, #f6fbff 100%);
    box-shadow: var(--shadow-sm);
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s var(--ease-soft), box-shadow 0.35s var(--ease-soft), border-color 0.3s ease;
}

.mosaic-card::before {
    content: '';
    position: absolute;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    right: -30px;
    top: -30px;
    opacity: 0.5;
    background: radial-gradient(circle, rgba(18, 67, 107, 0.28), rgba(18, 67, 107, 0));
}

.mosaic-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(8, 30, 54, 0.16);
    border-color: #bdd4ee;
}

.mosaic-kicker {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #4b6e92;
    font-weight: 800;
}

.mosaic-card strong {
    color: #173f65;
    font-size: 1.03rem;
}

.mosaic-meta {
    color: #4a6788;
    font-size: 0.82rem;
    line-height: 1.4;
}

.mosaic-card-1 {
    background: linear-gradient(155deg, #fff 0%, #edf6ff 100%);
}

.mosaic-card-2 {
    background: linear-gradient(155deg, #fff 0%, #f4f5ff 100%);
}

.mosaic-card-3 {
    background: linear-gradient(155deg, #fff 0%, #fff5eb 100%);
}

.mosaic-card-4 {
    background: linear-gradient(155deg, #fff 0%, #ecfff8 100%);
}

.destination-mosaic .mosaic-card:nth-child(5n + 1) {
    grid-column: span 4;
}

.destination-mosaic .mosaic-card:nth-child(5n + 3) {
    grid-column: span 5;
}

.destination-mosaic .mosaic-card:nth-child(5n + 4) {
    grid-column: span 3;
}

.destination-chip {
    background: #fff;
    border: 1px solid #d2e1f3;
    border-radius: 13px;
    padding: 12px;
    box-shadow: var(--shadow-sm);
}

.destination-chip strong {
    color: #1c4872;
}

.destination-chip span {
    display: block;
    margin-top: 4px;
    color: var(--ink-500);
    font-size: 0.84rem;
}

.page-hero {
    margin-bottom: 16px;
}

.page-hero p {
    margin: 0;
    color: var(--ink-500);
    max-width: 760px;
    line-height: 1.72;
}

.page-hero h1 {
    margin: 10px 0;
    font-size: clamp(1.9rem, 4vw, 2.78rem);
}

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

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transform: translateY(0);
    transition: transform 0.35s var(--ease-soft), box-shadow 0.35s var(--ease-soft), border-color 0.3s ease;
    position: relative;
    transform-style: preserve-3d;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 42px rgba(10, 34, 59, 0.18);
    border-color: #c7d8ec;
}

.card::before {
    content: '';
    position: absolute;
    left: -35%;
    top: -70%;
    width: 70%;
    height: 220%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0));
    transform: rotate(18deg);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.card:hover::before {
    opacity: 1;
    animation: cardSweep 0.9s ease forwards;
}

.card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    transition: transform 0.8s var(--ease-soft), filter 0.6s ease;
}

.card:hover img {
    transform: scale(1.08);
    filter: saturate(1.08);
}

.card-body {
    padding: 15px;
    position: relative;
    z-index: 1;
}

.card-body h3 {
    margin: 8px 0 7px;
    font-size: 1.05rem;
    line-height: 1.45;
}

.card-body p {
    margin-top: 0;
    color: var(--ink-500);
    line-height: 1.67;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ffd3bc;
    background: var(--sand);
    color: #a74714;
    border-radius: 999px;
    padding: 4px 9px;
    font-size: 0.72rem;
    font-weight: 700;
}

.inclusion-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.inclusion-row span {
    background: #f2f7ff;
    border: 1px solid #d7e5f6;
    border-radius: 999px;
    padding: 5px 8px;
    color: #37587b;
    font-size: 0.76rem;
}

.meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 9px;
    color: #335575;
    font-size: 0.88rem;
}

.meta-row.strong {
    font-weight: 700;
}

.text-link {
    color: var(--ocean);
    font-weight: 700;
}

.card-actions {
    margin-top: 12px;
    display: flex;
    gap: 7px;
}

.card-actions .btn {
    flex: 1;
}

.card-foot {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #d6e3f3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    color: #4a6788;
    font-size: 0.8rem;
    font-weight: 700;
}

.card-foot .arrow {
    color: var(--ocean);
}

.package-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.package-grid .card:first-child {
    grid-column: span 1;
    display: block;
}

.deal-card {
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(10, 34, 59, 0.12);
    border: 1px solid #d7e5f5;
    overflow: hidden;
}

.deal-card::before {
    display: none;
}

.deal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 34px rgba(10, 34, 59, 0.18);
}

.deal-card .deal-media {
    display: block;
    position: relative;
    color: #fff;
}

.deal-card .deal-media img {
    height: 190px;
    transition: transform 0.55s var(--ease-soft);
}

.deal-card .deal-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 20, 36, 0.02) 0%, rgba(6, 20, 36, 0.76) 58%, rgba(6, 20, 36, 0.92) 100%);
}

.deal-card:hover .deal-media img {
    transform: scale(1.06);
}

.deal-badge {
    position: absolute;
    z-index: 2;
    left: 10px;
    top: 10px;
}

.deal-discount {
    position: absolute;
    z-index: 2;
    right: 10px;
    top: 10px;
    border-radius: 999px;
    background: #e64747;
    color: #fff;
    font-size: 0.66rem;
    font-weight: 800;
    padding: 5px 8px;
    border: 1px solid rgba(255, 255, 255, 0.36);
}

.deal-media-overlay {
    position: absolute;
    z-index: 2;
    left: 10px;
    right: 10px;
    bottom: 10px;
}

.deal-media-overlay h3 {
    margin: 0 0 4px;
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.deal-media-overlay p {
    margin: 0;
    color: #dce9f8;
    font-size: 0.76rem;
    line-height: 1.35;
}

.deal-body {
    padding: 10px 11px 12px;
}

.deal-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-bottom: 9px;
}

.deal-facts span {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 6px;
    border: 1px solid #d8e4f2;
    border-radius: 8px;
    background: #f7fbff;
    color: #325575;
    font-size: 0.66rem;
    font-weight: 700;
    line-height: 1.25;
}

.deal-facts b {
    width: 17px;
    height: 17px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e9f3ff;
    color: #1b4d78;
    font-size: 0.6rem;
    border: 1px solid #c8dbf2;
    flex-shrink: 0;
}

.deal-pricing {
    border-top: 1px dashed #d9e6f5;
    padding-top: 9px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.deal-pricing small {
    display: block;
    color: #567696;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 700;
}

.deal-pricing strong {
    display: block;
    color: #163f64;
    font-size: 1rem;
    font-weight: 800;
}

.deal-pricing .deal-secondary-price {
    margin-top: 2px;
    color: #4a6788;
    font-size: 0.74rem;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 700;
}

.deal-btn {
    padding: 7px 11px;
    font-size: 0.72rem;
    white-space: nowrap;
}

.blog-grid .card:nth-child(2n) {
    transform: translateY(10px);
}

.quick-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
}

.quick-links a {
    border: 1px solid #c9d9ed;
    border-radius: 999px;
    background: #fff;
    padding: 8px 12px;
    font-weight: 700;
}

.filter-panel {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
    padding: 14px;
    align-items: end;
    margin-bottom: 12px;
}

.filter-panel label {
    display: block;
    margin-bottom: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #315374;
}

.filter-actions {
    display: flex;
    gap: 7px;
}

.result-count {
    margin: 0 0 12px;
    color: var(--ink-500);
    font-weight: 700;
}

.rate-note {
    margin: -6px 0 12px;
    color: #5a7592;
    font-size: 0.78rem;
    font-weight: 700;
}

.content-grid,
.page-wrap {
    display: grid;
    grid-template-columns: 1.45fr 0.9fr;
    gap: 18px;
}

.article-card,
.inquiry-box {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 21px;
}

.inquiry-box {
    position: sticky;
    top: 92px;
    align-self: start;
}

.crumbs {
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    font-size: 0.81rem;
    color: #5f7e9d;
}

.crumbs a {
    color: var(--ocean);
    font-weight: 700;
}

.detail-image {
    width: 100%;
    height: 325px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 12px;
}

.meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 8px 0 14px;
    color: var(--ink-500);
    font-size: 0.9rem;
}

.rich-text {
    line-height: 1.88;
    color: var(--ink-700);
    white-space: pre-line;
}

.related-wrap {
    margin-top: 22px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

.content-grid-mini {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.content-grid-mini h4 {
    margin-bottom: 8px;
}

.content-grid-mini ul {
    margin: 0;
    padding-left: 18px;
    color: var(--ink-700);
    line-height: 1.7;
}

.related-links {
    display: grid;
    gap: 8px;
}

.related-links a {
    color: var(--ocean);
    font-weight: 700;
}

.inquiry-box form {
    display: grid;
    gap: 8px;
}

.contact-detail-list {
    border: 1px dashed #d3e1f1;
    border-radius: 12px;
    padding: 10px 11px;
    margin-bottom: 10px;
    background: #f8fbff;
    display: grid;
    gap: 8px;
}

.contact-detail-item strong {
    display: block;
    color: #2c5378;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-detail-item a,
.contact-detail-item span {
    color: #1f4469;
    font-weight: 700;
    line-height: 1.5;
}

.faq-list {
    display: grid;
    gap: 10px;
}

.faq-list details {
    border: 1px solid #d6e2f3;
    border-radius: 12px;
    padding: 10px 12px;
    background: #f8fbff;
}

.faq-list summary {
    cursor: pointer;
    font-weight: 700;
    color: #21496f;
}

.faq-list p {
    margin: 10px 0 2px;
    color: var(--ink-700);
    line-height: 1.7;
}

label {
    color: #315375;
    font-size: 0.84rem;
    font-weight: 700;
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid #bdd0e6;
    border-radius: var(--radius-sm);
    padding: 10px 11px;
    font: inherit;
    background: #fff;
}

input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #d6e8ff;
    border-color: #6d9fd1;
}

textarea {
    resize: vertical;
}

.site-footer {
    margin-top: 34px;
    background: linear-gradient(145deg, #092640 0%, #123a5e 100%);
    color: #d3e3f5;
    padding: 36px 0 72px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr;
    gap: 18px;
}

.footer-grid p {
    color: #b6cce3;
    line-height: 1.7;
}

.footer-grid a {
    display: block;
    margin-bottom: 8px;
}

.flash {
    width: min(1180px, 92%);
    margin: 12px auto 0;
    border-radius: 12px;
    padding: 12px 13px;
    font-weight: 700;
}

.flash.success {
    background: var(--mint);
    color: #0d6443;
}

.flash.error {
    background: #ffe6e2;
    color: #932d28;
}

.mobile-action-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 95;
    display: none;
    background: #fff;
    border-top: 1px solid #cfdef0;
    box-shadow: 0 -8px 20px rgba(10, 34, 58, 0.14);
}

.mobile-action-bar a {
    flex: 1;
    text-align: center;
    padding: 13px 10px;
    font-weight: 700;
}

.mobile-action-bar a:first-child {
    border-right: 1px solid #cfdef0;
    color: var(--ocean);
}

.mobile-action-bar a:last-child {
    background: var(--sun);
    color: #fff;
}

.customer-auth-section {
    padding-top: 56px;
}

.customer-auth-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 18px;
    align-items: start;
}

.customer-auth-promo,
.customer-auth-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 22px;
}

.customer-auth-promo {
    background: linear-gradient(160deg, #f2f8ff 0%, #ffffff 100%);
}

.customer-auth-promo h1 {
    margin-bottom: 10px;
    font-size: clamp(1.8rem, 3.4vw, 2.5rem);
}

.customer-auth-promo p {
    margin-top: 0;
    color: var(--ink-500);
    line-height: 1.75;
}

.customer-auth-promo ul {
    margin: 0 0 14px;
    padding-left: 18px;
    color: var(--ink-700);
    line-height: 1.8;
}

.customer-auth-card h2 {
    margin-bottom: 6px;
}

.customer-auth-card p {
    margin-top: 0;
    color: var(--ink-500);
}

.customer-auth-form {
    display: grid;
    gap: 8px;
}

.customer-auth-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.customer-dashboard-section {
    padding-top: 40px;
}

.customer-dash-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
}

.customer-dash-head p {
    margin: 0;
    color: var(--ink-500);
}

.customer-dash-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.customer-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 14px;
}

.customer-stat-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px;
    box-shadow: var(--shadow-sm);
}

.customer-stat-card h3 {
    margin: 0;
    color: var(--ink-500);
    font-size: 0.86rem;
}

.customer-stat-card p {
    margin: 8px 0 0;
    font-size: 1.65rem;
    font-weight: 800;
}

.customer-dashboard-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr;
    gap: 14px;
    margin-bottom: 16px;
}

.customer-profile-box {
    position: static;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s var(--ease-soft), transform 0.7s var(--ease-soft);
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

@keyframes cardSweep {
    from {
        transform: translateX(-12%) rotate(18deg);
    }
    to {
        transform: translateX(240%) rotate(18deg);
    }
}

@keyframes routePulse {
    0%,
    100% {
        opacity: 0.45;
        transform: scaleX(1);
    }
    50% {
        opacity: 0.85;
        transform: scaleX(1.04);
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

@media (max-width: 1320px) {
    .package-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1140px) {
    .package-grid .card:first-child {
        grid-column: span 1;
        display: block;
    }

    .card-grid,
    .theme-grid,
    .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

    .journey-card-1 {
        grid-column: span 2;
    }

    .plan-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .plan-track::before {
        display: none;
    }

    .destination-mosaic .mosaic-card,
    .destination-mosaic .mosaic-card:nth-child(5n + 1),
    .destination-mosaic .mosaic-card:nth-child(5n + 3),
    .destination-mosaic .mosaic-card:nth-child(5n + 4) {
        grid-column: span 6;
    }

    .filter-panel {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 920px) {
    .utility-bar {
        display: none;
    }

    body {
        font-size: 15px;
    }

    .menu-toggle {
        display: inline-flex;
        padding: 7px 10px;
        font-size: 0.82rem;
    }

    .mobile-nav-tools {
        display: inline-flex;
    }

    .mobile-icon-btn,
    .menu-toggle {
        width: 34px;
        height: 34px;
        padding: 0;
        border-radius: 999px;
        justify-content: center;
    }

    .menu-toggle {
        font-size: 0.66rem;
    }

    .nav-wrap {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        background: #fff;
        border-bottom: 1px solid var(--line);
        box-shadow: 0 16px 34px rgba(10, 34, 57, 0.13);
        padding: 12px 4%;
    }

    .header-inner {
        padding: 10px 0;
    }

    .brand {
        gap: 8px;
    }

    .brand-logo,
    .brand-mark {
        width: 40px;
        height: 40px;
        border-radius: 11px;
    }

    .brand strong {
        font-size: 0.95rem;
    }

    .brand small {
        font-size: 0.72rem;
    }

    .nav-wrap.open {
        display: flex;
    }

    nav {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 8px;
    }

    nav a {
        border-bottom: none;
        padding: 7px 0;
        width: 100%;
    }

    .nav-cta {
        width: 100%;
    }

    .hero-home {
        clip-path: none;
        padding: 28px 0 24px;
    }

    .home-slide {
        min-height: 280px;
    }

    .home-slide-content {
        left: 14px;
        right: 14px;
        bottom: 14px;
    }

    .slider-nav {
        padding: 7px 9px;
        font-size: 0.72rem;
    }

    .hero-slider-block {
        margin-top: 11px;
    }

    .hero-cinematic-slider {
        --hero-cinematic-height: 198px;
    }

    .hero-cinematic-slider .home-slide {
        height: var(--hero-cinematic-height, 198px);
    }

    .hero-cinematic-slider .home-slide-content {
        left: 12px;
        right: 12px;
        bottom: 11px;
    }

    .hero-cinematic-slider .home-slide-content h3 {
        font-size: 1rem;
    }

    .hero-cinematic-slider .home-slide-content p {
        font-size: 0.8rem;
    }

    .hero-home-wrap,
    .content-grid,
    .page-wrap,
    .destination-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .customer-auth-grid,
    .customer-dashboard-grid,
    .customer-stats-grid {
        grid-template-columns: 1fr;
    }

    .journey-grid,
    .destination-mosaic {
        grid-template-columns: 1fr;
    }

    .journey-card-1 {
        grid-column: span 1;
        min-height: 280px;
    }

    .destination-mosaic .mosaic-card,
    .destination-mosaic .mosaic-card:nth-child(5n + 1),
    .destination-mosaic .mosaic-card:nth-child(5n + 3),
    .destination-mosaic .mosaic-card:nth-child(5n + 4) {
        grid-column: span 1;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
        max-width: 100%;
        margin-top: 8px;
    }

    .hero-metrics article {
        padding: 8px;
    }

    .hero-copy h1 {
        font-size: clamp(1.55rem, 8.4vw, 2rem);
        margin: 8px 0 7px;
    }

    .lead {
        line-height: 1.55;
        font-size: 0.9rem;
    }

    .hero-tags,
    .trust-strip {
        margin-top: 11px;
        gap: 6px;
    }

    .hero-tags span,
    .trust-strip span {
        padding: 6px 9px;
        font-size: 0.72rem;
    }

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

    .hero-actions .btn {
        padding: 9px 13px;
        font-size: 0.8rem;
    }

    .quote-card {
        padding: 12px;
        border-radius: 16px;
    }

    .quote-card h3 {
        margin: 0 0 4px;
        font-size: 1rem;
    }

    .quote-card p {
        margin-bottom: 6px;
        font-size: 0.86rem;
    }

    .quote-form {
        gap: 6px;
        margin-top: 4px;
    }

    .quote-form label {
        margin-bottom: 2px;
        font-size: 0.74rem;
    }

    .quote-form input,
    .quote-form select {
        padding: 8px 9px;
        font-size: 0.84rem;
    }

    .mobile-hero-hint {
        margin-top: 2px;
        font-size: 0.7rem;
    }

    .postcard-card {
        padding: 13px;
        border-radius: 14px;
    }

    .journey-card {
        min-height: 220px;
    }

    .journey-card-content {
        padding: 14px;
        gap: 6px;
    }

    .journey-card-content h3 {
        font-size: 1rem;
    }

    .plan-step {
        padding: 12px;
        border-radius: 14px;
    }

    .plan-number {
        width: 32px;
        height: 32px;
        font-size: 0.72rem;
    }

    .mosaic-card {
        min-height: 122px;
        border-radius: 13px;
        padding: 11px;
    }

    .mosaic-kicker {
        font-size: 0.62rem;
    }

    .section-route {
        padding: 30px 0;
    }

    .inquiry-box {
        position: static;
        padding: 15px;
        border-radius: 14px;
    }

    .detail-image {
        height: 210px;
        border-radius: 12px;
    }

    .card {
        border-radius: 14px;
    }

    .card img {
        height: 184px;
    }

    .card-body {
        padding: 12px;
    }

    .card-body h3 {
        font-size: 0.98rem;
        line-height: 1.4;
    }

    .card-body p {
        line-height: 1.55;
        font-size: 0.9rem;
    }

    .card-foot {
        margin-top: 8px;
        padding-top: 8px;
        font-size: 0.76rem;
    }

    .blog-grid .card:nth-child(2n) {
        transform: none;
    }

    .content-grid-mini {
        grid-template-columns: 1fr;
    }

    .deal-card .deal-media img {
        height: 180px;
    }

    .deal-facts span {
        font-size: 0.64rem;
    }
}

@media (max-width: 700px) {
    .section {
        padding: 34px 0;
    }

    .hero-home {
        padding: 22px 0 18px;
    }

    .home-slider-viewport {
        border-radius: 14px;
    }

    .home-slide {
        min-height: 215px;
    }

    .home-slide-content {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .home-slide-content h3 {
        font-size: 1rem;
    }

    .home-slide-content p {
        font-size: 0.82rem;
        line-height: 1.4;
        max-height: 2.8em;
        overflow: hidden;
    }

    .home-slide-meta {
        margin: 6px 0 8px;
        font-size: 0.78rem;
        gap: 8px;
    }

    .home-slide-content .btn {
        padding: 7px 10px;
        font-size: 0.75rem;
    }

    .hero-slider-block {
        margin-top: 9px;
    }

    .hero-slider-kicker {
        margin-bottom: 6px;
        font-size: 0.64rem;
    }

    .hero-cinematic-slider {
        --hero-cinematic-height: 160px;
    }

    .hero-cinematic-slider .home-slide {
        height: var(--hero-cinematic-height, 160px);
    }

    .hero-cinematic-slider .home-slide-content {
        left: 9px;
        right: 9px;
        bottom: 9px;
    }

    .hero-cinematic-slider .home-slide-content h3 {
        font-size: 0.9rem;
        margin: 4px 0;
    }

    .hero-cinematic-slider .home-slide-content p,
    .hero-cinematic-slider .home-slide-meta {
        display: none;
    }

    .hero-cinematic-slider .home-slide-content .btn {
        padding: 6px 9px;
        font-size: 0.67rem;
    }

    .hero-cinematic-slider .slider-nav {
        padding: 4px 7px;
        font-size: 0.62rem;
    }

    .hero-cinematic-slider .slider-dots {
        right: 8px;
        bottom: 8px;
    }

    .slider-nav {
        top: auto;
        bottom: 8px;
        transform: none;
        padding: 5px 8px;
    }

    .slider-nav.prev {
        left: 8px;
    }

    .slider-nav.next {
        right: 8px;
    }

    .hero-copy .eyebrow {
        padding: 5px 10px;
        font-size: 0.66rem;
    }

    .hero-copy h1 {
        font-size: clamp(1.38rem, 8vw, 1.75rem);
        line-height: 1.2;
        margin: 7px 0 6px;
    }

    .hero-copy .lead {
        font-size: 0.84rem;
        line-height: 1.45;
    }

    .hero-tags,
    .trust-strip,
    .hero-metrics,
    .postcard-card,
    .quote-form-advanced {
        display: none;
    }

    .hero-actions {
        margin-top: 10px;
    }

    .hero-actions .btn {
        width: 100%;
        padding: 8px 11px;
        font-size: 0.78rem;
    }

    .hero-side-stack {
        margin-top: 4px;
    }

    .quote-card {
        padding: 10px;
        border-radius: 12px;
    }

    .quote-form .btn.full {
        margin-top: 2px;
    }

    .card-grid,
    .theme-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions,
    .filter-actions,
    .card-actions {
        flex-direction: column;
    }

    .section-head {
        margin-bottom: 12px;
    }

    .section-head h2 {
        position: relative;
        display: inline-block;
        margin-bottom: 6px;
        font-size: clamp(1.2rem, 6vw, 1.6rem);
    }

    .section-head h2::after {
        content: '';
        display: block;
        margin-top: 6px;
        width: 46px;
        height: 3px;
        border-radius: 999px;
        background: linear-gradient(90deg, var(--sun), #ffc199);
    }

    .section-head p {
        font-size: 0.9rem;
        line-height: 1.55;
    }

    .page-home .package-grid,
    .page-home .blog-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        overflow: visible;
        padding-bottom: 0;
        margin-right: 0;
        padding-right: 0;
    }

    .page-home .package-grid .card,
    .page-home .blog-grid .card {
        min-width: 0;
        width: 100%;
    }

    .page-home .package-grid .card:first-child {
        min-width: 0;
        display: block;
    }

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

    .deal-card .deal-media img {
        height: 170px;
    }

    .deal-body {
        padding: 9px 10px 10px;
    }

    .deal-facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 5px;
    }

    .deal-facts span:last-child {
        grid-column: span 2;
    }

    .deal-pricing strong {
        font-size: 0.92rem;
    }

    .deal-btn {
        padding: 6px 9px;
        font-size: 0.68rem;
    }

    .theme-card,
    .why-grid article {
        padding: 13px;
        border-radius: 13px;
    }

    .badge-pill {
        font-size: 0.66rem;
    }

    .plan-track {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        padding-bottom: 6px;
    }

    .plan-step {
        min-width: min(78vw, 300px);
        flex: 0 0 auto;
        padding: 10px;
    }

    .plan-step h3 {
        margin: 8px 0 5px;
        font-size: 0.96rem;
    }

    .plan-step p {
        font-size: 0.82rem;
        line-height: 1.45;
    }

    .filter-panel {
        grid-template-columns: 1fr;
    }

    .customer-auth-split {
        grid-template-columns: 1fr;
    }

.mobile-action-bar {
        display: flex;
    }

    .site-footer {
        padding-bottom: 118px;
    }
}

/* Premium visual overhaul */
.page-home .hero-home {
    border-bottom-left-radius: 34px;
    border-bottom-right-radius: 34px;
    clip-path: none;
    padding-top: 82px;
    padding-bottom: 64px;
    background-position: center 38%;
}

.page-home .hero-home::before,
.page-home .hero-home::after {
    content: '';
    position: absolute;
    pointer-events: none;
    border-radius: 999px;
    z-index: 1;
}

.page-home .hero-home::before {
    width: 420px;
    height: 420px;
    right: -140px;
    top: -160px;
    background: radial-gradient(circle, rgba(255, 133, 58, 0.44) 0%, rgba(255, 133, 58, 0) 72%);
}

.page-home .hero-home::after {
    width: 360px;
    height: 360px;
    left: -140px;
    bottom: -170px;
    background: radial-gradient(circle, rgba(57, 147, 255, 0.3) 0%, rgba(57, 147, 255, 0) 72%);
}

.page-home .hero-overlay {
    background:
        linear-gradient(122deg, rgba(13, 24, 38, 0.92) 0%, rgba(18, 33, 50, 0.74) 52%, rgba(17, 34, 56, 0.38) 100%),
        radial-gradient(circle at 58% 16%, rgba(255, 195, 132, 0.2) 0%, rgba(255, 195, 132, 0) 52%),
        radial-gradient(circle at 82% 82%, rgba(163, 109, 61, 0.14) 0%, rgba(163, 109, 61, 0) 58%);
}

.page-home .hero-magic-layer {
    opacity: 0.95;
}

.page-home .hero-copy h1 {
    max-width: 16ch;
    text-wrap: balance;
    color: #ffe1b7;
    text-shadow: 0 14px 26px rgba(5, 16, 28, 0.46);
}

.page-home .hero-copy .lead {
    max-width: 62ch;
    color: #f7e8d1;
}

.page-home .hero-live-strip article {
    background: linear-gradient(145deg, rgba(62, 45, 27, 0.58) 0%, rgba(110, 77, 46, 0.38) 100%);
    border-color: rgba(255, 208, 154, 0.34);
}

.page-home .hero-live-strip strong {
    color: #fff1da;
}

.page-home .hero-tags span,
.page-home .trust-strip span {
    background: linear-gradient(120deg, rgba(112, 78, 42, 0.4) 0%, rgba(112, 78, 42, 0.2) 100%);
    border-color: rgba(255, 221, 170, 0.35);
    backdrop-filter: blur(5px);
    color: #ffe8c7;
}

.page-home .hero-metrics article {
    background: linear-gradient(160deg, rgba(97, 70, 41, 0.46) 0%, rgba(97, 70, 41, 0.24) 100%);
    border-color: rgba(255, 220, 170, 0.32);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.page-home .hero-copy .eyebrow {
    background: linear-gradient(130deg, rgba(156, 96, 43, 0.58) 0%, rgba(111, 67, 30, 0.46) 100%);
    border-color: rgba(255, 219, 171, 0.46);
    color: #ffe9cb;
}

.page-home .hero-actions .btn.primary {
    background: linear-gradient(130deg, #995017 0%, #ce6f22 56%, #9f5218 100%);
    border-color: rgba(255, 176, 117, 0.5);
    color: #ffe7c8;
    box-shadow: 0 14px 28px rgba(8, 14, 22, 0.34);
}

.page-home .hero-actions .btn.ghost {
    background: rgba(15, 28, 43, 0.58);
    border-color: rgba(255, 217, 168, 0.45);
    color: #ffe7c9;
}

.page-home .hero-slider-kicker {
    color: #f0d7b3;
}

.page-home .hero-side-stack {
    gap: 14px;
}

.page-home .quote-card,
.page-home .postcard-card {
    background: linear-gradient(152deg, rgba(255, 250, 242, 0.96) 0%, rgba(245, 236, 220, 0.94) 100%);
    border: 1px solid rgba(255, 227, 191, 0.86);
    box-shadow: 0 20px 44px rgba(8, 18, 29, 0.28);
}

.page-home .quote-card h3 {
    font-size: 1.28rem;
    margin-bottom: 5px;
}

.page-home .quote-card p {
    margin-bottom: 8px;
}

.page-home .hero-demand-meter {
    background: linear-gradient(145deg, #fdf4e8 0%, #f5e6d3 100%);
    border-color: #eccfa9;
}

.page-home .hero-cinematic-slider .home-slider-viewport {
    border: 1px solid rgba(255, 225, 184, 0.5);
    box-shadow: 0 24px 52px rgba(9, 16, 26, 0.48);
}

.page-home .hero-cinematic-slider .home-slide-overlay {
    background: linear-gradient(140deg, rgba(8, 16, 28, 0.16) 0%, rgba(9, 18, 31, 0.68) 52%, rgba(9, 17, 30, 0.9) 100%);
}

.page-home .hero-cinematic-slider .slider-dot.active {
    background: #d07a2b;
    border-color: #efb06b;
}

.page-home .hero-cinematic-slider .slider-nav {
    border-color: rgba(255, 219, 171, 0.62);
    background: rgba(27, 20, 13, 0.52);
    color: #ffe8c8;
}

@media (min-width: 921px) {
    .menu-toggle {
        display: none !important;
    }

    .nav-wrap {
        display: flex !important;
        position: static;
    }
}

.page-home .quote-form input,
.page-home .quote-form select {
    background: linear-gradient(180deg, #fffefb 0%, #f8ecd9 100%);
    border: 1px solid #e3c8a4;
}

.page-home .hero-cinematic-slider {
    --hero-cinematic-height: 266px;
}

.page-home .hero-cinematic-slider .home-slider-viewport {
    border: 1px solid rgba(255, 225, 184, 0.5);
    box-shadow: 0 24px 52px rgba(9, 16, 26, 0.48);
}

.page-home .hero-cinematic-slider .home-slide img {
    transform: scale(1.03);
    animation: heroZoom 12s ease-in-out infinite alternate;
}

.page-home .hero-cinematic-slider .slider-dot.active {
    width: 16px;
}

@keyframes heroZoom {
    from {
        transform: scale(1.02);
    }
    to {
        transform: scale(1.11);
    }
}

.experience-pulse {
    margin-top: -30px;
    padding-top: 0;
    position: relative;
    z-index: 6;
}

.experience-pulse-shell {
    border-radius: 22px;
    border: 1px solid #d9e8f8;
    background: linear-gradient(135deg, #ffffff 0%, #eef6ff 52%, #f8fbff 100%);
    box-shadow: 0 20px 40px rgba(9, 31, 56, 0.15);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
}

.experience-item {
    padding: 18px 16px;
    position: relative;
}

.experience-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 0;
    width: 1px;
    height: 60%;
    background: linear-gradient(180deg, rgba(18, 67, 107, 0) 0%, rgba(18, 67, 107, 0.24) 50%, rgba(18, 67, 107, 0) 100%);
}

.experience-item strong {
    font-family: 'Sora', sans-serif;
    display: block;
    font-size: clamp(1.2rem, 2.1vw, 1.65rem);
    color: #113b60;
}

.experience-item span {
    color: #416384;
    font-size: 0.86rem;
    font-weight: 700;
}

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

.page-home .section-head h2 {
    max-width: 20ch;
}

.page-home .journey-card {
    border: 1px solid rgba(255, 255, 255, 0.45);
}

.page-home .journey-card-content {
    background: linear-gradient(180deg, rgba(5, 20, 35, 0.08) 0%, rgba(5, 20, 35, 0.7) 72%);
}

.page-home .plan-step {
    background: linear-gradient(150deg, #ffffff 0%, #f1f8ff 100%);
    border: 1px solid #d7e6f7;
    box-shadow: 0 12px 26px rgba(11, 34, 56, 0.08);
}

.page-home .plan-number {
    background: linear-gradient(135deg, #ffb889 0%, #ff7a2f 100%);
    color: #fff;
    border: none;
}

.page-home .why-grid article {
    border: 1px solid #d9e6f6;
    background: linear-gradient(150deg, #ffffff 0%, #f3f9ff 100%);
    box-shadow: 0 12px 25px rgba(11, 34, 58, 0.07);
}

.page-home .editorial-strip {
    background: linear-gradient(130deg, #103a5f 0%, #1b4f7f 100%);
    border-radius: 14px;
    padding: 12px 14px;
    box-shadow: 0 12px 26px rgba(9, 31, 52, 0.22);
}

.page-home .editorial-strip span {
    color: #deecfc;
}

.page-home .theme-card {
    background: linear-gradient(152deg, #ffffff 0%, #f0f7ff 100%);
    border: 1px solid #d6e6f8;
}

.page-home .mosaic-card {
    border: 1px solid rgba(255, 255, 255, 0.68);
    box-shadow: 0 14px 30px rgba(12, 38, 61, 0.15);
}

.page-home .mosaic-card:hover {
    transform: translateY(-6px) scale(1.01);
}

.page-home .deal-card,
.page-packages .deal-card {
    border-radius: 16px;
    border: 1px solid #d5e5f7;
    box-shadow: 0 14px 32px rgba(10, 34, 56, 0.11);
    background: linear-gradient(165deg, #ffffff 0%, #f7fbff 100%);
}

.page-home .deal-card .deal-media img,
.page-packages .deal-card .deal-media img {
    height: 204px;
}

.page-home .deal-media-overlay h3,
.page-packages .deal-media-overlay h3 {
    font-size: 1rem;
}

.page-home .deal-pricing,
.page-packages .deal-pricing {
    border-top-style: solid;
    border-top-color: #e3ecf8;
}

.page-home .deal-btn,
.page-packages .deal-btn {
    padding: 8px 12px;
    font-size: 0.73rem;
}

.page-home .blog-card,
.page-blog .blog-card {
    border-radius: 16px;
    border: 1px solid #d8e7f8;
    background: linear-gradient(160deg, #ffffff 0%, #f5f9ff 100%);
}

.page-home .blog-card img,
.page-blog .blog-card img {
    height: 212px;
}

.page-home .card .badge-pill {
    background: linear-gradient(120deg, #e9f3ff 0%, #f9fcff 100%);
    border-color: #cfe0f3;
    color: #1d4f7a;
}

@media (max-width: 1100px) {
    .page-home .hero-home {
        padding-top: 58px;
    }

    .hero-live-strip {
        gap: 8px;
    }

    .hero-live-strip article {
        padding: 9px 10px;
        border-radius: 12px;
    }

    .hero-live-strip strong {
        font-size: 0.85rem;
    }

    .page-home .hero-cinematic-slider {
        --hero-cinematic-height: 224px;
    }

    .experience-pulse-shell {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .experience-item:nth-child(2n)::after {
        display: none;
    }
}

@media (max-width: 700px) {
    .page-home .site-header {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        background: transparent;
        border-bottom: none;
        backdrop-filter: none;
        box-shadow: none;
    }

    .page-home .brand strong {
        color: #ffd9ab;
        font-size: 1.06rem;
    }

    .page-home .brand small {
        display: none;
    }

    .page-home .brand-logo,
    .page-home .brand-mark {
        border-color: rgba(255, 221, 175, 0.44);
        background: rgba(13, 22, 35, 0.38);
        color: #ffd9ab;
    }

    .page-home .mobile-icon-btn,
    .page-home .menu-toggle {
        background: rgba(13, 23, 36, 0.5);
        border-color: rgba(255, 220, 173, 0.42);
        color: #ffe3bf;
    }

    .page-home .hero-home {
        margin: 0;
        border-radius: 0 0 22px 22px;
        padding-top: 92px;
        padding-bottom: 20px;
        min-height: 98vh;
        background-position: center top;
    }

    .page-home .hero-home::before,
    .page-home .hero-home::after {
        display: none;
    }

    .page-home .hero-overlay {
        background: linear-gradient(180deg, rgba(5, 16, 28, 0.36) 0%, rgba(5, 16, 28, 0.54) 100%);
    }

    .page-home .hero-copy h1 {
        max-width: 12ch;
        margin-inline: auto;
        font-size: clamp(2rem, 10vw, 2.7rem);
        line-height: 1.08;
        text-align: center;
    }

    .page-home .hero-copy {
        text-align: center;
    }

    .page-home .hero-copy .lead {
        margin-inline: auto;
        max-width: 30ch;
        font-size: 0.9rem;
        color: #f8e5c6;
    }

    .page-home .hero-home-wrap {
        gap: 12px;
    }

    .page-home .hero-side-stack,
    .page-home .hero-slider-block,
    .page-home .hero-live-strip {
        display: none;
    }

    .page-home .hero-cinematic-slider {
        --hero-cinematic-height: 168px;
    }

    .hero-magic-layer {
        opacity: 0.34;
    }

    .page-home .hero-actions {
        justify-content: center;
        margin-top: 14px;
    }

    .page-home .hero-actions .btn {
        width: auto;
        min-width: 220px;
        padding: 11px 18px;
        font-size: 0.84rem;
    }

    .page-home .hero-actions .btn.ghost {
        display: none;
    }

    .hero-ref-mobile {
        display: block;
        margin-top: 14px;
    }

    .hero-ref-destination-head span {
        position: relative;
        display: inline-block;
        padding: 0 22px;
    }

    .hero-ref-destination-head span::before,
    .hero-ref-destination-head span::after {
        content: '';
        position: absolute;
        top: 50%;
        width: 14px;
        height: 1px;
        background: rgba(246, 209, 158, 0.64);
    }

    .hero-ref-destination-head span::before {
        left: 0;
    }

    .hero-ref-destination-head span::after {
        right: 0;
    }

    .page-home .experience-pulse {
        margin-top: 8px;
    }

    .hero-live-strip {
        margin-top: 9px;
        display: flex;
        gap: 7px;
        overflow-x: auto;
        padding-bottom: 2px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .hero-live-strip::-webkit-scrollbar {
        display: none;
    }

    .hero-live-strip article {
        min-width: 132px;
        padding: 8px 9px;
        border-radius: 10px;
        scroll-snap-align: start;
        box-shadow: 0 9px 18px rgba(4, 18, 33, 0.2);
    }

    .hero-live-strip small {
        font-size: 0.56rem;
    }

    .hero-live-strip strong {
        font-size: 0.75rem;
    }

    .hero-demand-meter {
        margin: 5px 0 8px;
        padding: 6px 7px;
        border-radius: 10px;
    }

    .hero-demand-meter small {
        font-size: 0.63rem;
    }

    .experience-pulse {
        margin-top: -12px;
    }

    .page-home .experience-pulse {
        margin-top: 8px;
    }

    .experience-pulse-shell {
        border-radius: 14px;
        grid-template-columns: 1fr 1fr;
    }

    .experience-item {
        padding: 10px 9px;
    }

    .experience-item strong {
        font-size: 1.05rem;
    }

    .experience-item span {
        font-size: 0.72rem;
    }

    .page-home .deal-card .deal-media img,
    .page-packages .deal-card .deal-media img,
    .page-home .blog-card img,
    .page-blog .blog-card img {
        height: 176px;
    }
}

/* Thrillophilia-style listing overhaul */
.page-home {
    background: #f6f7f9;
}

.page-home .hero-home {
    background: #ffffff !important;
    clip-path: none;
    border-radius: 0;
    padding: 34px 0 20px;
    border-bottom: 1px solid #e7ebf1;
}

.page-home .hero-overlay,
.page-home .hero-magic-layer,
.page-home .hero-side-stack,
.page-home .hero-slider-block,
.page-home .hero-tags,
.page-home .trust-strip,
.page-home .hero-metrics,
.page-home .hero-live-strip,
.page-home .hero-ref-mobile {
    display: none !important;
}

.page-home .hero-home-wrap {
    grid-template-columns: 1fr;
    gap: 0;
}

.page-home .hero-copy {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    color: #1f2937;
}

.page-home .hero-copy .eyebrow {
    background: #fff6e7;
    border: 1px solid #ffd9a4;
    color: #ad6207;
}

.page-home .hero-copy h1 {
    margin: 12px auto 10px;
    max-width: 18ch;
    color: #202a38;
    font-size: clamp(2rem, 4.4vw, 3.2rem);
    text-shadow: none;
}

.page-home .hero-copy .lead {
    margin: 0 auto;
    color: #5a6778;
    max-width: 60ch;
    line-height: 1.7;
}

.page-home .hero-actions {
    justify-content: center;
    margin-top: 14px;
}

.page-home .hero-actions .btn.primary {
    background: linear-gradient(130deg, #f4841f 0%, #e36c08 100%);
    border-color: #f4b067;
    color: #fff;
    box-shadow: 0 10px 18px rgba(227, 108, 8, 0.23);
}

.page-home .hero-actions .btn.ghost {
    background: #fff;
    border-color: #d8e1eb;
    color: #254667;
}

.hero-quick-tabs {
    margin: 14px auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.hero-quick-tabs a {
    border: 1px solid #dce5f0;
    background: #fff;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #274869;
}

.section-destination-rails {
    padding-top: 20px;
}

.destination-rail + .destination-rail {
    margin-top: 22px;
}

.rail-head {
    margin-bottom: 12px;
}

.rail-head h2 {
    font-size: clamp(1.12rem, 2.4vw, 1.42rem);
    margin: 0;
    color: #1b2533;
}

.rail-head a {
    font-size: 0.8rem;
    color: #ec7b0d;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.rail-head a span {
    display: inline-grid;
    place-items: center;
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: #ec7b0d;
    color: #fff;
    margin-left: 4px;
    font-size: 0.72rem;
    line-height: 1;
}

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

.thrillo-card {
    border: 1px solid #dee6f0;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(16, 39, 61, 0.08);
    background: #fff;
}

.thrillo-card .deal-media {
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}

.thrillo-card .deal-media img {
    height: 198px;
}

.thrillo-card .deal-media::after {
    background: linear-gradient(180deg, rgba(15, 31, 52, 0.02) 0%, rgba(15, 31, 52, 0.62) 66%, rgba(15, 31, 52, 0.84) 100%);
}

.thrillo-card .deal-badge {
    top: 8px;
    left: 8px;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.62rem;
    border: 1px solid rgba(255, 255, 255, 0.44);
}

.thrillo-card .deal-media-overlay {
    left: 8px;
    right: 8px;
    bottom: 8px;
}

.thrillo-card .deal-media-overlay h3 {
    font-size: 0.92rem;
}

.thrillo-card .deal-media-overlay p {
    font-size: 0.72rem;
}

.thrillo-card .deal-body {
    padding: 9px 10px 10px;
}

.deal-facts-icons {
    margin-bottom: 7px;
}

.deal-facts-icons span {
    font-size: 0.62rem;
    padding: 5px 6px;
}

.deal-summary {
    margin: 0 0 8px;
    font-size: 0.75rem;
    line-height: 1.45;
    color: #4f6278;
    min-height: 2.9em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.thrillo-card .deal-pricing {
    border-top: 1px solid #ecf1f7;
    padding-top: 8px;
}

.thrillo-card .deal-pricing strong {
    font-size: 1.02rem;
}

.deal-audience {
    margin-top: 2px;
    color: #5f748c;
    font-weight: 700;
}

.deal-request-row {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.deal-call-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid #f5c182;
    background: #fff8ee;
    color: #d97a17;
    font-size: 0.68rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.thrillo-card .deal-btn {
    flex: 1;
    border-radius: 8px;
    font-size: 0.72rem;
    letter-spacing: 0.01em;
    background: linear-gradient(125deg, #f18722 0%, #e26f09 100%);
    box-shadow: none;
}

.operations-band {
    margin: 24px 0 6px;
    padding: 28px 20px;
    border-radius: 10px;
    background: linear-gradient(120deg, #eff6ff 0%, #f5fbff 100%);
    text-align: center;
    border: 1px solid #dfeaf7;
}

.operations-band h3 {
    margin: 0 0 5px;
    color: #1a2735;
    font-size: clamp(1.4rem, 3vw, 2.05rem);
}

.operations-band p {
    margin: 0;
    color: #4d6178;
}

.operations-metrics {
    margin-top: 17px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.operations-metrics article {
    border-radius: 10px;
    background: #fff;
    border: 1px solid #dfe7f2;
    padding: 13px 10px;
}

.operations-metrics strong {
    display: block;
    font-family: 'Sora', sans-serif;
    color: #16283b;
    font-size: 1.5rem;
}

.operations-metrics span {
    font-size: 0.8rem;
    color: #5b6c80;
}

.support-band {
    margin: 24px 0 8px;
    border-radius: 12px;
    border: 1px solid #eadfce;
    background: linear-gradient(130deg, #fdf9f2 0%, #f7f0e5 100%);
    padding: 18px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 16px;
    align-items: center;
}

.support-copy h3 {
    margin: 0 0 7px;
    color: #1f2730;
    font-size: clamp(1.1rem, 2.4vw, 1.75rem);
}

.support-copy p {
    margin: 0;
    color: #566577;
}

.support-copy ul {
    margin: 11px 0 0;
    padding-left: 18px;
    color: #384a5f;
    line-height: 1.6;
    font-size: 0.88rem;
}

.support-frame {
    min-height: 260px;
    border-radius: 30px;
    border: 4px solid #121a23;
    background:
        linear-gradient(180deg, rgba(14, 24, 34, 0.04), rgba(14, 24, 34, 0.08)),
        url('https://images.unsplash.com/photo-1523906834658-6e24ef2386f9?auto=format&fit=crop&w=700&q=80') center/cover no-repeat;
}

.recognition-band {
    margin: 24px 0 8px;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e2eaf4;
    padding: 18px 12px;
}

.recognition-band h3 {
    margin: 0 0 12px;
    font-size: 1rem;
    color: #1b2736;
}

.recognition-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}

.recognition-logos span {
    font-family: 'Sora', sans-serif;
    color: #2a3f57;
    font-size: 0.9rem;
}

.page-packages {
    background: #f6f7f9;
}

.page-packages .page-hero {
    background: #fff;
    border: 1px solid #e2e9f2;
    border-radius: 10px;
    padding: 16px;
}

.page-packages .package-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 13px;
}

@media (max-width: 1050px) {
    .destination-package-grid,
    .home-highlight-grid,
    .page-packages .package-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .support-band {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .page-home .hero-home {
        padding: 22px 0 12px;
        min-height: auto;
        border-radius: 0;
    }

    .page-home .site-header {
        position: sticky;
        background: rgba(255, 255, 255, 0.95);
        border-bottom: 1px solid #e4eaf2;
        backdrop-filter: blur(8px);
    }

    .page-home .hero-copy {
        text-align: left;
    }

    .page-home .hero-copy h1 {
        margin-inline: 0;
        max-width: 14ch;
        font-size: clamp(1.7rem, 8vw, 2.25rem);
        line-height: 1.15;
    }

    .page-home .hero-copy .lead {
        margin-inline: 0;
        font-size: 0.86rem;
        line-height: 1.5;
    }

    .page-home .hero-actions {
        justify-content: flex-start;
    }

    .page-home .hero-actions .btn {
        min-width: 0;
        width: auto;
        padding: 9px 12px;
        font-size: 0.74rem;
    }

    .hero-quick-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 2px;
    }

    .hero-quick-tabs a {
        white-space: nowrap;
        font-size: 0.7rem;
        padding: 6px 10px;
    }

    .operations-band {
        padding: 20px 12px;
    }

    .operations-metrics {
        grid-template-columns: 1fr;
    }

    .support-band {
        padding: 14px;
    }

    .support-copy ul {
        margin-top: 8px;
        font-size: 0.8rem;
    }

    .support-frame {
        min-height: 210px;
    }

    .destination-package-grid,
    .home-highlight-grid {
        display: flex;
        overflow-x: auto;
        gap: 10px;
        padding-bottom: 4px;
        scrollbar-width: none;
    }

    .destination-package-grid::-webkit-scrollbar,
    .home-highlight-grid::-webkit-scrollbar {
        display: none;
    }

    .destination-package-grid .thrillo-card,
    .home-highlight-grid .thrillo-card {
        min-width: min(86vw, 320px);
        flex: 0 0 auto;
    }

    .page-packages .package-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .thrillo-card .deal-media img {
        height: 182px;
    }
}

/* Precision pass for screenshot-level match */
.page-home .utility-bar {
    display: none;
}

.page-home .mobile-action-bar {
    display: none;
}

.page-home .header-inner {
    padding-top: 8px;
    padding-bottom: 8px;
}

.page-home .brand strong {
    font-size: 0.96rem;
}

.hero-thumb-row {
    margin: 10px auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    max-width: 760px;
}

.hero-thumb-row a {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #deebfa;
    box-shadow: 0 8px 14px rgba(11, 34, 54, 0.08);
}

.hero-thumb-row img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-category-strip {
    margin-top: 12px;
    border-top: 1px solid #e6ebf2;
    border-bottom: 1px solid #e6ebf2;
    padding: 9px 0 8px;
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 6px;
}

.hero-category-strip a {
    display: grid;
    justify-items: center;
    gap: 5px;
    color: #3a4f67;
    font-size: 0.67rem;
    font-weight: 700;
}

.hero-category-icon {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    border: 1px solid #f6cb97;
    background: linear-gradient(145deg, #fff6ec 0%, #ffedd8 100%);
    color: #cc7115;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.58rem;
    font-weight: 800;
}

.destination-rail-track {
    position: relative;
}

.destination-package-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    gap: 12px;
    padding-bottom: 4px;
}

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

.destination-package-grid .thrillo-card {
    flex: 0 0 calc((100% - 24px) / 3);
    min-width: 0;
    scroll-snap-align: start;
}

.rail-nav {
    position: absolute;
    top: 34%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid #d8e5f3;
    background: rgba(255, 255, 255, 0.95);
    color: #1f3956;
    font-size: 1rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 10px 18px rgba(12, 33, 54, 0.14);
}

.rail-nav.prev {
    left: -10px;
}

.rail-nav.next {
    right: -10px;
}

.rail-nav:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.operations-band {
    overflow: hidden;
    position: relative;
}

.operations-band::before {
    content: '';
    position: absolute;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    left: -95px;
    top: -72px;
    background: radial-gradient(circle, rgba(34, 102, 222, 0.38) 0%, rgba(34, 102, 222, 0.06) 72%);
}

.operations-band > * {
    position: relative;
    z-index: 1;
}

.listing-bottom-cta .lead {
    max-width: 70ch;
}

@media (max-width: 1050px) {
    .hero-category-strip {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .destination-package-grid .thrillo-card {
        flex: 0 0 calc((100% - 12px) / 2);
    }

    .rail-nav.prev {
        left: -6px;
    }

    .rail-nav.next {
        right: -6px;
    }
}

@media (max-width: 700px) {
    .hero-thumb-row {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        max-width: 100%;
        padding-bottom: 2px;
        scrollbar-width: none;
    }

    .hero-thumb-row::-webkit-scrollbar {
        display: none;
    }

    .hero-thumb-row a {
        width: 44px;
        height: 44px;
        flex: 0 0 auto;
    }

    .hero-category-strip {
        margin-top: 10px;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 8px 4px;
    }

    .hero-category-strip a {
        font-size: 0.62rem;
    }

    .hero-category-icon {
        width: 22px;
        height: 22px;
    }

    .destination-package-grid .thrillo-card {
        min-width: min(86vw, 320px);
        flex: 0 0 auto;
    }

    .rail-nav {
        display: none;
    }
}

/* Exact screenshot pass */
.page-home {
    background: #f5f5f5;
}

.page-home .bg-orb,
.page-home .bg-grid,
.page-home .scroll-progress {
    display: none;
}

.page-home .site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: #fff;
    border-bottom: 1px solid #ececec;
    backdrop-filter: none;
}

.page-home .header-inner {
    min-height: 68px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.page-home .brand {
    gap: 8px;
}

.page-home .brand-logo,
.page-home .brand-mark {
    width: 30px;
    height: 30px;
    border-radius: 8px;
}

.page-home .brand strong {
    font-size: 0.9rem;
    color: #ef8b1a;
}

.page-home .brand small {
    display: none;
}

.nav-home-main {
    gap: 26px;
}

.nav-home-main a {
    color: #3b3b3b;
    font-weight: 700;
    font-size: 0.95rem;
    border-bottom: none;
    padding-bottom: 0;
}

.home-nav-right {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: 8px;
}

.home-search-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid #e6e6e6;
    background: #fff;
    color: transparent;
    position: relative;
}

.home-search-btn::before {
    content: '';
    position: absolute;
    width: 11px;
    height: 11px;
    border: 2px solid #5f5f5f;
    border-radius: 50%;
    top: 10px;
    left: 10px;
}

.home-search-btn::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 2px;
    border-radius: 2px;
    background: #5f5f5f;
    transform: rotate(45deg);
    top: 22px;
    left: 21px;
}

.home-currency,
.home-login-link {
    font-size: 0.9rem;
    color: #3d3d3d;
    font-weight: 700;
}

.hero-home.hero-home-exact {
    background: #f5f5f5;
    border-bottom: 1px solid #e8e8e8;
    padding: 26px 0 0;
}

.hero-exact-wrap {
    position: relative;
    min-height: 300px;
    display: grid;
    grid-template-columns: 220px 1fr 220px;
    gap: 28px;
    align-items: start;
}

.hero-side-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.hero-side-thumbs a {
    display: block;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e0e6ed;
    box-shadow: 0 10px 16px rgba(17, 31, 46, 0.08);
}

.hero-side-thumbs img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.hero-exact-copy {
    text-align: center;
    padding-top: 24px;
}

.hero-exact-copy h1 {
    margin: 0;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #202020;
    font-weight: 800;
}

.hero-exact-copy h1 span {
    color: #ef9d21;
}

.hero-exact-copy p {
    margin: 18px 0 0;
    color: #5f646d;
    font-size: 1.08rem;
    line-height: 1.4;
}


.hero-category-row {
    margin-top: 10px;
    padding: 10px 0 9px;
    border-top: 1px solid #ebebeb;
    border-bottom: 1px solid #e6e6e6;
    display: flex;
    align-items: center;
    gap: 16px;
    overflow-x: auto;
    scrollbar-width: none;
}

.hero-category-row::-webkit-scrollbar {
    display: none;
}

.hero-category-row a {
    position: relative;
    white-space: nowrap;
    padding: 5px 2px 4px;
    color: #6c6c6c;
    font-size: 0.9rem;
    font-weight: 700;
    display: grid;
    justify-items: center;
    line-height: 1.1;
}

.hero-category-row a::before {
    content: none;
}

.hero-country-icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    color: #8f8f8f;
}

.hero-country-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}


.hero-category-row a.is-active {
    color: #ef8e1f;
}

.hero-category-row a.is-active::before {
    content: none;
}

.hero-category-row a.is-active .hero-country-icon {
    color: #ef8e1f;
}


.hero-category-row a small {
    position: absolute;
    top: -1px;
    right: -12px;
    background: #ff9f25;
    color: #fff;
    font-size: 0.52rem;
    font-weight: 800;
    border-radius: 3px;
    padding: 1px 4px;
    text-transform: uppercase;
}

.hero-category-next {
    margin-left: auto;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: 1px solid #dddddd;
    background: #efefef;
    color: #7b7b7b;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.page-home .section-hero-showcase {
    padding-top: 12px;
    padding-bottom: 22px;
}

.page-home .hero-showcase-head-wrap {
    margin-bottom: 12px;
}

.page-home .hero-showcase-head {
    margin-bottom: 0;
}

.page-home .hero-showcase-head h2 {
    margin: 8px 0 0;
    font-size: clamp(1.45rem, 3.2vw, 2.1rem);
    color: #1f2a36;
}

.page-home .hero-showcase-head a {
    color: #ef8a14;
    font-weight: 800;
}

.page-home .hero-showcase-full-bleed {
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.page-home .home-slider-showcase {
    position: relative;
    --showcase-slider-height: 300px;
}

.page-home .home-slider-showcase .home-slider-viewport {
    height: var(--showcase-slider-height);
    border-radius: 16px;
    border: 1px solid #d9e4f0;
    box-shadow: 0 16px 28px rgba(12, 31, 49, 0.1);
    background: #10253a;
}

.page-home .home-slider-showcase .home-slider-track {
    height: var(--showcase-slider-height);
}

.page-home .home-slider-showcase .showcase-slide {
    min-height: var(--showcase-slider-height);
    height: var(--showcase-slider-height);
}

.page-home .home-slider-showcase .showcase-slide img {
    transform: scale(1.02);
    transition: transform 0.7s ease;
}

.page-home .home-slider-showcase .showcase-slide:hover img {
    transform: scale(1.06);
}

.page-home .home-slider-showcase .home-slide-overlay {
    background: linear-gradient(112deg, rgba(8, 21, 37, 0.28) 0%, rgba(8, 21, 37, 0.82) 78%);
}

.page-home .home-slider-showcase .home-slide-content {
    left: 50%;
    right: auto;
    bottom: 18px;
    width: min(92%, 760px);
    max-width: none;
    transform: translateX(-50%);
    text-align: center;
}

.page-home .home-slider-showcase .home-slide-content h3 {
    margin: 8px 0 7px;
    font-size: clamp(1.2rem, 2.7vw, 1.8rem);
}

.page-home .home-slider-showcase .home-slide-content p {
    color: #d6e4f2;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.page-home .home-slider-showcase .home-slide-meta {
    margin-top: 12px;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.page-home .home-slider-showcase .home-slide-meta strong {
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    color: #ffffff;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.33);
}

.page-home .showcase-meta-row {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.page-home .showcase-meta-row span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 0.71rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fef0dc;
    border: 1px solid rgba(255, 216, 171, 0.46);
    background: rgba(13, 27, 43, 0.48);
}

.page-home .home-slider-showcase .slider-nav {
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.65);
    background: rgba(7, 24, 44, 0.52);
    font-size: 1.1rem;
}

.page-home .home-slider-showcase .slider-nav.prev {
    left: 12px;
}

.page-home .home-slider-showcase .slider-nav.next {
    right: 12px;
}

.page-home .home-slider-showcase .slider-dots {
    margin-top: 12px;
}

.page-home .home-slider-showcase .slider-dot {
    width: 9px;
    height: 9px;
    border-color: #c5d4e6;
}

.page-home .home-slider-showcase .slider-dot.active {
    background: #f08f1e;
    border-color: #f08f1e;
}

.page-home .section-destination-rails {
    padding-top: 16px;
}

.page-home .destination-rail {
    margin-bottom: 18px;
}

.page-home .rail-head {
    margin-bottom: 10px;
}

.page-home .rail-head h2 {
    font-size: 2.05rem;
    font-weight: 800;
    color: #202733;
}


.page-home .rail-head a {
    color: #ef8a14;
    font-size: 1.08rem;
    font-weight: 800;
    text-transform: none;
}


.page-home .rail-head a span {
    width: 19px;
    height: 19px;
    font-size: 0.78rem;
}

.page-home .destination-package-grid .thrillo-card {
    flex: 0 0 calc((100% - 24px) / 3);
    border-radius: 12px;
    overflow: hidden;
}

.page-home .thrillo-card .deal-media {
    border-radius: 12px;
}

.page-home .thrillo-card .deal-media img {
    height: 360px;
}

.deal-media-dots {
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    display: inline-flex;
    gap: 4px;
}

.deal-media-dots i {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
}

.deal-media-dots i:nth-child(3) {
    background: #fff;
}

.page-home .destination-rail-track .rail-nav {
    top: 44%;
}

.page-home .destination-rail-track .rail-nav.prev {
    left: -13px;
}

.page-home .destination-rail-track .rail-nav.next {
    right: -13px;
}

.page-home .operations-band,
.page-home .support-band,
.page-home .recognition-band,
.page-home .listing-bottom-cta,
.page-home .home-highlight-grid {
    display: none;
}

@media (max-width: 920px) {
    .nav-home-main a {
        font-size: 0.86rem;
    }

    .home-nav-right {
        gap: 8px;
    }

    .hero-exact-wrap {
        grid-template-columns: 1fr;
        gap: 14px;
        min-height: 0;
    }

    .hero-side-thumbs {
        order: 2;
        grid-template-columns: repeat(6, 1fr);
        overflow-x: auto;
        display: flex;
        gap: 8px;
        padding-bottom: 2px;
        scrollbar-width: none;
    }

    .hero-side-thumbs::-webkit-scrollbar {
        display: none;
    }

    .hero-side-thumbs a {
        width: 50px;
        flex: 0 0 auto;
    }

    .hero-exact-copy {
        order: 1;
        padding-top: 4px;
        text-align: left;
    }

    .hero-exact-copy h1 {
        font-size: clamp(1.7rem, 8.4vw, 2.45rem);
    }

    .hero-exact-copy p {
        margin-top: 10px;
        font-size: 0.98rem;
        line-height: 1.45;
    }

    .hero-category-row {
        gap: 14px;
    }

    .hero-category-row a {
        font-size: 0.74rem;
    }

    .hero-country-icon {
        width: 16px;
        height: 16px;
        margin-bottom: 3px;
    }

    .hero-category-next {
        display: none;
    }

    .page-home .section-hero-showcase {
        padding-top: 8px;
        padding-bottom: 14px;
    }

    .page-home .hero-showcase-head-wrap {
        margin-bottom: 10px;
    }

    .page-home .hero-showcase-head {
        align-items: center;
    }

    .page-home .hero-showcase-head h2 {
        font-size: clamp(1.15rem, 5vw, 1.44rem);
    }

    .page-home .hero-showcase-head a {
        font-size: 0.82rem;
    }

    .page-home .hero-showcase-full-bleed {
        width: 100%;
        margin-left: 0;
    }

    .page-home .home-slider-showcase {
        --showcase-slider-height: 220px;
    }

    .page-home .home-slider-showcase .showcase-slide {
        min-height: var(--showcase-slider-height);
        height: var(--showcase-slider-height);
    }

    .page-home .home-slider-showcase .home-slide-content {
        left: 50%;
        right: auto;
        bottom: 12px;
        width: calc(100% - 24px);
        transform: translateX(-50%);
        text-align: center;
    }

    .page-home .home-slider-showcase .home-slide-content h3 {
        margin: 6px 0 5px;
        font-size: 1.08rem;
        line-height: 1.28;
    }

    .page-home .home-slider-showcase .home-slide-content p {
        font-size: 0.82rem;
        line-height: 1.45;
        margin: 0;
    }

    .page-home .showcase-meta-row span {
        font-size: 0.6rem;
        padding: 4px 8px;
    }

    .page-home .home-slider-showcase .home-slide-meta {
        margin-top: 8px;
        gap: 7px;
        flex-wrap: wrap;
    }

    .page-home .home-slider-showcase .home-slide-meta strong {
        font-size: 0.82rem;
        padding: 5px 8px;
    }

    .page-home .home-slider-showcase .home-slide-meta .btn {
        padding: 7px 12px;
        font-size: 0.72rem;
    }

    .page-home .home-slider-showcase .slider-nav {
        width: 32px;
        height: 32px;
        font-size: 0.94rem;
    }

    .page-home .destination-package-grid .thrillo-card {
        min-width: min(84vw, 340px);
        flex: 0 0 auto;
    }

    .page-home .thrillo-card .deal-media img {
        height: 300px;
    }

    .page-home .destination-rail-track .rail-nav {
        display: none;
    }
}

/* Shared refresh for non-home public pages */
body.page-blog,
body[class^='page-blog-'],
body.page-packages,
body[class^='page-packages-'],
body.page-p,
body[class^='page-p-'] {
    background: #f5f5f5;
}

body.page-blog .bg-orb,
body[class^='page-blog-'] .bg-orb,
body.page-packages .bg-orb,
body[class^='page-packages-'] .bg-orb,
body.page-p .bg-orb,
body[class^='page-p-'] .bg-orb,
body.page-blog .bg-grid,
body[class^='page-blog-'] .bg-grid,
body.page-packages .bg-grid,
body[class^='page-packages-'] .bg-grid,
body.page-p .bg-grid,
body[class^='page-p-'] .bg-grid,
body.page-blog .utility-bar,
body[class^='page-blog-'] .utility-bar,
body.page-packages .utility-bar,
body[class^='page-packages-'] .utility-bar,
body.page-p .utility-bar,
body[class^='page-p-'] .utility-bar {
    display: none;
}

body.page-blog .site-header,
body[class^='page-blog-'] .site-header,
body.page-packages .site-header,
body[class^='page-packages-'] .site-header,
body.page-p .site-header,
body[class^='page-p-'] .site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: #fff;
    border-bottom: 1px solid #ececec;
    backdrop-filter: none;
}

body.page-blog .header-inner,
body[class^='page-blog-'] .header-inner,
body.page-packages .header-inner,
body[class^='page-packages-'] .header-inner,
body.page-p .header-inner,
body[class^='page-p-'] .header-inner {
    min-height: 66px;
    padding-top: 10px;
    padding-bottom: 10px;
}

body.page-blog .brand strong,
body[class^='page-blog-'] .brand strong,
body.page-packages .brand strong,
body[class^='page-packages-'] .brand strong,
body.page-p .brand strong,
body[class^='page-p-'] .brand strong {
    color: #ef8b1a;
    font-size: 0.92rem;
}

body.page-blog nav a,
body[class^='page-blog-'] nav a,
body.page-packages nav a,
body[class^='page-packages-'] nav a,
body.page-p nav a,
body[class^='page-p-'] nav a {
    color: #3b3b3b;
    font-size: 0.9rem;
}

body.page-blog .nav-cta,
body[class^='page-blog-'] .nav-cta,
body.page-packages .nav-cta,
body[class^='page-packages-'] .nav-cta,
body.page-p .nav-cta,
body[class^='page-p-'] .nav-cta {
    background: linear-gradient(130deg, #f4841f 0%, #e36c08 100%);
    color: #fff;
}

.listing-page .page-hero,
.detail-page .article-card {
    background: #fff;
    border: 1px solid #e6ebf2;
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(13, 35, 56, 0.06);
}

.listing-page .page-hero {
    padding: 18px;
    margin-bottom: 12px;
}

.listing-page .page-hero h1 {
    margin-bottom: 8px;
    font-size: clamp(1.45rem, 3vw, 2.05rem);
    color: #1f2c3d;
}

.listing-page .page-hero p {
    color: #5f6f82;
}

.listing-page .filter-panel {
    background: #fff;
    border: 1px solid #e6ebf2;
    border-radius: 12px;
    padding: 14px;
    box-shadow: 0 10px 20px rgba(13, 35, 56, 0.05);
}

.listing-page .result-count,
.listing-page .rate-note {
    margin-top: 10px;
}

body.page-blog .blog-grid,
body[class^='page-blog-'] .blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

body.page-blog .blog-card,
body[class^='page-blog-'] .blog-card {
    border-radius: 12px;
    border: 1px solid #dfe7f2;
    box-shadow: 0 12px 24px rgba(13, 35, 56, 0.08);
    background: #fff;
}

body.page-blog .blog-card img,
body[class^='page-blog-'] .blog-card img {
    height: 210px;
}

.detail-page .content-grid,
.detail-page .page-wrap {
    align-items: start;
    gap: 16px;
}

.detail-page .article-card {
    padding: 18px;
}

.detail-page .detail-image {
    border-radius: 12px;
    height: 300px;
    object-fit: cover;
}

.detail-page .article-card h1 {
    margin-top: 12px;
    font-size: clamp(1.45rem, 3.2vw, 2.15rem);
    color: #1e2b3d;
}

.detail-page .meta-line {
    margin-top: 9px;
    gap: 8px;
}

.detail-page .meta-line span {
    border-radius: 999px;
    border: 1px solid #deebfa;
    background: #f5f9ff;
    padding: 5px 10px;
}

.detail-page .rich-text {
    margin-top: 12px;
    color: #33465c;
    line-height: 1.72;
}

.detail-page .inquiry-box {
    border-radius: 12px;
    border: 1px solid #e2e9f3;
    background: #fff;
    box-shadow: 0 10px 22px rgba(13, 35, 56, 0.08);
    padding: 16px;
}

.detail-page .inquiry-box h3 {
    margin-bottom: 6px;
    color: #1f2c3d;
}

.detail-page .inquiry-box p {
    color: #5d6e83;
}

.detail-page .inquiry-box .btn.primary {
    width: 100%;
    margin-top: 4px;
}

.detail-page .related-wrap {
    margin-top: 14px;
    border: 1px solid #e6edf7;
    border-radius: 10px;
    background: #fbfdff;
    padding: 12px;
}

.detail-page .crumbs {
    margin-bottom: 10px;
}

.detail-page .crumbs a {
    color: #416a95;
}

body[class^='page-p-'] .contact-detail-list {
    margin: 10px 0;
    border: 1px solid #e6edf7;
    border-radius: 10px;
    background: #fbfdff;
}

body[class^='page-p-'] .contact-detail-item {
    padding: 10px 12px;
    border-bottom: 1px solid #e6edf7;
}

body[class^='page-p-'] .contact-detail-item:last-child {
    border-bottom: none;
}

@media (max-width: 1050px) {
    body.page-blog .blog-grid,
    body[class^='page-blog-'] .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .listing-page .page-hero,
    .listing-page .filter-panel,
    .detail-page .article-card,
    .detail-page .inquiry-box {
        border-radius: 10px;
        padding: 12px;
    }

    .detail-page .detail-image {
        height: 220px;
        border-radius: 10px;
    }

    body.page-blog .blog-grid,
    body[class^='page-blog-'] .blog-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    body.page-blog .blog-card img,
    body[class^='page-blog-'] .blog-card img {
        height: 190px;
    }
}

/* Final hard override: use one identical navbar on all pages */
.utility-bar {
    display: none !important;
}

.site-header {
    position: sticky !important;
    top: 0;
    z-index: 100;
    background: #fff !important;
    border-bottom: 1px solid #ececec !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
}

.header-inner {
    min-height: 68px;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.brand {
    gap: 8px;
}

.brand-logo,
.brand-mark {
    width: 30px;
    height: 30px;
    border-radius: 8px;
}

.brand strong {
    font-size: 0.9rem !important;
    color: #ef8b1a !important;
}

.brand small {
    display: none !important;
}

.nav-home-main {
    display: flex;
    align-items: center;
    gap: 26px;
}

.nav-home-main a {
    color: #3b3b3b !important;
    font-weight: 700;
    font-size: 0.95rem;
    border-bottom: none !important;
    padding-bottom: 0 !important;
}

.home-nav-right {
    display: flex !important;
    align-items: center;
    gap: 14px;
    margin-left: 8px;
}

.home-currency,
.home-login-link {
    color: #3d3d3d !important;
    font-size: 0.9rem;
    font-weight: 700;
}

@media (max-width: 920px) {
    .brand strong {
        font-size: 0.86rem !important;
    }

    .nav-home-main a {
        font-size: 0.86rem;
    }
}

/* Hero side image animation like reference */
.hero-exact-wrap {
    isolation: isolate;
}

.hero-side-thumbs {
    position: relative;
    perspective: 900px;
    transform-style: preserve-3d;
}

.hero-side-thumbs.left {
    animation: heroClusterDriftLeft 12s ease-in-out infinite;
}

.hero-side-thumbs.right {
    animation: heroClusterDriftRight 12s ease-in-out infinite;
}

.hero-side-thumbs .hero-thumb-tile {
    position: relative;
    display: block;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e0e6ed;
    box-shadow: 0 10px 16px rgba(17, 31, 46, 0.08);
    transform-origin: center;
    animation: heroTileFloat 7.2s ease-in-out infinite;
    animation-delay: calc(var(--tile-index, 0) * 0.28s);
    will-change: transform, box-shadow;
}

.hero-side-thumbs .hero-thumb-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 15%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 85%);
    transform: translateX(-135%);
    z-index: 2;
    pointer-events: none;
    animation: heroTileShine 4.8s ease-in-out infinite;
    animation-delay: calc(var(--tile-index, 0) * 0.35s);
}

.hero-side-thumbs .hero-thumb-tile img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transform: scale(1.04);
    animation: heroTileZoom 9.5s ease-in-out infinite alternate;
    animation-delay: calc(var(--tile-index, 0) * 0.25s);
}

.hero-side-thumbs .hero-thumb-tile.is-active {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 18px 28px rgba(21, 42, 63, 0.2), 0 0 0 2px rgba(242, 161, 58, 0.28);
}

@keyframes heroClusterDriftLeft {
    0%,
    100% {
        transform: translateY(0) rotate(-0.2deg);
    }
    50% {
        transform: translateY(-4px) rotate(0.25deg);
    }
}

@keyframes heroClusterDriftRight {
    0%,
    100% {
        transform: translateY(0) rotate(0.2deg);
    }
    50% {
        transform: translateY(4px) rotate(-0.25deg);
    }
}

@keyframes heroTileFloat {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg);
    }
    50% {
        transform: translate3d(0, -5px, 0) rotateX(1deg) rotateY(-1deg);
    }
}

@keyframes heroTileZoom {
    0% {
        transform: scale(1.03);
    }
    100% {
        transform: scale(1.1);
    }
}

@keyframes heroTileShine {
    0%,
    70%,
    100% {
        transform: translateX(-135%);
    }
    38% {
        transform: translateX(135%);
    }
}

@media (max-width: 920px) {
    .hero-side-thumbs.left,
    .hero-side-thumbs.right,
    .hero-side-thumbs .hero-thumb-tile,
    .hero-side-thumbs .hero-thumb-tile::before,
    .hero-side-thumbs .hero-thumb-tile img {
        animation-duration: 10s;
    }

    .hero-side-thumbs .hero-thumb-tile.is-active {
        transform: translateY(-2px) scale(1.03);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-side-thumbs.left,
    .hero-side-thumbs.right,
    .hero-side-thumbs .hero-thumb-tile,
    .hero-side-thumbs .hero-thumb-tile::before,
    .hero-side-thumbs .hero-thumb-tile img {
        animation: none !important;
    }
}

/* Mobile navbar refinement */
@media (max-width: 920px) {
    body.nav-open {
        overflow: hidden;
    }

    .site-header {
        position: sticky !important;
        top: 0;
        z-index: 120;
    }

    .header-inner {
        min-height: 64px;
        padding-top: 8px !important;
        padding-bottom: 8px !important;
    }

    .mobile-nav-tools {
        display: inline-flex !important;
        gap: 8px;
    }

    .mobile-icon-btn,
    .menu-toggle {
        width: 38px !important;
        height: 38px !important;
        border-radius: 11px !important;
        border: 1px solid #d8e3ef !important;
        background: #fff !important;
        color: #32465d !important;
        box-shadow: 0 8px 16px rgba(13, 34, 54, 0.08);
    }

    .menu-toggle {
        position: relative;
        color: transparent !important;
        font-size: 0 !important;
    }

    .menu-toggle::before {
        content: '';
        position: absolute;
        width: 14px;
        height: 2px;
        border-radius: 2px;
        background: #2f4359;
        box-shadow: 0 -5px 0 #2f4359, 0 5px 0 #2f4359;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .menu-toggle::after {
        content: '';
        position: absolute;
        width: 14px;
        height: 2px;
        border-radius: 2px;
        background: #2f4359;
        opacity: 0;
        transform: rotate(-45deg);
        transition: opacity 0.2s ease;
    }

    .menu-toggle[aria-expanded='true']::before {
        transform: rotate(45deg);
        box-shadow: none;
    }

    .menu-toggle[aria-expanded='true']::after {
        opacity: 1;
    }

    .nav-wrap {
        position: fixed !important;
        left: 10px !important;
        right: 10px !important;
        top: 70px !important;
        display: none !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 10px;
        border: 1px solid #dfe7f2 !important;
        border-radius: 16px;
        background: #fff;
        box-shadow: 0 24px 50px rgba(10, 30, 49, 0.18);
        padding: 12px;
        max-height: calc(100dvh - 82px);
        overflow: auto;
    }

    .nav-wrap.open {
        display: flex !important;
    }

    .nav-wrap nav {
        width: 100%;
        gap: 0;
        align-items: stretch;
    }

    .nav-wrap nav a {
        width: 100%;
        padding: 12px 8px;
        border-bottom: 1px solid #edf2f8;
        font-size: 0.95rem;
        color: #31485f !important;
    }

    .nav-wrap nav a:last-child {
        border-bottom: none;
    }

    .home-nav-right {
        width: 100%;
        margin: 2px 0 0;
        padding-top: 10px;
        border-top: 1px solid #edf2f8;
        display: grid !important;
        grid-template-columns: 38px 1fr auto;
        gap: 10px;
        align-items: center;
    }

    .home-currency {
        padding: 9px 10px;
        border: 1px solid #e2eaf4;
        border-radius: 10px;
        text-align: center;
        font-size: 0.84rem;
        background: #fbfdff;
    }

    .home-login-link {
        padding: 9px 12px;
        border: 1px solid #e2eaf4;
        border-radius: 10px;
        font-size: 0.84rem;
        background: #fbfdff;
    }
}

/* ==========================================================================
   MODERN VISUAL OVERRIDES & FRONTEND BEAUTIFICATION
   ========================================================================== */

/* --- Glassmorphic Floating Header --- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.72) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 4px 30px rgba(18, 67, 107, 0.03), 0 1px 3px rgba(0, 0, 0, 0.01) !important;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Add scrolling state shadow variation */
.site-header.scrolled {
    background: rgba(255, 255, 255, 0.85) !important;
    box-shadow: 0 10px 30px rgba(18, 67, 107, 0.07) !important;
    border-bottom-color: rgba(18, 67, 107, 0.08) !important;
}

/* Nav links underline animation */
.nav-home-main a {
    position: relative;
    padding-bottom: 6px !important;
    border-bottom: none !important;
    transition: color 0.3s ease;
}

.nav-home-main a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--sun), #ffad82);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* --- Hero Section Beautification --- */
.hero-home.hero-home-exact {
    background: radial-gradient(circle at top left, rgba(18, 67, 107, 0.04) 0%, transparent 40%),
                radial-gradient(circle at bottom right, rgba(255, 122, 47, 0.05) 0%, transparent 40%),
                #f8fbff !important;
    border-bottom: 1px solid rgba(18, 67, 107, 0.06) !important;
    position: relative;
    overflow: hidden;
    padding: 48px 0 24px !important;
}

.hero-exact-copy h1 {
    font-size: clamp(2.4rem, 5.5vw, 3.8rem) !important;
    font-weight: 850 !important;
    line-height: 1.12 !important;
    letter-spacing: -0.03em !important;
    color: var(--ink-900);
}

.hero-exact-copy h1 span {
    background: linear-gradient(135deg, var(--ocean) 0%, var(--sun) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
}

.hero-exact-copy p {
    font-size: 1.15rem !important;
    color: var(--ink-500);
    margin-top: 12px !important;
    font-weight: 600;
}

/* Side thumb hover effects */
.hero-side-thumbs .hero-thumb-tile {
    border-radius: 16px !important;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(18, 67, 107, 0.08);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                filter 0.3s ease !important;
}

.hero-side-thumbs .hero-thumb-tile img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-side-thumbs .hero-thumb-tile:hover {
    transform: scale(1.08) translateY(-4px) rotate(1.5deg) !important;
    box-shadow: 0 20px 38px rgba(18, 67, 107, 0.16) !important;
    z-index: 10;
}

.hero-side-thumbs .hero-thumb-tile:hover img {
    transform: scale(1.06);
}

/* Quick Category / Tab bar styles */
.hero-category-row {
    background: rgba(255, 255, 255, 0.65) !important;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(18, 67, 107, 0.05) !important;
    border-radius: 100px !important;
    padding: 6px !important;
    box-shadow: 0 10px 30px rgba(18, 67, 107, 0.02) !important;
    gap: 8px !important;
}

.hero-category-row a {
    border-radius: 99px !important;
    padding: 8px 18px !important;
    font-weight: 700 !important;
    font-size: 0.88rem !important;
    transition: background 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                color 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.2s ease !important;
}

.hero-category-row a:hover {
    background: rgba(18, 67, 107, 0.04) !important;
    color: var(--ocean) !important;
}

.hero-category-row a.is-active {
    background: var(--ocean) !important;
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(18, 67, 107, 0.2) !important;
}

/* --- Premium Cards Overhaul --- */
.card, 
.deal-card {
    border-radius: 20px !important;
    border: 1px solid rgba(216, 228, 242, 0.8) !important;
    background: linear-gradient(165deg, #ffffff 0%, #fafcff 100%) !important;
    box-shadow: 0 10px 30px -10px rgba(18, 67, 107, 0.08), 0 1px 3px rgba(18, 67, 107, 0.02) !important;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.3s ease !important;
}

.card:hover, 
.deal-card:hover {
    transform: translateY(-8px) scale(1.005) !important;
    box-shadow: 0 24px 48px -12px rgba(18, 67, 107, 0.16), 0 2px 8px rgba(18, 67, 107, 0.04) !important;
    border-color: rgba(18, 67, 107, 0.16) !important;
}

.deal-card .deal-media {
    border-radius: 19px 19px 0 0 !important;
    overflow: hidden;
}

.deal-card .deal-media img {
    height: 204px !important;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.deal-card:hover .deal-media img {
    transform: scale(1.06) !important;
}

/* Overlay gradient inside media */
.deal-card .deal-media::after {
    background: linear-gradient(180deg, rgba(6, 20, 36, 0) 0%, rgba(6, 20, 36, 0.5) 60%, rgba(6, 20, 36, 0.85) 100%) !important;
}

/* Translucent, HSL-tailored Badges */
.deal-badge {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    color: var(--ocean-deep) !important;
    font-weight: 800 !important;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    padding: 5px 12px !important;
    border-radius: 30px !important;
}

.deal-body {
    padding: 20px !important;
}

/* Facts / Metadata row */
.deal-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px !important;
    margin-bottom: 12px;
}

.deal-facts span {
    background: rgba(18, 67, 107, 0.04) !important;
    border: 1px solid rgba(18, 67, 107, 0.02) !important;
    color: var(--ink-700) !important;
    font-weight: 700 !important;
    font-size: 0.72rem !important;
    padding: 4px 10px !important;
    border-radius: 30px !important;
}

.deal-facts span b {
    display: none !important; /* Hide prefix letters like 'D', 'T', 'R' if any for cleaner look */
}

/* Pricing and details */
.deal-pricing {
    border-top: 1px solid rgba(18, 67, 107, 0.06) !important;
    padding-top: 14px !important;
    margin-top: 12px !important;
}

.deal-pricing strong {
    font-size: 1.45rem !important;
    font-family: 'Sora', sans-serif;
    color: var(--ocean) !important;
}

.deal-secondary-price {
    font-size: 0.82rem !important;
    color: var(--ink-500) !important;
    margin-top: 2px;
    font-weight: 600;
}

.deal-audience {
    font-size: 0.68rem !important;
    color: var(--sun-deep) !important;
    background: rgba(255, 122, 47, 0.06);
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-block;
    margin-top: 4px;
    font-weight: 700;
}

/* --- Redesigned Filter Panel --- */
.filter-panel {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(216, 228, 242, 0.9) !important;
    border-radius: 24px !important;
    padding: 24px !important;
    box-shadow: 0 12px 40px rgba(18, 67, 107, 0.04) !important;
    margin-bottom: 30px !important;
}

.filter-panel label {
    font-weight: 700 !important;
    font-size: 0.8rem !important;
    color: var(--ink-700) !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px !important;
    display: block;
}

.filter-panel input,
.filter-panel select {
    border: 1px solid rgba(18, 67, 107, 0.15) !important;
    border-radius: 12px !important;
    padding: 10px 14px !important;
    font-family: inherit;
    font-size: 0.9rem !important;
    color: var(--ink-900) !important;
    background: #fff !important;
    transition: border-color 0.25s ease, box-shadow 0.25s ease !important;
    height: auto !important;
}

.filter-panel input:focus,
.filter-panel select:focus {
    border-color: var(--ocean) !important;
    box-shadow: 0 0 0 3px rgba(18, 67, 107, 0.1) !important;
    outline: none !important;
}

/* --- Buttons & Interactivity --- */
.btn {
    border-radius: 14px !important;
    font-family: 'Sora', sans-serif;
    font-weight: 700 !important;
    padding: 12px 24px !important;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.2s cubic-bezier(0.16, 1, 0.3, 1), 
                background 0.25s ease !important;
}

.btn:active {
    transform: scale(0.97) !important;
}

.btn.primary {
    background: linear-gradient(135deg, var(--sun) 0%, #ff8f4d 100%) !important;
    border: none !important;
    color: #fff !important;
    box-shadow: 0 6px 18px rgba(255, 122, 47, 0.3) !important;
}

.btn.primary:hover {
    background: linear-gradient(135deg, var(--sun-deep) 0%, #f06a1c 100%) !important;
    box-shadow: 0 10px 22px rgba(255, 122, 47, 0.42) !important;
}

.btn.ghost {
    background: rgba(255, 255, 255, 0.8) !important;
    border: 1px solid rgba(18, 67, 107, 0.16) !important;
    color: var(--ocean) !important;
}

.btn.ghost:hover {
    background: rgba(18, 67, 107, 0.04) !important;
    border-color: var(--ocean) !important;
}

/* Call Us callout button */
.deal-call-icon {
    border: 1px solid rgba(18, 67, 107, 0.15) !important;
    border-radius: 14px !important;
    color: var(--ocean) !important;
    background: #fff !important;
    font-weight: 700 !important;
    padding: 12px 18px !important;
    transition: all 0.25s ease !important;
}

.deal-call-icon:hover {
    background: rgba(18, 67, 107, 0.04) !important;
    border-color: var(--ocean) !important;
}

/* --- Section headers --- */
.section-head {
    margin-bottom: 24px !important;
}

.section-head h2 {
    font-family: 'Sora', sans-serif !important;
    font-weight: 800 !important;
    font-size: 1.85rem !important;
    letter-spacing: -0.02em !important;
    color: var(--ocean-deep);
}

.section-head a {
    font-weight: 700 !important;
    color: var(--sun) !important;
    transition: color 0.3s ease;
}

.section-head a:hover {
    color: var(--sun-deep) !important;
}

/* Add custom animations to layout */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile responsive visual details */
@media (max-width: 768px) {
    .hero-home.hero-home-exact {
        padding: 32px 0 16px !important;
    }
    
    .hero-exact-copy h1 {
        font-size: 2.2rem !important;
    }
    
    .filter-panel {
        padding: 16px !important;
        border-radius: 18px !important;
    }
}

/* --- Premium Footer Overhaul --- */
.site-footer {
    background: radial-gradient(circle at 80% 20%, rgba(255, 122, 47, 0.04) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(18, 67, 107, 0.04) 0%, transparent 50%),
                #061524 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: #cbd5e1 !important;
    padding: 72px 0 32px !important;
    font-family: 'Manrope', sans-serif;
    margin-top: 54px !important;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr !important;
    gap: 48px !important;
    margin-bottom: 48px;
}

.footer-brand-col .footer-logo {
    font-family: 'Sora', sans-serif !important;
    font-weight: 800 !important;
    font-size: 1.6rem !important;
    letter-spacing: -0.02em !important;
    color: #ffffff !important;
    margin-top: 0;
    margin-bottom: 16px !important;
    background: linear-gradient(135deg, #ffffff 0%, #d8e4f2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand-col .footer-desc {
    color: #94a3b8 !important;
    line-height: 1.7 !important;
    font-size: 0.94rem !important;
    max-width: 32ch;
}

.footer-title {
    font-family: 'Sora', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #ffffff !important;
    margin-top: 0;
    margin-bottom: 24px !important;
    position: relative;
    padding-bottom: 8px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--sun);
    border-radius: 2px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #94a3b8 !important;
    font-weight: 600;
    font-size: 0.94rem !important;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                color 0.3s ease !important;
    display: inline-block;
}

.footer-links a:hover {
    color: #ffffff !important;
    transform: translateX(4px);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-icon {
    font-size: 1.1rem;
    line-height: 1;
    margin-top: 2px;
}

.contact-text {
    color: #94a3b8 !important;
    font-size: 0.94rem !important;
    line-height: 1.5 !important;
}

/* Footer Bottom Bar styling */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
    padding-top: 28px !important;
    margin-top: 24px;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom .copyright {
    color: #64748b !important;
    font-size: 0.88rem !important;
    margin: 0 !important;
    font-weight: 600;
}

.footer-social-links {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #94a3b8 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem !important;
    font-weight: 800 !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.social-btn:hover {
    background: var(--sun) !important;
    border-color: var(--sun) !important;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 122, 47, 0.3);
}

/* Mobile responsiveness for footer */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 36px !important;
    }
    
    .footer-brand-col .footer-desc {
        max-width: 100%;
    }
}


