/* ============================================================
   Bảy Núi Eco-Homestay — Design System "Bay Nui Stay"
   Earth & Forest palette · Lora + Be Vietnam Pro
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,500;0,600;0,700;1,600&family=Be+Vietnam+Pro:wght@300;400;500;600;700&display=swap');

:root {
    /* ── Surfaces ── */
    --bg: #f5ead8;
    --surface: #fffdf8;
    --surface-2: #f9f4ed;
    --alt: #ebddc5;
    --cream: #fff9ef;

    /* ── Ink ── */
    --ink: #201e1d;
    --ink-2: #2e2b25;
    --body-ink: #474238;
    --muted: #645c50;
    --subtle: #82796a;
    --line: rgba(32, 30, 29, .08);
    --line-2: rgba(32, 30, 29, .14);

    /* ── Brand (terracotta) ── */
    --brand: #c67139;
    --brand-mid: #b2622d;
    --brand-dark: #8c491a;
    --brand-deep: #402310;
    --peach: #f6a06b;
    --peach-light: #ffc6a5;
    --peach-bg: #ffe1d0;

    /* ── Forest ── */
    --forest: #2e3520;
    --forest-2: #272e1b;
    --forest-deep: #1d2214;
    --sage: #8fa073;
    --sage-2: #728157;
    --sage-light: #aebf92;
    --leaf: #f0fae1;
    --leaf-2: #e1eecc;
    --moss: #3d472b;
    --moss-2: #56633f;

    /* ── Legacy aliases (dùng bởi enhancements.js / admin) ── */
    --color-primary: #8c491a;
    --color-primary-light: #c67139;
    --color-primary-hover: #b2622d;
    --color-primary-dark: #402310;
    --color-accent: #c67139;
    --color-accent-hover: #b2622d;
    --color-accent-btn: #c67139;
    --color-accent-btn-hover: #b2622d;
    --color-bg-body: #f5ead8;
    --color-bg-white: #fffdf8;
    --color-bg-alt: #ebddc5;
    --color-border: rgba(32, 30, 29, .1);
    --color-text-main: #201e1d;
    --color-text-muted: #645c50;
    --color-text-subtle: #82796a;
    --color-success: #56633f;
    --color-success-bg: #f0fae1;
    --color-danger: #b91c1c;
    --color-danger-bg: #fee2e2;

    /* ── Type ── */
    --font-body: 'Be Vietnam Pro', system-ui, -apple-system, sans-serif;
    --font-display: 'Lora', Georgia, serif;
    --font-family: var(--font-body);

    /* ── Metrics ── */
    --nav-height: 78px;
    --maxw: 1360px;
    --r-sm: 14px;
    --r-md: 20px;
    --r-lg: 26px;
    --r-xl: 36px;
    --r-pill: 999px;
    --radius-sm: 14px;
    --radius-md: 20px;
    --radius-lg: 26px;
    --radius-xl: 26px;
    --radius-2xl: 36px;
    --radius-full: 999px;

    --shadow-sm: 0 1px 2px rgba(46, 43, 37, .1);
    --shadow-card: 0 3px 10px rgba(46, 43, 37, .14);
    --shadow-lift: 0 18px 44px rgba(46, 43, 37, .24);
    --shadow-xl: 0 22px 60px rgba(46, 43, 37, .18);
    --shadow-2xl: 0 24px 70px rgba(39, 46, 27, .3);
}

/* ============================================================
   BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.14;
    letter-spacing: -.02em;
    margin: 0;
    text-wrap: balance;
}

p { margin: 0; }
img { max-width: 100%; display: block; }
a { color: var(--brand-dark); text-decoration: none; transition: color .2s; }
a:hover { color: var(--brand); }
button { font-family: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--peach-light); color: var(--ink); }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--alt); }
::-webkit-scrollbar-thumb { background: #c0b6a5; border-radius: var(--r-pill); }
::-webkit-scrollbar-thumb:hover { background: var(--subtle); }

.hidden { display: none !important; }
.accent { color: var(--peach); }
.spin { animation: bnSpin 1s linear infinite; }

/* ── Animations ── */
@keyframes bnRise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes bnFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes bnFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes bnBlink { 0%, 100% { opacity: .25; } 50% { opacity: 1; } }
@keyframes bnSpin { to { transform: rotate(360deg); } }
@keyframes bnDash { to { stroke-dashoffset: -220; } }
@keyframes bnSheen { 0% { transform: translateX(-120%); } 100% { transform: translateX(220%); } }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav-container {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 90;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    background: transparent;
    transition: background .35s ease, box-shadow .35s ease;
}
.nav-container.scrolled,
body.inner-page .nav-container {
    background: rgba(249, 244, 237, .92);
    box-shadow: 0 1px 0 rgba(32, 30, 29, .09), 0 8px 26px rgba(46, 43, 37, .07);
}

.nav-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-logo { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.nav-logo-icon {
    width: 42px; height: 42px;
    border-radius: var(--r-pill);
    background: linear-gradient(150deg, var(--brand), var(--brand-dark) 70%);
    display: grid; place-items: center;
    color: var(--bg);
    box-shadow: 0 3px 10px rgba(140, 73, 26, .28);
    flex-shrink: 0;
}
.nav-logo-icon i, .nav-logo-icon svg { width: 22px; height: 22px; }
.eco-gradient { background: linear-gradient(150deg, var(--brand), var(--brand-dark) 70%); }

.nav-logo-text {
    display: flex; flex-direction: column; line-height: 1.05;
    font-family: var(--font-display);
    font-weight: 700; font-size: 19px;
    letter-spacing: -.02em;
    color: var(--cream);
    transition: color .3s;
}
.nav-logo-text small {
    font-family: var(--font-body);
    font-size: 9.5px; letter-spacing: .2em;
    text-transform: uppercase; font-weight: 600;
    white-space: nowrap;
    color: rgba(249, 244, 237, .72);
    transition: color .3s;
}
.nav-container.scrolled .nav-logo-text,
body.inner-page .nav-logo-text { color: var(--ink-2); }
.nav-container.scrolled .nav-logo-text small,
body.inner-page .nav-logo-text small { color: var(--subtle); }

.nav-links { display: flex; align-items: center; gap: 2px; margin-left: 4px; }
.nav-link {
    padding: 9px 13px;
    border-radius: var(--r-pill);
    font-size: 14.5px; font-weight: 500;
    white-space: nowrap;
    color: var(--cream);
    transition: background .2s, color .2s;
}
.nav-container.scrolled .nav-link,
body.inner-page .nav-link { color: var(--ink-2); }
.nav-link:hover { background: rgba(198, 113, 57, .16); color: var(--brand-dark); }
.nav-link.active { background: rgba(198, 113, 57, .18); color: var(--brand-dark); font-weight: 600; }

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

.lang-toggle {
    display: flex; align-items: center; gap: 2px;
    padding: 3px; border-radius: var(--r-pill);
    background: rgba(249, 244, 237, .22);
    backdrop-filter: blur(6px);
}
.nav-container.scrolled .lang-toggle,
body.inner-page .lang-toggle { background: rgba(32, 30, 29, .07); }
.lang-toggle-btn {
    border: 0; cursor: pointer;
    padding: 6px 11px;
    border-radius: var(--r-pill);
    font-size: 12.5px; font-weight: 600;
    background: transparent;
    color: var(--cream);
    transition: background .2s, color .2s;
}
.nav-container.scrolled .lang-toggle-btn,
body.inner-page .lang-toggle-btn { color: var(--ink-2); }
.lang-toggle-btn.active { background: var(--brand) !important; color: var(--cream) !important; }

.nav-icon-btn, .admin-entry-btn {
    width: 40px; height: 40px;
    border: 0; cursor: pointer;
    border-radius: var(--r-pill);
    background: rgba(249, 244, 237, .22);
    display: grid; place-items: center;
    color: var(--cream);
    transition: background .2s, color .2s;
}
.nav-container.scrolled .nav-icon-btn, .nav-container.scrolled .admin-entry-btn,
body.inner-page .nav-icon-btn, body.inner-page .admin-entry-btn {
    background: rgba(32, 30, 29, .07); color: var(--ink-2);
}
.nav-icon-btn:hover, .admin-entry-btn:hover { background: rgba(198, 113, 57, .2); color: var(--brand-dark); }
.nav-icon-btn i, .nav-icon-btn svg, .admin-entry-btn i, .admin-entry-btn svg { width: 19px; height: 19px; }

/* Nút mở trợ lý ảo — dùng logo bot */
.nav-bot-btn { padding: 0; overflow: hidden; position: relative; }
.nav-bot-btn img { width: 100%; height: 100%; object-fit: cover; }
.nav-bot-btn::after {
    content: '';
    position: absolute; right: 2px; bottom: 2px;
    width: 9px; height: 9px;
    border-radius: var(--r-pill);
    background: #6ac47a;
    border: 2px solid var(--surface-2);
}

.btn-book-nav {
    display: flex; align-items: center; gap: 8px;
    padding: 11px 19px;
    border-radius: var(--r-pill);
    background: linear-gradient(120deg, var(--moss), var(--forest-2));
    color: var(--leaf) !important;
    font-size: 14.5px; font-weight: 600;
    box-shadow: 0 4px 14px rgba(39, 46, 27, .3);
    border: 0; cursor: pointer;
    transition: background .25s, transform .25s;
}
.btn-book-nav:hover { background: linear-gradient(120deg, var(--moss-2), var(--moss)); transform: translateY(-1px); }
.btn-book-nav i, .btn-book-nav svg { width: 17px; height: 17px; }

.mobile-menu-btn {
    display: none;
    width: 40px; height: 40px;
    border: 0; cursor: pointer;
    border-radius: var(--r-pill);
    background: rgba(249, 244, 237, .22);
    color: var(--cream);
    place-items: center;
}
.nav-container.scrolled .mobile-menu-btn,
body.inner-page .mobile-menu-btn { background: rgba(32, 30, 29, .07); color: var(--ink-2); }

.mobile-nav {
    background: var(--surface);
    border-top: 1px solid var(--line);
    padding: 10px 20px 18px;
    display: flex; flex-direction: column; gap: 2px;
    box-shadow: 0 18px 34px rgba(46, 43, 37, .14);
}
.mobile-nav a {
    padding: 13px 14px;
    border-radius: var(--r-sm);
    font-size: 15.5px; font-weight: 500;
    color: var(--ink-2);
}
.mobile-nav a:hover { background: var(--surface-2); color: var(--brand-dark); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    padding: 14px 26px;
    border: 0; cursor: pointer;
    border-radius: var(--r-pill);
    background: var(--brand);
    color: var(--cream) !important;
    font-family: var(--font-body);
    font-size: 15.5px; font-weight: 600;
    box-shadow: 0 6px 18px rgba(140, 73, 26, .26);
    transition: background .22s, transform .22s, box-shadow .22s;
}
.btn-primary:hover { background: var(--brand-mid); transform: translateY(-2px); color: var(--cream); }
.btn-primary:disabled { opacity: .45; cursor: not-allowed; transform: none; box-shadow: none; }

.btn-outline {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 13px 24px;
    border: 1.5px solid var(--line-2);
    border-radius: var(--r-pill);
    background: transparent;
    color: var(--ink-2);
    font-size: 15px; font-weight: 600;
    cursor: pointer;
    transition: background .2s, border-color .2s;
}
.btn-outline:hover { background: rgba(198, 113, 57, .14); border-color: var(--brand); color: var(--brand-dark); }

.btn-warm {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 15px 26px;
    border: 0; cursor: pointer;
    border-radius: var(--r-pill);
    background: var(--peach);
    color: var(--brand-deep);
    font-size: 15.5px; font-weight: 700;
    transition: background .22s, transform .22s;
}
.btn-warm:hover { background: var(--peach-light); transform: translateY(-2px); }

.btn-ghost-dark {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 15px 24px;
    border: 1.5px solid rgba(240, 250, 225, .32);
    border-radius: var(--r-pill);
    background: transparent;
    color: var(--leaf-2);
    font-size: 15.5px; font-weight: 600;
    cursor: pointer;
    transition: background .22s;
}
.btn-ghost-dark:hover { background: rgba(240, 250, 225, .1); }

/* ============================================================
   LAYOUT / SECTION
   ============================================================ */
.section-container {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: clamp(64px, 8vw, 110px) 24px 0;
}
.section-container.section-alt { padding-top: clamp(64px, 8vw, 110px); }
.section-flush { padding-top: 0 !important; }

.section-header { max-width: 720px; margin-bottom: 40px; }
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-tag {
    display: block;
    font-size: 11.5px; font-weight: 700;
    letter-spacing: .18em; text-transform: uppercase;
    color: var(--brand-dark);
}
.section-title { margin: 14px 0 0; font-size: clamp(30px, 4vw, 52px); }
.section-desc { margin: 16px 0 0; font-size: 16.5px; color: var(--body-ink); text-wrap: pretty; }
.section-cta { margin-top: 36px; text-align: center; }

.section-head-row {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 24px; flex-wrap: wrap; margin-bottom: 40px;
}
.section-head-row .section-header { margin-bottom: 0; }

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
    position: relative;
    min-height: min(94vh, 900px);
    display: flex; align-items: flex-end;
    overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: saturate(.82) contrast(.96) brightness(.95);
    transform: scale(1.02);
}
.hero-overlay {
    position: absolute; inset: 0;
    background:
        radial-gradient(120% 80% at 12% 82%, rgba(64, 35, 16, .5), transparent 62%),
        linear-gradient(180deg, rgba(32, 30, 29, .52) 0%, rgba(32, 30, 29, .12) 34%, rgba(39, 46, 27, .55) 72%, rgba(39, 46, 27, .9) 100%);
}
.hero-content {
    position: relative;
    width: 100%; max-width: var(--maxw);
    margin: 0 auto;
    padding: 150px 24px 120px;
}
.hero-inner { max-width: 840px; animation: bnRise .9s cubic-bezier(.2, .7, .3, 1) both; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 8px 16px;
    border-radius: var(--r-pill);
    background: rgba(245, 234, 216, .16);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(245, 234, 216, .28);
    color: #f9f4ed;
    font-size: 13px; font-weight: 600;
}
.hero-title {
    margin: 22px 0 0;
    font-size: clamp(40px, 6.6vw, 86px);
    color: var(--cream);
    text-shadow: 0 3px 30px rgba(32, 30, 29, .35);
}
.hero-title em { color: var(--peach-light); font-style: italic; }
.hero-subtitle {
    margin: 24px 0 0;
    max-width: 620px;
    font-size: clamp(16px, 1.5vw, 19.5px);
    line-height: 1.65;
    color: rgba(249, 244, 237, .9);
    text-wrap: pretty;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.hero-cta {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 17px 30px;
    border: 0; cursor: pointer;
    border-radius: var(--r-pill);
    background: var(--brand);
    color: var(--cream) !important;
    font-size: 16.5px; font-weight: 600;
    box-shadow: 0 10px 30px rgba(140, 73, 26, .42);
    transition: transform .25s, background .25s;
}
.hero-cta:hover { background: var(--brand-mid); transform: translateY(-2px); }
.hero-cta-secondary {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 17px 28px;
    border-radius: var(--r-pill);
    background: rgba(249, 244, 237, .12);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(249, 244, 237, .5);
    color: #f9f4ed !important;
    font-size: 16.5px; font-weight: 600;
    cursor: pointer;
    transition: background .25s;
}
.hero-cta-secondary:hover { background: rgba(249, 244, 237, .24); }

.hero-stats { display: flex; align-items: center; gap: 26px; margin-top: 42px; flex-wrap: wrap; }
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-number { font-family: var(--font-display); font-size: 34px; font-weight: 600; color: var(--peach-light); line-height: 1; }
.hero-stat-label { font-size: 13px; color: rgba(249, 244, 237, .72); margin-top: 6px; }
.hero-stat-divider { width: 1px; height: 34px; background: rgba(249, 244, 237, .26); }

.hero-scroll-indicator {
    position: absolute; left: 50%; bottom: 26px;
    transform: translateX(-50%);
    color: rgba(249, 244, 237, .7);
    animation: bnFloat 2.4s ease-in-out infinite;
}

/* ── Page hero (inner pages) ── */
.page-hero {
    position: relative;
    min-height: 440px;
    display: flex; align-items: flex-end;
    overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.8) contrast(.95) brightness(.9); }
.page-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(32, 30, 29, .5) 0%, rgba(32, 30, 29, .2) 40%, rgba(29, 34, 20, .86) 100%);
}
.page-hero-content {
    position: relative;
    width: 100%; max-width: var(--maxw);
    margin: 0 auto;
    padding: 130px 24px 56px;
    animation: bnRise .8s cubic-bezier(.2, .7, .3, 1) both;
}
.page-hero-content h1 { margin: 18px 0 0; font-size: clamp(32px, 4.6vw, 58px); color: var(--cream); }
.page-hero-content p { margin: 14px 0 0; max-width: 580px; font-size: 16.5px; color: rgba(249, 244, 237, .88); }

/* ============================================================
   SMART SEARCH CARD
   ============================================================ */
.search-wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 20;
}
.search-card {
    margin-top: -58px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 22px;
    box-shadow: var(--shadow-xl);
    animation: bnRise 1s .2s cubic-bezier(.2, .7, .3, 1) both;
}
.search-card-head { display: flex; align-items: center; gap: 9px; padding: 0 6px 16px; }
.search-card-head span {
    font-size: 11.5px; font-weight: 700;
    letter-spacing: .16em; text-transform: uppercase;
    color: var(--brand-dark);
}
.search-card-head i, .search-card-head svg { width: 16px; height: 16px; color: var(--brand-mid); }
.search-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(168px, 100%), 1fr));
    gap: 10px; align-items: end;
}
.search-field {
    display: flex; flex-direction: column; gap: 6px;
    padding: 12px 18px;
    border-radius: var(--r-md);
    background: var(--surface-2);
    border: 1px solid rgba(32, 30, 29, .07);
}
.search-field label {
    font-size: 11.5px; font-weight: 600;
    letter-spacing: .06em; text-transform: uppercase;
    color: var(--muted);
}
.search-field select, .search-field input {
    border: 0; background: transparent;
    font-family: inherit; font-size: 15.5px; font-weight: 600;
    color: var(--ink);
    outline: none; padding: 0; width: 100%;
    cursor: pointer;
}
.search-submit {
    display: flex; align-items: center; justify-content: center; gap: 9px;
    padding: 19px 24px;
    border: 0; cursor: pointer;
    border-radius: var(--r-pill);
    background: var(--brand);
    color: var(--cream);
    font-size: 16px; font-weight: 600;
    box-shadow: 0 8px 22px rgba(140, 73, 26, .3);
    transition: background .22s, transform .22s;
}
.search-submit:hover { background: var(--brand-mid); transform: translateY(-2px); }

/* ============================================================
   AI PANEL (dark forest)
   ============================================================ */
.ai-panel {
    border-radius: var(--r-xl);
    background: linear-gradient(155deg, #2e3520 0%, #272e1b 45%, #1d2214 100%);
    padding: clamp(28px, 4vw, 60px);
    position: relative; overflow: hidden;
    box-shadow: var(--shadow-2xl);
}
.ai-panel::before, .ai-panel::after {
    content: ''; position: absolute; border-radius: var(--r-pill);
}
.ai-panel::before {
    top: -90px; right: -60px; width: 340px; height: 340px;
    background: radial-gradient(circle, rgba(198, 113, 57, .34), transparent 68%);
    animation: bnFloat 9s ease-in-out infinite;
}
.ai-panel::after {
    bottom: -120px; left: -70px; width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(143, 160, 115, .26), transparent 70%);
}
.ai-panel-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
    gap: clamp(28px, 4vw, 58px);
    align-items: center;
}
.pill-dark {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 15px;
    border-radius: var(--r-pill);
    background: rgba(240, 250, 225, .12);
    border: 1px solid rgba(240, 250, 225, .22);
    color: var(--leaf-2);
    font-size: 11.5px; font-weight: 700;
    letter-spacing: .16em; text-transform: uppercase;
}
.ai-panel h2 { margin: 20px 0 0; font-size: clamp(28px, 3.6vw, 50px); color: var(--cream); }
.ai-panel p.lead {
    margin: 20px 0 0; font-size: 17px; line-height: 1.7;
    color: rgba(240, 250, 225, .76); max-width: 470px; text-wrap: pretty;
}
.ai-panel-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.ai-demo {
    background: rgba(249, 244, 237, .055);
    border: 1px solid rgba(240, 250, 225, .14);
    border-radius: 28px;
    padding: 20px;
    backdrop-filter: blur(6px);
}
.ai-demo-user { display: flex; justify-content: flex-end; margin-bottom: 14px; }
.ai-demo-user p {
    max-width: 88%;
    padding: 14px 18px;
    border-radius: 20px 20px 6px 20px;
    background: var(--peach);
    color: var(--brand-deep);
    font-size: 14.5px; font-weight: 500; line-height: 1.55;
}
.ai-demo-bot { display: flex; gap: 11px; align-items: flex-start; }
.ai-demo-avatar {
    flex-shrink: 0; width: 34px; height: 34px;
    border-radius: var(--r-pill);
    background: linear-gradient(150deg, var(--sage-light), var(--sage-2));
    display: grid; place-items: center;
    overflow: hidden;
}
.ai-demo-avatar img { width: 100%; height: 100%; object-fit: cover; }
.ai-demo-body { flex: 1; }
.ai-demo-body > p {
    padding: 14px 18px;
    border-radius: 20px 20px 20px 6px;
    background: rgba(240, 250, 225, .1);
    color: var(--leaf);
    font-size: 14.5px; line-height: 1.55;
}
.ai-steps { margin-top: 14px; display: flex; flex-direction: column; gap: 9px; }
.ai-step {
    display: flex; align-items: center; gap: 11px;
    padding: 11px 15px;
    border-radius: 16px;
    opacity: .34;
    transition: background .4s, opacity .4s;
}
.ai-step.on { opacity: 1; background: rgba(174, 191, 146, .16); }
.ai-step-dot {
    flex-shrink: 0; width: 20px; height: 20px;
    border-radius: var(--r-pill);
    display: grid; place-items: center;
    background: rgba(240, 250, 225, .16);
    color: rgba(240, 250, 225, .6);
    font-size: 12px;
    transition: background .3s, color .3s;
}
.ai-step.on .ai-step-dot { background: var(--sage-light); color: var(--forest-deep); }
.ai-step span { font-size: 14px; font-weight: 500; color: var(--leaf); }
.ai-result {
    margin-top: 16px; padding: 18px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(246, 160, 107, .2), rgba(174, 191, 146, .14));
    border: 1px solid rgba(246, 160, 107, .32);
    opacity: .12; transition: opacity .6s;
}
.ai-result.on { opacity: 1; }
.ai-result h4 { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--cream); }
.ai-result p { margin-top: 7px; font-size: 13.5px; color: rgba(240, 250, 225, .78); line-height: 1.5; }
.ai-result button {
    margin-top: 14px; border: 0; cursor: pointer;
    padding: 11px 20px; border-radius: var(--r-pill);
    background: var(--cream); color: var(--brand-deep);
    font-size: 14px; font-weight: 700;
    transition: background .2s;
}
.ai-result button:hover { background: var(--peach-light); }

/* ============================================================
   EXPERIENCE CARDS
   ============================================================ */
.exp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(268px, 100%), 1fr));
    gap: 18px;
}
.exp-card {
    position: relative; display: block;
    height: 352px;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform .4s cubic-bezier(.2, .7, .3, 1), box-shadow .4s;
}
.exp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.exp-card img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    filter: saturate(.78) contrast(.95);
    transition: transform .8s cubic-bezier(.2, .7, .3, 1);
}
.exp-card:hover img { transform: scale(1.06); }
.exp-card-scrim {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(32, 30, 29, .06) 30%, rgba(32, 30, 29, .62) 68%, rgba(29, 34, 20, .9) 100%);
}
.exp-card-icon {
    position: absolute; top: 16px; left: 16px;
    width: 40px; height: 40px;
    border-radius: var(--r-pill);
    background: rgba(245, 234, 216, .9);
    display: grid; place-items: center;
    color: var(--brand-dark);
    backdrop-filter: blur(4px);
}
.exp-card-body {
    position: absolute; left: 20px; right: 20px; bottom: 18px;
    color: var(--cream);
}
.exp-card-body h3 { font-size: 23px; font-weight: 600; color: var(--cream); }
.exp-card-body p { margin-top: 5px; font-size: 13.5px; color: rgba(249, 244, 237, .82); line-height: 1.45; }
.exp-card-cta {
    display: inline-flex; align-items: center; gap: 7px;
    margin-top: 13px; padding: 8px 15px;
    border-radius: var(--r-pill);
    background: rgba(245, 234, 216, .94);
    color: var(--brand-deep);
    font-size: 13px; font-weight: 700;
}

/* ============================================================
   FEATURE / SPLIT PANEL
   ============================================================ */
.split-panel {
    border-radius: var(--r-xl);
    overflow: hidden;
    background: var(--alt);
    border: 1px solid var(--line);
}
.split-panel-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(360px, 100%), 1fr)); }
.split-media { position: relative; min-height: 440px; }
.split-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.8) contrast(.94); }
.split-media::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(105deg, rgba(64, 35, 16, .3), transparent 55%);
}
.split-media-badge {
    position: absolute; bottom: 20px; left: 20px; z-index: 2;
    display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 16px;
    border-radius: var(--r-pill);
    background: rgba(255, 253, 248, .93);
    font-size: 12.5px; font-weight: 700;
    color: var(--brand-deep);
}
.split-media-badge i, .split-media-badge svg { width: 14px; height: 14px; color: var(--brand-mid); }
.split-body { padding: clamp(28px, 4vw, 54px); }
.split-body h2 { margin: 16px 0 0; font-size: clamp(26px, 3.2vw, 42px); }
.split-body h2 em { font-style: italic; color: var(--brand-dark); }
.split-body > p { margin: 18px 0 0; font-size: 16.5px; line-height: 1.65; color: var(--body-ink); max-width: 520px; }

.facet-grid {
    margin-top: 26px;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(min(158px, 100%), 1fr));
    gap: 9px;
}
.facet {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 14px;
    border-radius: 16px;
    background: var(--surface);
    border: 1px solid rgba(32, 30, 29, .06);
    font-size: 13.5px; font-weight: 600; color: var(--ink-2);
}
.facet i, .facet svg { width: 17px; height: 17px; color: var(--sage-2); flex-shrink: 0; }

/* ── Feature cards (why us) ── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
    gap: 18px;
}
.feature-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 26px;
    transition: transform .35s, box-shadow .35s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.feature-icon {
    width: 48px; height: 48px;
    border-radius: var(--r-pill);
    display: grid; place-items: center;
    color: var(--cream);
    margin-bottom: 16px;
}
.feature-icon i, .feature-icon svg { width: 22px; height: 22px; }
.feature-card h3 { font-size: 20px; }
.feature-card p { margin-top: 9px; font-size: 14.5px; line-height: 1.6; color: var(--muted); }

/* ============================================================
   DESTINATION CARDS
   ============================================================ */
.dest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(296px, 100%), 1fr));
    gap: 20px;
}
.dest-card {
    display: flex; flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    color: var(--ink);
    transition: transform .35s cubic-bezier(.2, .7, .3, 1), box-shadow .35s;
}
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); color: var(--ink); }
.dest-card-media { position: relative; height: 212px; overflow: hidden; }
.dest-card-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.8) contrast(.95); transition: transform .7s; }
.dest-card:hover .dest-card-media img { transform: scale(1.05); }
.dest-badge {
    position: absolute; top: 14px; left: 14px;
    padding: 6px 13px;
    border-radius: var(--r-pill);
    font-size: 12px; font-weight: 700;
    color: var(--cream);
    background: var(--brand);
}
.dest-weather {
    position: absolute; top: 14px; right: 14px;
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 12px;
    border-radius: var(--r-pill);
    background: rgba(255, 253, 248, .92);
    font-size: 12.5px; font-weight: 700;
    color: var(--brand-deep);
}
.dest-weather i, .dest-weather svg { width: 14px; height: 14px; color: var(--brand-mid); }
.dest-card-body { padding: 20px 22px 22px; }
.dest-card-body h3 { font-size: 22px; }
.dest-area { display: flex; align-items: center; gap: 6px; margin-top: 7px; font-size: 13.5px; color: var(--muted); }
.dest-area i, .dest-area svg { width: 14px; height: 14px; color: var(--subtle); }
.dest-meta {
    display: flex; align-items: center; gap: 16px;
    margin-top: 16px; padding-top: 15px;
    border-top: 1px solid var(--line);
    font-size: 13.5px; font-weight: 600; color: var(--body-ink);
}
.dest-meta span { display: inline-flex; align-items: center; gap: 5px; }
.dest-meta i, .dest-meta svg { width: 14px; height: 14px; }
.dest-meta .star { color: var(--brand); }
.dest-meta .km { color: var(--muted); font-weight: 500; }
.dest-meta .chev { margin-left: auto; color: var(--brand-mid); }

/* ============================================================
   NEARBY / SUGGEST PANEL
   ============================================================ */
.suggest-panel {
    background: var(--alt);
    border-radius: var(--r-xl);
    padding: clamp(26px, 3.6vw, 48px);
    border: 1px solid var(--line);
}
.suggest-head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.chip-light {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 14px;
    border-radius: var(--r-pill);
    background: var(--surface);
    font-size: 12px; font-weight: 700;
    color: var(--brand-dark);
}
.chip-light i, .chip-light svg { width: 14px; height: 14px; }
.gps-live { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 600; color: var(--muted); }
.gps-dot { width: 8px; height: 8px; border-radius: var(--r-pill); background: var(--sage-2); animation: bnBlink 1.8s ease-in-out infinite; }
.suggest-panel h2 { margin: 20px 0 0; font-size: clamp(26px, 3.2vw, 42px); max-width: 760px; }
.suggest-panel > p { margin: 12px 0 0; font-size: 16px; color: var(--body-ink); max-width: 620px; }
.suggest-grid {
    margin-top: 32px;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 16px;
}
.suggest-card {
    background: var(--surface);
    border-radius: 24px;
    padding: 22px;
    border: 1px solid rgba(32, 30, 29, .06);
    display: flex; flex-direction: column; gap: 14px;
}
.suggest-cond { display: flex; align-items: center; gap: 11px; }
.suggest-cond-icon {
    width: 38px; height: 38px;
    border-radius: var(--r-pill);
    display: grid; place-items: center;
    color: var(--cream);
}
.suggest-cond span { font-size: 13.5px; font-weight: 600; color: var(--body-ink); }
.suggest-card h4 { font-size: 21px; }
.suggest-km { margin-top: 5px; font-size: 13px; font-weight: 600; color: var(--brand-dark); }
.suggest-why { font-size: 14.5px; line-height: 1.6; color: var(--body-ink); }
.suggest-card .btn-outline { margin-top: auto; align-self: flex-start; background: var(--surface-2); padding: 10px 18px; font-size: 14px; }

/* ============================================================
   FESTIVAL LIST
   ============================================================ */
.fest-list { display: flex; flex-direction: column; }
.fest-row {
    display: flex; align-items: center;
    gap: clamp(16px, 3vw, 34px);
    flex-wrap: wrap;
    padding: 22px 4px;
    border-top: 1px solid var(--line-2);
}
.fest-list .fest-row:last-child { border-bottom: 1px solid var(--line-2); }
.fest-date { flex-shrink: 0; width: 82px; text-align: center; }
.fest-date b { font-family: var(--font-display); font-size: 38px; font-weight: 600; line-height: 1; color: var(--brand-dark); display: block; }
.fest-date span { font-size: 12.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--subtle); }
.fest-body { flex: 1; min-width: 220px; }
.fest-title-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.fest-body h3 { font-size: clamp(19px, 2.2vw, 26px); }
.fest-match {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 12px;
    border-radius: var(--r-pill);
    background: var(--peach-bg);
    color: var(--brand-dark);
    font-size: 12px; font-weight: 700;
}
.fest-meta { display: flex; align-items: center; gap: 16px; margin-top: 8px; font-size: 13.5px; color: var(--muted); flex-wrap: wrap; }
.fest-meta span { display: inline-flex; align-items: center; gap: 6px; }
.fest-meta i, .fest-meta svg { width: 14px; height: 14px; color: var(--subtle); }
.fest-cul { font-weight: 600; color: var(--moss-2); }

/* ============================================================
   FOOD CARDS — "Hương vị Bảy Núi"
   ============================================================ */
.food-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(252px, 100%), 1fr));
    gap: 18px;
}
.food-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
    display: flex; flex-direction: column;
    transition: transform .35s, box-shadow .35s;
}
.food-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.food-card-media { height: 186px; background: var(--alt); overflow: hidden; }
.food-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.food-card:hover .food-card-media img { transform: scale(1.06); }
.food-card-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.food-cul { font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--moss-2); }
.food-card-body h3 { font-size: 21px; line-height: 1.2; }
.food-where { font-size: 14px; color: var(--muted); line-height: 1.5; }
.food-foot {
    margin-top: auto; padding-top: 14px;
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
    border-top: 1px solid var(--line);
}
.food-price { font-size: 15.5px; font-weight: 700; color: var(--brand-dark); }
.food-btn {
    cursor: pointer; border: 0;
    padding: 9px 16px;
    border-radius: var(--r-pill);
    background: var(--surface-2);
    font-size: 13.5px; font-weight: 600;
    color: var(--ink-2);
    transition: background .2s;
}
.food-btn:hover { background: rgba(198, 113, 57, .14); color: var(--brand-dark); }

/* ============================================================
   ROOM CARDS
   ============================================================ */
.rooms-grid, .rooms-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    gap: 20px;
}
.room-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
    display: flex; flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: transform .35s cubic-bezier(.2, .7, .3, 1), box-shadow .35s;
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.room-card-img { position: relative; height: 220px; overflow: hidden; }
.room-card-img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.86) contrast(.96); transition: transform .7s; }
.room-card:hover .room-card-img img { transform: scale(1.05); }
.room-card-near {
    position: absolute; bottom: 14px; left: 14px;
    display: inline-flex; align-items: center; gap: 7px;
    padding: 7px 13px;
    border-radius: var(--r-pill);
    background: rgba(255, 253, 248, .94);
    font-size: 12.5px; font-weight: 700;
    color: var(--brand-deep);
}
.room-card-body { padding: 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.room-card-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.room-card-header h3 { font-size: 22px; line-height: 1.2; }
.room-status {
    flex-shrink: 0;
    display: inline-flex; align-items: center; gap: 5px;
    padding: 6px 11px;
    border-radius: var(--r-pill);
    font-size: 12.5px; font-weight: 700;
    white-space: nowrap;
}
.room-status.available { background: var(--leaf); color: var(--moss); }
.room-status.booked { background: #f6e0dd; color: #9a3d2c; }
.room-desc { font-size: 14.5px; line-height: 1.6; color: var(--muted); }
.room-amenities { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 4px; }
.room-card-footer {
    margin-top: auto; padding-top: 18px;
    display: flex; align-items: flex-end; justify-content: space-between; gap: 12px;
}
.room-price-wrap { display: flex; flex-direction: column; }
.room-price-label { font-size: 12px; color: var(--subtle); }
.room-price { font-family: var(--font-display); font-size: 24px; font-weight: 600; color: var(--brand-dark); }
.per-night { font-family: var(--font-body); font-size: 12.5px; font-weight: 400; color: var(--subtle); }
.btn-book-room {
    padding: 13px 22px;
    font-size: 14.5px;
    box-shadow: 0 5px 16px rgba(140, 73, 26, .24);
}

/* ── Filter bar ── */
.filter-bar { display: flex; gap: 9px; flex-wrap: wrap; }
.filter-btn {
    cursor: pointer;
    padding: 12px 22px;
    border-radius: var(--r-pill);
    border: 1px solid var(--line-2);
    background: var(--surface);
    color: var(--body-ink);
    font-family: inherit; font-size: 15px; font-weight: 600;
    transition: background .2s, color .2s, border-color .2s;
}
.filter-btn:hover { background: rgba(198, 113, 57, .12); }
.filter-btn.active { background: var(--brand); border-color: var(--brand); color: var(--cream); }

/* ============================================================
   TOURS
   ============================================================ */
.tour-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); gap: 20px; }
.tour-card {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    min-height: 400px;
    display: flex; flex-direction: column; justify-content: flex-end;
    transition: transform .35s, box-shadow .35s;
}
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.tour-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.78) contrast(.95); }
.tour-scrim {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(32, 30, 29, .05) 25%, rgba(29, 34, 20, .82) 72%, rgba(29, 34, 20, .96) 100%);
}
.tour-body { position: relative; padding: 24px; color: var(--cream); }
.tour-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.tour-chip {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 12px;
    border-radius: var(--r-pill);
    background: rgba(249, 244, 237, .16);
    backdrop-filter: blur(6px);
    font-size: 12.5px; font-weight: 600;
}
.tour-chip.rate { background: rgba(246, 160, 107, .9); color: var(--brand-deep); font-weight: 700; }
.tour-chip i, .tour-chip svg { width: 13px; height: 13px; }
.tour-body h3 { font-size: 25px; line-height: 1.15; color: var(--cream); }
.tour-stops { margin-top: 9px; font-size: 13.5px; line-height: 1.55; color: rgba(249, 244, 237, .8); }
.tour-foot { margin-top: 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.tour-price { font-family: var(--font-display); font-size: 23px; font-weight: 600; color: var(--peach-light); }
.tour-btn {
    border: 0; cursor: pointer;
    padding: 12px 20px;
    border-radius: var(--r-pill);
    background: var(--cream); color: var(--brand-deep);
    font-size: 14px; font-weight: 700;
    transition: background .2s, transform .2s;
}
.tour-btn:hover { background: var(--peach-light); transform: translateY(-2px); }

/* ============================================================
   SERVICES
   ============================================================ */
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(196px, 100%), 1fr)); gap: 14px; }
.service-tile {
    cursor: pointer; text-align: left;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 22px;
    display: flex; flex-direction: column; gap: 12px;
    transition: transform .3s, box-shadow .3s;
    color: var(--ink);
}
.service-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); color: var(--ink); }
.service-tile-icon {
    width: 44px; height: 44px;
    border-radius: var(--r-pill);
    background: var(--leaf);
    display: grid; place-items: center;
    color: var(--moss-2);
}
.service-tile-icon i, .service-tile-icon svg { width: 21px; height: 21px; }
.service-tile h4 { font-size: 19px; }
.service-tile span { font-size: 13.5px; color: var(--muted); }

/* ============================================================
   TESTIMONIALS / STORIES
   ============================================================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(310px, 100%), 1fr)); gap: 18px; }
.testimonial-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 24px;
    display: flex; flex-direction: column; gap: 16px;
}
.testimonial-stars { color: var(--brand); font-size: 16px; letter-spacing: 2px; }
.testimonial-text {
    font-family: var(--font-display);
    font-size: 18px; line-height: 1.5;
    color: var(--ink-2); text-wrap: pretty;
}
.testimonial-author { display: flex; align-items: center; gap: 13px; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); }
.testimonial-avatar {
    width: 52px; height: 52px;
    border-radius: var(--r-pill);
    background: linear-gradient(150deg, var(--sage-light), var(--sage-2));
    color: var(--cream);
    display: grid; place-items: center;
    font-size: 16px; font-weight: 700;
    flex-shrink: 0;
}
.testimonial-name { font-size: 16px; font-weight: 700; color: var(--ink); }
.testimonial-location { font-size: 12.5px; color: var(--muted); }
.verified-chip {
    display: inline-flex; align-items: center; gap: 7px;
    align-self: flex-start;
    padding: 5px 12px;
    border-radius: var(--r-pill);
    background: var(--leaf);
    font-size: 11.5px; font-weight: 700;
    color: var(--moss);
}
.verified-chip i, .verified-chip svg { width: 13px; height: 13px; color: var(--sage-2); }

/* ============================================================
   STATS / PARTNER
   ============================================================ */
.stat-panel {
    background: var(--alt);
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    padding: clamp(26px, 3.6vw, 52px);
}
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); gap: clamp(28px, 4vw, 50px); }
.stat-boxes { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 14px; }
.stat-box {
    padding: 18px 22px;
    border-radius: 22px;
    background: var(--surface);
    border: 1px solid var(--line);
}
.stat-box b { font-family: var(--font-display); font-size: 30px; font-weight: 600; color: var(--brand-dark); display: block; }
.stat-box span { font-size: 12.5px; color: var(--muted); max-width: 150px; line-height: 1.35; display: block; }
.partner-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr)); gap: 10px; }
.partner-row {
    display: flex; align-items: center; gap: 11px;
    padding: 14px 16px;
    border-radius: 18px;
    background: var(--surface);
    border: 1px solid rgba(32, 30, 29, .06);
}
.partner-row-icon {
    width: 34px; height: 34px;
    border-radius: var(--r-pill);
    background: var(--leaf); color: var(--moss-2);
    display: grid; place-items: center;
    flex-shrink: 0;
}
.partner-row-icon i, .partner-row-icon svg { width: 17px; height: 17px; }
.partner-row span { flex: 1; font-size: 13.5px; font-weight: 600; color: var(--ink-2); line-height: 1.3; }
.partner-row b { font-size: 13px; font-weight: 700; color: var(--brand-dark); }

/* ============================================================
   EXPLORE (grid preview + detail articles)
   ============================================================ */
.explore-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr)); gap: 18px; }
.explore-card {
    position: relative; display: block;
    height: 300px;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform .4s cubic-bezier(.2, .7, .3, 1), box-shadow .4s;
}
.explore-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.explore-card img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.8) contrast(.95); transition: transform .8s; }
.explore-card:hover img { transform: scale(1.06); }
.explore-card-overlay {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 22px;
    background: linear-gradient(180deg, rgba(32, 30, 29, .05) 35%, rgba(29, 34, 20, .86) 100%);
    color: var(--cream);
}
.explore-card-overlay h4 { font-family: var(--font-display); font-size: 21px; font-weight: 600; color: var(--cream); }
.explore-arrow {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 10px;
    align-self: flex-start;
    padding: 7px 14px;
    border-radius: var(--r-pill);
    background: rgba(245, 234, 216, .94);
    color: var(--brand-deep);
    font-size: 12.5px; font-weight: 700;
}

.explore-detail-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: clamp(24px, 4vw, 52px);
    align-items: center;
}
.explore-detail-item.reverse .explore-detail-img-wrap { order: 2; }
.explore-detail-img-wrap {
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}
.explore-detail-img-wrap img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; filter: saturate(.82) contrast(.95); }
.explore-detail-tag {
    display: inline-block;
    font-size: 11.5px; font-weight: 700;
    letter-spacing: .18em; text-transform: uppercase;
    color: var(--brand-dark);
}
.explore-detail-body h2 { margin: 14px 0 0; font-size: clamp(26px, 3.2vw, 42px); }
.explore-detail-body > p { margin: 16px 0 0; font-size: 16.5px; line-height: 1.65; color: var(--body-ink); }
.explore-detail-info-row { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.explore-info-chip {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 7px 14px;
    border-radius: var(--r-pill);
    background: var(--surface-2);
    border: 1px solid rgba(32, 30, 29, .07);
    font-size: 12.5px; font-weight: 500;
    color: var(--body-ink);
}
.explore-info-chip i, .explore-info-chip svg { width: 15px; height: 15px; color: var(--brand-mid); }
.explore-detail-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr)); gap: 12px; margin-top: 22px; }
.detail-info-card {
    padding: 18px 20px;
    border-radius: var(--r-md);
    background: var(--surface);
    border: 1px solid var(--line);
}
.detail-info-card h4 { display: flex; align-items: center; gap: 8px; font-size: 15px; font-family: var(--font-body); font-weight: 700; color: var(--ink-2); }
.detail-info-card h4 i, .detail-info-card h4 svg { width: 16px; height: 16px; }
.detail-info-card p { margin-top: 8px; font-size: 14px; line-height: 1.55; color: var(--muted); }
.detail-info-card.schedule { background: var(--leaf); border-color: rgba(114, 129, 87, .22); }
.detail-info-card.schedule h4 i, .detail-info-card.schedule h4 svg { color: var(--sage-2); }
.detail-info-card.notes { background: var(--peach-bg); border-color: rgba(198, 113, 57, .22); }
.detail-info-card.notes h4 i, .detail-info-card.notes h4 svg { color: var(--brand-mid); }
.explore-divider { height: 1px; background: var(--line-2); margin: clamp(40px, 6vw, 72px) 0; }

/* ── Tabs ── */
.tab-row { display: flex; gap: 9px; flex-wrap: wrap; }
.tab-btn {
    cursor: pointer;
    padding: 12px 22px;
    border-radius: var(--r-pill);
    border: 1px solid var(--line-2);
    background: var(--surface);
    color: var(--body-ink);
    font-family: inherit; font-size: 15px; font-weight: 600;
    transition: background .2s, color .2s, border-color .2s;
}
.tab-btn:hover { background: rgba(198, 113, 57, .12); }
.tab-btn.active { background: var(--brand); border-color: var(--brand); color: var(--cream); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section { position: relative; overflow: hidden; margin-top: clamp(64px, 8vw, 110px); }
.cta-bg { position: absolute; inset: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72) contrast(.94) brightness(.8); }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(29, 34, 20, .72), rgba(64, 35, 16, .78)); }
.cta-content {
    position: relative;
    max-width: 900px; margin: 0 auto;
    padding: clamp(66px, 10vw, 126px) 24px;
    text-align: center;
}
.cta-content h2 { font-size: clamp(32px, 5.4vw, 68px); color: var(--cream); }
.cta-content p { margin: 20px auto 0; max-width: 560px; font-size: clamp(16px, 1.6vw, 19px); line-height: 1.65; color: rgba(249, 244, 237, .86); }
.cta-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 13px; justify-content: center; }
.cta-phone {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 17px 28px;
    border-radius: var(--r-pill);
    background: rgba(249, 244, 237, .12);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(249, 244, 237, .46);
    color: #f9f4ed !important;
    font-size: 16.5px; font-weight: 600;
    transition: background .22s;
}
.cta-phone:hover { background: rgba(249, 244, 237, .24); }

/* Dark strip CTA (inline) */
.strip-cta {
    margin-top: 20px;
    padding: clamp(24px, 3.4vw, 40px);
    border-radius: var(--r-xl);
    background: linear-gradient(150deg, var(--forest), var(--forest-deep));
    display: flex; flex-wrap: wrap; align-items: center; gap: 20px; justify-content: space-between;
}
.strip-cta h3 { font-size: clamp(21px, 2.6vw, 32px); color: var(--cream); }
.strip-cta p { margin-top: 8px; font-size: 15.5px; color: rgba(240, 250, 225, .72); max-width: 460px; }

/* ============================================================
   CARDS / FORMS
   ============================================================ */
.glass-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-sm);
}
.card-title { font-size: 24px; }
.contact-form-desc { margin-top: 8px; font-size: 15px; color: var(--muted); margin-bottom: 22px; }

.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr)); gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.form-group label { font-size: 12.5px; font-weight: 600; letter-spacing: .04em; color: var(--muted); }
.form-input {
    width: 100%;
    padding: 14px 16px;
    border-radius: var(--r-sm);
    border: 1px solid var(--line-2);
    background: var(--surface-2);
    font-family: inherit; font-size: 15px;
    color: var(--ink);
    outline: none;
    transition: border-color .2s, box-shadow .2s, background .2s;
}
.form-input:focus { border-color: var(--brand); background: var(--surface); box-shadow: 0 0 0 3px rgba(198, 113, 57, .14); }
textarea.form-input { resize: vertical; line-height: 1.6; }

.quick-contact-row { display: flex; flex-wrap: wrap; gap: 10px; }
.quick-contact-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 18px;
    border-radius: var(--r-pill);
    font-size: 14px; font-weight: 600;
    background: var(--surface-2);
    border: 1px solid var(--line);
    color: var(--ink-2);
    transition: background .2s, transform .2s;
}
.quick-contact-btn:hover { transform: translateY(-2px); }
.quick-contact-btn.phone-btn { background: var(--leaf); color: var(--moss); border-color: rgba(114, 129, 87, .25); }
.quick-contact-btn.fb-btn { background: #e8eef8; color: #1a4d8f; border-color: rgba(26, 77, 143, .18); }
.quick-contact-btn.zalo-btn { background: var(--peach-bg); color: var(--brand-dark); border-color: rgba(198, 113, 57, .25); }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 900px; }
.faq-item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 18px 22px;
    transition: box-shadow .25s, border-color .25s;
}
.faq-item[open] { box-shadow: var(--shadow-card); border-color: rgba(198, 113, 57, .3); }
.faq-item summary {
    cursor: pointer;
    font-size: 16px; font-weight: 600; color: var(--ink);
    list-style: none;
    display: flex; align-items: center; justify-content: space-between; gap: 14px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 22px; font-weight: 400; color: var(--brand);
    transition: transform .25s;
    flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: 12px; font-size: 15px; line-height: 1.65; color: var(--muted); }

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
    position: fixed; inset: 0; z-index: 200;
    background: rgba(32, 30, 29, .55);
    backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    animation: bnFade .22s ease both;
}
.modal-card {
    position: relative;
    width: 100%; max-width: 560px;
    max-height: 90vh; overflow-y: auto;
    background: var(--surface);
    border-radius: 28px;
    padding: clamp(24px, 4vw, 36px);
    box-shadow: 0 30px 80px rgba(29, 34, 20, .4);
    animation: bnRise .35s cubic-bezier(.2, .7, .3, 1) both;
}
.modal-close {
    position: absolute; top: 18px; right: 18px;
    width: 38px; height: 38px;
    border: 0; cursor: pointer;
    border-radius: var(--r-pill);
    background: var(--surface-2);
    color: var(--ink-2);
    display: grid; place-items: center;
    transition: background .2s;
}
.modal-close:hover { background: rgba(198, 113, 57, .16); color: var(--brand-dark); }
.booking-title { font-size: 26px; margin-bottom: 20px; }
.booking-room-info {
    display: flex; align-items: center; gap: 14px;
    padding: 14px;
    border-radius: var(--r-md);
    background: var(--surface-2);
    border: 1px solid var(--line);
    margin-bottom: 20px;
}
.booking-room-info img { width: 84px; height: 66px; object-fit: cover; border-radius: 12px; flex-shrink: 0; }
.room-info-text h4 { font-size: 18px; }
.room-info-text span { font-size: 14px; font-weight: 600; color: var(--brand-dark); }

.booking-summary {
    margin: 20px 0;
    padding: 18px 20px;
    border-radius: var(--r-md);
    background: var(--leaf);
    border: 1px solid rgba(114, 129, 87, .22);
}
.booking-summary h4 { font-family: var(--font-body); font-size: 12.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--moss-2); }
.summary-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 10px; font-size: 14.5px; color: var(--body-ink); }
.summary-price { font-weight: 700; color: var(--ink); }
.summary-total { margin-top: 14px; padding-top: 14px; border-top: 1px dashed rgba(114, 129, 87, .4); font-size: 16px; font-weight: 700; color: var(--ink); }
.summary-total .summary-price { font-family: var(--font-display); font-size: 24px; color: var(--brand-dark); }
.btn-confirm-booking { width: 100%; padding: 17px 24px; font-size: 16px; }

/* ============================================================
   TOAST
   ============================================================ */
.toast {
    position: fixed; left: 50%; bottom: 30px;
    transform: translate(-50%, 140%);
    z-index: 300;
    display: flex; align-items: center; gap: 12px;
    padding: 15px 24px;
    border-radius: var(--r-pill);
    background: var(--forest-deep);
    color: var(--leaf);
    font-size: 14.5px; font-weight: 500;
    box-shadow: 0 18px 44px rgba(29, 34, 20, .4);
    transition: transform .4s cubic-bezier(.2, .7, .3, 1), opacity .4s;
    opacity: 0;
    max-width: calc(100vw - 40px);
}
.toast.show { transform: translate(-50%, 0); opacity: 1; }
.toast > div { display: grid; place-items: center; color: var(--sage-light); }
.toast i, .toast svg { width: 20px; height: 20px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    margin-top: clamp(64px, 8vw, 110px);
    background: linear-gradient(160deg, var(--forest), var(--forest-deep));
    color: rgba(240, 250, 225, .78);
}
.footer-inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(54px, 7vw, 84px) 24px 30px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: clamp(28px, 4vw, 54px);
}
.footer .nav-logo-text { color: var(--cream) !important; }
.footer .nav-logo-text small { color: rgba(240, 250, 225, .6) !important; }
.footer-desc { margin-top: 16px; font-size: 14.5px; line-height: 1.7; color: rgba(240, 250, 225, .68); max-width: 320px; }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.social-link {
    width: 40px; height: 40px;
    border-radius: var(--r-pill);
    background: rgba(240, 250, 225, .1);
    border: 1px solid rgba(240, 250, 225, .16);
    display: grid; place-items: center;
    color: var(--leaf-2) !important;
    transition: background .2s, transform .2s;
}
.social-link:hover { background: var(--brand); transform: translateY(-2px); color: var(--cream) !important; }
.social-link i, .social-link svg { width: 18px; height: 18px; }
.footer-col h4 {
    font-family: var(--font-body);
    font-size: 12px; font-weight: 700;
    letter-spacing: .16em; text-transform: uppercase;
    color: var(--peach);
    margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14.5px; color: rgba(240, 250, 225, .74) !important; }
.footer-col a:hover { color: var(--peach-light) !important; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; line-height: 1.5; color: rgba(240, 250, 225, .74); }
.footer-contact i, .footer-contact svg { color: var(--peach); margin-top: 3px; }
.footer-bottom {
    margin-top: clamp(36px, 5vw, 56px);
    padding-top: 22px;
    border-top: 1px solid rgba(240, 250, 225, .12);
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; flex-wrap: wrap;
    font-size: 13.5px; color: rgba(240, 250, 225, .55);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(240, 250, 225, .55) !important; font-size: 13.5px; }
.footer-bottom-links a:hover { color: var(--peach-light) !important; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1180px) {
    .nav-links { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    :root { --nav-height: 70px; }
    .mobile-menu-btn { display: grid; order: 3; }
    .nav-inner { padding: 12px 16px; gap: 10px; }
    .nav-logo { min-width: 0; }
    .nav-logo-text { font-size: 17px; }
    .nav-logo-text small { display: none; }
    .lang-toggle, .admin-entry-btn, .nav-icon-btn { display: none; }
    .nav-actions { order: 2; gap: 8px; }
    .btn-book-nav { padding: 10px 15px; font-size: 13.5px; }

    .hero-content { padding: 120px 20px 84px; }
    .hero-stats { gap: 18px; }
    .hero-stat-divider { display: none; }
    .search-card { margin-top: -30px; }

    .explore-detail-item { grid-template-columns: 1fr; }
    .explore-detail-item.reverse .explore-detail-img-wrap { order: 0; }
    .explore-detail-img-wrap img { min-height: 240px; }

    .split-media { min-height: 300px; }
    .section-container { padding-left: 18px; padding-right: 18px; }
    .search-wrap { padding-left: 18px; padding-right: 18px; }
}

@media (max-width: 640px) {
    .nav-logo-icon { width: 38px; height: 38px; }
    .nav-logo-text { font-size: 16px; }
    .btn-book-nav { padding: 10px; }
    .btn-book-nav span { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .hero-title { font-size: clamp(34px, 10vw, 52px); }
    .modal-card { padding: 22px; border-radius: 22px; }
    .room-card-footer { flex-direction: column; align-items: stretch; gap: 14px; }
    .btn-book-room { width: 100%; }
    .fest-date { width: 62px; }
    .fest-date b { font-size: 30px; }
    .strip-cta { flex-direction: column; align-items: flex-start; }
}

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

/* ============================================================
   Chọn nhà xe trong modal đặt xe đưa đón
   ============================================================ */
.quote-option {
    display: flex; align-items: center; justify-content: space-between; gap: 14px;
    width: 100%; text-align: left; cursor: pointer;
    padding: 14px 16px;
    border-radius: var(--r-sm);
    border: 1.5px solid var(--line-2);
    background: var(--surface-2);
    font-family: inherit;
    transition: border-color .2s, background .2s;
}
.quote-option:hover { border-color: var(--brand); background: rgba(198, 113, 57, .08); }
.quote-option.selected { border-color: var(--brand); background: var(--peach-bg); }
.quote-main { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.quote-main strong { font-size: 15px; color: var(--ink); }
.quote-main small { font-size: 12.5px; color: var(--muted); }
.quote-price { font-size: 17px; font-weight: 700; color: var(--brand-dark); white-space: nowrap; }

/* Nút CTA trong khối tối cần chữ sáng */
.strip-cta .pill-dark i, .strip-cta .pill-dark svg { width: 14px; height: 14px; }

/* ── Ghi chú khoảng ngày trong form đặt dịch vụ ── */
.booking-range-note {
    margin: -4px 0 16px;
    padding: 10px 14px;
    border-radius: var(--r-sm);
    background: var(--leaf);
    border: 1px solid rgba(114, 129, 87, .22);
    font-size: 13.5px;
    font-weight: 500;
    color: var(--moss);
}

/* ── Chọn khứ hồi khi đặt xe ── */
.round-trip-toggle {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 13px 15px;
    margin-bottom: 14px;
    border-radius: var(--r-sm);
    background: var(--surface-2);
    border: 1px solid var(--line-2);
    cursor: pointer;
    font-size: 14px;
    color: var(--body-ink);
    transition: border-color .2s, background .2s;
}
.round-trip-toggle:hover { border-color: var(--brand); }
.round-trip-toggle input { margin-top: 2px; accent-color: var(--brand); width: 17px; height: 17px; flex-shrink: 0; }
.round-trip-toggle:has(input:checked) { background: var(--peach-bg); border-color: var(--brand); }

/* Ô readonly (ngày về của tour) nhìn rõ là không sửa được */
.form-input[readonly] { background: var(--alt); color: var(--muted); cursor: not-allowed; }

/* ── Điểm đón: nhập tay hoặc lấy GPS ── */
.pickup-row { display: flex; gap: 9px; align-items: stretch; }
.pickup-row .form-input { flex: 1; min-width: 0; }
.pickup-gps {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 0 16px;
    border-radius: var(--r-sm);
    border: 1.5px solid var(--brand);
    background: var(--peach-bg);
    color: var(--brand-dark);
    font-family: inherit; font-size: 13.5px; font-weight: 600;
    white-space: nowrap; cursor: pointer;
    transition: background .2s, opacity .2s;
}
.pickup-gps:hover { background: var(--peach-light); }
.pickup-gps:disabled { opacity: .55; cursor: wait; }
.pickup-gps i, .pickup-gps svg { width: 16px; height: 16px; }

.pickup-chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 10px; }
.pickup-chip {
    padding: 6px 13px;
    border-radius: var(--r-pill);
    border: 1px solid var(--line-2);
    background: var(--surface);
    color: var(--body-ink);
    font-family: inherit; font-size: 13px; font-weight: 500;
    cursor: pointer;
    transition: background .2s, border-color .2s, color .2s;
}
.pickup-chip:hover { background: var(--brand); border-color: var(--brand); color: var(--cream); }

.pickup-note {
    margin-top: 10px;
    padding: 9px 13px;
    border-radius: var(--r-sm);
    background: var(--leaf);
    border: 1px solid rgba(114, 129, 87, .22);
    font-size: 13px;
    color: var(--moss);
}

@media (max-width: 560px) {
    .pickup-row { flex-direction: column; }
    .pickup-gps { justify-content: center; padding: 12px 16px; }
}

/* ── Đang tìm tài xế (sau khi đặt xe) ── */
.dispatch-box { text-align: center; padding: 18px 4px 6px; }
.dispatch-box h3 { font-size: clamp(20px, 2.6vw, 26px); margin-bottom: 8px; }
.dispatch-box p { color: var(--muted); font-size: 15px; line-height: 1.6; }
.dispatch-spinner { display: flex; justify-content: center; gap: 8px; margin-bottom: 20px; }
.dispatch-spinner span {
    width: 11px; height: 11px; border-radius: 50%;
    background: var(--brand);
    animation: bnPulse 1.1s ease-in-out infinite;
}
.dispatch-spinner span:nth-child(2) { animation-delay: .18s; }
.dispatch-spinner span:nth-child(3) { animation-delay: .36s; }
@keyframes bnPulse {
    0%, 80%, 100% { transform: scale(.6); opacity: .35; }
    40% { transform: scale(1); opacity: 1; }
}
.dispatch-box.found .dispatch-spinner span { background: var(--sage-2); animation: none; transform: scale(1); opacity: 1; }
.dispatch-box.failed .dispatch-spinner span { background: var(--line-2); animation: none; transform: scale(.75); opacity: 1; }

.dispatch-recap {
    display: flex; justify-content: center; gap: 34px; flex-wrap: wrap;
    margin: 22px 0 6px; padding: 16px;
    background: var(--surface-2); border-radius: var(--r-md);
}
.dispatch-recap div { display: flex; flex-direction: column; gap: 4px; }
.dispatch-recap span { font-size: 12.5px; color: var(--muted); }
.dispatch-recap b { font-size: 16px; color: var(--ink); }
.dispatch-phone {
    display: inline-block; margin-top: 8px;
    font-family: var(--font-display); font-size: 22px; font-weight: 600;
    color: var(--brand-dark); text-decoration: none;
}
.dispatch-actions { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.dispatch-actions .btn-primary i, .dispatch-actions .btn-primary svg { width: 17px; height: 17px; }

/* ════════════════════════════════════════════════
   TẠO LỊCH TRÌNH — 3 bước rồi ra hành trình bấm được
   ════════════════════════════════════════════════ */
.trip-wizard {
    background: rgba(240, 250, 225, .06);
    border: 1px solid rgba(240, 250, 225, .16);
    border-radius: var(--r-lg);
    padding: clamp(20px, 2.6vw, 28px);
}
.trip-wizard.done { background: transparent; border: none; padding: 0; }

.wiz-progress { display: flex; gap: 6px; margin-bottom: 20px; }
.wiz-progress span {
    flex: 1; height: 4px; border-radius: 99px;
    background: rgba(240, 250, 225, .18);
    transition: background .3s ease;
}
.wiz-progress span.on { background: var(--peach); }

.wiz-step { display: none; animation: bnRise .3s ease both; }
.wiz-step.on { display: block; }
.wiz-step h4 { font-family: var(--font-display); font-size: clamp(19px, 2.2vw, 23px); color: var(--cream); }
.wiz-hint { margin-top: 6px; font-size: 14px; color: rgba(240, 250, 225, .64); }
.wiz-label {
    display: block; margin: 18px 0 8px;
    font-size: 12.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
    color: rgba(240, 250, 225, .7);
}
.wiz-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.wiz-chip {
    border: 1px solid rgba(240, 250, 225, .22);
    background: rgba(249, 244, 237, .07);
    color: rgba(240, 250, 225, .86);
    border-radius: 99px; padding: 9px 18px;
    font: inherit; font-size: 14.5px; cursor: pointer;
    transition: background .18s, color .18s, border-color .18s;
}
.wiz-chip:hover { background: rgba(249, 244, 237, .15); }
.wiz-chip.on { background: var(--peach); border-color: var(--peach); color: var(--brand-deep); font-weight: 600; }

.wiz-counter { display: flex; align-items: center; gap: 16px; }
.wiz-counter button {
    width: 38px; height: 38px; border-radius: 99px;
    border: 1px solid rgba(240, 250, 225, .28);
    background: transparent; color: var(--cream);
    font-size: 20px; cursor: pointer; line-height: 1;
}
.wiz-counter button:hover { background: rgba(249, 244, 237, .14); }
.wiz-counter b { font-family: var(--font-display); font-size: 24px; color: var(--cream); min-width: 34px; text-align: center; }

.trip-wizard .form-input {
    background: rgba(249, 244, 237, .09);
    border: 1px solid rgba(240, 250, 225, .22);
    color: var(--cream);
}
.trip-wizard .form-input::-webkit-calendar-picker-indicator { filter: invert(1) opacity(.7); }
.wiz-pickup { display: flex; gap: 8px; }
.wiz-pickup .form-input { flex: 1; }
.wiz-nav { display: flex; gap: 10px; margin-top: 22px; flex-wrap: wrap; }

/* ── Kết quả ── */
.trip-result { color: var(--cream); }
.trip-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; flex-wrap: wrap; }
.trip-head h4 { font-family: var(--font-display); font-size: clamp(21px, 2.6vw, 27px); }
.trip-dates { margin-top: 4px; font-size: 14px; color: rgba(240, 250, 225, .64); }
.trip-summary { margin-top: 14px; font-size: 15.5px; line-height: 1.7; color: rgba(240, 250, 225, .84); }

.trip-budget {
    display: flex; align-items: center; gap: 10px;
    margin-top: 16px; padding: 13px 16px;
    border-radius: var(--r-sm);
    background: rgba(143, 160, 115, .2);
    font-size: 14.5px;
}
.trip-budget.over { background: rgba(246, 160, 107, .18); }

.trip-day { margin-top: 24px; }
.trip-day-head {
    display: flex; justify-content: space-between; align-items: baseline;
    padding-bottom: 10px; margin-bottom: 12px;
    border-bottom: 1px solid rgba(240, 250, 225, .16);
}
.trip-day-head b { font-family: var(--font-display); font-size: 19px; }
.trip-day-head span { font-size: 13.5px; color: rgba(240, 250, 225, .62); }

.trip-timeline { display: flex; flex-direction: column; }
.trip-item {
    display: grid;
    grid-template-columns: 52px 28px minmax(0, 1fr) auto;
    align-items: start; gap: 10px;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(240, 250, 225, .1);
}
.trip-item:last-child { border-bottom: none; }
.trip-time { font-size: 13.5px; font-weight: 700; color: var(--peach); padding-top: 3px; }
.trip-dot {
    width: 26px; height: 26px; border-radius: 99px;
    display: grid; place-items: center; flex-shrink: 0;
    background: rgba(249, 244, 237, .12); color: var(--leaf-2);
}
.trip-item.stay .trip-dot { background: rgba(143, 160, 115, .35); }
.trip-item.transport .trip-dot { background: rgba(246, 160, 107, .28); }
.trip-body { display: flex; flex-direction: column; gap: 3px; }
.trip-body b { font-size: 15.5px; }
.trip-body span { font-size: 13.5px; color: rgba(240, 250, 225, .62); }
.trip-tip, .trip-weather {
    font-style: normal; font-size: 12.5px; margin-top: 4px;
    color: rgba(240, 250, 225, .5);
}
.trip-weather { color: var(--peach-light); display: inline-flex; align-items: center; gap: 5px; }
.trip-right { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.trip-price { font-size: 14px; font-weight: 700; color: var(--leaf-2); white-space: nowrap; }
.trip-btn {
    border: 1px solid var(--peach); background: transparent; color: var(--peach);
    border-radius: 99px; padding: 5px 14px;
    font: inherit; font-size: 13px; font-weight: 600;
    cursor: pointer; text-decoration: none; white-space: nowrap;
    transition: background .18s, color .18s;
}
.trip-btn:hover { background: var(--peach); color: var(--brand-deep); }

.trip-tips, .trip-tours { margin-top: 26px; }
.trip-tips h5, .trip-tours h5 {
    display: flex; align-items: center; gap: 7px;
    font-family: var(--font-body); font-size: 12.5px; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    color: rgba(240, 250, 225, .68); margin-bottom: 10px;
}
.trip-tips ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.trip-tips li {
    position: relative; padding-left: 18px;
    font-size: 14.5px; line-height: 1.6; color: rgba(240, 250, 225, .8);
}
.trip-tips li::before { content: '·'; position: absolute; left: 6px; color: var(--peach); font-weight: 700; }

.trip-tour {
    display: flex; justify-content: space-between; align-items: center;
    gap: 14px; flex-wrap: wrap;
    padding: 14px 16px; margin-bottom: 8px;
    background: rgba(249, 244, 237, .07);
    border-radius: var(--r-sm);
}
.trip-tour b { display: block; font-size: 15px; }
.trip-tour span { font-size: 13px; color: rgba(240, 250, 225, .6); }

.trip-actions { display: flex; gap: 10px; margin-top: 26px; flex-wrap: wrap; }

@media (max-width: 560px) {
    .trip-item { grid-template-columns: 46px 24px minmax(0, 1fr); }
    .trip-right { grid-column: 2 / -1; flex-direction: row; align-items: center; gap: 10px; }
}

/* ── Xem trước thời tiết ngày đi (bước 3 của wizard) ── */
.wiz-outlook { margin-top: 18px; }
.outlook-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.outlook-day {
    flex: 1 1 88px; min-width: 88px;
    display: flex; flex-direction: column; gap: 2px;
    padding: 10px 12px;
    border-radius: var(--r-sm);
    background: rgba(249, 244, 237, .08);
    border-left: 3px solid var(--sage);
}
.outlook-day.warn { border-left-color: var(--peach); }
.outlook-day.bad { border-left-color: #e07a5f; background: rgba(224, 122, 95, .14); }
.od-date { font-size: 12.5px; color: rgba(240, 250, 225, .6); }
.od-rain { font-family: var(--font-display); font-size: 19px; color: var(--cream); }
.od-temp { font-size: 12.5px; color: rgba(240, 250, 225, .74); }
.od-text { font-size: 12px; color: rgba(240, 250, 225, .55); }

/* ── Lễ hội trùng ngày đi ── */
.trip-event-hit {
    display: flex; align-items: center; gap: 10px;
    margin-top: 14px; padding: 13px 16px;
    border-radius: var(--r-sm);
    background: rgba(246, 160, 107, .22);
    border: 1px solid rgba(246, 160, 107, .45);
    font-size: 15px; font-weight: 600;
}

/* ── Thời tiết từng ngày trong lịch trình ── */
.trip-day-weather {
    display: inline-flex; align-items: center; gap: 6px;
    margin-bottom: 12px; padding: 5px 12px;
    border-radius: var(--r-pill);
    background: rgba(249, 244, 237, .1);
    font-size: 12.5px; color: rgba(240, 250, 225, .74);
}
.trip-day-weather.warn { background: rgba(246, 160, 107, .18); color: var(--peach-light); }
.trip-day-weather.bad { background: rgba(224, 122, 95, .22); color: #ffc0ae; }

/* ── Đề nghị đổi lịch vì mưa ── */
.trip-replan {
    display: flex; justify-content: space-between; align-items: center;
    gap: 16px; flex-wrap: wrap;
    margin-top: 16px; padding: 16px 18px;
    border-radius: var(--r-md);
    background: rgba(246, 160, 107, .16);
    border: 1px solid rgba(246, 160, 107, .5);
    animation: bnRise .3s ease both;
}
.trip-replan.warn { background: rgba(249, 244, 237, .08); border-color: rgba(240, 250, 225, .25); }
.trip-replan b { display: flex; align-items: center; gap: 7px; font-size: 15.5px; }
.trip-replan p { margin-top: 5px; font-size: 14px; color: rgba(240, 250, 225, .78); max-width: 520px; }
.trip-replan-actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* ── Ghép chuyến (trong modal đặt xe) ── */
.pool-offer {
    display: flex; align-items: flex-start; gap: 12px;
    margin: 14px 0;
    padding: 14px 16px;
    border-radius: var(--r-sm);
    background: var(--leaf);
    border: 1px solid var(--sage);
}
.pool-offer i, .pool-offer svg { width: 20px; height: 20px; color: var(--moss-2); flex-shrink: 0; margin-top: 2px; }
.pool-offer b { display: block; font-size: 15px; color: var(--moss); }
.pool-offer p { margin-top: 4px; font-size: 13.5px; line-height: 1.55; color: var(--moss-2); }
.pool-offer label {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 10px; font-size: 14px; font-weight: 600; color: var(--moss); cursor: pointer;
}

/* ── Tìm nhanh ở trang Khám phá ── */
.explore-search {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 20px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-pill);
    box-shadow: 0 2px 10px rgba(64, 35, 16, .05);
    transition: border-color .18s, box-shadow .18s;
}
.explore-search:focus-within {
    border-color: var(--brand);
    box-shadow: 0 4px 16px rgba(198, 113, 57, .16);
}
.explore-search > i, .explore-search > svg { width: 19px; height: 19px; color: var(--muted); flex-shrink: 0; }
.explore-search input {
    flex: 1; min-width: 0;
    border: none; outline: none; background: transparent;
    font: inherit; font-size: 15.5px; color: var(--ink);
}
.explore-search input::placeholder { color: var(--muted); }
.explore-search input::-webkit-search-cancel-button { display: none; }
.explore-search button {
    display: grid; place-items: center;
    width: 28px; height: 28px; flex-shrink: 0;
    border: none; border-radius: var(--r-pill);
    background: var(--surface-2); color: var(--muted);
    cursor: pointer;
}
.explore-search button:hover { background: var(--peach-bg); color: var(--brand-dark); }
.explore-search button i, .explore-search button svg { width: 15px; height: 15px; }
.explore-search-info { margin: 10px 4px 0; font-size: 14px; color: var(--muted); }
.explore-empty { padding: 34px 4px; color: var(--muted); font-size: 15px; }

/* ── Tìm chỗ nghỉ theo khu vực (trang Phòng nghỉ) ── */
.stay-search-wrap { margin-bottom: 26px; }
.stay-area-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.stay-area-chip {
    border: 1px solid var(--line-2);
    background: var(--surface);
    color: var(--body-ink);
    border-radius: var(--r-pill);
    padding: 7px 16px;
    font: inherit; font-size: 14px; cursor: pointer;
    transition: border-color .16s, background .16s, color .16s;
}
.stay-area-chip:hover { border-color: var(--brand); background: var(--peach-bg); color: var(--brand-dark); }
.stay-partner-tag {
    position: absolute; top: 12px; left: 12px;
    display: inline-flex; align-items: center; gap: 5px;
    padding: 5px 11px;
    border-radius: var(--r-pill);
    background: var(--moss); color: var(--leaf);
    font-size: 11.5px; font-weight: 700;
}
.stay-area {
    display: flex; align-items: center; gap: 6px;
    margin-top: 4px; font-size: 13px; color: var(--muted);
}

/* ── Gợi ý loại xe & chỗ nghỉ thay thế trong lịch trình ── */
.trip-options { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; align-items: center; }
.trip-option-label { font-size: 12.5px; color: rgba(240, 250, 225, .55); }
.trip-option {
    padding: 4px 11px;
    border-radius: var(--r-pill);
    background: rgba(249, 244, 237, .1);
    border: 1px solid rgba(240, 250, 225, .18);
    font-size: 12.5px; color: rgba(240, 250, 225, .78);
}
button.trip-option.alt { cursor: pointer; font: inherit; font-size: 12.5px; transition: background .16s, color .16s; }
button.trip-option.alt:hover { background: var(--peach); border-color: var(--peach); color: var(--brand-deep); }

/* ── Đơn của tôi ── */
.mo-search { padding: clamp(20px, 3vw, 28px); }
.mo-list { display: flex; flex-direction: column; gap: 14px; margin-top: 22px; }
.mo-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 20px;
}
.mo-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 14px; flex-wrap: wrap; }
.mo-kind {
    display: inline-block; margin-bottom: 6px;
    padding: 4px 11px; border-radius: var(--r-pill);
    background: var(--peach-bg); color: var(--brand-dark);
    font-size: 12px; font-weight: 700;
}
.mo-head b { display: block; font-size: 17px; }
.mo-when { display: block; margin-top: 4px; font-size: 13.5px; color: var(--muted); }
.mo-route { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 12px; font-size: 14.5px; }
.mo-route .dot { width: 8px; height: 8px; border-radius: 99px; }
.mo-route .dot.from { background: var(--sage-2); }
.mo-route .dot.to { background: var(--brand); margin-left: 10px; }
.mo-foot {
    display: flex; justify-content: space-between; align-items: center;
    gap: 14px; flex-wrap: wrap;
    margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line);
}
.mo-code {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 12.5px; color: var(--muted); letter-spacing: .04em;
}
.mo-partner { display: block; margin-top: 3px; font-size: 13px; color: var(--muted); }
.mo-actions { display: flex; align-items: center; gap: 12px; }
.mo-actions strong { font-family: var(--font-display); font-size: 20px; color: var(--brand-dark); }
.status-pill.off { background: var(--surface-2); color: var(--muted); }

/* ── Chuông thông báo ── */
.bn-bell-wrap { position: relative; }
.bn-bell { position: relative; }
.bn-dot {
    position: absolute; top: 6px; right: 6px;
    width: 9px; height: 9px; border-radius: 50%;
    background: var(--terracotta); border: 2px solid var(--surface);
}
.bn-panel {
    position: absolute; top: calc(100% + 10px); right: 0; z-index: 60;
    width: min(340px, calc(100vw - 32px));
    border-radius: var(--r-md); overflow: hidden;
    background: var(--surface); border: 1px solid var(--line);
    box-shadow: 0 12px 34px rgba(0, 0, 0, .16);
}
.bn-panel-head {
    display: flex; justify-content: space-between; align-items: center;
    padding: 12px 14px; border-bottom: 1px solid var(--line);
}
.bn-panel-head button {
    border: 0; background: none; cursor: pointer;
    font: inherit; font-size: .82rem; color: var(--terracotta);
}
.bn-list { max-height: 380px; overflow-y: auto; }
.bn-item { padding: 12px 14px; border-bottom: 1px solid var(--line); }
.bn-item:last-child { border-bottom: 0; }
.bn-item.unread { background: var(--leaf); }
.bn-item b { display: block; font-size: .92rem; }
.bn-item p { margin: 2px 0 4px; font-size: .86rem; color: var(--muted); line-height: 1.45; }
.bn-item time { font-size: .76rem; color: var(--muted); }
.bn-empty { padding: 26px 16px; text-align: center; color: var(--muted); font-size: .88rem; }

.bn-toast {
    position: fixed; right: 20px; bottom: 20px; z-index: 200;
    max-width: 340px; padding: 14px 16px;
    border-radius: var(--r-md);
    background: var(--forest, #1D2214); color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
    transform: translateY(14px); opacity: 0;
    transition: transform .3s ease, opacity .3s ease;
}
.bn-toast.in { transform: translateY(0); opacity: 1; }
.bn-toast b { display: block; margin-bottom: 3px; }
.bn-toast span { font-size: .87rem; opacity: .85; line-height: 1.45; }

/* ── Đặt cọc ── */
.mo-pay:empty { display: none; }
.mo-pay-loading { margin: 14px 0 0; color: var(--muted); font-size: .92rem; }
.mo-pay-box {
    display: flex; gap: 18px; flex-wrap: wrap; align-items: flex-start;
    margin-top: 14px; padding: 16px;
    border-radius: var(--r-md);
    background: var(--surface-2); border: 1px solid var(--line);
}
.mo-pay-qr img {
    width: 190px; height: auto; display: block;
    border-radius: var(--r-sm); background: #fff;
}
.mo-pay-info { flex: 1; min-width: 240px; }
.mo-pay-info > b { font-size: 1.1rem; }
.mo-pay-info > p { margin: 4px 0 10px; color: var(--muted); font-size: .9rem; }
.mo-pay-info dl {
    display: grid; grid-template-columns: auto 1fr; gap: 4px 14px;
    margin: 0 0 10px; font-size: .9rem;
}
.mo-pay-info dt { color: var(--muted); }
.mo-pay-info dd { margin: 0; font-weight: 600; }
.mo-pay-info code {
    padding: 1px 7px; border-radius: 5px;
    background: var(--leaf); font-size: .88rem;
}
.mo-pay-note { font-size: .84rem; color: var(--muted); line-height: 1.5; }
.mo-paid {
    padding: 3px 10px; border-radius: 20px; font-size: .8rem; font-weight: 600;
    background: var(--surface-2); color: var(--muted);
}
.mo-paid.paid { background: rgba(62,124,89,.14); color: var(--moss); }
.mo-paid.pending_confirm { background: rgba(224,166,60,.16); color: #9a6a12; }

/* ── Đánh giá sau chuyến ── */
.mo-review {
    margin-top: 14px; padding: 16px;
    border-radius: var(--r-md);
    background: var(--surface-2); border: 1px solid var(--line);
}
.mo-review:empty { display: none; }
.mo-review-title { margin: 0 0 10px; font-size: .95rem; }
.mo-stars { display: flex; gap: 4px; margin-bottom: 10px; }
.mo-stars button {
    border: 0; background: none; cursor: pointer; padding: 0 2px;
    font-size: 1.9rem; line-height: 1; color: var(--line);
    transition: color .12s, transform .12s;
}
.mo-stars button:hover { transform: scale(1.12); }
.mo-stars button.on { color: #E0A63C; }
.mo-review textarea {
    width: 100%; padding: 10px 12px; font: inherit; font-size: .92rem;
    border-radius: var(--r-sm); border: 1px solid var(--line);
    background: var(--surface); color: inherit; resize: vertical;
}
.mo-review-actions { display: flex; gap: 8px; margin-top: 10px; }
.mo-review-done { margin: 0; color: var(--moss); font-weight: 600; }

/* Bản đồ xe chạy, nhúng lại chính /theoxe.html để web và app y hệt nhau */
.mo-map {
    display: block; width: 100%; height: 240px;
    margin-top: 14px; border: 0; border-radius: var(--r-md);
    background: #dfe6d5; overflow: hidden;
}

/* Vị trí tài xế đang tới */
.mo-live {
    display: flex; align-items: center; gap: 14px;
    margin-top: 14px; padding: 14px 16px;
    border-radius: var(--r-md);
    background: var(--leaf); border: 1px solid rgba(143, 160, 115, .4);
}
.mo-live.stale { background: var(--surface-2); border-color: var(--line); }
.mo-live > i, .mo-live > svg { width: 22px; height: 22px; color: var(--moss); flex-shrink: 0; }
.mo-live div { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.mo-live b { font-size: 15px; color: var(--moss); }
.mo-live span { font-size: 13px; color: var(--body-ink); }
.mo-live a { white-space: nowrap; text-decoration: none; }

/* ════════════════════════════════════════════════════
   TRANG NỘI DUNG ĐƠN GIẢN (.page)
   ════════════════════════════════════════════════════
   Dùng cho những trang không có ảnh bìa lớn: Hộ chiếu, Nhật ký.

   Trước đây KHÔNG hề có quy tắc nào cho .page. Hậu quả: thanh điều hướng là
   position:fixed cao khoảng 62–80px, còn nội dung bắt đầu từ toạ độ 0 — nên
   tiêu đề trang nằm lọt hẳn dưới thanh điều hướng, không ai nhìn thấy. Và vì
   không có max-width lẫn căn giữa, mọi thứ dàn sát mép trái màn hình.
   ════════════════════════════════════════════════════ */
.page {
    max-width: 900px;
    margin: 0 auto;
    /* Chừa đúng chiều cao thanh điều hướng cố định, cộng một khoảng thở */
    padding: 118px 20px 72px;
}

.page-head {
    text-align: center;
    margin-bottom: 2rem;
}
.page-head .eyebrow {
    display: inline-block;
    font-size: .75rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--brand, #c67139);
    margin-bottom: .5rem;
}
.page-head h1 {
    margin: 0 0 .6rem;
    font-size: clamp(1.7rem, 5vw, 2.6rem);
    line-height: 1.15;
}
.page-head p {
    margin: 0 auto;
    max-width: 560px;
    color: var(--muted, #6f7168);
}

@media (max-width: 640px) {
    /* Thanh điều hướng thu gọn nên thấp hơn — bớt khoảng chừa cho đỡ trống */
    .page { padding: 92px 16px 56px; }
}

/* ════════════════════════════════════════════════════
   HỘ CHIẾU BẢY NÚI
   ════════════════════════════════════════════════════ */
.hc-lookup { margin-bottom: 2rem; }
/* Căn giữa cả ô nhập lẫn nút, khớp với tiêu đề phía trên */
.hc-lookup form {
    display: flex; gap: 10px; flex-wrap: wrap;
    max-width: 520px; margin: 0 auto;
    justify-content: center;
}
.hc-lookup input {
    flex: 1; min-width: 200px; padding: 13px 16px; font: inherit;
    border: 1.5px solid var(--line); border-radius: var(--r-sm); background: var(--surface);
}
.hc-status { margin-top: 10px; color: var(--muted); font-size: .9rem; text-align: center; }

/* Thẻ hộ chiếu — nền tối như bìa hộ chiếu thật */
.hc-card {
    margin: 26px 0 34px; padding: 24px;
    border-radius: var(--r-lg); background: var(--forest, #1D2214); color: #fff;
}
.hc-card-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.hc-holder { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold, #D7B46A); }
.hc-card-head h2 { margin: 4px 0 2px; font-size: 1.55rem; color: #fff; }
.hc-level { font-size: .85rem; opacity: .65; }
.hc-big { font-size: 2.6rem; font-weight: 800; line-height: 1; color: var(--gold, #D7B46A); }
.hc-big small { font-size: 1.1rem; opacity: .55; font-weight: 600; }
.hc-bar { height: 9px; border-radius: 9px; background: rgba(255,255,255,.14); overflow: hidden; margin: 18px 0 10px; }
.hc-bar i { display: block; height: 100%; background: var(--gold, #D7B46A); transition: width .7s ease; }
.hc-next { margin: 0; font-size: .9rem; opacity: .75; }

.hc-h { margin: 30px 0 14px; font-size: 1.15rem; }

.hc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(132px, 1fr)); gap: 14px; }
.hc-stamp {
    text-align: center; padding: 18px 10px 14px;
    border-radius: var(--r-md); background: var(--surface-2); border: 1px solid var(--line);
}
.hc-stamp b { display: block; margin-top: 10px; font-size: .92rem; }
.hc-stamp span { font-size: .78rem; color: var(--muted); }
/* Con dấu chưa có thì mờ và viền đứt — nhìn là biết còn thiếu */
.hc-seal {
    width: 72px; height: 72px; margin: 0 auto; display: grid; place-items: center;
    border-radius: 50%; border: 2px dashed var(--line);
    font-size: 1.9rem; font-weight: 800; color: var(--muted); background: var(--surface);
}
.hc-stamp.got .hc-seal {
    border-style: solid; border-color: var(--gold, #D7B46A);
    background: var(--forest, #1D2214); color: var(--gold, #D7B46A);
}
.hc-stamp.got { background: var(--leaf); border-color: rgba(143,160,115,.4); }

.hc-rewards { display: grid; gap: 10px; }
.hc-reward {
    display: flex; justify-content: space-between; align-items: center; gap: 14px;
    padding: 15px 18px; border-radius: var(--r-md);
    background: var(--surface-2); border: 1px solid var(--line);
}
.hc-reward b { display: block; font-size: .97rem; }
.hc-reward span { font-size: .84rem; color: var(--muted); }
.hc-reward.open { background: var(--leaf); border-color: rgba(143,160,115,.45); }
.hc-reward code {
    padding: 7px 13px; border-radius: 9px; font-size: .95rem; font-weight: 700;
    background: var(--forest, #1D2214); color: var(--gold, #D7B46A);
}
.hc-lock { font-size: .82rem; color: var(--muted); white-space: nowrap; }

.hc-how { margin-top: 40px; padding: 24px; border-radius: var(--r-lg); background: var(--surface-2); }
.hc-how h2 { margin: 0 0 12px; font-size: 1.1rem; }
.hc-how ol { margin: 0 0 14px; padding-left: 20px; line-height: 1.9; }
.hc-note { margin: 0; font-size: .88rem; color: var(--muted); }

/* ════════════════════════════════════════════════════
   ĐỐI SOÁT DOANH THU
   ════════════════════════════════════════════════════ */
.rv-block { margin: 28px 0 8px; }
.rv-head { display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; }
.rv-head h2 { margin: 0; font-size: 1.2rem; }
.rv-head input {
    padding: 9px 13px; font: inherit; font-size: .92rem;
    border: 1.5px solid var(--line); border-radius: var(--r-sm); background: var(--surface);
}
.rv-empty { margin: 14px 0 0; color: var(--muted); font-size: .92rem; line-height: 1.6; }

.rv-sum {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px;
    margin-top: 16px;
}
.rv-sum > div {
    padding: 15px 17px; border-radius: var(--r-md);
    background: var(--surface-2); border: 1px solid var(--line);
}
.rv-sum span { display: block; font-size: .82rem; color: var(--muted); margin-bottom: 5px; }
.rv-sum b { font-size: 1.25rem; }
.rv-sum .minus { color: var(--terracotta); }
/* Con số đối tác quan tâm nhất — cho nổi hẳn lên */
.rv-net { background: var(--forest, #1D2214) !important; border-color: transparent !important; }
.rv-net span { color: rgba(255,255,255,.6); }
.rv-net b { color: var(--gold, #D7B46A); }

.rv-note { margin: 14px 0 0; font-size: .89rem; color: var(--muted); line-height: 1.7; }
.rv-paid { color: var(--moss); font-weight: 600; }
.rv-wait { color: var(--terracotta); font-weight: 600; }

.rv-table-wrap { margin-top: 16px; overflow-x: auto; }
.rv-table { width: 100%; border-collapse: collapse; font-size: .9rem; min-width: 620px; }
.rv-table th, .rv-table td { padding: 11px 13px; text-align: left; border-bottom: 1px solid var(--line); }
.rv-table th { font-size: .8rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.rv-table .num { text-align: right; white-space: nowrap; }
.rv-table .minus { color: var(--terracotta); }
.rv-table .strong { font-weight: 700; }
.rv-table code { padding: 2px 7px; border-radius: 5px; background: var(--leaf); font-size: .85rem; }

/* ════════════════════════════════════════════════════
   GHÉP TOUR
   ════════════════════════════════════════════════════ */
.tp-strip { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 10px; }
.tp-dep {
    display: flex; align-items: center; gap: 8px;
    padding: 7px 11px; border: 0; border-radius: 20px; cursor: pointer;
    font: inherit; font-size: .8rem; font-weight: 600;
    background: rgba(255,255,255,.92); color: var(--ink);
}
.tp-dep.tp-new { background: var(--gold, #D7B46A); color: var(--forest, #1D2214); }
.tp-date { white-space: nowrap; }
.tp-bar { width: 46px; height: 5px; border-radius: 5px; background: rgba(0,0,0,.14); overflow: hidden; }
.tp-bar i { display: block; height: 100%; background: var(--terracotta); }
.tp-need { color: var(--muted); }

.tp-modal {
    position: fixed; inset: 0; z-index: 300;
    display: grid; place-items: center; padding: 20px;
    background: rgba(0,0,0,.5);
}
.tp-panel {
    position: relative; width: 100%; max-width: 460px;
    max-height: 88vh; overflow-y: auto;
    padding: 26px 24px; border-radius: var(--r-lg); background: var(--surface);
}
.tp-close {
    position: absolute; top: 12px; right: 14px;
    border: 0; background: none; cursor: pointer; font-size: 26px; line-height: 1; color: var(--muted);
}
.tp-panel h3 { margin: 0 0 8px; font-size: 1.3rem; }
.tp-lead { margin: 0 0 16px; font-size: .92rem; color: var(--muted); line-height: 1.65; }

.tp-list { display: grid; gap: 8px; margin-bottom: 14px; }
.tp-opt {
    display: flex; align-items: center; gap: 11px; cursor: pointer;
    padding: 12px 14px; border-radius: var(--r-sm);
    background: var(--surface-2); border: 1.5px solid var(--line);
}
.tp-opt:has(input:checked) { border-color: var(--terracotta); background: var(--leaf); }
.tp-opt > div { flex: 1; }
.tp-opt b { display: block; font-size: .95rem; }
.tp-opt span { font-size: .82rem; color: var(--muted); }
.tp-price { font-weight: 700; color: var(--terracotta); white-space: nowrap; }

.tp-fields { display: grid; gap: 9px; }
.tp-fields input {
    padding: 13px 15px; font: inherit;
    border: 1.5px solid var(--line); border-radius: var(--r-sm); background: var(--surface);
}
.tp-err { margin: 10px 0 0; color: var(--terracotta); font-weight: 600; font-size: .88rem; }
.tp-submit { width: 100%; margin-top: 14px; }

.tp-result { display: grid; gap: 8px; margin: 4px 0 12px; }
.tp-result > div { display: flex; justify-content: space-between; gap: 12px; font-size: .93rem; }
.tp-result span { color: var(--muted); }
.tp-save { margin: 0; color: var(--moss); font-weight: 600; font-size: .9rem; }

/* ════════════════════════════════════════════════════
   THƯ VIỆN ẢNH TIN ĐĂNG
   ════════════════════════════════════════════════════ */
.listing-gallery {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 10px; margin-bottom: 12px;
}
.lst-empty {
    grid-column: 1 / -1; margin: 0; padding: 22px 16px; text-align: center;
    border: 1.5px dashed var(--line); border-radius: var(--r-md);
    color: var(--muted); font-size: .88rem;
}
.lst-thumb {
    position: relative; margin: 0; aspect-ratio: 4 / 3; overflow: hidden;
    border-radius: var(--r-sm); background: var(--surface-2);
    border: 2px solid transparent;
}
/* Ảnh bìa là thứ khách nhìn thấy trong danh sách — cho nổi rõ */
.lst-thumb.cover { border-color: var(--terracotta); }
.lst-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lst-thumb figcaption {
    position: absolute; left: 0; bottom: 0; padding: 3px 8px;
    font-size: .72rem; font-weight: 700;
    background: var(--terracotta); color: #fff; border-top-right-radius: 8px;
}
.lst-thumb-x {
    position: absolute; top: 5px; right: 5px;
    width: 24px; height: 24px; border: 0; border-radius: 50%; cursor: pointer;
    font-size: 17px; line-height: 1; color: #fff; background: rgba(0, 0, 0, .58);
}
.lst-thumb-first {
    position: absolute; left: 5px; top: 5px; border: 0; cursor: pointer;
    padding: 3px 8px; border-radius: 20px; font-size: .7rem; font-weight: 600;
    background: rgba(255, 255, 255, .92); color: var(--ink);
}
