/* ═══════════════════════════════════════════════════════
   Visit Pokhara — Main Stylesheet
   ═══════════════════════════════════════════════════════ */
:root {
    --primary: #0c6b65;
    --primary-dark: #084d48;
    --primary-light: #cde8e6;
    --primary-muted: #e8f5f4;
    --accent: #c55a18;
    --accent-dark: #a8480f;
    --dark: #0a1118;
    --dark2: #111c26;
    --light: #f8f9fa;
    --cream: #f6f1ea;
    --fog: #94a3b8;
    --mist: rgba(255, 255, 255, 0.15);
    --sand: #ede5d8;
    --card-bg: rgba(255, 255, 255, 0.04);
    --border: rgba(255, 255, 255, 0.12);
    --radius: 18px;
    --nav-h: 66px;
    --ease: cubic-bezier(.22, .61, .36, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, .25);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, .35);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, .55);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--nav-h) + 16px);
    overflow-x: clip;
}

body {
    background: var(--dark);
    color: var(--light);
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--primary-light);
    text-decoration: none;
}

a:hover {
    color: #7fd8d0;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -.015em;
}

h1 {
    font-size: clamp(2.2rem, 5.5vw, 4rem);
}

h2 {
    font-size: clamp(1.6rem, 3.2vw, 2.2rem);
}

h3 {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
}

p {
    margin-bottom: 1em;
}

button {
    font-family: inherit;
    cursor: pointer;
}

:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
    border-radius: 6px;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

[hidden] {
    display: none !important;
}

/* ── NAVBAR ────────────────────────────────────────────── */
.nav {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(10, 17, 24, .85);
    backdrop-filter: blur(16px) saturate(1.4);
    border-bottom: 1px solid var(--border);
    transition: box-shadow .3s var(--ease);
}

.nav.stuck {
    box-shadow: 0 2px 20px rgba(0, 0, 0, .4);
}

.nav-in {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: var(--nav-h);
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--light);
    text-decoration: none;
    flex-shrink: 0;
}

.brand:hover {
    color: #7fd8d0;
}

.brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    flex-shrink: 0;
    background: linear-gradient(140deg, var(--primary) 0%, var(--primary-dark) 55%, var(--dark2) 100%);
    display: grid;
    place-items: center;
    color: #fff;
    font-size: .9rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.nav-links a {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    padding: 0 14px;
    border-radius: 10px;
    font-size: .92rem;
    font-weight: 500;
    color: var(--fog);
    transition: background .2s, color .2s;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
    background: var(--primary-muted);
    color: var(--primary-light);
}

.nav-cta {
    background: var(--primary-dark) !important;
    color: #fff !important;
    padding: 0 18px !important;
    font-weight: 700 !important;
    border-radius: 100px !important;
}

.nav-cta:hover {
    background: var(--accent) !important;
}

.burger {
    display: none;
    margin-left: auto;
    width: 46px;
    height: 46px;
    border: 1px solid var(--border);
    background: var(--card-bg);
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.burger span {
    display: block;
    width: 19px;
    height: 2px;
    background: var(--light);
    border-radius: 2px;
    transition: transform .3s var(--ease), opacity .2s;
}

.burger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.burger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 860px) {
    .burger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: var(--nav-h);
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        background: var(--dark2);
        border-bottom: 1px solid var(--border);
        padding: 14px 20px 22px;
        margin: 0;
        box-shadow: var(--shadow-md);
        transform: translateY(-8px);
        opacity: 0;
        visibility: hidden;
        transition: transform .28s var(--ease), opacity .22s, visibility .22s;
        max-height: calc(100dvh - var(--nav-h));
        overflow-y: auto;
    }

    .nav-links.open {
        transform: none;
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        min-height: 50px;
        padding: 0 16px;
        font-size: 1rem;
    }

    .nav-cta {
        justify-content: center;
        margin-top: 6px;
        border-radius: 12px !important;
    }
}

/* ── HERO ──────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: min(92vh, 760px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--dark2);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url('imgs/hero.jpg') center/cover no-repeat;
    animation: slowZoom 22s infinite alternate linear;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 17, 24, .3) 0%, rgba(10, 17, 24, .2) 35%, rgba(10, 17, 24, .75) 75%, rgba(10, 17, 24, .96) 100%);
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.12);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 120px 24px 56px;
    color: #fff;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 255, 255, .11);
    border: 1px solid rgba(255, 255, 255, .24);
    backdrop-filter: blur(8px);
    padding: 7px 16px;
    border-radius: 100px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.pip {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #5eead4;
    box-shadow: 0 0 0 3px rgba(94, 234, 212, .28);
    animation: pulse 2.6s var(--ease) infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 3px rgba(94, 234, 212, .28);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(94, 234, 212, .05);
    }
}

.hero h1 {
    color: #fff;
    max-width: 18ch;
    margin-bottom: .4em;
    text-shadow: 0 2px 30px rgba(0, 0, 0, .4);
}

.hero h1 em {
    font-style: italic;
    color: #7fd8d0;
}

.hero-sub {
    font-size: clamp(1rem, 1.9vw, 1.25rem);
    color: rgba(255, 255, 255, .9);
    max-width: 58ch;
    margin-bottom: 32px;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 48px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 52px;
    padding: 0 28px;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 700;
    border: 1px solid transparent;
    text-decoration: none;
    transition: transform .22s var(--ease), box-shadow .22s, background .2s, color .2s;
}

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

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 6px 20px rgba(197, 90, 24, .32);
}

.btn-primary:hover {
    background: var(--accent-dark);
    color: #fff;
    box-shadow: 0 12px 30px rgba(197, 90, 24, .45);
}

.btn-ghost {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .38);
    color: #fff;
    backdrop-filter: blur(8px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .22);
    color: #fff;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, .18);
    padding-top: 28px;
}

.hero-stats div {
    padding-right: 8px;
}

.hero-stats b {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: #fff;
    line-height: 1.1;
}

.hero-stats span {
    font-size: .78rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .65);
}

.scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 20px;
    z-index: 2;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, .7);
    animation: floatDown 2.4s var(--ease) infinite;
}

@keyframes floatDown {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* hero fade-ups */
.hero-content>* {
    animation: fadeUp .85s var(--ease) both;
}

.hero-content>*:nth-child(1) {
    animation-delay: .05s;
}

.hero-content>*:nth-child(2) {
    animation-delay: .15s;
}

.hero-content>*:nth-child(3) {
    animation-delay: .25s;
}

.hero-content>*:nth-child(4) {
    animation-delay: .35s;
}

.hero-content>*:nth-child(5) {
    animation-delay: .45s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/* ── INTRO TEXT ─────────────────────────────────────────── */
.intro-sec {
    padding: clamp(48px, 7vw, 80px) 0;
}

.intro-wrap {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 24px;
}

.lead-block {
    font-size: clamp(1.05rem, 2vw, 1.22rem);
    line-height: 1.65;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    padding: 22px 26px;
    background: rgba(12, 107, 101, .18);
    border-left: 4px solid var(--primary);
    border-radius: 0 14px 14px 0;
    margin-bottom: 1.4em;
    color: rgba(255, 255, 255, .95);
}

.intro-wrap p {
    color: var(--fog);
    font-size: 1.04rem;
}

/* ── SECTION HELPERS ───────────────────────────────────── */
.section-head {
    max-width: 680px;
    margin-bottom: clamp(28px, 4vw, 48px);
}

.section-head.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.kicker {
    display: block;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}

.sec-deep .kicker {
    color: #7fd8d0;
}

.section-head h2 {
    margin-bottom: .35em;
}

.section-head p {
    color: var(--fog);
    font-size: 1rem;
    margin: 0;
}

/* ── ADSENSE BANNER CONTAINER ──────────────────────────── */
.ad-container {
    max-width: 1200px;
    min-height: 250px;
    margin: 36px auto;
    padding: 16px;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px dashed rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.ad-container ins.adsbygoogle {
    display: block !important;
    width: 100%;
    min-height: 250px;
}

/* ── HIGHLIGHTS RAIL ───────────────────────────────────── */
.sec-alt {
    background: var(--dark2);
    padding: clamp(48px, 7vw, 80px) 0;
}

.rail-wrap {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

.rail {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    margin-top: 36px;
}

.rail-item {
    position: relative;
    display: block;
    aspect-ratio: 3/4;
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    box-shadow: var(--shadow-md);
    transition: transform .34s var(--ease), box-shadow .34s;
}

.rail-item:hover {
    transform: translateY(-8px) scale(1.012);
    box-shadow: var(--shadow-lg);
}

.rail-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease);
}

.rail-item:hover img {
    transform: scale(1.1);
}

.rail-cap {
    position: absolute;
    inset: auto 0 0;
    padding: 28px 16px 16px;
    background: linear-gradient(180deg, transparent, rgba(10, 17, 24, .92));
    color: #fff;
    z-index: 1;
}

.rail-cap b {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 3px;
}

.rail-cap span {
    font-size: .82rem;
    color: rgba(255, 255, 255, .78);
}

/* ── FILTER BAR ─────────────────────────────────────────── */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 44px;
}

.filter-btn {
    min-height: 44px;
    padding: 0 18px;
    border-radius: 100px;
    border: 1px solid var(--border);
    background: var(--card-bg);
    color: var(--fog);
    font-size: .9rem;
    font-weight: 600;
    transition: all .22s var(--ease);
    backdrop-filter: blur(8px);
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary-light);
}

.filter-btn.active {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
    box-shadow: 0 4px 14px rgba(12, 107, 101, .4);
}

/* ── PLACES GRID ────────────────────────────────────────── */
.places-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: clamp(60px, 8vw, 100px) 24px;
}

.grid {
    display: grid;
    gap: 26px;
    grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: transform .35s var(--ease), box-shadow .35s, border-color .3s;
    opacity: 0;
    transform: translateY(40px);
}

.card.reveal-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.card-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--dark2);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s var(--ease);
}

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

.card-tags {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
    z-index: 2;
}

.cat-pill {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
    backdrop-filter: blur(4px);
}

.badge-must {
    background: var(--accent);
    color: #fff;
}

.card-info {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-info h3 {
    font-size: 1.25rem;
    margin-bottom: .3em;
    color: var(--light);
}

.short-desc {
    font-size: .93rem;
    color: var(--fog);
    line-height: 1.6;
    margin-bottom: 1em;
    flex: 1;
}

.card-foot {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    font-size: .85rem;
}

.fee-small {
    color: var(--fog);
}

.fee-small i {
    color: var(--primary-light);
    margin-right: 4px;
}

.explore-link {
    font-weight: 700;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap .2s var(--ease);
}

.card:hover .explore-link {
    gap: 10px;
    color: #e07024;
}

.no-results {
    text-align: center;
    padding: 48px 20px;
    color: var(--fog);
}

.no-results button {
    background: none;
    border: 1px solid var(--border);
    color: var(--fog);
    padding: 8px 18px;
    border-radius: 100px;
    margin-left: 10px;
    cursor: pointer;
}

/* ── VIDEO SECTION ─────────────────────────────────────── */
.sec-deep {
    background: #0e1c26;
}

.video-container {
    padding: clamp(60px, 8vw, 100px) 0;
}

.vid-wrap {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

.vid-grid {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    margin-top: 8px;
}

.vid-card {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--dark2);
    transition: transform .35s var(--ease), box-shadow .35s, border-color .3s;
}

.vid-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.vid-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    cursor: pointer;
    background: #0d1418;
}

.vid-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .85;
    transition: transform .7s var(--ease), opacity .3s;
    display: block;
}

.vid-card:hover .vid-thumb img {
    transform: scale(1.06);
    opacity: 1;
}

.vid-thumb iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.play-btn {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: none;
    border: 0;
    cursor: pointer;
    width: 100%;
    color: #fff;
}

.play-btn i {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(197, 90, 24, .92);
    display: grid;
    place-items: center;
    font-size: 1.3rem;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .45);
    transition: transform .3s var(--ease), background .25s;
    padding-left: 4px;
}

.play-btn:hover i {
    transform: scale(1.14);
    background: var(--accent);
}

.vid-label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 30px 18px 14px;
    background: linear-gradient(180deg, transparent, rgba(10, 16, 20, .92));
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
    pointer-events: none;
}

.vid-thumb.playing .play-btn,
.vid-thumb.playing img,
.vid-thumb.playing .vid-label {
    display: none;
}

.yt-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    color: #ff5252;
    font-weight: 700;
    font-size: .9rem;
    text-decoration: none;
    border-top: 1px solid var(--border);
    transition: background .2s;
}

.yt-link i {
    font-size: 1.15rem;
}

.yt-link:hover {
    background: rgba(255, 82, 82, .08);
    color: #ff5252;
}

/* ── MODAL ─────────────────────────────────────────────── */
.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity .35s, visibility .35s;
    padding: 16px;
}

.modal.active {
    visibility: visible;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .82);
    backdrop-filter: blur(12px);
}

.modal-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1060px;
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: 22px;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: calc(100dvh - 32px);
    box-shadow: var(--shadow-lg);
    transform: scale(.92) translateY(24px);
    opacity: 0;
    transition: transform .45s var(--ease), opacity .45s var(--ease);
}

.modal.active .modal-content {
    transform: none;
    opacity: 1;
}

.close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    border: none;
    color: #fff;
    font-size: 18px;
    display: grid;
    place-items: center;
    transition: background .25s, transform .3s;
}

.close-btn:hover {
    background: var(--accent);
    transform: rotate(90deg);
}

/* modal hero */
.modal-hero {
    position: relative;
    height: clamp(220px, 35vh, 360px);
    overflow: hidden;
}

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

.modal-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(14, 28, 38, .98) 100%);
}

.modal-hero-overlay {
    position: absolute;
    inset: auto 0 0;
    padding: 40px 30px 26px;
    z-index: 1;
}

.modal-hero-overlay h2 {
    color: #fff;
    margin-bottom: .25em;
}

#modal-tagline {
    color: rgba(255, 255, 255, .82);
    font-size: 1.05rem;
    margin: 0;
}

/* modal body */
.modal-body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 30px 36px;
}

@media (min-width: 740px) {
    .modal-body {
        grid-template-columns: 1fr 320px;
    }
}

.modal-desc-text {
    color: rgba(255, 255, 255, .88);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 1.5em;
}

.detail-heading {
    font-family: 'Outfit', sans-serif;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--primary-light);
    margin: 1.6em 0 .7em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fee-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .95rem;
    margin-bottom: .6em;
}

.fee-table th,
.fee-table td {
    text-align: left;
    padding: 9px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.fee-table thead th {
    font-family: 'Outfit', sans-serif;
    font-size: .78rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--primary-light);
    background: rgba(12, 107, 101, .15);
    font-weight: 700;
}

.fee-table td:last-child {
    color: rgba(255, 255, 255, .85);
    font-weight: 600;
}

.fee-note {
    font-size: .82rem;
    color: var(--fog);
    font-style: italic;
    margin-top: .3em;
}

.tip-box {
    padding: 14px 18px;
    background: rgba(197, 90, 24, .12);
    border-left: 3px solid var(--accent);
    border-radius: 0 10px 10px 0;
    font-size: .97rem;
    color: rgba(255, 255, 255, .88);
    line-height: 1.65;
}

/* aside fact box */
.modal-aside {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.fact-box {
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 22px;
}

.fact-box h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--light);
}

.fact-box h3 i {
    color: var(--primary-light);
}

.fact-list {
    list-style: none;
    margin-bottom: 14px;
}

.fact-list li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    font-size: .9rem;
}

.fact-list li:last-child {
    border-bottom: none;
}

.fact-list li:first-child span:first-child {
    color: var(--fog);
}

.fact-list li span:last-child {
    font-weight: 600;
    text-align: right;
    color: rgba(255, 255, 255, .9);
}

.fact-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 7px 0;
    font-size: .88rem;
    color: rgba(255, 255, 255, .82);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.fact-row:last-child {
    border-bottom: none;
}

.fact-row i {
    color: var(--primary-light);
    flex-shrink: 0;
    margin-top: 3px;
    width: 14px;
    text-align: center;
}

.map-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    background: #4285F4;
    color: #fff;
    border-radius: 12px;
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none;
    transition: background .25s, transform .22s;
}

.map-btn:hover {
    background: #3367d6;
    transform: translateY(-2px);
    color: #fff;
}

/* modal video */
.modal-video-wrap {
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}

.modal-vid-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #0d1418;
}

.modal-vid-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .85;
    transition: opacity .3s;
    display: block;
}

.modal-vid-thumb iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.modal-vid-thumb.playing img,
.modal-vid-thumb.playing .play-btn {
    display: none;
}

.yt-link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    color: #ff5252;
    font-weight: 700;
    font-size: .88rem;
    text-decoration: none;
    border-top: 1px solid var(--border);
    transition: background .2s;
}

.yt-link-btn:hover {
    background: rgba(255, 82, 82, .08);
    color: #ff5252;
}

/* ── FOOTER ─────────────────────────────────────────────── */
.foot {
    background: #060c12;
    padding: clamp(44px, 6vw, 70px) 0 0;
    font-size: .95rem;
}

.foot-in {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px 40px;
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.foot .brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.18rem;
    color: #fff;
    margin-bottom: 12px;
}

.foot p {
    color: rgba(255, 255, 255, .55);
    font-size: .9rem;
    line-height: 1.65;
}

.foot h3 {
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    margin-bottom: .8em;
}

.foot ul {
    list-style: none;
}

.foot li a {
    display: inline-block;
    padding: 5px 0;
    color: rgba(255, 255, 255, .55);
    transition: color .2s;
}

.foot li a:hover {
    color: #7fd8d0;
}

.foot-bar {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 18px 24px 24px;
    max-width: 1300px;
    margin: 0 auto;
    color: rgba(255, 255, 255, .4);
    font-size: .85rem;
}

/* ── BACK TO TOP ────────────────────────────────────────── */
.top-btn {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 110;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--dark2);
    color: var(--primary-light);
    box-shadow: var(--shadow-md);
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity .28s, visibility .28s, transform .28s var(--ease), background .2s;
}

.top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.top-btn:hover {
    background: var(--primary-dark);
    color: #fff;
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 600px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .modal-hero-overlay h2 {
        font-size: 1.6rem;
    }

    .modal-body {
        padding: 20px 18px 28px;
    }

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

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        transition-duration: .001ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .card {
        opacity: 1;
        transform: none;
    }
}

/* Bookmark Button */
.bookmark-btn {
    background: none;
    border: none;
    font-size: 1.1rem;
    color: #a1a1aa;
    cursor: pointer;
    padding: 4px;
    padding-right: 8px;
    transition: all 0.2s;
    z-index: 10;
    position: relative;
}

.bookmark-btn:hover {
    color: #ff5252;
    transform: scale(1.1);
}