/* Champa Meuang Lao Travel — Main CSS (Mobile-first) */

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

:root {
  --bg:        #f8e7c9;
  --bg2:       #F0F5F1;
  --surface:   #f8e7c9;
  --dark:      #064E3B;
  --gold:      #064E3B;
  --gold-lt:   #4A7C5E;
  --text:      #064E3B;
  --text-mid:  #3D6A52;
  --text-mute: #7A9885;
  --border:    #D6EAD9;
  --radius:    12px;
  --radius-lg: 20px;
  --nav-h:     65px;
}

html  { scroll-behavior: smooth; }
body  { font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        background: var(--bg); color: var(--text); font-size: 14px; line-height: 1.6; }

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

/* ─── CONTAINER ──────────────────────────────────── */
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 16px; }
@media (min-width: 640px)  { .wrap { padding: 0 24px; } }
@media (min-width: 1024px) { .wrap { padding: 0 32px; } }

/* ─── NAV ────────────────────────────────────────── */
.nav { background: #fff; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 400; }
.nav-wrap { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; padding-bottom: 14px; }
.nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 500; color: var(--text); text-decoration: none; line-height: 1.15; }
.nav-logo:hover, .nav-logo:visited, .nav-logo:active { text-decoration: none; color: var(--text); }
.nav-logo span { display: block; font-size: 9px; font-family: 'DM Sans', sans-serif; font-weight: 300; color: var(--text-mute); letter-spacing: 0.14em; text-transform: uppercase; }

.nav-right { display: none; flex-direction: column; align-items: stretch; gap: 8px; position: absolute; top: var(--nav-h); left: 0; right: 0; background: #fff; padding: 16px; border-bottom: 1px solid var(--border); z-index: 199; }
.nav-right.open { display: flex; }
@media (min-width: 768px) {
  .nav-right { display: flex; flex-direction: row; align-items: center; gap: 4px; position: static; padding: 0; border: none; }
}

.nav-hamburger { display: flex; align-items: center; justify-content: center; background: none; border: 1px solid var(--border); border-radius: 8px; width: 40px; height: 40px; cursor: pointer; font-size: 18px; color: var(--text); }
@media (min-width: 768px) { .nav-hamburger { display: none; } }

.nav-link { font-size: 13px; color: var(--text-mid); padding: 8px 12px; border-radius: 30px; text-decoration: none; transition: background 0.18s; cursor: pointer; }
.nav-link:hover { background: var(--bg2); }

.nav-btn { font-size: 12px; border: 1.5px solid var(--border); border-radius: 30px; padding: 8px 16px; cursor: pointer; background: #fff; color: var(--text); font-family: 'DM Sans', sans-serif; text-decoration: none; transition: border-color 0.18s; min-height: 44px; display: inline-flex; align-items: center; }
.nav-btn:hover { border-color: var(--text); }

.lang-toggle { display: flex; background: var(--bg2); border-radius: 20px; overflow: hidden; margin-left: 6px; }
.lang-toggle a { font-size: 10px; padding: 6px 12px; color: var(--text-mute); text-decoration: none; transition: all 0.18s; min-height: 32px; display: flex; align-items: center; }
.lang-toggle a.active { background: var(--dark); color: #fff; border-radius: 20px; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-user-btn { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text); border: 1.5px solid var(--border); border-radius: 30px; padding: 8px 14px; background: #fff; cursor: pointer; font-family: 'DM Sans', sans-serif; min-height: 44px; transition: border-color 0.18s; }
.nav-user-btn:hover { border-color: var(--text); }
.nav-dropdown-menu { display: none; position: absolute; right: 0; top: calc(100% + 8px); background: #fff; border: 1px solid var(--border); border-radius: var(--radius); min-width: 180px; box-shadow: 0 8px 32px rgba(0,0,0,0.12); z-index: 300; overflow: hidden; }
.nav-dropdown-menu.open { display: block; }
.nav-dropdown-menu a { display: block; padding: 10px 16px; font-size: 13px; color: var(--text-mid); text-decoration: none; transition: background 0.15s; }
.nav-dropdown-menu a:hover { background: var(--bg2); color: var(--text); }
.nav-dropdown-divider { border-top: 1px solid var(--border); }
.nav-dropdown-workspace { background: var(--gold) !important; color: #fff !important; font-weight: 500; }
.nav-dropdown-workspace:hover { opacity: 0.9; }

/* ─── CATEGORY STRIP ─────────────────────────────── */
.cat-strip { border-bottom: 1px solid var(--border); position: sticky; top: var(--nav-h); z-index: 100; background: #fff; }
.cat-wrap { display: flex; gap: 0; align-items: center; overflow-x: auto; scrollbar-width: none; padding-top: 0; padding-bottom: 0; justify-content: flex-start; }
.cat-wrap::-webkit-scrollbar { display: none; }
@media (min-width: 1024px) { .cat-wrap { justify-content: center; } }

.cat-pill { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 10px 14px; cursor: pointer; border-bottom: 2px solid transparent; color: var(--text-mute); transition: all 0.18s; white-space: nowrap; flex-shrink: 0; }
.cat-pill i, .cat-pill svg { width: 20px; height: 20px; }
.cat-pill span { font-size: 10px; font-weight: 500; }
.cat-pill.active { color: var(--text); border-bottom-color: var(--text); }
.cat-pill:hover { color: var(--text); }
@media (min-width: 640px) { .cat-pill { padding: 12px 18px; } .cat-pill span { font-size: 11px; } }

/* ─── HERO ───────────────────────────────────────── */
.hero-section { background: linear-gradient(160deg,#064E3B 0%,#064E3B 50%,#054232 100%); padding: 48px 16px 72px; text-align: center; position: relative; }
.hero-section::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23A8C5B0' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C%2Fg%3E%3C/svg%3E"); }
.hero-eyebrow { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: #F2C94C; margin-bottom: 14px; position: relative; }
.hero-title { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 300; color: #fff; line-height: 1.1; margin-bottom: 10px; position: relative; }
.hero-title em { font-style: italic; color: #F2C94C; }
@media (min-width: 640px)  { .hero-title { font-size: 48px; } }
@media (min-width: 1024px) { .hero-title { font-size: 56px; } }
.hero-sub { font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 32px; position: relative; }

.hero-search-wrap { position: relative; max-width: 680px; margin: 0 auto 28px; }
.hero-search-bar { display: flex; flex-direction: column; align-items: stretch; gap: 0; background: #fff; border-radius: 16px; box-shadow: 0 8px 40px rgba(0,0,0,0.3); overflow: hidden; position: relative; }
@media (min-width: 640px) { .hero-search-bar { flex-direction: row; border-radius: 50px; } }

/* destination dropdown */
.hsb-dest-drop { display: none; position: absolute; top: calc(100% + 8px); left: 0; width: 300px; background: #fff; border: 1px solid var(--border); border-radius: 16px; box-shadow: 0 8px 40px rgba(0,0,0,0.16); z-index: 500; max-height: 320px; overflow-y: auto; }
.hsb-dest-drop::-webkit-scrollbar { width: 4px; }
.hsb-dest-drop::-webkit-scrollbar-track { background: transparent; }
.hsb-dest-drop::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
.hsb-dest-drop.open { display: block; }
.hsb-drop-group { display: flex; align-items: center; gap: 10px; padding: 11px 16px; cursor: pointer; font-size: 13px; font-weight: 600; color: var(--text); transition: background 0.15s; text-transform: capitalize; }
.hsb-drop-group i { font-size: 14px; color: var(--text-mute); flex-shrink: 0; }
.hsb-drop-group:hover, .hsb-drop-group.active { background: var(--bg2); }
.hsb-drop-sub { padding: 7px 16px 7px 40px; cursor: pointer; font-size: 12px; color: var(--text-mid); transition: background 0.15s; text-transform: capitalize; }
.hsb-drop-sub:hover, .hsb-drop-sub.active { background: var(--bg2); color: var(--text); }
.hsb-drop-divider { height: 1px; background: var(--border); margin: 3px 0; }

/* When pill */
.hsb-when-row { display: flex; align-items: center; gap: 6px; }
.hsb-when-clear { background: none; border: none; cursor: pointer; color: var(--text-mute); font-size: 15px; padding: 0; line-height: 1; flex-shrink: 0; }
.hsb-when-clear:hover { color: var(--text); }

/* Calendar dropdown */
.hsb-cal-drop { display: none; position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%); width: 320px; background: #fff; border: 1px solid var(--border); border-radius: 16px; box-shadow: 0 8px 40px rgba(0,0,0,0.16); z-index: 500; padding: 16px; }
.hsb-cal-drop.open { display: block; }
@media (max-width: 639px) { .hsb-cal-drop { left: 0; right: 0; width: auto; transform: none; } }
.hsb-cal-nav-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.hsb-cal-month-label { font-size: 14px; font-weight: 600; color: var(--text); }
.hsb-cal-nav-btn { background: none; border: 1px solid var(--border); border-radius: 50%; width: 28px; height: 28px; cursor: pointer; font-size: 20px; color: var(--text-mid); display: flex; align-items: center; justify-content: center; line-height: 1; transition: background 0.15s; flex-shrink: 0; }
.hsb-cal-nav-btn:hover { background: var(--bg2); }
.hsb-cal-dow { display: grid; grid-template-columns: repeat(7, 1fr); margin-bottom: 4px; }
.hsb-cal-dow span { text-align: center; font-size: 10px; font-weight: 600; color: var(--text-mute); padding: 4px 0; }
.hsb-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); }
.hsb-cal-day { text-align: center; font-size: 13px; color: var(--text); cursor: pointer; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 50%; position: relative; transition: background 0.12s; }
.hsb-cal-day.empty { cursor: default; }
.hsb-cal-day.past { color: var(--text-mute); cursor: default; pointer-events: none; }
.hsb-cal-day:not(.empty):not(.past):not(.cal-start):not(.cal-end):hover { background: var(--bg2); }
.hsb-cal-day.cal-start { background: var(--gold); color: #fff; border-radius: 50%; }
.hsb-cal-day.cal-end   { background: var(--gold); color: #fff; border-radius: 50%; }
.hsb-cal-day.cal-range { background: rgba(180,140,60,0.1); border-radius: 0; }
.hsb-cal-footer { margin-top: 12px; display: flex; justify-content: flex-end; }
.hsb-cal-clear-btn { background: none; border: none; font-size: 12px; color: var(--text-mid); cursor: pointer; text-decoration: underline; padding: 4px 0; }
.hsb-cal-clear-btn:hover { color: var(--text); }

/* Guest picker dropdown */
.hsb-who-drop { display: none; position: absolute; top: calc(100% + 8px); right: 0; width: 320px; background: #fff; border: 1px solid var(--border); border-radius: 16px; box-shadow: 0 8px 40px rgba(0,0,0,0.16); z-index: 500; padding: 8px 0; }
.hsb-who-drop.open { display: block; }
@media (max-width: 639px) { .hsb-who-drop { left: 0; right: 0; width: auto; } }
.hsb-guest-row { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; }
.hsb-guest-label { font-size: 14px; font-weight: 600; color: var(--text); text-align: left; }
.hsb-guest-sub { font-size: 12px; color: var(--text-mute); margin-top: 2px; }
.hsb-guest-ctrl { display: flex; align-items: center; gap: 14px; }
.hsb-guest-count { font-size: 14px; color: var(--text); min-width: 18px; text-align: center; }
.hsb-guest-btn { width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--border); background: #fff; color: var(--text); font-size: 18px; line-height: 1; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: border-color 0.15s; flex-shrink: 0; }
.hsb-guest-btn:hover { border-color: var(--text); }
.hsb-guest-btn.disabled { border-color: var(--border); color: var(--border); cursor: default; pointer-events: none; }
.hsb-guest-divider { height: 1px; background: var(--border); margin: 0 20px; }

.hsb-pill { display: flex; flex-direction: column; padding: 14px 20px; cursor: pointer; flex: 1; text-align: left; transition: background 0.15s; border-bottom: 1px solid var(--border); }
.hsb-pill:hover { background: rgba(0,0,0,0.03); }
@media (min-width: 640px) { .hsb-pill { border-bottom: none; } .hsb-pill:not(:last-of-type) { border-right: 1px solid var(--border); } }
.hsb-label { font-size: 11px; font-weight: 600; color: var(--text); letter-spacing: 0.03em; line-height: 1.3; }
.hsb-val { font-size: 12px; color: var(--text-mute); line-height: 1.3; }
.hsb-sep { display: none; }
@media (min-width: 640px) { .hsb-sep { display: block; width: 1px; height: 32px; background: rgba(220,210,195,0.6); flex-shrink: 0; align-self: center; } }
.hsb-btn { background: var(--gold); border: none; padding: 14px 24px; cursor: pointer; display: flex; align-items: center; gap: 7px; color: #fff; font-size: 13px; font-weight: 500; font-family: 'DM Sans', sans-serif; min-height: 52px; white-space: nowrap; transition: opacity 0.18s; }
@media (min-width: 640px) { .hsb-btn { border-radius: 40px; margin: 5px; min-height: auto; } }
.hsb-btn:hover:not(:disabled) { opacity: 0.88; }
.hsb-btn:disabled { background: #ccc; cursor: not-allowed; opacity: 1; }

.hero-stats { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; position: relative; }
.hs-item { text-align: center; }
.hs-num { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 400; color: #fff; }
.hs-label { font-size: 9px; color: rgba(255,255,255,0.45); letter-spacing: 0.06em; text-transform: uppercase; }
@media (min-width: 640px) { .hero-stats { gap: 32px; } .hs-num { font-size: 30px; } }

/* ─── TOUR CARDS ─────────────────────────────────── */
.tcard { cursor: pointer; border-radius: var(--radius); overflow: hidden; transition: transform 0.18s; }
.tcard:hover { transform: translateY(-3px); }
.tcard-img { width: 100%; aspect-ratio: 4/3; position: relative; overflow: hidden; border-radius: var(--radius); margin-bottom: 10px; background: var(--bg2); }
.tcard-img svg, .tcard-img img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform 0.3s; }
.tcard:hover .tcard-img svg,
.tcard:hover .tcard-img img { transform: scale(1.04); }
.tcard-badges { position: absolute; top: 10px; left: 10px; display: flex; gap: 5px; }
.tbadge { font-size: 9px; padding: 3px 9px; border-radius: 20px; font-weight: 500; backdrop-filter: blur(6px); }
.tbadge-dest  { background: rgba(255,255,255,0.9); color: var(--text); }
.tbadge-fixed { background: rgba(200,146,74,0.9); color: #fff; }
.tbadge-custom { background: rgba(58,140,80,0.85); color: #fff; }
.tcard-fav { position: absolute; top: 10px; right: 10px; background: rgba(255,255,255,0.85); border-radius: 50%; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--text-mid); border: none; cursor: pointer; padding: 0; transition: background 0.15s, color 0.15s; }
.tcard-fav:hover { background: #fff; color: var(--text); }
.tcard-fav--saved { color: #e03e3e; background: #fff; }
.tcard-fav--saved:hover { color: #c53030; }
.tcard-body { padding: 0 2px; }
.tcard-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 2px; gap: 6px; }
.tcard-name { font-size: 13px; font-weight: 500; color: var(--text); line-height: 1.35; }
.tcard-rating { display: flex; align-items: center; gap: 3px; font-size: 12px; font-weight: 500; white-space: nowrap; }
.tcard-meta  { font-size: 12px; color: var(--text-mute); margin-bottom: 4px; }
.tcard-price { font-size: 13px; color: var(--text); }
.tcard-price strong { font-weight: 500; }

/* ─── TOUR SECTIONS (paginated grid) ─────────────── */
.tour-section { padding: 48px 0 0; }
.tour-section + .tour-section { border-top: 1px solid var(--border); }
.sec-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.sec-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400; }
@media (min-width: 640px) { .sec-title { font-size: 26px; } }
.sec-header-right { display: flex; gap: 8px; align-items: center; }
.sec-link { font-size: 12px; color: var(--text-mid); text-decoration: underline; cursor: pointer; }
.sec-page-ind { font-size: 12px; color: var(--text-mute); min-width: 32px; text-align: center; }
.scroll-btn { width: 32px; height: 32px; border-radius: 50%; border: 1.5px solid var(--border); background: #fff; cursor: pointer; font-size: 14px; display: flex; align-items: center; justify-content: center; color: var(--text-mid); transition: all 0.15s; padding: 0; min-height: auto; }
.scroll-btn:hover { border-color: var(--text); background: var(--bg2); }
.tour-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding-bottom: 48px; }
@media (max-width: 1023px) { .tour-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
@media (max-width: 639px) { .tour-grid { grid-template-columns: repeat(1, 1fr); gap: 10px; } }
.tcard.page-hidden, .tcard.cat-hidden { display: none; }

/* ─── WHERE TO STAY (uses tcard — colour tint on placeholder) ─── */
.tcard-img[style*="background"] svg { mix-blend-mode: soft-light; opacity: 0.6; }

/* ─── CTA SECTION ────────────────────────────────── */
.cta-section { padding: 48px 0 56px; border-top: 1px solid var(--border); }
.cta-inner { background: var(--dark); border-radius: 16px; padding: 32px 24px; display: flex; flex-direction: column; gap: 28px; }
@media (min-width: 768px) { .cta-inner { flex-direction: row; gap: 40px; align-items: center; padding: 48px 40px; border-radius: 24px; } }
.cta-eyebrow { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: #F2C94C; margin-bottom: 12px; }
.cta-title { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 300; color: #fff; line-height: 1.15; margin-bottom: 14px; }
.cta-title em { font-style: italic; color: #F2C94C; }
@media (min-width: 640px) { .cta-title { font-size: 36px; } }
.cta-body { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.8; margin-bottom: 20px; }
.cta-btns { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 0; }
.cta-stats-strip { display: flex; align-items: center; gap: 0; margin-top: 22px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.12); }
.ctas-item { display: flex; flex-direction: column; gap: 2px; }
.ctas-num { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 300; color: #F2C94C; line-height: 1; }
.ctas-label { font-size: 10px; color: rgba(255,255,255,0.45); line-height: 1.3; }
.ctas-div { width: 1px; background: rgba(255,255,255,0.15); height: 28px; margin: 0 18px; }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; flex-shrink: 0; }
@media (min-width: 768px) { .cta-grid { min-width: 260px; } }
.cta-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 14px; text-align: center; }
.cta-icon { font-size: 20px; color: #F2C94C; margin-bottom: 6px; }
.cta-card-title { font-size: 12px; font-weight: 500; color: #fff; margin-bottom: 3px; }
.cta-card-body { font-size: 11px; color: rgba(255,255,255,0.4); line-height: 1.5; }

/* ─── WHY SECTION ────────────────────────────────── */
.why-section-wrap { padding: 56px 0 72px; background: var(--bg); border-top: 1px solid var(--border); }
.why-section { display: flex; flex-direction: column; gap: 32px; }
@media (min-width: 1024px) { .why-section { flex-direction: row; gap: 48px; align-items: center; } }
.why-left { flex: 1; }
.why-title { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 300; line-height: 1.2; margin-bottom: 14px; }
.why-title em { font-style: italic; color: var(--gold); }
@media (min-width: 640px) { .why-title { font-size: 36px; } }
.why-body { font-size: 13px; color: var(--text-mid); line-height: 1.8; margin-bottom: 20px; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px; }
.why-card { background: var(--bg2); border-radius: var(--radius); padding: 14px; }
.why-icon { font-size: 20px; color: var(--gold); margin-bottom: 7px; }
.why-card-title { font-size: 12px; font-weight: 500; margin-bottom: 2px; }
.why-card-body { font-size: 11px; color: var(--text-mute); line-height: 1.6; }
.testimonials-col { display: flex; flex-direction: column; gap: 10px; flex: 0 0 auto; }
@media (min-width: 1024px) { .testimonials-col { min-width: 300px; } }
.t-card { background: var(--bg2); border-radius: var(--radius); padding: 16px; }
.t-stars { color: var(--gold); font-size: 11px; margin-bottom: 7px; }
.t-text { font-size: 12px; color: var(--text-mid); line-height: 1.7; margin-bottom: 8px; font-style: italic; }
.t-author { font-size: 12px; font-weight: 500; }
.t-origin { font-size: 10px; color: var(--text-mute); }

/* ─── FOOTER ─────────────────────────────────────── */
.site-footer { background: var(--dark); padding: 0; color: rgba(255,255,255,0.6); }
.home-contact-section { padding: 48px 0 56px; background: var(--dark); }
.footer-contact-box { display:flex; flex-direction:column; gap:32px; background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.1); border-radius:16px; padding:32px 24px; }
@media(min-width:768px){ .footer-contact-box { flex-direction:row; align-items:flex-start; padding:40px; border-radius:24px; } }
.footer-contact-left { flex:1; display:flex; flex-direction:column; gap:12px; }
.footer-contact-form { flex:1; min-width:0; }
.footer-top { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
@media (min-width: 640px)  { .footer-top { flex-direction: row; flex-wrap: wrap; gap: 28px; } }
@media (min-width: 1024px) { .footer-top { flex-wrap: nowrap; gap: 32px; } }
.footer-brand-col { flex: 2; min-width: 200px; }
.footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 18px; color: #fff; margin-bottom: 8px; }
.footer-tagline { font-size: 11px; color: rgba(255,255,255,0.35); line-height: 1.7; max-width: 220px; }
.footer-col { flex: 1; min-width: 120px; }
.footer-col h4 { font-size: 11px; font-weight: 600; color: #fff; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px; }
.footer-col a { display: block; font-size: 11px; color: rgba(255,255,255,0.5); margin-bottom: 7px; text-decoration: none; cursor: pointer; transition: color 0.18s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 16px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 10px; color: rgba(255,255,255,0.3); }
.footer-dev { font-size: 10px; color: rgba(255,255,255,0.2); }
.footer-dev span { color: rgba(255,255,255,0.4); letter-spacing: 0.06em; font-weight: 500; }
.footer-socials { display: flex; gap: 14px; }
.footer-socials a { font-size: 18px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.18s; min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; }
.footer-socials a:hover { color: #fff; }

/* ─── BUTTONS ────────────────────────────────────── */
.btn-gold { display: inline-flex; align-items: center; gap: 6px; background: var(--gold); color: #fff; border: none; border-radius: 30px; padding: 12px 24px; font-size: 13px; font-weight: 500; cursor: pointer; font-family: 'DM Sans', sans-serif; text-decoration: none; transition: opacity 0.18s; min-height: 44px; }
.btn-gold:hover { opacity: 0.88; }
.btn-gold.btn-lg { padding: 14px 32px; font-size: 14px; }
.btn-gold.btn-full { width: 100%; justify-content: center; }
.btn-ghost { display: inline-flex; align-items: center; gap: 6px; background: #fff; color: var(--text); border: 1.5px solid var(--border); border-radius: 30px; padding: 12px 24px; font-size: 13px; cursor: pointer; font-family: 'DM Sans', sans-serif; text-decoration: none; transition: border-color 0.18s; min-height: 44px; }
.btn-ghost:hover { border-color: var(--text); }
.btn-ghost.btn-full { width: 100%; justify-content: center; }
.btn-ghost-light { display: inline-flex; align-items: center; background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.25); border-radius: 30px; padding: 12px 24px; font-size: 13px; cursor: pointer; text-decoration: none; transition: border-color 0.18s; min-height: 44px; }
.btn-ghost-light:hover { border-color: rgba(255,255,255,0.6); }
.btn-gold-outline { display: inline-flex; align-items: center; gap: 6px; background: transparent; color: var(--gold); border: 1.5px solid var(--gold); border-radius: 30px; padding: 10px 20px; font-size: 13px; text-decoration: none; cursor: pointer; min-height: 44px; }
.btn-danger-ghost { background: #fff; color: #C04040; border: 1.5px solid rgba(192,64,64,0.3); border-radius: 30px; padding: 10px 20px; font-size: 13px; cursor: pointer; font-family: inherit; min-height: 44px; border-color: rgba(192,64,64,0.3); }
.btn-danger { background: #C04040; color: #fff; border: none; border-radius: 30px; padding: 10px 20px; font-size: 13px; cursor: pointer; font-family: inherit; min-height: 44px; }

/* CTA section — custom tour button (pulse ripple style) */
.btn-custom-tour {
  position: relative;
  display: inline-block;
  padding: 1em 2.5em;
  font-size: 14px;
  font-family: 'DM Sans', inherit;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: var(--dark);
  background-color: #fff;
  border: none;
  border-radius: 6em;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-custom-tour:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  color: var(--dark);
}
.btn-custom-tour:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.btn-custom-tour::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 6em;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #fff;
  transition: all 0.4s;
}
.btn-custom-tour:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}

/* ─── FORMS (shared) ─────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 12px; font-weight: 500; color: var(--text); margin-bottom: 6px; }
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group input[type="date"],
.form-group textarea,
.form-group select { width: 100%; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: var(--radius); font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--text); background: #fff; transition: border-color 0.18s; min-height: 48px; -webkit-appearance: none; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { outline: none; border-color: var(--gold); }
.form-group textarea { min-height: 100px; resize: vertical; }
.form-group input[readonly] { background: var(--bg2); color: var(--text-mute); cursor: not-allowed; }
.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select { border-color: #C04040; }
.field-error { font-size: 12px; color: #C04040; margin-top: 5px; }
.field-hint  { font-size: 11px; color: var(--text-mute); margin-top: 4px; }
.form-error-banner { background: #FEE8E8; border: 1px solid rgba(192,64,64,0.3); border-radius: var(--radius); padding: 12px 16px; font-size: 13px; color: #C04040; margin-bottom: 20px; }
.form-row-2 { display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 640px) { .form-row-2 { grid-template-columns: 1fr 1fr; gap: 16px; } }
.radio-group { display: flex; flex-direction: column; gap: 8px; margin-top: 6px; }
.radio-label { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-mid); cursor: pointer; min-height: 44px; }
.radio-label input[type="radio"] { width: 16px; height: 16px; accent-color: var(--gold); flex-shrink: 0; }
.form-section { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 16px; }
.form-section-title { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 400; margin-bottom: 18px; }
.form-save-indicator { font-size: 12px; margin-left: 12px; }

/* ─── DETAIL PAGE ────────────────────────────────── */
.detail-nav { border-bottom: 1px solid var(--border); background: #fff; position: sticky; top: 0; z-index: 200; }
.detail-nav-wrap { display: flex; align-items: center; gap: 10px; padding-top: 12px; padding-bottom: 12px; }
.detail-nav-title { font-family: 'Cormorant Garamond', serif; font-size: 15px; font-weight: 400; display: none; }
@media (min-width: 640px) { .detail-nav-title { display: block; flex: 1; } }
.detail-nav-actions { display: none; gap: 8px; margin-left: auto; }
@media (min-width: 640px) { .detail-nav-actions { display: flex; } }
.back-btn { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-mid); border: 1px solid var(--border); border-radius: 30px; padding: 7px 14px; background: #fff; font-family: 'DM Sans', sans-serif; text-decoration: none; cursor: pointer; transition: border-color 0.18s, background 0.18s, color 0.18s; white-space: nowrap; min-height: 44px; }
.back-btn:hover { border-color: var(--text); background: var(--text); color: #fff; text-decoration: none; }
.back-btn:visited, .back-btn:active { text-decoration: none; }
.action-btn { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; color: var(--text-mid); border: 1px solid var(--border); border-radius: 30px; padding: 7px 14px; cursor: pointer; background: #fff; font-family: 'DM Sans', sans-serif; transition: border-color 0.18s, background 0.18s, color 0.18s; min-height: 44px; }
.action-btn:hover { border-color: var(--text); background: var(--text); color: #fff; }

.gallery { display: grid; grid-template-columns: 1fr; gap: 4px; margin: 16px 0 24px; }
@media (min-width: 640px) { .gallery { grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 180px 180px; } }
.gallery-main { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
@media (min-width: 640px) { .gallery-main { grid-row: 1/3; border-radius: var(--radius) 0 0 var(--radius); aspect-ratio: auto; } }
.gallery-main svg, .gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-cell { overflow: hidden; display: none; position: relative; }
@media (min-width: 640px) { .gallery-cell { display: block; } }
.gallery-cell svg, .gallery-cell img { width: 100%; height: 100%; object-fit: cover; }
.gallery-cell:nth-child(2) { border-radius: 0 var(--radius) 0 0; }
.gallery-cell:last-child  { border-radius: 0 0 var(--radius) 0; }
.gallery-more { position: absolute; inset: 0; background: rgba(0,0,0,0.35); display: flex; align-items: center; justify-content: center; cursor: pointer; }
.gallery-more span { background: #fff; border-radius: 8px; padding: 6px 14px; font-size: 11px; font-weight: 500; }

.detail-body { display: flex; flex-direction: column; gap: 24px; padding-bottom: 60px; }
@media (min-width: 1024px) { .detail-body { flex-direction: row; align-items: flex-start; gap: 40px; } }
.detail-left { flex: 1; }
.detail-dest-tag { font-size: 11px; color: var(--gold); font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 8px; }
.detail-title { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 300; line-height: 1.15; margin-bottom: 12px; }
@media (min-width: 640px) { .detail-title { font-size: 32px; } }
.detail-meta-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-bottom: 14px; }
.detail-meta-item { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--text-mid); }
.detail-meta-item i { font-size: 14px; color: var(--text-mute); }
.detail-rating { display: flex; align-items: center; gap: 5px; }
.detail-rating i { font-size: 13px; color: var(--gold); }
.detail-rating strong { font-size: 13px; font-weight: 500; }
.detail-rating span { font-size: 12px; color: var(--text-mute); }
.detail-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 4px; }
.detail-divider { border: none; border-top: 1px solid var(--border); margin: 20px 0; }
.detail-section-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 400; margin-bottom: 12px; }
.detail-desc { font-size: 13px; color: var(--text-mid); line-height: 1.85; margin-bottom: 16px; }
.included-grid { display: grid; grid-template-columns: 1fr; gap: 8px; margin-bottom: 8px; }
@media (min-width: 640px) { .included-grid { grid-template-columns: 1fr 1fr; } }
.inc-item { display: flex; align-items: flex-start; gap: 8px; font-size: 12px; color: var(--text-mid); }
.inc-item i { font-size: 14px; color: var(--gold); flex-shrink: 0; margin-top: 1px; }
.inc-item.no i { color: #E07070; }
.inc-item.no { color: var(--text-mute); }
.itinerary { display: flex; flex-direction: column; gap: 0; }
.itin-item { display: flex; gap: 14px; padding-bottom: 18px; position: relative; }
.itin-item::before { content: ''; position: absolute; left: 15px; top: 30px; bottom: 0; width: 1px; background: var(--border); }
.itin-item:last-child::before { display: none; }
.itin-dot { width: 30px; height: 30px; border-radius: 50%; background: var(--bg2); border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 11px; font-weight: 600; color: var(--text-mid); }
.itin-time { font-size: 10px; color: var(--gold); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
.itin-title { font-size: 13px; font-weight: 500; }
.itin-desc { font-size: 12px; color: var(--text-mute); line-height: 1.6; }

/* Sidebar */
.detail-sidebar { position: static; }
@media (min-width: 1024px) { .detail-sidebar { position: sticky; top: 80px; min-width: 360px; max-width: 380px; flex-shrink: 0; } }
.sidebar-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
.sb-price-row { padding: 18px 20px 12px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.sb-price { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; color: var(--text); }
.sb-price-onrequest { font-size: 14px; color: var(--text-mid); font-style: italic; }
.sb-unit { font-size: 12px; color: var(--text-mute); }
.sb-rating { display: flex; align-items: center; gap: 4px; }
.sb-rating i { font-size: 11px; color: var(--gold); }
.sb-rating span { font-size: 11px; color: var(--text-mute); }
.sb-form { padding: 14px 18px; }
.sb-field-row { display: grid; grid-template-columns: 1fr 1fr; border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 10px; }
.sb-field { padding: 10px 12px; cursor: pointer; transition: background 0.15s; }
.sb-field:hover { background: var(--bg2); }
.sb-field:first-child { border-right: 1px solid var(--border); }
.sb-field-label { font-size: 9px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text); margin-bottom: 2px; }
.sb-date-wrap { position: relative; }
.sb-date-disp { font-size: 12px; color: var(--text-mute); line-height: 1.4; pointer-events: none; }
.sb-date-picker { position: absolute; inset: 0; opacity: 0; width: 100%; height: 100%; cursor: pointer; border: none; padding: 0; }
.sb-date-input { width: 100%; background: transparent; border: none; font-size: 12px; color: var(--text-mute); font-family: 'DM Sans', sans-serif; cursor: pointer; padding: 0; min-height: auto; }
.sb-date-input:focus { outline: none; }
.sb-guests-section { border: 1.5px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.sb-guests-header { padding: 10px 12px 6px; }
.sb-guests-val { font-size: 12px; color: var(--text-mute); margin-top: 1px; }
.sb-guest-row { display: flex; align-items: center; justify-content: space-between; padding: 8px 12px; border-top: 1px solid var(--border); }
.sb-guest-info { display: flex; flex-direction: column; gap: 1px; }
.sb-guest-type { font-size: 12px; font-weight: 500; color: var(--text); }
.sb-guest-hint { font-size: 10px; color: var(--text-mute); }
.sb-guests-ctrl { display: flex; align-items: center; gap: 8px; }
.sb-ctrl-btn { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--border); background: #fff; cursor: pointer; font-size: 16px; display: flex; align-items: center; justify-content: center; color: var(--text-mid); transition: all 0.15s; padding: 0; min-height: auto; }
.sb-ctrl-btn:hover { border-color: var(--text); }
.sb-ctrl-num { font-size: 13px; font-weight: 500; min-width: 18px; text-align: center; }
.sb-book-btn { width: 100%; padding: 13px; background: var(--gold); color: #fff; border: none; border-radius: var(--radius); font-size: 14px; font-weight: 500; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: opacity 0.18s; margin-bottom: 8px; min-height: 48px; }
.sb-book-btn:hover:not(:disabled) { opacity: 0.9; }
.sb-book-btn:disabled { background: var(--border); color: var(--text-mute); cursor: not-allowed; opacity: 1; }
.sb-note { font-size: 11px; color: var(--text-mute); text-align: center; line-height: 1.5; }
.sb-breakdown { padding: 12px 18px; border-top: 1px solid var(--border); }
.sb-row { display: flex; justify-content: space-between; align-items: center; font-size: 12px; padding: 4px 0; color: var(--text-mid); }
.sb-row.total { font-weight: 500; font-size: 13px; color: var(--text); border-top: 1px solid var(--border); padding-top: 9px; margin-top: 5px; }

/* Calendar */
.avail-section { border-top: 1px solid var(--border); }
.avail-header { padding: 12px 18px 8px; display: flex; justify-content: space-between; align-items: center; }
.avail-title { font-size: 13px; font-weight: 500; }
.avail-nav { display: flex; gap: 6px; }
.avail-nav button { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--border); background: #fff; cursor: pointer; font-size: 12px; display: flex; align-items: center; justify-content: center; color: var(--text-mid); min-height: auto; padding: 0; }
.cal-grid { padding: 0 12px 12px; }
.cal-days { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; margin-bottom: 4px; }
.cal-day-label { font-size: 9px; color: var(--text-mute); text-align: center; padding: 4px 0; font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; }
.cal-dates { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; }
.cal-date { aspect-ratio: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; border-radius: 7px; cursor: pointer; transition: all 0.15s; font-size: 11px; }
.cal-date:hover:not(.booked):not(.past) { background: var(--bg2); }
.cal-date.available { color: var(--text); }
.cal-date.booked    { background: #FEE8E8; color: #C04040; cursor: not-allowed; }
.cal-date.limited   { background: #FFF3E0; color: #C07020; }
.cal-date.past      { color: var(--border); cursor: default; }
.cal-date.empty     { cursor: default; }
.cal-date.today     { border: 1.5px solid var(--gold); }
.cal-date .cal-dot  { width: 4px; height: 4px; border-radius: 50%; margin-top: 2px; }
.cal-dot.avail { background: var(--gold); }
.cal-dot.full  { background: #C04040; }
.cal-dot.lim   { background: #C07020; }
.cal-legend { display: flex; gap: 10px; padding: 8px 12px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.leg-item { display: flex; align-items: center; gap: 4px; font-size: 9px; color: var(--text-mute); }
.leg-dot  { width: 8px; height: 8px; border-radius: 2px; }
.leg-avail   { background: var(--bg2); border: 1px solid var(--border); }
.leg-limited { background: #FFF3E0; }
.leg-full    { background: #FEE8E8; }

/* ─── LISTING PAGE ────────────────────────────────── */
.listing-page { padding: 32px 0 60px; }
.listing-header { margin-bottom: 24px; }
.listing-title { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 300; margin-bottom: 8px; }
.listing-sub { font-size: 13px; color: var(--text-mid); }
.search-ctx-bar { display: flex; align-items: center; gap: 8px; background: var(--bg2); border: 1px solid var(--border); border-radius: 8px; padding: 8px 14px; margin-bottom: 14px; font-size: 13px; color: var(--text-mid); }
.search-ctx-bar .ti { font-size: 13px; opacity: 0.5; flex-shrink: 0; }
.search-ctx-clear { margin-left: auto; background: none; border: none; color: var(--text-mute); cursor: pointer; font-size: 12px; padding: 0; white-space: nowrap; }
.search-ctx-clear:hover { color: var(--text); }
.listing-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.listing-tab { padding: 9px 18px; border-radius: 30px; font-size: 12px; cursor: pointer; border: 1.5px solid var(--border); background: #fff; color: var(--text-mid); font-family: 'DM Sans', sans-serif; transition: all 0.18s; min-height: 44px; }
.listing-tab.active { background: var(--dark); color: #fff; border-color: var(--dark); }
.listing-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.listing-pill { padding: 7px 14px; border-radius: 30px; font-size: 11px; cursor: pointer; border: 1.5px solid var(--border); background: #fff; color: var(--text-mid); font-family: 'DM Sans', sans-serif; transition: all 0.18s; min-height: 40px; }
.listing-pill.active { background: var(--gold); color: #fff; border-color: var(--gold); }
.tour-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px)  { .tour-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .tour-grid { grid-template-columns: repeat(4, 1fr); } }

/* ─── ENQUIRY PAGE ───────────────────────────────── */
.enquiry-page { padding: 32px 0 60px; }
.enquiry-wrap { max-width: 720px; }
.enquiry-header { margin-bottom: 24px; }
.enquiry-title { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; margin-bottom: 6px; }
.enquiry-subtitle { font-size: 13px; color: var(--text-mid); }
.enquiry-body { display: flex; flex-direction: column; gap: 0; }
.enquiry-tour-card { display: flex; gap: 14px; align-items: center; background: var(--bg2); border-radius: var(--radius); padding: 14px; margin-bottom: 20px; }
.enquiry-tour-img { width: 72px; height: 72px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.enquiry-tour-img svg, .enquiry-tour-img img { width: 100%; height: 100%; object-fit: cover; }
.enquiry-tour-name { font-size: 14px; font-weight: 500; margin-bottom: 3px; }
.enquiry-tour-meta { font-size: 12px; color: var(--text-mute); margin-bottom: 3px; }
.enquiry-tour-price { font-size: 12px; color: var(--text-mid); font-weight: 500; }
.payment-breakdown { padding: 4px 0; }
.pb-row { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--text-mid); padding: 4px 0; }
.pb-total { font-size: 13px; font-weight: 500; color: var(--text); border-top: 1px solid var(--border); padding-top: 9px; margin-top: 5px; }
.pb-note { font-size: 11px; color: var(--text-mute); margin-top: 10px; }
.enquiry-submit-row { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; margin-top: 8px; }
.enquiry-submit-note { font-size: 12px; color: var(--text-mute); }

/* ─── CONFIRMATION PAGE ──────────────────────────── */
.confirmation-page { padding: 48px 0 80px; }
.confirmation-wrap { max-width: 560px; }
.confirmation-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 40px; text-align: center; }
.confirmation-icon { font-size: 48px; color: var(--gold); margin-bottom: 16px; }
.confirmation-icon.error { color: #C04040; }
.confirmation-title { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; margin-bottom: 12px; }
.confirmation-body { font-size: 13px; color: var(--text-mid); margin-bottom: 20px; }
.confirmation-ref-box { background: var(--bg2); border: 1px solid var(--border); border-radius: 8px; padding: 14px 20px; margin-bottom: 20px; }
.confirmation-ref-label { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 4px; }
.confirmation-ref { font-size: 22px; font-weight: 500; color: var(--text); letter-spacing: 0.04em; }
.confirmation-summary { text-align: left; margin-bottom: 20px; }
.cs-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 12px; }
.cs-row span { color: var(--text-mute); }
.confirmation-email-note { font-size: 12px; color: var(--text-mute); margin-bottom: 20px; }
.confirmation-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* ─── AUTH PAGE ──────────────────────────────────── */
.auth-page { min-height: calc(100vh - var(--nav-h)); display: flex; align-items: center; justify-content: center; padding: 32px 16px; background: var(--bg2); }
.auth-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 36px 28px; width: 100%; max-width: 420px; position: relative; }
.auth-back { position: absolute; top: 16px; left: 16px; font-size: 20px; color: var(--text-mid); text-decoration: none; display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; transition: background 0.15s; }
.auth-back:hover { background: var(--bg2); }
.auth-logo { font-family: 'Cormorant Garamond', serif; font-size: 14px; color: var(--text-mute); margin-bottom: 20px; text-align: center; }
.auth-context-msg { background: rgba(200,146,74,0.1); border: 1px solid rgba(200,146,74,0.3); border-radius: 8px; padding: 10px 14px; font-size: 12px; color: var(--text-mid); margin-bottom: 16px; text-align: center; }
.auth-title { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 300; margin-bottom: 20px; text-align: center; }
.btn-google { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 12px; border: 1.5px solid var(--border); border-radius: var(--radius); background: #fff; color: var(--text); font-size: 13px; font-weight: 500; cursor: pointer; text-decoration: none; transition: border-color 0.18s; min-height: 48px; margin-bottom: 16px; }
.btn-google:hover { border-color: #aaa; }
.auth-divider { display: flex; align-items: center; gap: 12px; margin: 16px 0; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.auth-divider span { font-size: 11px; color: var(--text-mute); }
.auth-footer-links { display: flex; gap: 8px; align-items: center; justify-content: center; margin-top: 18px; font-size: 13px; color: var(--text-mute); }
.auth-footer-links a { color: var(--gold); font-weight: 500; text-decoration: none; }

/* ─── STATUS PAGE ────────────────────────────────── */
.status-page { padding: 40px 0 80px; }
.status-wrap { max-width: 640px; }
.status-title { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; margin-bottom: 24px; }
.status-search-form { margin-bottom: 32px; }
.status-search-row { display: flex; flex-direction: column; gap: 10px; }
@media (min-width: 640px) { .status-search-row { flex-direction: row; } }
.status-ref-input { flex: 1; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: 14px; font-family: 'DM Sans', sans-serif; min-height: 48px; }
.status-ref-input:focus { outline: none; border-color: var(--gold); }
.status-not-found { text-align: center; padding: 40px 0; color: var(--text-mute); }
.status-not-found i { font-size: 32px; margin-bottom: 10px; }
.status-result { border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 24px; }
.status-badge-row { margin-bottom: 14px; }
.status-badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 30px; font-size: 12px; font-weight: 500; }
.status-pending-badge   { background: #FFF3E0; color: #C07020; }
.status-payment-badge   { background: #FEF0FF; color: #8B2FC9; }
.status-review-badge    { background: #E8F4FD; color: #1A6FA8; }
.status-confirmed-badge { background: #E8F8EF; color: #1A8040; }
.status-cancelled-badge { background: #FEE8E8; color: #C04040; }
.status-msg  { font-size: 14px; color: var(--text-mid); margin-bottom: 8px; }
.status-next { font-size: 13px; color: var(--text-mute); margin-bottom: 16px; }
.status-payment-actions { margin: 16px 0; }
.status-summary { border-top: 1px solid var(--border); margin-top: 20px; padding-top: 20px; }
.summary-title { font-size: 14px; font-weight: 500; margin-bottom: 14px; }
.summary-grid { display: flex; flex-direction: column; gap: 0; }
.summary-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.summary-row span { color: var(--text-mute); }
.summary-row strong { color: var(--text); text-align: right; max-width: 60%; }
.status-cancel-wrap { margin-top: 20px; border-top: 1px solid var(--border); padding-top: 16px; }

/* ─── BOOKING STATUS — CONVERSATION ─────────── */
.status-conversation { border-top: 1px solid var(--border); margin-top: 20px; padding-top: 20px; }
.status-conv-title { font-size: 14px; font-weight: 500; margin-bottom: 14px; }
.status-conv-thread { display: flex; flex-direction: column; gap: 10px; max-height: 320px; overflow-y: auto; margin-bottom: 16px; padding-right: 4px; }
.conv-empty { font-size: 13px; color: var(--text-mute); text-align: center; padding: 20px 0; }
.conv-msg { display: flex; flex-direction: column; max-width: 80%; }
.conv-msg-admin { align-self: flex-start; }
.conv-msg-client { align-self: flex-end; }
.conv-msg-meta { font-size: 11px; color: var(--text-mute); margin-bottom: 4px; }
.conv-msg-admin .conv-msg-meta { text-align: left; }
.conv-msg-client .conv-msg-meta { text-align: right; }
.conv-msg-bubble { font-size: 13px; line-height: 1.55; padding: 10px 14px; border-radius: 12px; word-break: break-word; }
.conv-msg-admin  .conv-msg-bubble { background: var(--bg2); color: var(--text); border-bottom-left-radius: 3px; }
.conv-msg-client .conv-msg-bubble { background: var(--gold); color: #fff; border-bottom-right-radius: 3px; }
.status-conv-input { border-top: 1px solid var(--border); padding-top: 12px; }
.status-conv-textarea { width: 100%; border: 1.5px solid var(--border); border-radius: var(--radius); padding: 10px 12px; font-size: 13px; font-family: inherit; resize: vertical; line-height: 1.5; outline: none; }
.status-conv-textarea:focus { border-color: var(--gold); }
.status-conv-btns { margin-top: 8px; display: flex; justify-content: flex-end; }
.status-conv-feedback { font-size: 12px; color: var(--text-mute); margin-top: 6px; text-align: right; }
.cancel-confirm { background: #FEF0EE; border: 1px solid rgba(192,64,64,0.2); border-radius: var(--radius); padding: 14px; margin-top: 10px; }
.cancel-confirm p { font-size: 13px; color: var(--text-mid); }

/* ─── PAYMENT PROOF PAGE ─────────────────────────── */
.proof-page { padding: 40px 0 80px; }
.proof-wrap { max-width: 560px; }
.proof-title { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; margin-bottom: 8px; }
.proof-subtitle { font-size: 13px; color: var(--text-mid); margin-bottom: 24px; }
.proof-success { text-align: center; padding: 40px 20px; border: 1.5px solid var(--border); border-radius: var(--radius-lg); }
.proof-success-icon { font-size: 48px; color: var(--gold); margin-bottom: 16px; }
.proof-success h2 { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 300; margin-bottom: 10px; }
.proof-status-msg { display: flex; align-items: center; gap: 8px; background: #F0F8FF; border: 1px solid rgba(26,111,168,0.3); border-radius: 8px; padding: 12px 16px; font-size: 13px; color: #1A6FA8; margin-bottom: 16px; }
.proof-form { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 28px; }
.file-upload-zone { border: 2px dashed var(--border); border-radius: var(--radius); padding: 36px 20px; text-align: center; cursor: pointer; position: relative; transition: border-color 0.18s; background: var(--bg2); }
.file-upload-zone:hover, .file-upload-zone.has-file { border-color: var(--gold); background: rgba(200,146,74,0.04); }
.file-upload-zone i { font-size: 28px; color: var(--text-mute); margin-bottom: 10px; display: block; }
.file-upload-zone p { font-size: 13px; color: var(--text-mute); }
.file-hint { font-size: 11px; color: var(--text-mute); margin-top: 4px !important; }
.file-selected { font-size: 12px; color: #1A8040; margin-top: 6px; }

/* ─── MY BOOKINGS PAGE ───────────────────────────── */
.account-page { padding: 32px 0 80px; }
.account-wrap { max-width: 960px; }
.account-title { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; margin-bottom: 24px; }
.account-section { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 16px; }
.account-section-title { font-size: 16px; font-weight: 500; margin-bottom: 18px; }
.account-section-toggle { cursor: pointer; display: flex; align-items: center; justify-content: space-between; }
.account-empty { font-size: 13px; color: var(--text-mute); }
.account-empty a { color: var(--gold); }
.bookings-table-wrap { overflow-x: auto; }
.bookings-table { width: 100%; border-collapse: collapse; min-width: 600px; }
.bookings-table th { font-size: 11px; font-weight: 600; color: var(--text-mute); text-align: left; padding: 8px 10px; border-bottom: 2px solid var(--border); text-transform: uppercase; letter-spacing: 0.06em; }
.bookings-table td { font-size: 13px; padding: 10px 10px; border-bottom: 1px solid var(--border); color: var(--text-mid); }
.bookings-table code { font-size: 11px; background: var(--bg2); padding: 2px 6px; border-radius: 4px; color: var(--text); font-family: monospace; }
.status-pill { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 500; }
.status-enquiry          { background: #FFF3E0; color: #C07020; }
.status-pending_payment  { background: #FEF0FF; color: #8B2FC9; }
.status-payment_submitted { background: #E8F4FD; color: #1A6FA8; }
.status-confirmed        { background: #E8F8EF; color: #1A8040; }
.status-cancelled        { background: #FEE8E8; color: #C04040; }
.tbl-action-btn { font-size: 11px; color: var(--gold); text-decoration: underline; margin-right: 8px; white-space: nowrap; }

/* ─── ACCOUNT FORM ───────────────────────────────── */
.account-form { max-width: 600px; }

/* ─── UTILITY ────────────────────────────────────── */
.hidden { display: none !important; }

/* ═══════════════════════════════════════════════════════════════
   SESSION 2 — MY BOOKINGS, AUTH POLISH, INBOX, PROFILE
═══════════════════════════════════════════════════════════════ */

/* ─── My Bookings page layout ────────────────────── */
.myb-page { padding: 32px 0 80px; background: var(--bg2); min-height: 80vh; }
.myb-wrap { max-width: 1280px; }
.myb-title { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; margin-bottom: 24px; }
@media (min-width: 640px) { .myb-title { font-size: 34px; } }

.myb-section { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 16px; }
@media (min-width: 640px) { .myb-section { padding: 28px 32px; } }

.myb-section-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.myb-section-head h2 { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 400; display: flex; align-items: center; gap: 10px; }
.myb-edit-btn { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; color: var(--gold); border: 1.5px solid var(--gold); border-radius: 30px; padding: 6px 14px; background: transparent; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all 0.15s; min-height: 36px; }
.myb-edit-btn:hover { background: var(--gold); color: #fff; }
.myb-empty { font-size: 13px; color: var(--text-mute); }
.myb-empty a { color: var(--gold); text-decoration: underline; }
.myb-count { display: inline-flex; align-items: center; justify-content: center; background: var(--bg2); border: 1px solid var(--border); border-radius: 20px; font-size: 11px; font-weight: 600; padding: 1px 8px; margin-left: 6px; color: var(--text-mid); }
.wishlist-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 14px; margin-top: 4px; }
.wl-card { display: block; text-decoration: none; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: #fff; transition: box-shadow 0.15s, border-color 0.15s; }
.wl-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.09); border-color: var(--text-mute); text-decoration: none; }
.wl-card-img { aspect-ratio: 4/3; overflow: hidden; background: var(--bg2); }
.wl-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wl-card-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--text-mute); font-size: 24px; }
.wl-card-body { padding: 10px 12px; }
.wl-card-name { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wl-card-meta { font-size: 11px; color: var(--text-mute); margin-bottom: 4px; }
.wl-card-price { font-size: 12px; color: var(--text-mid); }
.myb-form { max-width: 680px; }
.myb-form-actions { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-top: 4px; }
.save-indicator { font-size: 12px; margin-left: 4px; }
.myb-google-notice { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-mute); background: var(--bg2); border-radius: var(--radius); padding: 14px 16px; }
.myb-google-notice i { font-size: 16px; }

/* ─── Profile card ───────────────────────────────── */
.profile-card { display: flex; align-items: center; gap: 18px; }
.profile-avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--gold); color: #fff; font-size: 22px; font-weight: 500; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.profile-info { flex: 1; }
.profile-name { font-size: 16px; font-weight: 500; margin-bottom: 3px; }
.profile-email { font-size: 13px; color: var(--text-mid); margin-bottom: 4px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.profile-meta { font-size: 12px; color: var(--text-mute); margin-bottom: 2px; }
.google-badge { display: inline-flex; align-items: center; gap: 4px; background: var(--bg2); border: 1px solid var(--border); border-radius: 20px; padding: 2px 9px; font-size: 11px; color: var(--text-mute); }

/* ─── Password collapsible ───────────────────────── */
.myb-collapse-head { cursor: pointer; user-select: none; justify-content: space-between; }
.myb-collapse-head:hover h2 { color: var(--gold); }
.myb-collapsible { overflow: hidden; max-height: 0; transition: max-height 0.3s ease, opacity 0.25s ease; opacity: 0; }
.myb-collapsible.expanded { max-height: 600px; opacity: 1; }

/* ─── Inbox ──────────────────────────────────────── */
.inbox-badge { display: inline-flex; align-items: center; justify-content: center; background: var(--gold); color: #fff; font-size: 10px; font-weight: 600; min-width: 20px; height: 20px; border-radius: 10px; padding: 0 6px; }
.inbox-table { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.inbox-row { display: grid; grid-template-columns: 24px 1fr auto 24px; align-items: center; gap: 12px; padding: 13px 16px; cursor: pointer; transition: background 0.15s; border-bottom: 1px solid var(--border); }
.inbox-row:last-of-type { border-bottom: none; }
.inbox-row:hover { background: var(--bg2); }
.inbox-unread { background: rgba(200,146,74,0.04); }
.inbox-dot-col { display: flex; align-items: center; justify-content: center; }
.inbox-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.inbox-subject { font-size: 13px; color: var(--text-mid); }
.inbox-subject-bold { font-weight: 500; color: var(--text); }
.inbox-date { font-size: 11px; color: var(--text-mute); white-space: nowrap; }
.inbox-chevron { font-size: 14px; color: var(--text-mute); }
.inbox-body-row { border-bottom: 1px solid var(--border); }
.inbox-body-content { padding: 20px 24px; font-size: 13px; color: var(--text-mid); line-height: 1.7; max-height: 400px; overflow-y: auto; }
.inbox-loading { color: var(--text-mute); font-size: 13px; }

/* ─── Bookings table ─────────────────────────────── */
.bookings-scroll { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); }
.bookings-tbl { width: 100%; border-collapse: collapse; min-width: 1020px; }
.bookings-tbl th { text-align: left; padding: 10px 14px; font-size: 11px; color: var(--text-mute); text-transform: uppercase; letter-spacing: 0.06em; border-bottom: 2px solid var(--border); background: var(--bg2); font-weight: 600; white-space: nowrap; }
.bookings-tbl td { padding: 12px 14px; font-size: 13px; color: var(--text-mid); border-bottom: 1px solid var(--border); vertical-align: middle; }
.bookings-tbl tr:last-child td { border-bottom: none; }
.bookings-tbl tr:hover td { background: rgba(247,245,242,0.5); }
.bref { font-family: monospace; font-size: 11px; background: var(--bg2); padding: 2px 7px; border-radius: 4px; color: var(--text); white-space: nowrap; }
.btour { font-weight: 500; color: var(--text); max-width: 160px; }
.bdest { color: var(--text-mid); white-space: nowrap; }
.bdates { white-space: nowrap; font-size: 12px; }
.bdates-end { color: var(--text-mute); font-size: 11px; }
.bpeople { text-align: center; }
.bactions { display: flex; align-items: center; gap: 6px; flex-wrap: nowrap; white-space: nowrap; min-width: 210px; }

/* Status pills for bookings table */
.status-pill2 { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 500; white-space: nowrap; }
.status-pill-enquiry    { background: #F4F6F8; color: #5C6A78; }
.status-pill-payment    { background: #FFF3E0; color: #C07020; }
.status-pill-review     { background: #E8F4FD; color: #1A6FA8; }
.status-pill-confirmed  { background: #E8F8EF; color: #1A8040; }
.status-pill-cancelled  { background: #FEE8E8; color: #C04040; }

/* Action buttons in table — shared pill base */
.bact-view, .bact-upload, .bact-cancel, .bact-delete {
  display: inline-flex; align-items: center; white-space: nowrap; text-decoration: none;
  font-size: 11px; font-family: inherit; border-radius: 20px;
  padding: 4px 10px; min-height: 28px; cursor: pointer;
  background: none; transition: all 0.15s;
}
.bact-view   { color: var(--text-mid); border: 1px solid var(--border); }
.bact-view:hover { background: var(--bg2); border-color: var(--text-mid); }
.bact-upload { color: var(--gold); border: 1px solid rgba(200,146,74,0.4); }
.bact-upload:hover { background: #FDF6EC; }
.bact-cancel { color: #C04040; border: 1px solid rgba(192,64,64,0.3); }
.bact-cancel:hover { background: #FEE8E8; }
.bact-delete { color: var(--text-mute); border: 1px solid var(--border); }
.bact-delete:hover { border-color: #C04040; color: #C04040; }

/* Cancel confirm row */
.cancel-confirm-row td { background: #FFFBF8; border-top: none; }
.cancel-inline-confirm { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-size: 13px; color: var(--text-mid); padding: 6px 0; }
.cancel-confirm-row .btn-danger { padding: 7px 16px; font-size: 12px; min-height: 36px; }
.cancel-confirm-row .btn-ghost  { padding: 7px 16px; font-size: 12px; min-height: 36px; }

/* ─── Pagination ─────────────────────────────────── */
.pagination { display: flex; justify-content: center; align-items: center; gap: 4px; margin-top: 20px; flex-wrap: wrap; }
.page-btn { display: inline-flex; align-items: center; justify-content: center; min-width: 36px; height: 36px; padding: 0 10px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 13px; color: var(--text-mid); text-decoration: none; background: #fff; transition: all 0.15s; cursor: pointer; font-family: inherit; }
.page-btn:hover { border-color: var(--text); color: var(--text); }
.page-btn-active { background: var(--dark); border-color: var(--dark); color: #fff !important; }
.page-btn-disabled { opacity: 0.38; cursor: default; pointer-events: none; }

/* ─── Auth page improvements ─────────────────────── */
.auth-page { min-height: calc(100vh - var(--nav-h)); display: flex; align-items: center; justify-content: center; padding: 32px 16px; background: var(--bg2); }
.auth-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 36px 28px; width: 100%; max-width: 420px; position: relative; }
.btn-google { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 13px 16px; border: 1.5px solid var(--border); border-radius: var(--radius); background: #fff; color: var(--text); font-size: 13px; font-weight: 500; cursor: pointer; text-decoration: none; transition: border-color 0.18s, box-shadow 0.18s; min-height: 50px; margin-bottom: 18px; }
.btn-google:hover { border-color: #4285F4; box-shadow: 0 2px 8px rgba(66,133,244,0.15); }

/* ─── Nav dropdown chevron animation ─────────────── */
.nav-drop-chevron { transition: transform 0.2s; font-size: 12px; }
.nav-user-btn[aria-expanded="true"] .nav-drop-chevron { transform: rotate(180deg); }

/* ─── Flash messages ─────────────────────────────── */
.site-flash { margin: 12px 0; padding: 12px 16px; border-radius: var(--radius); font-size: 13px; }
.site-flash-success { background: #F0FFF4; border: 1px solid #9AE6B4; color: #22543D; }
.site-flash-error   { background: #FFF5F5; border: 1px solid #FC8181; color: #742A2A; }
.site-flash-info    { background: #EBF8FF; border: 1px solid #90CDF4; color: #2C5282; }

/* ─── About page ─────────────────────────────────── */
.about-page, .home-about-section { padding: 32px 0 60px; }
.about-hero { text-align: center; margin-bottom: 32px; }
.about-title { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; color: var(--dark); margin-bottom: 8px; }
@media (min-width: 640px) { .about-page, .home-about-section { padding: 48px 0 80px; } .about-hero { margin-bottom: 48px; } .about-title { font-size: 48px; } }
.about-subtitle { font-size: 13px; color: var(--text-mute); }

.about-layout { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 768px) { .about-layout { grid-template-columns: 1fr 320px; align-items: start; } }

.about-body { font-size: 15px; line-height: 1.75; color: var(--text-mid); }
.about-body p { margin-bottom: 16px; }

.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.about-feature { background: var(--bg2); border-radius: var(--radius); padding: 18px; text-align: center; }
.about-feature-icon { font-size: 22px; color: var(--gold); margin-bottom: 8px; }
.about-feature h3 { font-size: 14px; font-weight: 600; margin-bottom: 5px; }
.about-feature p { font-size: 13px; color: var(--text-mute); line-height: 1.5; }

.about-contact-card { background: var(--bg2); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 24px; }
.about-contact-card h2 { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 300; margin-bottom: 18px; color: var(--dark); }
.about-contact-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 14px; color: var(--text-mid); }
.about-contact-row i { font-size: 16px; color: var(--gold); flex-shrink: 0; }
.about-contact-row a { color: var(--text-mid); text-decoration: none; }
.about-contact-row a:hover { color: var(--gold); }
.about-cta-wrap { margin-top: 20px; }
.about-cta-wrap .btn-gold { display: inline-block; background: var(--dark); color: #fff; padding: 12px 24px; border-radius: var(--radius); text-decoration: none; font-size: 14px; font-weight: 500; transition: background 0.15s; }
.about-cta-wrap .btn-gold:hover { background: #2E2215; }

/* ═══════════════════════════════════════════════════════════════
   SESSION 20 — MOBILE POLISH
═══════════════════════════════════════════════════════════════ */

/* Prevent any element from causing horizontal overflow */
body { overflow-x: hidden; }

/* Inbox row — shrink date column on very narrow screens */
@media (max-width: 480px) {
  .inbox-row { grid-template-columns: 16px 1fr auto; }
  .inbox-date { display: none; }
}

/* My bookings page — section title size on mobile */
@media (max-width: 639px) {
  .myb-section-head h2 { font-size: 18px; }
  .myb-title { font-size: 24px; }
}

/* Form row on mobile — stack radio groups vertically */
@media (max-width: 639px) {
  .form-row.form-row-2 { grid-template-columns: 1fr; }
}

/* Status page ref input — full width on mobile */
@media (max-width: 639px) {
  .status-ref-input { width: 100%; }
}

/* Detail sidebar — fully stacked on mobile, full width */
@media (max-width: 1023px) {
  .detail-sidebar { width: 100%; max-width: 100%; min-width: 0; }
}

/* Enquiry tour card — prevent image overflow on tiny screens */
@media (max-width: 400px) {
  .enquiry-tour-card { flex-direction: column; }
  .enquiry-tour-img { width: 100%; height: 120px; }
}

/* Nav mobile — ensure full width dropdown items are tappable */
@media (max-width: 767px) {
  .nav-right a, .nav-right button { min-height: 44px; }
  .lang-toggle a { min-height: 44px; padding: 6px 18px; }
}

/* ─── LAO SCRIPT FONT ─────────────────────────────── */
[lang="lo"] body,
[lang="lo"] .nav-link,
[lang="lo"] .nav-btn,
[lang="lo"] .nav-user-btn,
[lang="lo"] .cat-pill span,
[lang="lo"] .hero-sub,
[lang="lo"] .hero-eyebrow,
[lang="lo"] .hero-stats,
[lang="lo"] .tcard-name,
[lang="lo"] .tcard-meta,
[lang="lo"] .tcard-price,
[lang="lo"] .tbadge,
[lang="lo"] .listing-tab,
[lang="lo"] .listing-pill,
[lang="lo"] .sec-title,
[lang="lo"] .btn-gold,
[lang="lo"] .btn-ghost,
[lang="lo"] .btn-ghost-light,
[lang="lo"] .btn-gold-outline,
[lang="lo"] p,
[lang="lo"] label,
[lang="lo"] input,
[lang="lo"] textarea,
[lang="lo"] select { font-family: 'Noto Sans Lao', 'DM Sans', sans-serif; }

[lang="lo"] .nav-logo,
[lang="lo"] .hero-title,
[lang="lo"] .listing-title,
[lang="lo"] .cta-title,
[lang="lo"] .why-title,
[lang="lo"] .detail-name,
[lang="lo"] h1,
[lang="lo"] h2,
[lang="lo"] h3 { font-family: 'Noto Serif Lao', 'Cormorant Garamond', serif; font-weight: 400; }

/* ═══════════════════════════════════════════════════════════════
SESSION — CONTACT & CUSTOM TOUR
═══════════════════════════════════════════════════════════════ */

/* ── Contact page ───────────────────────────────── */
.contact-page { padding: 60px 0 80px; }
.contact-wrap { max-width: 720px; }
.contact-header { text-align: center; margin-bottom: 40px; }
.contact-eyebrow { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: #7A9885; margin-bottom: 10px; }
.contact-title { font-family: 'Cormorant Garamond', serif; font-size: 42px; font-weight: 300; color: #064E3B; margin-bottom: 12px; }
.contact-subtitle { color: #3D6A52; font-size: 15px; max-width: 500px; margin: 0 auto; }

/* Type toggle */
.contact-type-toggle { display: flex; gap: 10px; margin-bottom: 28px; }
.ctype-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 18px; border: 1.5px solid #D6EAD9; border-radius: 8px; background: #fff; font-size: 14px; color: #3D6A52; cursor: pointer; transition: all 0.15s; }
.ctype-btn i { font-size: 18px; }
.ctype-btn:hover { border-color: #064E3B; color: #064E3B; }
.ctype-btn.active { border-color: #064E3B; background: #EEF5F0; color: #064E3B; font-weight: 500; }

/* Form sections */
.cform-section { margin-bottom: 24px; }
.cform-section-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: #7A9885; margin-bottom: 14px; font-weight: 500; }
.cform-row { display: grid; gap: 16px; }
.cform-row-2 { grid-template-columns: 1fr 1fr; }
.cform-group { display: flex; flex-direction: column; gap: 6px; }
.cform-group.has-error .cform-input,
.cform-group.has-error .cform-textarea { border-color: #FC8181; }
.cform-label { font-size: 13px; font-weight: 500; color: #064E3B; }
.cform-optional { font-weight: 400; color: #7A9885; font-size: 12px; }
.req { color: #064E3B; }
.cform-input { width: 100%; padding: 11px 14px; border: 1.5px solid #D6EAD9; border-radius: 6px; font-size: 14px; font-family: inherit; color: #064E3B; background: #fff; transition: border-color 0.15s; }
.cform-input:focus { outline: none; border-color: #064E3B; }
.cform-textarea { width: 100%; padding: 11px 14px; border: 1.5px solid #D6EAD9; border-radius: 6px; font-size: 14px; font-family: inherit; color: #064E3B; background: #fff; resize: vertical; transition: border-color 0.15s; }
.cform-textarea:focus { outline: none; border-color: #064E3B; }
.cform-error { font-size: 12px; color: #C53030; }
.cform-char-count { font-size: 11px; color: #7A9885; text-align: right; margin-top: 4px; }
.cform-submit-row { margin-top: 32px; }
.cform-disclaimer { font-size: 12px; color: #7A9885; text-align: center; margin-top: 10px; }
.cform-checkbox-label { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #3D6A52; cursor: pointer; }
.cform-checkbox-label input { width: 16px; height: 16px; accent-color: #064E3B; }
.btn-full { width: 100%; justify-content: center; }
.form-alert { padding: 12px 16px; border-radius: 6px; margin-bottom: 20px; font-size: 14px; }
.form-alert-error { background: #FFF5F5; border: 1px solid #FC8181; color: #C53030; }

/* Contact thank-you */
.contact-thanks-page { padding: 60px 0 80px; }

/* ── "Start a Conversation" section on home ─────── */
.convo-section { padding: 40px 0 56px; }
.convo-inner { background: var(--dark); border-radius: 20px; padding: 40px 28px; display: flex; flex-direction: column; gap: 28px; }
.convo-eyebrow { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 10px; }
.convo-title { font-family: 'Cormorant Garamond', serif; font-size: 34px; font-weight: 300; color: #fff; margin-bottom: 14px; line-height: 1.2; }
.convo-title em { font-style: italic; color: var(--gold-lt); }
.convo-body { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.7; margin-bottom: 22px; }
.convo-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.convo-stats { display: flex; align-items: stretch; border-top: 1px solid rgba(255,255,255,0.12); padding-top: 24px; }
.convo-stat { flex: 1; text-align: center; }
.convo-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 300; color: var(--gold-lt); line-height: 1; margin-bottom: 4px; }
.convo-stat-label { font-size: 11px; color: rgba(255,255,255,0.5); line-height: 1.3; }
.convo-stat-divider { width: 1px; background: rgba(255,255,255,0.15); margin: 0 8px; }

@media (min-width: 768px) {
  .convo-inner { flex-direction: row; align-items: center; padding: 48px 48px; gap: 52px; border-radius: 24px; }
  .convo-left { flex: 1; }
  .convo-stats { flex: 0 0 200px; flex-direction: column; border-top: none; border-left: 1px solid rgba(255,255,255,0.12); padding-top: 0; padding-left: 40px; gap: 0; }
  .convo-stat { text-align: left; padding: 14px 0; }
  .convo-stat-divider { width: 100%; height: 1px; margin: 0; }
  .convo-title { font-size: 40px; }
  .convo-body { font-size: 15px; }
}
@media (max-width: 767px) {
  .contact-title { font-size: 32px; }
  .cform-row-2 { grid-template-columns: 1fr; }
  .contact-type-toggle { flex-direction: column; }
}

/* ═══════════════════════════════════════════════════════════════
MY INQUIRIES — thread styles
═══════════════════════════════════════════════════════════════ */
.inq-thread { display: flex; flex-direction: column; gap: 12px; }
.inq-msg { padding: 12px 16px; border-radius: 8px; }
.inq-msg-admin  { background: #F2F7FF; border-left: 3px solid #7B9ED9; }
.inq-msg-client { background: #FBF7F0; border-left: 3px solid var(--gold); }
.inq-msg-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; font-size: 12px; color: var(--text-mute); }
.inq-msg-meta strong { color: var(--text); font-size: 13px; font-weight: 600; }
.inq-msg-body { font-size: 14px; line-height: 1.65; color: var(--text); white-space: pre-wrap; }
