/* ============================================================
   WonderMyTrip — "Clean Luxury" Design System
   Canvas: warm ivory · Type: Fraunces + Manrope · Accent: amber
   ============================================================ */

:root {
    --ivory: #FAF9F6;
    --paper: #FFFFFF;
    --ink: #17181C;
    --ink-soft: #4A4D55;
    --muted: #8B8E97;
    --hairline: #ECE9E1;

    --amber: #F5B301;
    --amber-deep: #D99B00;
    --amber-soft: #FFF4D6;
    --amber-pale: #FFFBEE;
    --grad-amber: linear-gradient(120deg, #FFD84D 0%, #F5B301 55%, #EDA400 100%);

    --r-lg: 28px;
    --r-md: 22px;
    --r-sm: 14px;

    --sh-soft: 0 1px 2px rgba(23,24,28,.04), 0 12px 32px -12px rgba(23,24,28,.10);
    --sh-lift: 0 2px 4px rgba(23,24,28,.05), 0 30px 60px -20px rgba(23,24,28,.18);
    --sh-amber: 0 14px 34px -10px rgba(245,179,1,.45);

    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Manrope', system-ui, sans-serif;

    --ease-out: cubic-bezier(.22, .61, .36, 1);
}

* { scroll-behavior: smooth; }

html { -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-body);
    background: var(--ivory);
    color: var(--ink-soft);
    font-size: 1rem;
    line-height: 1.65;
    overflow-x: hidden;
}

::selection { background: var(--amber); color: var(--ink); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--ink);
    font-weight: 600;
    letter-spacing: -.01em;
    line-height: 1.15;
}

p { margin-bottom: 1.1rem; }
a { text-decoration: none; }
img { max-width: 100%; }

.container-lux { max-width: 1240px; }
.section-pad { padding: clamp(4rem, 8vw, 7rem) 0; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--ivory); }
::-webkit-scrollbar-thumb { background: #D8D4CA; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: var(--amber); }

/* ---------- Typography helpers ---------- */
.display-xl {
    font-size: clamp(2.5rem, 6vw, 4.4rem);
    font-weight: 550;
    letter-spacing: -.02em;
    line-height: 1.06;
}
.display-lg {
    font-size: clamp(2rem, 4.2vw, 3.1rem);
    font-weight: 550;
}
.display-xl em, .display-lg em {
    font-style: italic;
    font-weight: 500;
    color: transparent;
    background: var(--grad-amber);
    -webkit-background-clip: text;
    background-clip: text;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-family: var(--font-body);
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--amber-deep);
}
.eyebrow::before {
    content: '';
    width: 26px; height: 2px;
    border-radius: 2px;
    background: var(--grad-amber);
}
.lede { font-size: 1.08rem; color: var(--muted); max-width: 54ch; }

.text-brand { color: var(--amber-deep) !important; }
.hairline { border-top: 1px solid var(--hairline); }

/* ---------- Buttons ---------- */
.btn {
    font-weight: 700;
    border-radius: 100px;
    padding: .78rem 1.7rem;
    transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), background .3s, color .3s, border-color .3s;
}
.btn:focus-visible { outline: 3px solid rgba(245,179,1,.35); outline-offset: 2px; }

.btn-brand {
    position: relative;
    overflow: hidden;
    background: var(--grad-amber);
    border: none;
    color: var(--ink);
    box-shadow: var(--sh-amber);
}
.btn-brand:hover, .btn-brand:focus {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px -10px rgba(245,179,1,.6);
    color: var(--ink);
}
.btn-brand::after {
    content: '';
    position: absolute;
    top: 0; left: -80%;
    width: 50%; height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255,255,255,.65), transparent);
    transform: skewX(-20deg);
    transition: left .6s ease;
}
.btn-brand:hover::after { left: 130%; }

.btn-ink {
    background: var(--ink);
    border: none;
    color: #fff;
}
.btn-ink:hover { background: #000; color: var(--amber); transform: translateY(-2px); box-shadow: var(--sh-lift); }

.btn-outline-ink {
    background: transparent;
    border: 1.5px solid var(--ink);
    color: var(--ink);
}
.btn-outline-ink:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }

.btn-ghost {
    background: rgba(255,255,255,.14);
    border: 1.5px solid rgba(255,255,255,.35);
    color: #fff;
    backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }

.btn .arr { display: inline-block; transition: transform .3s var(--ease-out); }
.btn:hover .arr { transform: translateX(5px); }

.btn-lg { padding: .95rem 2.2rem; font-size: 1.02rem; }

/* ---------- Navbar ---------- */
.nav-shell-wrap {
    position: sticky;
    top: 0;
    z-index: 1040;
    padding: 1.1rem 0 .6rem;
    transition: padding .35s var(--ease-out);
}
.nav-shell-wrap.scrolled {
    padding: .45rem 0 .45rem;
}
.nav-shell {
    background: rgba(250,249,246,.72);
    backdrop-filter: blur(18px) saturate(1.4);
    -webkit-backdrop-filter: blur(18px) saturate(1.4);
    border: 1px solid rgba(23,24,28,.06);
    border-radius: 100px;
    padding: .55rem .6rem .55rem 1.5rem;
    transition: box-shadow .35s var(--ease-out), background .35s;
}
.nav-shell-wrap.scrolled .nav-shell {
    background: rgba(255,255,255,.88);
    box-shadow: var(--sh-soft);
}
.navbar-brand-lux {
    font-family: var(--font-display);
    font-size: 1.42rem;
    font-weight: 650;
    color: var(--ink);
    letter-spacing: -.01em;
}
.navbar-brand-lux i { color: var(--amber); }
.navbar-brand-lux span { font-style: italic; font-weight: 550; }

.main-nav .nav-link {
    font-weight: 600;
    font-size: .93rem;
    color: var(--ink-soft);
    padding: .5rem .95rem !important;
    border-radius: 100px;
    position: relative;
    transition: color .25s, background .25s;
}
.main-nav .nav-link:hover { color: var(--ink); background: rgba(23,24,28,.05); }
.main-nav .nav-link.active {
    color: var(--ink);
    background: var(--amber-soft);
}
.dropdown-menu {
    border: none;
    border-radius: 20px;
    box-shadow: var(--sh-lift);
    padding: .6rem;
    margin-top: .75rem !important;
}
.dropdown-item {
    border-radius: 12px;
    padding: .6rem 1rem;
    font-weight: 600;
    font-size: .9rem;
    color: var(--ink-soft);
}
.dropdown-item:hover { background: var(--amber-pale); color: var(--ink); }

.nav-tog {
    border: none;
    background: var(--ink);
    color: #fff;
    width: 44px; height: 44px;
    border-radius: 50%;
    display: grid; place-items: center;
}

@media (max-width: 991.98px) {
    .nav-shell { border-radius: 26px; flex-wrap: wrap !important; }
    .main-nav { background: #fff; border-radius: 0 0 24px 24px; padding: 1rem .5rem 1.2rem; box-shadow: var(--sh-soft); flex-basis: 100%; order: 2; }
    .main-nav.show { background: #fff; border-radius: 0 0 24px 24px; padding: 1rem .5rem 1.2rem; box-shadow: var(--sh-soft); margin-top: .5rem; }
}

/* Desktop: keep the collapse menu visible & spread across the bar */
@media (min-width: 992px) {
    .main-nav.collapse { display: flex !important; flex: 1 1 auto; align-items: center; justify-content: space-between; }
}

/* ---------- Hero ---------- */
.hero-lux {
    position: relative;
    padding: clamp(3rem, 6vw, 5rem) 0 0;
    overflow: clip;
}
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: .55;
    z-index: 0;
    animation: drift 14s ease-in-out infinite alternate;
}
.blob-a { width: 480px; height: 480px; background: #FFE9A8; top: -140px; right: -80px; }
.blob-b { width: 380px; height: 380px; background: #FFF6DC; bottom: -120px; left: -120px; animation-delay: -6s; }

@keyframes drift {
    from { transform: translate(0,0) scale(1); }
    to   { transform: translate(40px, 30px) scale(1.08); }
}

.hero-copy { position: relative; z-index: 2; }
.hero-title { margin: 1.1rem 0 1.2rem; }
.trust-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.8rem;
}
.avatar-stack { display: flex; }
.avatar-stack .avatar-circle {
    width: 44px; height: 44px;
    font-size: .85rem;
    border: 3px solid var(--ivory);
    margin-left: -10px;
}
.avatar-stack .avatar-circle:first-child { margin-left: 0; }
.trust-row small strong { color: var(--amber-deep); }

/* Hero collage */
.hero-media {
    position: relative;
    z-index: 1;
    min-height: 520px;
}
.hm {
    position: absolute;
    border-radius: var(--r-md);
    object-fit: cover;
    box-shadow: var(--sh-lift);
    transition: transform .5s var(--ease-out);
}
.hm-1 { width: 62%; aspect-ratio: 4/5; top: 0; right: 6%; z-index: 2; animation: bob 7s ease-in-out infinite; }
.hm-2 { width: 46%; aspect-ratio: 1/1; bottom: 4%; left: 0; z-index: 3; animation: bob 8s ease-in-out infinite reverse; }
.hm-3 { width: 38%; aspect-ratio: 4/3; bottom: -6%; right: 0; z-index: 1; animation: bob 9s ease-in-out infinite; animation-delay: -3s; }
.hm:hover { transform: scale(1.03) rotate(0deg) !important; }

@keyframes bob {
    0%, 100% { translate: 0 0; }
    50% { translate: 0 -14px; }
}

.float-chip {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: .65rem;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,.9);
    border-radius: 100px;
    padding: .55rem 1.1rem .55rem .6rem;
    box-shadow: var(--sh-lift);
    font-size: .82rem;
    font-weight: 700;
    color: var(--ink);
    white-space: nowrap;
}
.float-chip .fc-icon {
    width: 34px; height: 34px;
    flex-shrink: 0;
    display: grid; place-items: center;
    background: var(--grad-amber);
    border-radius: 50%;
    color: var(--ink);
    font-size: .85rem;
}
.chip-rating { top: 8%; left: -2%; animation: bob 6s ease-in-out infinite; }
.chip-travellers { bottom: 26%; right: -3%; animation: bob 7.5s ease-in-out infinite; animation-delay: -2s; }

@media (max-width: 991.98px) {
    .hero-media { min-height: 420px; margin-top: 3rem; }
    .hm-1 { width: 58%; }
    .chip-travellers { right: 0; }
}

/* Search bar */
.search-glass {
    position: relative;
    z-index: 5;
    margin-top: clamp(2rem, 5vw, 3.5rem);
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.95);
    border-radius: var(--r-md);
    padding: 1.15rem 1.25rem;
    box-shadow: var(--sh-lift);
}
.sg-field { padding: 0 .9rem; }
.sg-field + .sg-field { border-left: 1px solid var(--hairline); }
@media (max-width: 767.98px) {
    .sg-field + .sg-field { border-left: none; }
}
.sg-label {
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted);
    display: block;
    margin-bottom: .15rem;
}
.search-glass .form-control,
.search-glass .form-select {
    border: none;
    background: transparent;
    padding-left: 0;
    font-weight: 600;
    color: var(--ink);
    box-shadow: none !important;
}

/* ---------- Marquee ---------- */
.marquee-band {
    padding: 2.6rem 0;
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
    overflow: hidden;
    background: var(--paper);
}
.marquee-track {
    display: flex;
    gap: 3.2rem;
    width: max-content;
    animation: marquee 32s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.mq-item {
    display: flex;
    align-items: center;
    gap: .9rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--muted);
    white-space: nowrap;
}
.mq-item img {
    width: 46px; height: 46px;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(1);
    transition: filter .4s, transform .4s var(--ease-out);
}
.mq-item:hover img { filter: grayscale(0); transform: scale(1.12); }
.mq-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--amber); align-self: center; }

/* ---------- Package cards ---------- */
.p-card {
    position: relative;
    background: var(--paper);
    border-radius: var(--r-lg);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--sh-soft);
    transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
}
.p-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--sh-lift);
}
.pc-imgwrap {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}
.pc-imgwrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease-out);
}
.p-card:hover .pc-imgwrap img { transform: scale(1.08); }
.pc-chips {
    position: absolute;
    inset-inline: 1.1rem;
    top: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    pointer-events: none;
}
.chip-type {
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .42rem .95rem;
    border-radius: 100px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.chip-domestic { background: var(--grad-amber); color: var(--ink); }
.chip-intl { background: rgba(23,24,28,.78); color: var(--amber); backdrop-filter: blur(10px); }
.chip-rating {
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--ink);
    font-weight: 800;
    font-size: .8rem;
    padding: .4rem .8rem;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: .3rem;
}
.pc-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.pc-dest {
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
}
.pc-title a { color: var(--ink); transition: color .25s; }
.pc-title a:hover { color: var(--amber-deep); }
.pc-meta { display: flex; gap: 1.1rem; font-size: .82rem; font-weight: 600; color: var(--ink-soft); }
.pc-meta i { color: var(--amber-deep); }
.pc-foot {
    margin-top: auto;
    padding-top: 1.1rem;
    border-top: 1px solid var(--hairline);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.price-now { font-family: var(--font-display); font-size: 1.5rem; font-weight: 650; color: var(--ink); }
.price-old { font-size: .88rem; text-decoration: line-through; color: var(--muted); margin-right: .45rem; }
.pc-go {
    width: 46px; height: 46px;
    flex-shrink: 0;
    border-radius: 50%;
    display: grid; place-items: center;
    background: var(--amber-soft);
    color: var(--ink);
    transition: all .35s var(--ease-out);
}
.p-card:hover .pc-go { background: var(--grad-amber); transform: rotate(-45deg); box-shadow: var(--sh-amber); }

/* ---------- Bento features ---------- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}
.bento-tile {
    background: var(--paper);
    border-radius: var(--r-lg);
    padding: 2rem 1.8rem;
    box-shadow: var(--sh-soft);
    transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
    display: flex;
    flex-direction: column;
    gap: .6rem;
}
.bento-tile:hover { transform: translateY(-6px); box-shadow: var(--sh-lift); }
.bento-icon {
    width: 52px; height: 52px;
    border-radius: 16px;
    display: grid; place-items: center;
    background: var(--amber-soft);
    color: var(--amber-deep);
    font-size: 1.3rem;
    margin-bottom: .4rem;
}
.bento-img {
    padding: 0;
    position: relative;
    overflow: hidden;
    justify-content: flex-end;
    min-height: 300px;
    grid-column: span 2;
    grid-row: span 2;
    color: #fff;
}
.bento-img img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease-out);
}
.bento-img:hover img { transform: scale(1.06); }
.bento-img .bi-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(15,16,20,.78), rgba(15,16,20,.05) 55%);
}
.bento-img .bi-content { position: relative; padding: 2rem; }
.bento-img h3 { color: #fff; }
.bento-span2 { grid-column: span 2; }
@media (max-width: 991.98px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575.98px) {
    .bento-grid { grid-template-columns: 1fr; }
    .bento-img, .bento-span2 { grid-column: span 1; }
}

/* ---------- Stats band ---------- */
.stats-band {
    position: relative;
    background: var(--ink);
    border-radius: var(--r-lg);
    overflow: hidden;
    padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem);
}
.stats-band::before {
    content: '';
    position: absolute;
    width: 420px; height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245,179,1,.28), transparent 65%);
    top: -180px; right: -100px;
}
.stat-cell { text-align: center; position: relative; }
.stat-num {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 600;
    color: var(--amber);
    line-height: 1;
}
.stat-label { color: #A9ACB5; font-size: .92rem; font-weight: 600; margin-top: .4rem; }

/* ---------- Section headers ---------- */
.sec-head { margin-bottom: clamp(2.4rem, 5vw, 3.6rem); }

/* ---------- Testimonials carousel ---------- */
.t-viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: .5rem;
}
.t-viewport::-webkit-scrollbar { display: none; }
.t-track { display: flex; gap: 1.4rem; }
.t-card {
    scroll-snap-align: start;
    flex: 0 0 min(420px, 86vw);
    background: var(--paper);
    border-radius: var(--r-lg);
    padding: 2.2rem;
    box-shadow: var(--sh-soft);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.t-stars { color: var(--amber); letter-spacing: 2px; font-size: .9rem; }
.t-quote {
    font-family: var(--font-display);
    font-size: 1.18rem;
    font-style: italic;
    color: var(--ink);
    line-height: 1.5;
    flex: 1;
}
.t-person { display: flex; align-items: center; gap: .9rem; }
.t-nav-btn {
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 1.5px solid var(--hairline);
    background: var(--paper);
    color: var(--ink);
    display: grid; place-items: center;
    transition: all .3s var(--ease-out);
}
.t-nav-btn:hover { background: var(--grad-amber); border-color: transparent; box-shadow: var(--sh-amber); }
.avatar-circle {
    width: 46px; height: 46px;
    flex-shrink: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: .9rem;
    background: var(--grad-amber);
    color: var(--ink);
}
.avatar-circle.bg-ink { background: var(--ink); color: var(--amber); }

/* ---------- Blog cards ---------- */
.b-card {
    position: relative;
    background: var(--paper);
    border-radius: var(--r-lg);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--sh-soft);
    transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
}
.b-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lift); }
.bc-imgwrap { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.bc-imgwrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.b-card:hover .bc-imgwrap img { transform: scale(1.07); }
.cat-chip {
    position: absolute;
    top: 1rem; left: 1rem;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(8px);
    color: var(--ink);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .4rem .9rem;
    border-radius: 100px;
}
.bc-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; gap: .55rem; }
.bc-body h5 a { color: var(--ink); }
.bc-body h5 a:hover { color: var(--amber-deep); }
.bc-foot {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--hairline);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .82rem;
    color: var(--muted);
    font-weight: 600;
}

/* ---------- CTA glow ---------- */
.cta-glow {
    position: relative;
    overflow: hidden;
    background: var(--ink);
    border-radius: var(--r-lg);
    padding: clamp(3rem, 7vw, 5.5rem) clamp(1.5rem, 5vw, 4rem);
    text-align: center;
}
.cta-glow::before, .cta-glow::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}
.cta-glow::before { width: 340px; height: 340px; background: rgba(245,179,1,.35); top: -160px; left: -80px; animation: drift 12s ease-in-out infinite alternate; }
.cta-glow::after { width: 280px; height: 280px; background: rgba(245,179,1,.22); bottom: -140px; right: -60px; animation: drift 15s ease-in-out infinite alternate-reverse; }

/* ---------- Footer ---------- */
.footer-lux {
    background: var(--ink);
    color: #A9ACB5;
    margin-top: clamp(4rem, 8vw, 7rem);
    border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.footer-lux h6 {
    color: #fff;
    font-family: var(--font-body);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-bottom: 1.3rem;
}
.footer-lux a { color: #A9ACB5; font-size: .93rem; transition: color .25s; }
.footer-lux a:hover { color: var(--amber); }
.social-btn {
    width: 42px; height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.14);
    color: #C9CBD2;
    transition: all .3s var(--ease-out);
}
.social-btn:hover {
    background: var(--grad-amber);
    border-color: transparent;
    color: var(--ink);
    transform: translateY(-3px);
}
.newsletter-pill {
    display: flex;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 100px;
    padding: .3rem;
}
.newsletter-pill input {
    flex: 1;
    min-width: 0;
    background: transparent;
    border: none;
    color: #fff;
    padding: .55rem 1.1rem;
    font-size: .9rem;
}
.newsletter-pill input:focus { outline: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero-lux {
    position: relative;
    padding: clamp(4.5rem, 9vw, 7rem) 0 clamp(3rem, 6vw, 4.5rem);
    overflow: clip;
}
.ph-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(.42);
}
.ph-blob { width: 360px; height: 360px; background: rgba(245,179,1,.25); top: -120px; left: 30%; }
.page-hero-lux .container { position: relative; z-index: 2; }
.crumb-pill {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 100px;
    padding: .5rem 1.2rem;
    font-size: .85rem;
    font-weight: 600;
    color: rgba(255,255,255,.85);
}
.crumb-pill a { color: #fff; }
.crumb-pill a:hover { color: var(--amber); }
.crumb-pill i { font-size: .6rem; color: var(--amber); }

/* ---------- Filters / segmented ---------- */
.filters-bar {
    position: sticky;
    top: 84px;
    z-index: 900;
    background: rgba(250,249,246,.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--hairline);
    border-radius: 100px;
    padding: .5rem;
}
.seg {
    flex: 1;
    text-align: center;
    padding: .68rem 1.3rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: .9rem;
    color: var(--ink-soft);
    transition: all .3s var(--ease-out);
    white-space: nowrap;
}
.seg:hover { color: var(--ink); }
.seg.active {
    background: var(--ink);
    color: var(--amber);
    box-shadow: var(--sh-soft);
}
@media (max-width: 767.98px) {
    .filters-bar { border-radius: var(--r-md); top: 76px; }
    .seg { padding: .6rem .5rem; font-size: .82rem; }
}

/* ---------- Package detail ---------- */
.gal-main {
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--sh-lift);
}
.gal-main img { width: 100%; aspect-ratio: 16/8.5; object-fit: cover; }
.gal-thumbs { display: flex; gap: .7rem; overflow-x: auto; padding-bottom: .3rem; }
.gal-thumb {
    flex-shrink: 0;
    width: 110px;
    border-radius: var(--r-sm);
    overflow: hidden;
    cursor: pointer;
    opacity: .65;
    transition: all .3s var(--ease-out);
    border: 2px solid transparent;
}
.gal-thumb img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.gal-thumb:hover { opacity: 1; }
.gal-thumb.active { opacity: 1; border-color: var(--amber); }

.book-card {
    background: var(--paper);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-lift);
}
.sticky-book { position: sticky; top: 96px; }

.timeline-itin { position: relative; padding-left: 2rem; }
.timeline-itin::before {
    content: '';
    position: absolute;
    left: 8px; top: 6px; bottom: 6px;
    width: 2px;
    background: repeating-linear-gradient(var(--amber) 0 6px, transparent 6px 12px);
    opacity: .5;
}
.tl-item { position: relative; padding-bottom: 1.8rem; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 5px;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--grad-amber);
    border: 4px solid var(--amber-soft);
}
.tl-day {
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--amber-deep);
}
.inc-list li, .exc-list li {
    list-style: none;
    position: relative;
    padding-left: 2rem;
    margin-bottom: .7rem;
    font-size: .94rem;
}
.inc-list li::before, .exc-list li::before {
    position: absolute; left: 0; top: 0;
    width: 22px; height: 22px;
    border-radius: 50%;
    display: grid; place-items: center;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: .6rem;
}
.inc-list li::before { content: '\f00c'; background: #E5F5EC; color: #1D8A4E; }
.exc-list li::before { content: '\f00d'; background: #FBE9EA; color: #C0394B; }

/* ---------- Blog detail ---------- */
.read-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0;
    background: var(--grad-amber);
    z-index: 2000;
    transition: width .1s linear;
}
.article-body { font-size: 1.06rem; line-height: 1.85; color: var(--ink-soft); }
.article-body > p:first-of-type::first-letter {
    font-family: var(--font-display);
    font-size: 3.4em;
    float: left;
    line-height: .85;
    padding-right: .12em;
    color: var(--ink);
    font-weight: 600;
}
.article-body h2 { font-size: 1.7rem; margin: 2.4rem 0 1rem; }
.article-body h3 { font-size: 1.32rem; margin: 1.8rem 0 .8rem; }
.article-body p { margin-bottom: 1.2rem; }
.article-body ul, .article-body ol { padding-left: 1.5rem; margin-bottom: 1.2rem; }
.article-body li { margin-bottom: .5rem; }
.article-body blockquote {
    background: var(--amber-pale);
    border-left: 3px solid var(--amber);
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
    padding: 1.2rem 1.6rem;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--ink);
    margin: 1.8rem 0;
}
.article-body table { width: 100%; border-collapse: separate; border-spacing: 0; background: var(--paper); border-radius: var(--r-sm); overflow: hidden; box-shadow: var(--sh-soft); margin: 1.5rem 0; }
.article-body th { background: var(--ink); color: var(--amber); padding: .8rem 1.2rem; font-size: .85rem; text-align: left; }
.article-body td { padding: .8rem 1.2rem; border-top: 1px solid var(--hairline); }
.article-body img { border-radius: var(--r-sm); }
.article-body a { color: var(--amber-deep); font-weight: 700; border-bottom: 1.5px solid var(--amber-soft); }
.tag-pill {
    display: inline-block;
    padding: .35rem 1rem;
    border-radius: 100px;
    background: var(--amber-soft);
    color: var(--amber-deep);
    font-size: .78rem;
    font-weight: 700;
}
.author-card {
    background: var(--paper);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-soft);
}

/* ---------- Forms ---------- */
.form-control, .form-select {
    border: 1.5px solid var(--hairline);
    border-radius: var(--r-sm);
    padding: .78rem 1.1rem;
    font-weight: 500;
    background: var(--paper);
    transition: border-color .25s, box-shadow .25s;
}
.form-control:focus, .form-select:focus {
    border-color: var(--amber);
    box-shadow: 0 0 0 4px rgba(245,179,1,.15);
}
.form-label { font-weight: 700; font-size: .88rem; color: var(--ink); }
.form-check-input:checked { background-color: var(--amber-deep); border-color: var(--amber-deep); }

/* ---------- Cards generic ---------- */
.soft-card {
    background: var(--paper);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-soft);
}
.feature-line { display: flex; gap: .9rem; align-items: flex-start; }
.feature-line i { color: var(--amber-deep); margin-top: .2rem; }

/* ---------- Empty state ---------- */
.empty-state { text-align: center; padding: 4rem 2rem; }
.empty-state .icon-ring {
    width: 90px; height: 90px;
    margin: 0 auto 1.4rem;
    border-radius: 50%;
    display: grid; place-items: center;
    background: var(--amber-soft);
    color: var(--amber-deep);
    font-size: 2rem;
}

/* ---------- Alerts ---------- */
.alert {
    border: none;
    border-radius: var(--r-sm);
}
.alert-success { background: #E5F5EC; color: #17683B; }

/* ---------- Pagination ---------- */
.pagination { gap: .3rem; }
.pagination .page-link {
    border: none;
    background: var(--paper);
    color: var(--ink);
    font-weight: 700;
    border-radius: 12px !important;
    width: 42px; height: 42px;
    display: grid; place-items: center;
    box-shadow: var(--sh-soft);
    transition: all .25s;
}
.pagination .page-link:hover { background: var(--amber-soft); }
.pagination .page-item.active .page-link {
    background: var(--grad-amber);
    color: var(--ink);
    box-shadow: var(--sh-amber);
}

/* ---------- Back to top ---------- */
.to-top {
    position: fixed;
    right: 1.4rem; bottom: 1.4rem;
    width: 50px; height: 50px;
    border-radius: 50%;
    border: none;
    background: var(--ink);
    color: var(--amber);
    display: grid; place-items: center;
    box-shadow: var(--sh-lift);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all .35s var(--ease-out);
    z-index: 1050;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--grad-amber); color: var(--ink); }

/* ============================================================
   REVEAL ANIMATION SYSTEM
   ============================================================ */
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
    will-change: opacity, transform;
}
[data-reveal="left"]  { transform: translateX(-36px); }
[data-reveal="right"] { transform: translateX(36px); }
[data-reveal="zoom"]  { transform: scale(.92); }
[data-reveal].revealed {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    [data-reveal] { opacity: 1; transform: none; }
    html { scroll-behavior: auto; }
}

/* ============================================================
   ADMIN COMPATIBILITY LAYER
   (base styles so admin pages render before admin.css polish)
   ============================================================ */
.admin-wrapper { display: flex; min-height: 100vh; background: #F6F6F4; }
.admin-sidebar {
    width: 264px;
    flex-shrink: 0;
    background: var(--ink);
    color: #A9ACB5;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    z-index: 1030;
}
.admin-content { flex: 1; min-width: 0; }
.admin-topbar {
    background: var(--paper);
    border-bottom: 1px solid var(--hairline);
    padding: .9rem 1.6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1020;
}
.card-admin { background: var(--paper); border-radius: var(--r-md); border: 1px solid var(--hairline); }
.stat-card {
    background: var(--paper);
    border-radius: var(--r-md);
    padding: 1.4rem;
    border: 1px solid var(--hairline);
    height: 100%;
    display: flex;
    gap: 1rem;
    align-items: center;
}
.stat-card .icon-box {
    width: 54px; height: 54px;
    flex-shrink: 0;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}
.table-admin th {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted);
    font-weight: 800;
}
.table-admin td { vertical-align: middle; }
.badge-brand { background: var(--grad-amber); color: var(--ink); font-weight: 700; }
.badge-intl { background: var(--ink); color: var(--amber); font-weight: 700; }
.bg-brand-light { background: var(--amber-soft) !important; }
.bg-brand-pale { background: var(--amber-pale) !important; }
.hover-bg-light:hover { background: var(--amber-pale) !important; }

/* ============================================================
   UX additions: toasts, suggest, wishlist hearts, save bar
   ============================================================ */
.site-toast-wrap { position: fixed; top: 90px; right: 16px; z-index: 3000; display: flex; flex-direction: column; gap: 8px; }
.site-toast {
    display: flex; align-items: center; gap: 10px;
    background: var(--ink); color: #fff;
    border-radius: 14px; padding: 13px 20px;
    font-size: .88rem; font-weight: 600;
    box-shadow: var(--sh-lift);
    opacity: 0; transform: translateX(24px);
    transition: all .35s var(--ease-out);
    max-width: 340px;
}
.site-toast.show { opacity: 1; transform: none; }
.st-success i { color: var(--amber); }
.st-error i { color: #ff7b8a; }

/* Suggest dropdown */
.suggest-box {
    position: absolute;
    top: calc(100% + 6px); left: 0; right: 0;
    background: #fff; border-radius: 16px;
    box-shadow: var(--sh-lift);
    padding: .45rem; z-index: 50;
    display: none; overflow: hidden;
}
.suggest-box.show { display: block; }
.sg-row {
    display: flex; align-items: center; gap: .7rem;
    width: 100%; text-align: left;
    padding: .6rem .9rem; border-radius: 11px;
    font-weight: 600; font-size: .9rem; color: var(--ink);
    border: none; background: none;
}
.sg-row:hover { background: var(--amber-pale); }
.sg-row i { color: var(--amber-deep); width: 18px; }

/* Wishlist heart */
.wish-btn {
    position: absolute; z-index: 5;
    bottom: 12px; left: 12px;
    width: 38px; height: 38px;
    border-radius: 50%; border: none;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(8px);
    color: var(--ink);
    display: grid; place-items: center;
    transition: all .25s var(--ease-out);
}
.wish-btn:hover { transform: scale(1.12); }
.wish-btn.active i { color: #e8434f; }
.wish-btn.active { animation: pop .35s var(--ease-out); }
@keyframes pop { 50% { transform: scale(1.3); } }

.nav-wish-link { position: relative; }
.nav-wish-count {
    position: absolute; top: -4px; right: -8px;
    min-width: 17px; height: 17px; padding: 0 4px;
    border-radius: 100px; background: var(--grad-amber);
    color: var(--ink); font-size: .62rem; font-weight: 800;
    display: grid; place-items: center;
}

/* Wishlist page */
.wl-empty { text-align: center; padding: 4rem 1rem; }

/* ---------- Compact page header (no banner) ---------- */
.page-head-compact { padding: 2.4rem 0 .6rem; }
.page-head-compact h1 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
.crumb-neutral { color: var(--muted); }
.crumb-neutral a { color: var(--ink-soft); }
.crumb-neutral a:hover { color: var(--amber-deep); }
.crumb-neutral i { font-size: .55rem; color: var(--amber-deep); }

/* WhatsApp floating chat */
.wa-float {
    position: fixed; left: 18px; bottom: 18px; z-index: 1500;
    width: 54px; height: 54px; border-radius: 50%;
    background: #25D366; color: #fff;
    display: grid; place-items: center;
    font-size: 1.7rem;
    box-shadow: 0 14px 34px -8px rgba(37,211,102,.55);
    transition: transform .25s var(--ease-out);
}
.wa-float:hover { transform: scale(1.1) rotate(6deg); color: #fff; }
