/* one2FLY! V3 — Destination First / Travel Journey Platform */
html { scroll-behavior: smooth; }
body { background: #f8fbfd; color: #61758a; -webkit-font-smoothing: antialiased; }

/* Header */
.site-header { transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease; border-bottom: 1px solid transparent; }
body.has-hero-header .site-header:not(.is-scrolled) { background: transparent; }
body.has-hero-header .site-header:not(.is-scrolled) .site-header-logo-img { filter: brightness(0) invert(1); }
body.has-hero-header .site-header:not(.is-scrolled) .site-header-nav a,
body.has-hero-header .site-header:not(.is-scrolled) .site-header-menu { color: rgba(255,255,255,.82); }
body.has-hero-header .site-header:not(.is-scrolled) .site-header-nav a:hover,
body.has-hero-header .site-header:not(.is-scrolled) .site-header-nav a.is-active,
body.has-hero-header .site-header:not(.is-scrolled) .site-header-menu:hover { color: #fff; }
.site-header.is-scrolled { background: rgba(255,255,255,.95); border-bottom-color: #e7eef4; backdrop-filter: blur(8px); }
.site-header.is-scrolled .site-header-nav a { color: #61758a; }
.site-header.is-scrolled .site-header-nav a:hover,
.site-header.is-scrolled .site-header-nav a.is-active { color: #081a2a; }
.site-header.is-scrolled .site-header-menu { color: #081a2a; }
.site-header.is-scrolled .site-header-menu:hover { color: #00c1f4; }

/* Homepage Hero + Search */
.journey-hero {
    min-height: 100vh; min-height: 100dvh;
    background: linear-gradient(180deg, rgba(8,26,42,.55) 0%, rgba(8,26,42,.72) 55%, rgba(8,26,42,.92) 100%),
        url("https://images.unsplash.com/photo-1506905925346-21bda4d32df4?q=80&w=3200&auto=format&fit=crop") center/cover no-repeat;
    position: relative;
}
.journey-search {
    display: flex; align-items: center; gap: .75rem;
    max-width: 680px; padding: .5rem .5rem .5rem 1.5rem;
    background: rgba(255,255,255,.97); border-radius: 999px;
    box-shadow: 0 24px 64px rgba(8,26,42,.22);
    border: 1px solid rgba(255,255,255,.5);
}
.journey-search input {
    flex: 1; border: none; outline: none; background: transparent;
    font-size: 1.05rem; color: #081a2a; min-width: 0;
}
.journey-search input::placeholder { color: #61758a; }
.journey-search-btn {
    flex-shrink: 0; padding: .85rem 1.75rem;
    font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
    background: #081a2a; color: #fff; border-radius: 999px; border: none; cursor: pointer;
    transition: background .25s ease;
}
.journey-search-btn:hover { background: #00c1f4; }
.journey-suggest { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.25rem; }
.journey-suggest a {
    padding: .45rem 1rem; font-size: 11px; font-weight: 600; letter-spacing: .1em;
    text-transform: uppercase; color: rgba(255,255,255,.88);
    border: 1px solid rgba(255,255,255,.28); border-radius: 999px;
    background: rgba(255,255,255,.08); backdrop-filter: blur(6px);
    transition: background .25s ease, border-color .25s ease;
}
.journey-suggest a:hover { background: rgba(0,193,244,.25); border-color: #00c1f4; color: #fff; }

/* Destination Cards — Homepage */
.dest-card {
    position: relative; display: block; min-height: 420px; border-radius: 18px; overflow: hidden;
    border: 1px solid #e7eef4; transition: transform .45s cubic-bezier(.22,1,.36,1), box-shadow .45s ease;
}
@media (min-width: 1024px) { .dest-card { min-height: 520px; } }
.dest-card::before {
    content: ""; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, rgba(8,26,42,.08) 0%, rgba(8,26,42,.45) 45%, rgba(8,26,42,.88) 100%);
}
.dest-card:hover { transform: translateY(-8px); box-shadow: 0 32px 80px rgba(8,26,42,.2); }
.dest-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .8s ease; }
.dest-card:hover .dest-card-bg { transform: scale(1.05); }
.dest-card-body { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem; color: #fff; }
.dest-card-region { font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: #00c1f4; margin-bottom: .5rem; }
.dest-card-title { font-family: "Cormorant Garamond", serif; font-size: clamp(2.25rem, 4vw, 3.5rem); line-height: 1; font-weight: 500; }
.dest-card-meta { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.dest-card-meta span { padding: .3rem .65rem; font-size: 9px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; background: rgba(255,255,255,.12); border-radius: 4px; }
.dest-card--featured { min-height: 480px; }
@media (min-width: 1024px) { .dest-card--featured { min-height: 640px; } }

/* Destination Badge — links to hub */
.dest-badge {
    display: inline-flex; align-items: center; gap: .4rem;
    padding: .35rem .85rem; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    color: #081a2a; background: rgba(0,193,244,.12); border: 1px solid rgba(0,193,244,.35); border-radius: 999px;
    transition: background .2s ease, color .2s ease;
}
.dest-badge:hover { background: #00c1f4; color: #fff; border-color: #00c1f4; }
.dest-badge svg { width: 12px; height: 12px; }

/* Destination Hub */
.hub-hero {
    min-height: 72vh; position: relative; display: flex; align-items: flex-end;
    background-size: cover; background-position: center;
}
.hub-hero::before {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(8,26,42,.25) 0%, rgba(8,26,42,.55) 50%, rgba(8,26,42,.92) 100%);
}
.hub-hero-content { position: relative; z-index: 2; width: 100%; }
.hub-nav {
    position: sticky; top: 88px; z-index: 40;
    background: rgba(255,255,255,.95); backdrop-filter: blur(8px);
    border-bottom: 1px solid #e7eef4; overflow-x: auto; scrollbar-width: none;
}
.hub-nav::-webkit-scrollbar { display: none; }
.hub-nav-inner { display: flex; gap: 0; min-width: max-content; padding: 0 1.5rem; }
.hub-nav a {
    flex-shrink: 0; padding: 1rem 1.25rem; font-size: 10px; font-weight: 600;
    letter-spacing: .14em; text-transform: uppercase; color: #61758a;
    border-bottom: 2px solid transparent; transition: color .2s ease, border-color .2s ease;
}
.hub-nav a:hover, .hub-nav a.is-active { color: #081a2a; border-bottom-color: #00c1f4; }
.hub-section { scroll-margin-top: 140px; padding: 4rem 0; }
.hub-section--alt { background: #fff; }
.hub-section-label {
    font-size: 10px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: #00c1f4; margin-bottom: .75rem;
}
.hub-section-label::before { content: ""; display: inline-block; width: 32px; height: 2px; background: #00c1f4; margin-right: 12px; vertical-align: middle; }
.hub-section-title { font-family: "Cormorant Garamond", serif; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.05; font-weight: 500; color: #081a2a; margin-bottom: 1.5rem; }

/* Hub blocks */
.hub-deal-card { border: 1px solid #e7eef4; border-radius: 14px; overflow: hidden; background: #fff; transition: transform .3s ease, box-shadow .3s ease; }
.hub-deal-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(8,26,42,.08); }
.hub-price-table { width: 100%; border-collapse: collapse; }
.hub-price-table th, .hub-price-table td { padding: .85rem 1rem; text-align: left; border-bottom: 1px solid #e7eef4; font-size: 14px; }
.hub-price-table th { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #61758a; background: #f8fbfd; }
.hub-warning { padding: 1.25rem 1.5rem; border-left: 3px solid #ff4d4d; background: #fff5f5; border-radius: 0 12px 12px 0; }
.hub-checklist li { display: flex; gap: .75rem; padding: .65rem 0; border-bottom: 1px solid #e7eef4; }
.hub-checklist li::before { content: "✓"; color: #00c1f4; font-weight: 700; flex-shrink: 0; }

/* Video reel */
.video-reel-track { display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 1rem; scrollbar-width: none; }
.video-reel-track::-webkit-scrollbar { display: none; }
.video-reel-card { flex: 0 0 200px; scroll-snap-align: start; position: relative; aspect-ratio: 9/16; border-radius: 14px; overflow: hidden; background: #081a2a; text-decoration: none; color: inherit; display: block; }
@media (min-width: 768px) { .video-reel-card { flex: 0 0 240px; } }
.video-reel-thumb { position: absolute; inset: 0; background-size: cover; background-position: center; }
.video-reel-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(8,26,42,.9) 100%); z-index: 1; }
.video-reel-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 2; width: 44px; height: 44px; display: grid; place-items: center; background: #fff; border-radius: 50%; }
.video-reel-meta { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 1rem; color: #fff; font-size: 14px; }
.video-reel-duration { position: absolute; top: 8px; right: 8px; z-index: 2; padding: 2px 6px; font-size: 9px; font-weight: 600; background: rgba(8,26,42,.75); border-radius: 4px; color: #fff; }

/* Article / content rows */
.content-row { display: grid; grid-template-columns: 120px 1fr; gap: 1rem; padding: 1rem 0; border-top: 1px solid #e7eef4; }
a.content-row { text-decoration: none; color: inherit; transition: opacity .2s ease; }
a.content-row:hover h3 { color: #00c1f4; }
.content-row img { width: 120px; height: 88px; object-fit: cover; border-radius: 10px; }
.article-hero { position: relative; border-radius: 16px; overflow: hidden; min-height: 440px; }
.article-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 20%, rgba(8,26,42,.9) 100%); z-index: 1; }
.article-hero-body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 2rem; color: #fff; }

/* Deal card */
.deal-card { border-radius: 14px; overflow: hidden; border: 1px solid #e7eef4; background: #fff; transition: transform .3s ease; }
.deal-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(8,26,42,.08); }
.deal-discount { display: inline-block; padding: 3px 8px; font-size: 9px; font-weight: 700; background: #00c1f4; color: #fff; border-radius: 4px; }
.deal-btn { display: inline-block; margin-top: .75rem; padding: .5rem 1rem; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; border: 1px solid #e7eef4; border-radius: 999px; color: #081a2a; transition: background .2s ease, color .2s ease; }
.deal-card:hover .deal-btn { background: #081a2a; color: #fff; border-color: #081a2a; }

/* Issue row */
.issue-row { display: grid; grid-template-columns: 100px 1fr auto; gap: 1.25rem; align-items: center; padding: 1.25rem 0; border-bottom: 1px solid #e7eef4; }
.issue-cover { width: 100px; aspect-ratio: 3/4; object-fit: cover; border-radius: 8px; }

/* Map placeholder */
.hub-map { min-height: 360px; border-radius: 16px; overflow: hidden; border: 1px solid #e7eef4; background: #e7eef4; position: relative; }
.hub-map img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }

/* Fashion editorial in hub */
.fashion-grid { display: grid; gap: 1rem; }
@media (min-width: 768px) { .fashion-grid { grid-template-columns: 1.3fr .7fr; } }
.fashion-main { position: relative; min-height: 400px; border-radius: 14px; overflow: hidden; }
.fashion-main img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.fashion-main::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(8,26,42,.8) 100%); z-index: 1; }
.fashion-main-body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 1.5rem; color: #fff; }

/* Mobile menu */
.mobile-menu { position: fixed; inset: 0; z-index: 100; background: rgba(8,26,42,.97); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem; opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease; }
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu a { font-family: "Cormorant Garamond", serif; font-size: 2rem; color: rgba(255,255,255,.85); }
.mobile-menu a:hover { color: #00c1f4; }

.page-hero { background: #081a2a; padding-top: calc(88px + 3.5rem); padding-bottom: 3.5rem; color: #fff; }
.site-footer-link { transition: color .2s ease; }
.site-footer-link:hover { color: #fff; }
.newsletter-input { flex: 1; padding: .875rem 1.25rem; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.15); border-radius: 999px; color: #fff; outline: none; }
.newsletter-input:focus { border-color: #00c1f4; }

/* —— Journey From Deal —— */
.deal-hero {
    min-height: 100vh; min-height: 100dvh; position: relative; display: flex; align-items: flex-end;
    background-size: cover; background-position: center;
}
.deal-hero::before {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(8,26,42,.2) 0%, rgba(8,26,42,.45) 40%, rgba(8,26,42,.92) 100%);
}
.deal-hero-body { position: relative; z-index: 2; width: 100%; padding: 2rem 0 3.5rem; color: #fff; }
.deal-hero-price { font-family: "Cormorant Garamond", serif; font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1; font-weight: 500; }
.deal-cta {
    display: inline-flex; align-items: center; gap: .5rem; padding: 1rem 2rem;
    font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
    background: #00c1f4; color: #fff; border-radius: 999px; border: none; cursor: pointer;
    transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}
.deal-cta:hover { background: #fff; color: #081a2a; transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0,193,244,.35); }
.deal-cta--ghost {
    background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.4);
}
.deal-cta--ghost:hover { background: #fff; color: #081a2a; border-color: #fff; }

.deal-summary {
    background: #fff; border: 1px solid #e7eef4; border-radius: 18px;
    box-shadow: 0 24px 64px rgba(8,26,42,.08); padding: 2rem; margin-top: -4rem; position: relative; z-index: 10;
}
@media (min-width: 768px) { .deal-summary { padding: 2.5rem 3rem; } }
.deal-badge-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; }
.deal-pill {
    padding: .35rem .85rem; font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; border-radius: 999px;
}
.deal-pill--flash { background: #ff4d4d; color: #fff; }
.deal-pill--best { background: #081a2a; color: #fff; }
.deal-pill--editor { background: #00c1f4; color: #fff; }
.deal-meta-grid { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .deal-meta-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .deal-meta-grid { grid-template-columns: repeat(3, 1fr); } }
.deal-meta-item h4 { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #00c1f4; margin-bottom: .5rem; }
.deal-meta-item p, .deal-meta-item li { font-size: 14px; line-height: 1.6; color: #081a2a; }
.deal-meta-item ul { list-style: none; padding: 0; }
.deal-meta-item li::before { content: "· "; color: #00c1f4; font-weight: 700; }

/* Magazine gallery */
.mag-gallery { display: grid; gap: .75rem; grid-template-columns: 1fr 1fr; }
@media (min-width: 768px) {
    .mag-gallery { grid-template-columns: 1.4fr 1fr 1fr; grid-template-rows: 220px 220px; }
    .mag-gallery-item--lg { grid-row: span 2; }
}
.mag-gallery-item {
    position: relative; border-radius: 14px; overflow: hidden; cursor: pointer; min-height: 160px;
}
.mag-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.mag-gallery-item:hover img { transform: scale(1.04); }
.mag-gallery-item span {
    position: absolute; left: 12px; bottom: 12px; z-index: 2;
    padding: 4px 10px; font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    background: rgba(8,26,42,.7); color: #fff; border-radius: 4px;
}
.mag-gallery-item::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(8,26,42,.4) 100%);
}

/* Timeline */
.journey-timeline { position: relative; padding-left: 0; }
@media (min-width: 768px) {
    .journey-timeline { padding-left: 2rem; border-left: 2px solid #e7eef4; margin-left: 1rem; }
}
.timeline-day {
    position: relative; margin-bottom: 2.5rem; background: #fff; border: 1px solid #e7eef4; border-radius: 16px; overflow: hidden;
}
@media (min-width: 768px) {
    .timeline-day { margin-left: 1.5rem; }
    .timeline-day::before {
        content: ""; position: absolute; left: -2.65rem; top: 2rem;
        width: 14px; height: 14px; border-radius: 50%; background: #00c1f4; border: 3px solid #fff;
        box-shadow: 0 0 0 2px #00c1f4;
    }
}
.timeline-day-img { width: 100%; height: 200px; object-fit: cover; }
@media (min-width: 768px) {
    .timeline-day { display: grid; grid-template-columns: 280px 1fr; }
    .timeline-day-img { height: 100%; min-height: 240px; }
}
.timeline-day-body { padding: 1.5rem 1.75rem; }
.timeline-day-num { font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: #00c1f4; }

/* Place / food cards */
.place-card {
    display: grid; gap: 1rem; background: #fff; border: 1px solid #e7eef4; border-radius: 14px; overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}
@media (min-width: 640px) { .place-card { grid-template-columns: 200px 1fr; } }
.place-card:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(8,26,42,.08); }
.place-card img { width: 100%; height: 160px; object-fit: cover; }
@media (min-width: 640px) { .place-card img { height: 100%; min-height: 160px; } }
.food-card { background: #fff; border: 1px solid #e7eef4; border-radius: 14px; overflow: hidden; transition: transform .3s ease; }
.food-card:hover { transform: translateY(-4px); }
.food-tabs { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; }
.food-tab {
    padding: .5rem 1rem; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    border: 1px solid #e7eef4; border-radius: 999px; background: #fff; color: #61758a; cursor: pointer;
}
.food-tab.is-active, .food-tab:hover { background: #081a2a; color: #fff; border-color: #081a2a; }

/* Outfit lookbook */
.outfit-board { display: grid; gap: 1rem; }
@media (min-width: 768px) { .outfit-board { grid-template-columns: 1.2fr .8fr; } }
.outfit-hero { position: relative; min-height: 420px; border-radius: 16px; overflow: hidden; }
.outfit-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.outfit-hero::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, transparent 50%, rgba(8,26,42,.85) 100%); }
.outfit-hero-body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 1.75rem; color: #fff; }
.outfit-item { background: #fff; border: 1px solid #e7eef4; border-radius: 12px; padding: 1.25rem; }
.weather-chip {
    display: inline-flex; align-items: center; gap: .5rem; padding: .5rem 1rem;
    background: rgba(0,193,244,.1); border: 1px solid rgba(0,193,244,.3); border-radius: 999px;
    font-size: 13px; font-weight: 600; color: #081a2a;
}

/* Checklist */
.check-list { list-style: none; padding: 0; max-w: 560px; }
.check-list li { margin: 0; }
.check-list label {
    display: flex; align-items: center; gap: 1rem; padding: 1rem 0;
    border-bottom: 1px solid #e7eef4; cursor: pointer; color: #081a2a; font-size: 15px;
    transition: color .2s ease;
}
.check-list input { position: absolute; opacity: 0; width: 0; height: 0; }
.check-box {
    flex-shrink: 0; width: 22px; height: 22px; border: 2px solid #e7eef4; border-radius: 6px;
    display: grid; place-items: center; transition: background .2s ease, border-color .2s ease;
}
.check-list input:checked + .check-box { background: #00c1f4; border-color: #00c1f4; }
.check-list input:checked + .check-box::after { content: "✓"; color: #fff; font-size: 12px; font-weight: 700; }
.check-list input:checked ~ .check-text { color: #61758a; text-decoration: line-through; }

/* Tip cards — chống chặt chém */
.tip-card {
    background: #fff; border: 1px solid #e7eef4; border-radius: 14px; padding: 1.5rem;
    border-left: 3px solid #00c1f4;
}
.tip-card--warn { border-left-color: #ff4d4d; background: #fffafa; }

/* Final CTA */
.deal-final-cta {
    position: relative; border-radius: 20px; overflow: hidden; min-height: 380px;
    display: flex; align-items: center; justify-content: center; text-align: center; color: #fff;
    background-size: cover; background-position: center;
}
.deal-final-cta::before {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(8,26,42,.75), rgba(0,91,140,.55));
}
.deal-final-cta-body { position: relative; z-index: 2; padding: 3rem 2rem; max-width: 640px; }

/* Lightbox */
.lightbox {
    position: fixed; inset: 0; z-index: 200; background: rgba(8,26,42,.92);
    display: flex; align-items: center; justify-content: center; padding: 2rem;
    opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 100%; max-height: 90vh; object-fit: contain; border-radius: 8px; }
.lightbox-close {
    position: absolute; top: 1.5rem; right: 1.5rem; color: #fff; font-size: 14px;
    letter-spacing: .16em; text-transform: uppercase; background: none; border: none; cursor: pointer;
}

.section-pad { padding: 4rem 0; }
@media (min-width: 768px) { .section-pad { padding: 5rem 0; } }

/* —— Discover Your Next Journey (Săn Deal listing) —— */
.discover-hero {
    min-height: 100vh; min-height: 100dvh; display: flex; align-items: center;
    background:
        linear-gradient(180deg, rgba(8,26,42,.35) 0%, rgba(8,26,42,.55) 45%, rgba(8,26,42,.88) 100%),
        url("https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?q=80&w=3200&auto=format&fit=crop") center/cover no-repeat;
}
.mood-card {
    position: relative; display: flex; flex-direction: column; justify-content: flex-end;
    min-height: 200px; padding: 1.5rem; border-radius: 16px; overflow: hidden;
    border: 1px solid #e7eef4; color: #fff; text-align: left;
    transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s ease;
}
@media (min-width: 768px) { .mood-card { min-height: 240px; } }
.mood-card::before {
    content: ""; position: absolute; inset: 0; z-index: 0;
    background: linear-gradient(180deg, rgba(8,26,42,.15) 0%, rgba(8,26,42,.75) 100%);
    transition: opacity .35s ease;
}
.mood-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .7s ease; }
.mood-card:hover { transform: translateY(-6px); box-shadow: 0 24px 56px rgba(8,26,42,.18); }
.mood-card:hover .mood-card-bg { transform: scale(1.06); }
.mood-card > * { position: relative; z-index: 1; }
.mood-icon { font-size: 1.75rem; margin-bottom: .75rem; line-height: 1; }

.dest-stat-card {
    position: relative; display: block; min-height: 380px; border-radius: 18px; overflow: hidden;
    border: 1px solid #e7eef4; color: #fff;
    transition: transform .45s ease, box-shadow .45s ease;
}
.dest-stat-card::before {
    content: ""; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, rgba(8,26,42,.1) 0%, rgba(8,26,42,.55) 50%, rgba(8,26,42,.92) 100%);
}
.dest-stat-card:hover { transform: translateY(-6px); box-shadow: 0 28px 64px rgba(8,26,42,.18); }
.dest-stat-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .8s ease; }
.dest-stat-card:hover .dest-stat-bg { transform: scale(1.05); }
.dest-stat-body { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.75rem; }
.dest-stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; margin-top: 1rem; }
.dest-stat-grid span {
    display: block; padding: .4rem .5rem; font-size: 10px; line-height: 1.3;
    background: rgba(255,255,255,.1); border-radius: 6px; text-align: center;
}
.dest-stat-grid b { display: block; font-family: "Cormorant Garamond", serif; font-size: 1.25rem; font-weight: 500; color: #00c1f4; }

.hot-deal-row {
    display: grid; gap: 0; background: #fff; border: 1px solid #e7eef4; border-radius: 16px; overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease;
}
@media (min-width: 768px) { .hot-deal-row { grid-template-columns: 340px 1fr; } }
.hot-deal-row:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(8,26,42,.1); }
.hot-deal-row img { width: 100%; height: 220px; object-fit: cover; }
@media (min-width: 768px) { .hot-deal-row img { height: 100%; min-height: 260px; } }

.collection-track {
    display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory;
    padding-bottom: 1rem; scrollbar-width: none;
}
.collection-track::-webkit-scrollbar { display: none; }
.collection-card {
    flex: 0 0 280px; scroll-snap-align: start; position: relative;
    min-height: 320px; border-radius: 14px; overflow: hidden; color: #fff;
}
@media (min-width: 768px) { .collection-card { flex: 0 0 320px; min-height: 360px; } }
.collection-card::before {
    content: ""; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, transparent 30%, rgba(8,26,42,.88) 100%);
}
.collection-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .6s ease; }
.collection-card:hover .collection-card-bg { transform: scale(1.05); }
.collection-card-body { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; }

.trend-dash {
    display: grid; gap: 1rem;
}
@media (min-width: 1024px) { .trend-dash { grid-template-columns: 1.1fr 1fr; } }
.trend-panel {
    background: #fff; border: 1px solid #e7eef4; border-radius: 16px; overflow: hidden;
}
.trend-panel-hero { position: relative; min-height: 220px; }
.trend-panel-hero img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; min-height: 220px; }
.trend-panel-hero::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(8,26,42,.85) 100%);
}
.trend-chips { display: flex; flex-wrap: wrap; gap: .4rem; }
.trend-chip {
    padding: .35rem .7rem; font-size: 10px; font-weight: 600; letter-spacing: .06em;
    background: #f8fbfd; border: 1px solid #e7eef4; border-radius: 999px; color: #081a2a;
}

.inspire-grid {
    display: grid; gap: .75rem; grid-template-columns: 1fr 1fr;
}
@media (min-width: 768px) {
    .inspire-grid { grid-template-columns: 1.3fr 1fr 1fr; grid-template-rows: 200px 200px; }
    .inspire-item--lg { grid-row: span 2; }
}
.inspire-item {
    position: relative; border-radius: 14px; overflow: hidden; min-height: 160px;
}
.inspire-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.inspire-item:hover img { transform: scale(1.04); }
.inspire-item span {
    position: absolute; left: 12px; bottom: 12px; z-index: 2;
    padding: 4px 10px; font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    background: rgba(8,26,42,.7); color: #fff; border-radius: 4px;
}
.inspire-item::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(8,26,42,.45) 100%);
}

.anti-cheat-card {
    display: flex; flex-direction: column; justify-content: space-between;
    min-height: 180px; padding: 1.5rem; background: #fff; border: 1px solid #e7eef4; border-radius: 14px;
    transition: border-color .3s ease, transform .3s ease;
}
.anti-cheat-card:hover { border-color: rgba(0,193,244,.45); transform: translateY(-3px); }
.anti-cheat-icon {
    width: 44px; height: 44px; display: grid; place-items: center;
    background: rgba(0,193,244,.1); border-radius: 12px; margin-bottom: 1rem; font-size: 1.25rem;
}

.discover-cta {
    position: relative; border-radius: 20px; overflow: hidden; min-height: 360px;
    display: flex; align-items: center; justify-content: center; text-align: center; color: #fff;
    background-size: cover; background-position: center;
}
.discover-cta::before {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(8,26,42,.8), rgba(0,91,140,.5));
}
.discover-cta-body { position: relative; z-index: 2; padding: 3rem 2rem; max-width: 700px; }

.mood-panel {
    display: none; margin-top: 1.5rem; padding: 1.5rem; background: #fff;
    border: 1px solid #e7eef4; border-radius: 16px;
}
.mood-panel.is-open { display: block; }
.mood-suggest { display: flex; flex-wrap: wrap; gap: .75rem; }

/* —— Travel News Magazine (Đọc tin mà tức) —— */
.news-hero {
    padding-top: calc(88px + 2.5rem); padding-bottom: 3rem;
    background:
        linear-gradient(180deg, rgba(8,26,42,.92) 0%, rgba(8,26,42,.88) 100%),
        url("https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?q=80&w=2400&auto=format&fit=crop") center/cover;
}
.news-hero-grid {
    display: grid; gap: 1rem;
}
@media (min-width: 1024px) {
    .news-hero-grid { grid-template-columns: 1.45fr .9fr; grid-template-rows: auto auto auto; min-height: 560px; }
    .news-hero-feature { grid-row: span 3; }
}
.news-hero-feature {
    position: relative; min-height: 360px; border-radius: 16px; overflow: hidden; display: block; color: #fff;
}
@media (min-width: 1024px) { .news-hero-feature { min-height: 100%; } }
.news-hero-feature img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.news-hero-feature:hover img { transform: scale(1.03); }
.news-hero-feature::before {
    content: ""; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, transparent 25%, rgba(8,26,42,.92) 100%);
}
.news-hero-feature-body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 1.75rem 2rem; }
.news-hero-side {
    position: relative; min-height: 160px; border-radius: 12px; overflow: hidden; display: block; color: #fff;
    border: 1px solid rgba(255,255,255,.08);
}
.news-hero-side img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.news-hero-side::before {
    content: ""; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(90deg, rgba(8,26,42,.88) 0%, rgba(8,26,42,.45) 100%);
}
.news-hero-side-body { position: relative; z-index: 2; padding: 1.25rem 1.5rem; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; }

.news-card {
    background: #fff; border: 1px solid #e7eef4; border-radius: 14px; overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
    text-decoration: none; color: inherit; display: block;
}
.news-card:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(8,26,42,.08); }
.news-card img { width: 100%; height: 160px; object-fit: cover; }
.news-badge {
    display: inline-block; padding: 2px 8px; font-size: 9px; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase; border-radius: 4px;
}
.news-badge--new { background: #00c1f4; color: #fff; }
.news-badge--hot { background: #ff4d4d; color: #fff; }
.news-badge--trend { background: #081a2a; color: #fff; }

.dest-news-card {
    display: block; padding: 1.5rem; background: #fff; border: 1px solid #e7eef4; border-radius: 14px;
    transition: border-color .3s ease, transform .3s ease;
}
.dest-news-card:hover { border-color: rgba(0,193,244,.45); transform: translateY(-3px); }
.dest-news-card h3 { font-family: "Cormorant Garamond", serif; font-size: 1.75rem; color: #081a2a; font-weight: 500; }

.topic-card {
    position: relative; display: flex; flex-direction: column; justify-content: flex-end;
    min-height: 200px; padding: 1.5rem; border-radius: 14px; overflow: hidden; color: #fff;
    border: 1px solid #e7eef4; transition: transform .35s ease;
}
.topic-card::before {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(8,26,42,.2), rgba(8,26,42,.85)); z-index: 0;
}
.topic-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .6s ease; }
.topic-card:hover { transform: translateY(-4px); }
.topic-card:hover .topic-card-bg { transform: scale(1.05); }
.topic-card > * { position: relative; z-index: 1; }

.trending-list { counter-reset: trend; list-style: none; padding: 0; margin: 0; }
.trending-list li {
    counter-increment: trend; display: grid; grid-template-columns: 3rem 1fr; gap: 1rem;
    padding: 1.25rem 0; border-bottom: 1px solid #e7eef4;
}
.trending-list li::before {
    content: counter(trend, decimal-leading-zero);
    font-family: "Cormorant Garamond", serif; font-size: 1.75rem; line-height: 1; color: #00c1f4; font-weight: 500;
}

.quick-board {
    display: grid; gap: 0; background: #fff; border: 1px solid #e7eef4; border-radius: 14px; overflow: hidden;
}
@media (min-width: 768px) { .quick-board { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1200px) { .quick-board { grid-template-columns: 1fr 1fr 1fr; } }
.quick-item {
    display: block; padding: 1.15rem 1.35rem; border-bottom: 1px solid #e7eef4; color: #081a2a;
    transition: background .2s ease;
}
@media (min-width: 768px) {
    .quick-item:nth-child(odd) { border-right: 1px solid #e7eef4; }
}
@media (min-width: 1200px) {
    .quick-item { border-right: 1px solid #e7eef4; }
    .quick-item:nth-child(3n) { border-right: none; }
}
.quick-item:hover { background: #f8fbfd; }
.quick-item:hover .quick-title { color: #00c1f4; }

.bridge-cta {
    position: relative; border-radius: 20px; overflow: hidden; padding: 3rem 2rem;
    background: linear-gradient(135deg, #081a2a 0%, #0d3a55 55%, #085a7a 100%); color: #fff;
}
.hub-promo {
    display: grid; gap: 1.5rem; background: #fff; border: 1px solid #e7eef4; border-radius: 18px; overflow: hidden;
}
@media (min-width: 768px) { .hub-promo { grid-template-columns: 1.1fr 1fr; } }
.hub-promo-img { min-height: 280px; background-size: cover; background-position: center; }

.knowledge-tile {
    display: flex; flex-direction: column; justify-content: space-between;
    min-height: 160px; padding: 1.5rem; border-radius: 16px;
    background: #fff; border: 1px solid #e7eef4; text-decoration: none;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.knowledge-tile:hover {
    transform: translateY(-3px); border-color: rgba(0,193,244,.4);
    box-shadow: 0 12px 32px rgba(8,26,42,.06);
}

/* —— Story detail (news / anti-scam) —— */
.story-page { padding-bottom: 4rem; }
.story-hero {
    padding-top: calc(88px + 2.5rem);
    padding-bottom: 1.5rem;
    background: linear-gradient(180deg, #081a2a 0%, #0c2a40 100%);
    color: #fff;
}
.story-back {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: rgba(255,255,255,.55);
    margin-bottom: 1.25rem;
    transition: color .2s ease;
}
.story-back:hover { color: #fff; }
.story-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: -.02em;
    color: #fff;
    margin-bottom: 1rem;
}
.story-dek {
    font-size: 1.05rem;
    line-height: 1.55;
    color: rgba(255,255,255,.7);
    max-width: 40rem;
    margin-bottom: 1.25rem;
}
.story-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .75rem 1rem;
    font-size: 13px;
    color: rgba(255,255,255,.55);
}
.story-media { margin-top: -1.5rem; margin-bottom: 2.5rem; position: relative; z-index: 2; }
.story-cover {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e7eef4;
    background: #081a2a;
    box-shadow: 0 24px 48px rgba(8,26,42,.18);
}
.story-cover img { width: 100%; max-height: 520px; object-fit: cover; display: block; }
.story-video {
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    border: 1px solid #e7eef4;
    box-shadow: 0 24px 48px rgba(8,26,42,.18);
}
.story-video video { width: 100%; display: block; max-height: 540px; background: #000; }
.story-video--embed { position: relative; padding-top: 56.25%; }
.story-video--embed iframe {
    position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}
.story-video-cap {
    margin-top: .75rem;
    font-size: 12px;
    color: #61758a;
    text-align: right;
}
.story-layout {
    display: grid;
    gap: 2.5rem;
}
@media (min-width: 1024px) {
    .story-layout { grid-template-columns: minmax(0, 1fr) 320px; gap: 3rem; align-items: start; }
}
.story-main { max-width: 720px; }
.story-body {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #243447;
}
.story-body p { margin-bottom: 1.25rem; }
.story-body p:first-child::first-letter {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.25rem;
    float: left;
    line-height: .85;
    padding-right: .35rem;
    color: #081a2a;
}
.story-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e7eef4;
}
.story-rail { display: grid; gap: 2rem; }
.story-rail-block {
    background: #fff;
    border: 1px solid #e7eef4;
    border-radius: 16px;
    padding: 1.25rem 1.35rem;
}
.story-related { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.story-related-card {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: .85rem;
    text-decoration: none;
    color: inherit;
}
.story-related-card img {
    width: 88px; height: 72px; object-fit: cover; border-radius: 10px;
}
.story-related-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    line-height: 1.25;
    color: #081a2a;
    margin-top: .35rem;
}
.story-related-card:hover h3 { color: #00c1f4; }
.story-related-card p { font-size: 11px; color: #61758a; margin-top: .35rem; }
.story-video-list { display: grid; gap: .75rem; }
.story-video-chip {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: .75rem;
    align-items: center;
    text-decoration: none;
}
.story-video-chip-thumb {
    position: relative;
    display: block;
    aspect-ratio: 16/10;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
}
.story-video-chip-thumb em {
    position: absolute;
    right: 6px; bottom: 6px;
    font-style: normal;
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 4px;
    background: rgba(8,26,42,.8);
    color: #fff;
}
.story-video-chip-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    line-height: 1.3;
    color: #081a2a;
}
.story-video-chip:hover .story-video-chip-title { color: #00c1f4; }

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