/* ─── TOKENS ─────────────────────────────────────────── */
:root {
    --ink: #0a1628;
    --deep: #0f2347;
    --mid: #1e3a8a;
    --gold: #c9962b;
    --gold-lt: #f0c060;
    --cream: #faf7f2;
    --muted: #6b7280;
    --white: #ffffff;
    --r-card: 20px;
    --r-pill: 999px;
    --shadow: 0 24px 60px rgba(10, 22, 40, .14);
    --shadow-sm: 0 8px 24px rgba(10, 22, 40, .10);
    --ff-disp: 'Cormorant Garamond', Georgia, serif;
    --ff-body: 'DM Sans', sans-serif;
    --nav-h: 64px;

    --ff-logo: 'Kaushan Script', cursive;
}

/* ─── RESET ──────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent
}

body {
    font-family: var(--ff-body);
    background: var(--cream);
    color: var(--ink);
    overflow-x: hidden;
    line-height: 1.6;
}

img {
    display: block;
    max-width: 100%
}

a {
    text-decoration: none;
    color: inherit
}

ul {
    list-style: none
}

/* ─── SCROLLBAR ──────────────────────────────────────── */
::-webkit-scrollbar {
    width: 6px
}

::-webkit-scrollbar-track {
    background: var(--cream)
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px
}

/* ─── UTILITY ────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gold {
    color: var(--gold)
}

.tag {
    display: inline-block;
    font-family: var(--ff-body);
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201, 150, 43, .12);
    border: 1px solid rgba(201, 150, 43, .3);
    padding: 4px 14px;
    border-radius: var(--r-pill);
    margin-bottom: 14px;
}

.section-head {
    text-align: center;
    margin-bottom: 48px;
}

.section-head h2 {
    font-family: var(--ff-disp);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--ink);
}

.section-head p {
    margin-top: 12px;
    color: var(--muted);
    font-size: .95rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* ─── BUTTONS ────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ff-body);
    font-weight: 600;
    font-size: .92rem;
    border-radius: var(--r-pill);
    padding: 13px 28px;
    cursor: pointer;
    transition: transform .18s, box-shadow .18s, background .18s;
    border: none;
}

.btn:active {
    transform: scale(.97)
}

.chardham-btn-bg {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap
}

.mini-heading-tag {
    background: rgba(201, 150, 43, .2);
    border-color: rgba(201, 150, 43, .4)
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), #e8b44a);
    color: var(--ink);
    box-shadow: 0 6px 20px rgba(201, 150, 43, .35);
}

.btn-gold:hover {
    box-shadow: 0 10px 28px rgba(201, 150, 43, .5);
    transform: translateY(-2px)
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .5);
    color: var(--white);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, .1);
    border-color: #fff
}

.btn-dark {
    background: var(--ink);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--deep)
}

.price-btn {
    padding: 9px 18px;
    font-size: .82rem;
}

/* ─── NAVBAR ─────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-h);
    z-index: 1000;
    background: rgba(10, 22, 40, .92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    transition: background .3s;
}

.navbar .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--gold), #e8b44a);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: .85rem;
    color: var(--ink);
}

.brand-name {
    font-family: var(--ff-logo);
    /* font-size: 1.3rem; */
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: .01em;
}

.brand-name span {
    color: var(--gold-lt)
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    font-size: .88rem;
    color: rgba(255, 255, 255, .75);
    font-weight: 700;
    transition: color .2s;
}

.nav-links a:hover {
    color: var(--gold-lt)
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: .3s;
}

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--ink);
    z-index: 999;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    flex-direction: column;
    gap: 4px;
}

.mobile-menu.open {
    display: flex
}

.mobile-menu a {
    color: rgba(255, 255, 255, .85);
    font-weight: 500;
    font-size: .95rem;
    padding: 12px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.mobile-menu a:last-child {
    border-bottom: none
}

.mobile-menu .btn {
    margin-top: 10px;
    text-align: center;
    justify-content: center
}

/* ─── HERO ───────────────────────────────────────────── */
.hero {
    min-height: 100svh;
    background:
        linear-gradient(to bottom, rgba(10, 22, 40, .7) 0%, rgba(10, 22, 40, .5) 50%, rgba(10, 22, 40, .85) 100%),
        url('img/main-banner-landing-tripplanning.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding-top: var(--nav-h);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(transparent, var(--cream));
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding: 60px 0 100px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    animation: fadeUp .8s ease both;
}

.hero-eyebrow .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}

.hero-eyebrow span {
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold-lt);
}

.hero h1 {
    font-family: var(--ff-disp);
    font-size: clamp(2.6rem, 7vw, 5.2rem);
    font-weight: 700;
    line-height: 1.08;
    color: var(--white);
    max-width: 680px;
    animation: fadeUp .8s .15s ease both;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold-lt)
}

.hero-sub {
    margin-top: 18px;
    max-width: 520px;
    color: rgba(255, 255, 255, .8);
    font-size: 1rem;
    line-height: 1.7;
    animation: fadeUp .8s .3s ease both;
}

.hero-actions {
    margin-top: 36px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    animation: fadeUp .8s .45s ease both;
}

.hero-stats {
    margin-top: 60px;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    animation: fadeUp .8s .6s ease both;
}

.stat-item {
    text-align: left
}

.stat-num {
    font-family: var(--ff-disp);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    font-size: .75rem;
    color: rgba(255, 255, 255, .55);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, .15);
    align-self: stretch;
}

/* Floating destination chips */
.hero-chips {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-right: 24px;
    animation: fadeLeft .9s .7s ease both;
    z-index: 2;
}

.chip {
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: var(--r-pill);
    padding: 8px 16px;
    color: var(--white);
    font-size: .82rem;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    transition: background .2s, transform .2s;
}

.chip:hover {
    background: rgba(201, 150, 43, .3);
    transform: translateX(-4px)
}

/* ─── DESTINATIONS ───────────────────────────────────── */
.destinations {
    padding: 80px 0;
    background: var(--cream);
}

.dest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.dest-card {
    position: relative;
    border-radius: var(--r-card);
    overflow: hidden;
    cursor: pointer;
    group: true;
}

.dest-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform .5s ease;
}

.dest-card:hover img {
    transform: scale(1.07)
}

.dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, .85) 0%, transparent 55%);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.dest-category {
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold-lt);
    margin-bottom: 4px;
}

.dest-name {
    font-family: var(--ff-disp);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.dest-from {
    font-size: .8rem;
    color: rgba(255, 255, 255, .7);
    margin-top: 4px;
}

.dest-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gold);
    color: var(--ink);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .06em;
    padding: 4px 10px;
    border-radius: var(--r-pill);
}

/* Featured card (wide) */
.dest-card.featured {
    grid-column: span 2
}

.dest-card.featured img {
    height: 340px
}

/* ─── PACKAGES ───────────────────────────────────────── */
.packages {
    padding: 80px 0;
    background: var(--white);
}

.pkg-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

.pkg-tab {
    padding: 8px 20px;
    border-radius: var(--r-pill);
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid rgba(10, 22, 40, .12);
    color: var(--muted);
    background: transparent;
    transition: .2s;
}

.pkg-tab.active,
.pkg-tab:hover {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
}

.pkg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.pkg-card {
    border-radius: var(--r-card);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
    border: 1px solid rgba(10, 22, 40, .06);
}

.pkg-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow)
}

.pkg-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.pkg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s
}

.pkg-card:hover .pkg-img img {
    transform: scale(1.06)
}

.pkg-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(10, 22, 40, .75);
    backdrop-filter: blur(6px);
    color: var(--gold-lt);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    padding: 4px 10px;
    border-radius: var(--r-pill);
}

.pkg-fav {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, .9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
}

.pkg-body {
    padding: 20px
}

.pkg-title {
    font-family: var(--ff-disp);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
}

.pkg-meta {
    display: flex;
    gap: 14px;
    font-size: .8rem;
    color: var(--muted);
    margin-bottom: 14px;
}

.pkg-meta span {
    display: flex;
    align-items: center;
    gap: 4px
}

.pkg-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.pkg-hl {
    font-size: .72rem;
    background: rgba(201, 150, 43, .1);
    color: #8a6620;
    border-radius: var(--r-pill);
    padding: 3px 10px;
    font-weight: 500;
}

.pkg-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid rgba(10, 22, 40, .07);
}

.pkg-price {
    font-family: var(--ff-disp);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--ink);
}

.pkg-price small {
    font-family: var(--ff-body);
    font-size: .72rem;
    color: var(--muted);
    font-weight: 400;
}

/* ─── TREKS ──────────────────────────────────────────── */
.treks {
    padding: 80px 0;
    background: var(--ink);
}

.treks .section-head h2,
.treks .section-head p {
    color: var(--white);
}

.treks .section-head p {
    color: rgba(255, 255, 255, .55)
}

.trek-scroller {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 16px;
    scrollbar-width: none;
}

.trek-scroller::-webkit-scrollbar {
    display: none
}

.trek-card {
    flex: 0 0 240px;
    border-radius: var(--r-card);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.trek-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform .4s;
}

.trek-card:hover img {
    transform: scale(1.08)
}

.trek-info {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, .9) 30%, transparent);
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.trek-diff {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold-lt);
    margin-bottom: 4px;
}

.trek-name {
    font-family: var(--ff-disp);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
}

.trek-alt {
    font-size: .78rem;
    color: rgba(255, 255, 255, .6);
    margin-top: 3px;
}

/* ─── WHY US ─────────────────────────────────────────── */
.whyus {
    padding: 80px 0;
    background: var(--cream);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
}

.why-card {
    background: var(--white);
    border-radius: var(--r-card);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform .25s, box-shadow .25s;
    border: 1px solid rgba(10, 22, 40, .05);
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow)
}

.why-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--gold), #e8b44a);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 18px;
}

.why-card h4 {
    font-family: var(--ff-disp);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--ink);
}

.why-card p {
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.6
}

/* ─── TESTIMONIALS ───────────────────────────────────── */
.testimonials {
    padding: 80px 0;
    background: var(--deep);
}

.testimonials .section-head h2 {
    color: var(--white)
}

.testimonials .section-head p {
    color: rgba(255, 255, 255, .5)
}

.testi-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 8px;
}

.testi-scroll::-webkit-scrollbar {
    display: none
}

.testi-card {
    flex: 0 0 300px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--r-card);
    padding: 24px;
    backdrop-filter: blur(10px);
}

.stars {
    color: var(--gold);
    font-size: .9rem;
    margin-bottom: 12px
}

.testi-text {
    font-size: .9rem;
    color: rgba(255, 255, 255, .8);
    line-height: 1.7;
    margin-bottom: 18px;
    font-style: italic;
    font-family: var(--ff-disp);
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px
}

.testi-av {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--ink);
    font-size: .9rem;
}

.testi-name {
    font-weight: 600;
    color: var(--white);
    font-size: .88rem;
}

.testi-dest {
    font-size: .75rem;
    color: rgba(255, 255, 255, .4);
}

/* ─── CHAR DHAM BANNER ───────────────────────────────── */
.chardham {
    padding: 80px 0;
    background:
        linear-gradient(135deg, rgba(10, 22, 40, .85) 0%, rgba(30, 58, 138, .75) 100%),
        url('img/Tehri-Lake.jpg') center/cover no-repeat;
    text-align: center;
    color: var(--white);
}

.chardham h2 {
    font-family: var(--ff-disp);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
}

.chardham h2 em {
    font-style: italic;
    color: var(--gold-lt)
}

.chardham p {
    color: rgba(255, 255, 255, .75);
    max-width: 560px;
    margin: 16px auto 36px;
}

.dham-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 36px;
}

.dham-item {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(8px);
    border-radius: var(--r-pill);
    padding: 8px 20px;
    font-size: .85rem;
    font-weight: 500;
}

/* ─── LEAD FORM ──────────────────────────────────────── */
.lead-section {
    padding: 80px 0;
    background: var(--cream);
}

.form-wrapper {
    max-width: 760px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 28px;
    box-shadow: 0 32px 80px rgba(10, 22, 40, .12);
    overflow: hidden;
}

.form-header {
    background: linear-gradient(135deg, var(--ink), var(--mid));
    padding: 36px 40px;
    text-align: center;
    color: var(--white);
}

.form-header h2 {
    font-family: var(--ff-disp);
    font-size: 2rem;
    font-weight: 700;
}

.form-header p {
    color: rgba(255, 255, 255, .65);
    margin-top: 8px;
    font-size: .9rem
}

.form-body {
    padding: 36px 40px
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.form-group.full {
    grid-column: span 2
}

.form-label {
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--muted);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(10, 22, 40, .1);
    border-radius: 12px;
    font-family: var(--ff-body);
    font-size: .92rem;
    color: var(--ink);
    background: var(--cream);
    transition: border-color .2s, box-shadow .2s;
    outline: none;
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(201, 150, 43, .12);
}

select.form-control {
    cursor: pointer
}

textarea.form-control {
    resize: vertical;
    min-height: 100px
}

.form-submit {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.form-submit .btn {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 16px
}

.form-note {
    font-size: .78rem;
    color: var(--muted);
    text-align: center;
}

.form-note span {
    color: var(--gold)
}

/* ─── FOOTER ─────────────────────────────────────────── */
.footer {
    background: var(--ink);
    color: rgba(255, 255, 255, .7);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand .brand-name {
    font-size: 1.4rem;
    margin-bottom: 12px;
    display: block
}

.footer-brand p {
    font-size: .85rem;
    line-height: 1.7;
    margin-bottom: 20px
}

.footer-col h5 {
    color: var(--white);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: .85rem;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 10px;
    transition: color .2s;
}

.footer-col a:hover {
    color: var(--gold-lt)
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 16px
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    cursor: pointer;
    transition: background .2s;
    color: var(--white);
    text-decoration: none;
}

.social-btn:hover {
    background: var(--gold);
    color: var(--ink)
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .8rem;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, .45);
    transition: color .2s
}

.footer-bottom a:hover {
    color: var(--gold-lt)
}

/* ─── FLOATING WA BUTTON ─────────────────────────────── */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 24px rgba(37, 211, 102, .4);
    cursor: pointer;
    z-index: 900;
    text-decoration: none;
    color: white;
    transition: transform .2s, box-shadow .2s;
}

.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(37, 211, 102, .5)
}

/* ─── ANIMATIONS ─────────────────────────────────────── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(40px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

/* ─── SCROLL REVEAL ──────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── SUCCESS MESSAGE ────────────────────────────────── */
.success-msg {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.success-msg .check {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.success-msg h3 {
    font-family: var(--ff-disp);
    font-size: 1.6rem;
    color: var(--ink);
    margin-bottom: 8px;
}

.success-msg p {
    color: var(--muted);
    font-size: .9rem
}

/* ─── MOBILE-SPECIFIC ────────────────────────────────── */
@media (max-width: 767px) {

    .nav-links,
    .nav-cta {
        display: none
    }

    .hamburger {
        display: flex
    }

    .hero h1 {
        font-size: 2.4rem
    }

    .hero-chips {
        display: none
    }

    .hero-stats {
        gap: 20px
    }

    .stat-divider {
        display: none
    }

    .dest-card.featured {
        grid-column: span 1
    }

    .dest-card.featured img {
        height: 260px
    }

    .form-grid {
        grid-template-columns: 1fr
    }

    .form-group.full {
        grid-column: span 1
    }

    .form-header {
        padding: 28px 24px
    }

    .form-body {
        padding: 28px 24px
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .footer-grid .footer-brand {
        grid-column: span 2
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center
    }

    .hero-inner {
        padding: 40px 0 80px
    }

    .pkg-grid {
        grid-template-columns: 1fr
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr
    }

    .footer-grid .footer-brand {
        grid-column: span 1
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr
    }
}

/* ─── APP-INSTALL BANNER ─────────────────────────────── */
.install-banner {
    display: none;
    position: fixed;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ink);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 14px;
    font-size: .85rem;
    z-index: 800;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(10, 22, 40, .3);
    max-width: calc(100% - 40px);
    white-space: nowrap;
}

.install-banner.show {
    display: flex
}

.install-banner button {
    background: var(--gold);
    color: var(--ink);
    border: none;
    border-radius: var(--r-pill);
    padding: 6px 16px;
    font-size: .82rem;
    font-weight: 700;
    cursor: pointer;
}

.install-close {
    background: none !important;
    color: rgba(255, 255, 255, .5) !important;
    font-size: 1rem !important;
    padding: 0 4px !important;
}