:root {
  /* Legacy palette — kept for backward-compat with existing code */
  --navy: #062d7a;
  --royal: #0b4ba8;
  --gold: #f5ad24;
  --gold-soft: #ffc34d;
  --ink: #10213d;
  --muted: #64748b;
  --line: #dbe3ef;
  --surface: #f5f7fb;
  --white: #fff;
  --danger: #b42318;
  --success: #15803d;
  --shadow: 0 20px 50px rgba(16, 36, 72, 0.09);
  --shadow-sm: 0 8px 25px rgba(16, 36, 72, 0.07);

  /* Extended design tokens from spec */
  --navy-950: #061a3a;
  --navy-900: #0b2f6b;
  --navy-800: #123d82;
  --gold-500: #f5ad24;
  --gold-400: #ffc34d;
  --surface-soft: #f5f7fb;
  --text: #10213d;
  --text-muted: #64748b;
  --border: #dbe3ef;
  --radius-lg: 24px;
  --radius-md: 16px;

  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  scroll-behavior: smooth;
}

html[data-theme="dark"] {
  --white: #0f172a;
  --surface: #1e293b;
  --surface-soft: #1e293b;
  --ink: #f1f5f9;
  --text: #f1f5f9;
  --muted: #94a3b8;
  --text-muted: #94a3b8;
  --line: #334155;
  --border: #334155;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  --shadow-sm: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Dark Mode Overrides */
html[data-theme="dark"] .site-header { background: rgba(15, 23, 42, 0.95); }
html[data-theme="dark"] .language-menu { background: rgba(30, 41, 59, 0.98); border-color: rgba(255, 255, 255, 0.12); box-shadow: 0 14px 35px rgba(0, 0, 0, 0.4); }
html[data-theme="dark"] .nav-link { color: var(--text); }
html[data-theme="dark"] .nav-link:hover, html[data-theme="dark"] .nav-link.active { background: rgba(255, 255, 255, 0.1); color: var(--gold-400); }
html[data-theme="dark"] .language-toggle .code-label, html[data-theme="dark"] .language.open .lang-chevron { color: var(--text); }
html[data-theme="dark"] .language-option .opt-text { color: #cbd5e1; }
html[data-theme="dark"] .language-option:hover { background: rgba(255, 255, 255, 0.08); }
html[data-theme="dark"] .language-option.active { background: rgba(245, 173, 36, 0.16); border: 1px solid rgba(245, 173, 36, 0.35); }
html[data-theme="dark"] .language-option.active .opt-text { color: var(--gold-400); font-weight: 800; }
html[data-theme="dark"] .language-option .opt-check { color: #34d399; }
html[data-theme="dark"] .contact-list-item { background: rgba(255, 255, 255, 0.05); }
html[data-theme="dark"] .about-band p { color: var(--text-muted); }
html[data-theme="dark"] .form-card { background: var(--surface); }
html[data-theme="dark"] .contact-aside { background: linear-gradient(155deg, #020617 0%, #0f172a 100%); }
html[data-theme="dark"] .mobile-panel { background: rgba(15, 23, 42, 0.98); }
html[data-theme="dark"] .menu-toggle { border-color: var(--line); color: var(--text-muted); }
html[data-theme="dark"] .menu-toggle:hover { background: rgba(255, 255, 255, 0.1); color: var(--text); }

/* Buttons in Dark Mode */
html[data-theme="dark"] .btn.light { background: rgba(255, 255, 255, 0.12); border: 1px solid rgba(255, 255, 255, 0.25); color: #fff; }
html[data-theme="dark"] .btn.light:hover { background: rgba(255, 255, 255, 0.22); color: #fff; }
html[data-theme="dark"] .btn.outline { border-color: rgba(255, 255, 255, 0.25); color: #fff; }
html[data-theme="dark"] .btn.outline:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }

/* Tour Itinerary Accordion in Dark Mode */
html[data-theme="dark"] .day { background: rgba(30, 41, 59, 0.7); border-color: rgba(255, 255, 255, 0.12); }
html[data-theme="dark"] .day:hover { border-color: rgba(245, 173, 36, 0.4); }
html[data-theme="dark"] .day.open { background: rgba(30, 41, 59, 0.95); border-color: var(--gold); border-left: 4px solid var(--gold); box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35); }
html[data-theme="dark"] .day-number { background: rgba(245, 173, 36, 0.15); border: 1px solid rgba(245, 173, 36, 0.35); color: var(--gold-soft); }
html[data-theme="dark"] .day.open .day-number { background: linear-gradient(135deg, #f5ad24, #ffc34d); color: #061a3a; border: none; box-shadow: 0 4px 14px rgba(245, 173, 36, 0.4); }
html[data-theme="dark"] .route-badge { background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.12); color: #f1f5f9; }
html[data-theme="dark"] .chevron-box { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.15); color: #f1f5f9; }
html[data-theme="dark"] .day:hover .chevron-box { background: var(--gold); color: #061a3a; border-color: var(--gold); }
html[data-theme="dark"] .day.open .chevron-box { background: var(--gold); color: #061a3a; border-color: var(--gold); box-shadow: 0 0 14px rgba(245, 173, 36, 0.5); }
html[data-theme="dark"] .day-body { border-top: 1px solid rgba(255, 255, 255, 0.1); }
html[data-theme="dark"] .day-summary { color: #cbd5e1; }
html[data-theme="dark"] .activity-list li { border-left-color: #475569; color: #e2e8f0; }
html[data-theme="dark"] .activity-list p { color: #94a3b8; }
html[data-theme="dark"] .meal-grid { background: rgba(15, 23, 42, 0.6); border-color: rgba(255, 255, 255, 0.1); }
html[data-theme="dark"] .meal-item strong { color: var(--gold-soft); }
html[data-theme="dark"] .meal-item span { color: #cbd5e1; }
html[data-theme="dark"] .hotel-item { border-top-color: rgba(255, 255, 255, 0.15); }

/* Inclusions & Sidebar Cards in Dark Mode */
html[data-theme="dark"] .inclusion-list li { color: #e2e8f0; }
html[data-theme="dark"] .badge-included { background: rgba(16, 185, 129, 0.2); color: #34d399; }
html[data-theme="dark"] .badge-excluded { background: rgba(244, 63, 94, 0.2); color: #fb7185; }
html[data-theme="dark"] .inc-true { background: rgba(16, 185, 129, 0.25); color: #34d399; }
html[data-theme="dark"] .inc-false { background: rgba(244, 63, 94, 0.25); color: #fb7185; }
html[data-theme="dark"] .category-pills span { background: rgba(255, 255, 255, 0.08); color: var(--gold-soft); }
html[data-theme="dark"] .sticky-card .price { color: var(--gold-soft); }
html[data-theme="dark"] .note-panel { background: rgba(245, 173, 36, 0.08); border-color: rgba(245, 173, 36, 0.25); }
html[data-theme="dark"] .note-panel h2 { color: var(--gold-soft); }
html[data-theme="dark"] .note-panel p { color: #e2e8f0; }

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 90px;
}

html,
body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  background: var(--white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
.serif {
  font-family: "Playfair Display", "Noto Sans Khmer", "Noto Sans TC", Georgia, serif;
  letter-spacing: -0.01em;
}

ul {
  margin: 0;
  padding: 0;
}

*:focus-visible {
  border-radius: 5px;
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

html[lang="km"] body {
  font-family: "Noto Sans Khmer", Inter, sans-serif;
  line-height: 1.75;
}

html[lang="km"] h1,
html[lang="km"] h2,
html[lang="km"] h3,
html[lang="km"] .serif {
  font-family: "Noto Sans Khmer", sans-serif;
  letter-spacing: 0;
  line-height: 1.45;
}

html[lang="km"] .eyebrow {
  letter-spacing: 0;
  text-transform: none;
}

html[lang="zh-TW"] body,
html[lang="zh-TW"] h1,
html[lang="zh-TW"] h2,
html[lang="zh-TW"] h3,
html[lang="zh-TW"] .serif {
  font-family: "Noto Sans TC", Inter, sans-serif;
}

.skip-link {
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
  left: 16px;
  padding: 10px 16px;
  position: fixed;
  top: -100px;
  z-index: 200;
}

.skip-link:focus {
  top: 12px;
}

.container {
  margin-inline: auto;
  width: min(1200px, calc(100% - 32px));
}

.section {
  padding-block: clamp(56px, 7vw, 100px);
}

.section.standalone-page {
  padding-top: clamp(132px, 12vw, 168px);
}

.surface {
  background: var(--surface);
}

.page-header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 132px 0 62px;
}

.page-header h1,
.legal h1 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.17;
  margin: 0;
  text-wrap: balance;
}

.page-header p:last-child {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.8;
  margin: 18px 0 0;
  max-width: 760px;
}

.eyebrow {
  color: #9a5b00;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-heading {
  max-width: 760px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  color: var(--ink);
  font-size: clamp(2rem, 4.7vw, 3.75rem);
  line-height: 1.2;
  margin-bottom: 0;
  text-wrap: balance;
}

.section-heading .lead {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 18px 0 0;
}

.site-header {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(219, 227, 239, 0.8);
  box-shadow: 0 2px 12px rgba(6, 26, 58, 0.04);
  inset: 0 0 auto;
  position: fixed;
  z-index: 100;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 28px rgba(6, 26, 58, 0.13);
  border-bottom-color: rgba(219, 227, 239, 1);
}

.nav-shell {
  align-items: center;
  display: flex;
  height: 84px;
  justify-content: space-between;
}

.brand {
  align-items: center;
  display: inline-flex;
  flex-shrink: 0;
}

.brand img {
  height: 58px;
  object-fit: contain;
  width: auto;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: 2px;
}

.nav-link {
  border-radius: 999px;
  color: #40516d;
  font-size: 0.875rem;
  font-weight: 800;
  padding: 11px 13px;
  transition: 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  background: #eef4ff;
  color: var(--navy);
}

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

.language {
  position: relative;
}

.language-toggle {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 800;
  gap: 8px;
  min-height: 44px;
  padding: 6px 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.language-toggle:hover {
  border-color: #cbd5e1;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.language-toggle .code-label {
  color: var(--navy);
  font-weight: 800;
}

.lang-chevron {
  color: #64748b;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.language.open .lang-chevron {
  transform: rotate(180deg);
  color: var(--navy);
}

.theme-toggle {
  align-items: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--text-muted);
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.theme-toggle:hover {
  background: var(--surface);
  color: var(--text);
  border-color: #cbd5e1;
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
}

.theme-toggle .moon-icon { display: none; }
html[data-theme="dark"] .theme-toggle .sun-icon { display: none; }
html[data-theme="dark"] .theme-toggle .moon-icon { display: block; }
html[data-theme="dark"] .theme-toggle { border-color: var(--line); color: var(--text-muted); }
html[data-theme="dark"] .theme-toggle:hover { background: rgba(255, 255, 255, 0.1); color: var(--text); }


.flag-icon {
  width: 22px;
  height: 15px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(16, 36, 72, 0.15);
  flex-shrink: 0;
}

.language-menu {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  box-shadow: 0 14px 35px rgba(6, 28, 69, 0.12);
  display: none;
  padding: 8px;
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: 130px;
  z-index: 100;
}

.language.open .language-menu {
  display: grid;
  gap: 4px;
}

.language-option {
  align-items: center;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  font-size: 0.86rem;
  font-weight: 700;
  justify-content: space-between;
  padding: 9px 12px;
  text-align: left;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  width: 100%;
}

.language-option .opt-left {
  align-items: center;
  display: flex;
  gap: 10px;
}

.language-option .opt-text {
  color: #334155;
  white-space: nowrap;
}

.language-option:hover {
  background: #f1f5f9;
}

.language-option.active {
  background: #eef4ff;
  border-color: rgba(6, 45, 122, 0.15);
}

.language-option.active .opt-text {
  color: var(--navy);
  font-weight: 800;
}

.language-option .opt-check {
  color: #059669;
  flex-shrink: 0;
}

.menu-toggle {
  align-items: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text-muted);
  cursor: pointer;
  display: none;
  font-size: 1.25rem;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.menu-toggle:hover {
  background: var(--surface);
  color: var(--text);
  border-color: #cbd5e1;
}

.mobile-panel {
  background: var(--white);
  border-top: 1px solid var(--line);
  display: block;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-panel.open {
  max-height: calc(100vh - 84px);
  overflow-y: auto;
}

.mobile-panel-inner {
  padding: 14px 16px 24px;
  display: grid;
}

.mobile-panel .nav-link {
  border-radius: 14px;
  padding: 14px 16px;
}

.btn {
  align-items: center;
  background: var(--gold);
  border: 2px solid transparent;
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 800;
  gap: 8px;
  justify-content: center;
  min-height: 48px;
  padding: 11px 22px;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  text-decoration: none;
}

.btn:hover {
  background: var(--gold-soft);
  box-shadow: 0 10px 28px rgba(245, 173, 36, 0.28);
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn.secondary {
  background: var(--navy);
  color: #fff;
}

.btn.secondary:hover {
  background: var(--royal);
}

.btn.light {
  background: var(--white);
  color: var(--navy);
}

.btn.outline {
  background: transparent;
  border-color: var(--line);
  color: var(--navy);
}

/* Hero white-outline button */
.btn.btn-outline-white {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.btn.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.btn[disabled],
.btn:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
  pointer-events: none;
}

.hero {
  align-items: center;
  background: var(--navy-950, #061a3a);
  display: flex;
  min-height: 700px;
  overflow: hidden;
  padding-top: 84px;
  position: relative;
}

.hero > img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

@media (max-width: 768px) {
  .hero > img {
    object-position: 76% center;
  }
}

.hero::after {
  background: linear-gradient(
    105deg,
    rgba(6, 26, 58, 0.97) 0%,
    rgba(6, 45, 122, 0.88) 45%,
    rgba(6, 45, 122, 0.5) 72%,
    rgba(6, 45, 122, 0.18) 100%
  );
  content: "";
  inset: 0;
  position: absolute;
}

.hero-content {
  color: #fff;
  max-width: 780px;
  padding-block: 80px;
  position: relative;
  z-index: 1;
  /* Entrance animation */
  animation: heroFadeUp 0.75s ease both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-content { animation: none; }
}

.hero .eyebrow {
  color: var(--gold-soft);
  letter-spacing: 0.14em;
}

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 5rem);
  line-height: 1.12;
  margin-bottom: 0;
  text-wrap: balance;
}

html[lang="km"] .hero h1 {
  line-height: 1.35;
  font-size: clamp(2rem, 5vw, 4.2rem);
}

.hero h1 span {
  color: var(--gold-soft);
}

.hero .lead {
  color: rgba(238, 245, 255, 0.92);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.8;
  margin: 24px 0 0;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-badge {
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.85rem;
  font-weight: 700;
  gap: 9px;
  margin-top: 28px;
  padding: 10px 15px;
}

.trust {
  background: var(--surface);
  border-block: 1px solid var(--line);
  padding-block: 24px;
}

.trust-grid,
.cards {
  display: grid;
  gap: 20px;
}

.trust-grid {
  grid-template-columns: repeat(2, 1fr);
}

.trust-item,
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

.trust-item {
  align-items: center;
  display: flex;
  font-size: 0.9rem;
  font-weight: 800;
  gap: 14px;
  padding: 16px;
}

.icon-box {
  align-items: center;
  background: #fff4d8;
  border-radius: 16px;
  color: #9a5b00;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 1.45rem;
  height: 54px;
  justify-content: center;
  width: 54px;
}

.icon-box img,
.icon-box svg,
.icon-box .svg-icon {
  width: 24px;
  height: 24px;
  stroke: #9a5b00;
  fill: none;
  display: block;
}

.cards {
  margin-top: 44px;
}

.cards.four {
  grid-template-columns: repeat(4, 1fr);
}

.cards.three {
  grid-template-columns: repeat(3, 1fr);
}

.cards.two {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  overflow: hidden;
  padding: 26px;
  transition: 0.25s ease;
}

.card:hover {
  border-color: rgba(239, 174, 50, 0.55);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.card h3 {
  font-size: 1.3rem;
  line-height: 1.35;
  margin: 22px 0 10px;
}

.card p,
.check-list {
  color: var(--muted);
  line-height: 1.75;
}

.check-list {
  display: grid;
  font-size: 0.92rem;
  gap: 10px;
  list-style: none;
  margin-top: 18px;
}

.check-list li {
  display: flex;
  gap: 10px;
}

.check-list li::before {
  color: var(--gold);
  content: "✓";
  font-weight: 900;
}

.tour-card {
  padding: 0;
}

.tour-card .media {
  aspect-ratio: 16 / 8;
  overflow: hidden;
  position: relative;
}

.tour-card .media img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  width: 100%;
}

.tour-card:hover .media img {
  transform: scale(1.04);
}

.tour-card .pill {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  left: 14px;
  padding: 7px 12px;
  position: absolute;
  top: 14px;
}

.tour-card .pill.featured {
  background: var(--gold);
  left: auto;
  right: 14px;
}

.tour-body {
  padding: 26px;
}

.tour-body h3 {
  margin-top: 0;
}

.tour-meta {
  align-items: end;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 18px;
}

.tour-meta strong {
  color: var(--navy);
}

.split {
  align-items: center;
  display: grid;
  gap: clamp(35px, 6vw, 76px);
  grid-template-columns: 1.05fr 0.95fr;
}

/* ==========================================================================
   About Us Section (Redesigned 2-Column Premium Layout)
   ========================================================================== */
.about-section {
  background: linear-gradient(160deg, #061a3a 0%, #062d7a 60%, #0b2f6b 100%);
  color: #ffffff;
  padding-block: clamp(60px, 8vw, 100px);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(245, 173, 36, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(11, 75, 168, 0.35) 0%, transparent 60%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Left Column */
.about-content {
  display: flex;
  flex-direction: column;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  background: rgba(245, 173, 36, 0.14);
  border: 1px solid rgba(245, 173, 36, 0.35);
  color: var(--gold-soft);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.about-title {
  color: #ffffff;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.22;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.about-description p {
  color: rgba(230, 240, 255, 0.9);
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  line-height: 1.8;
  margin-bottom: 14px;
}

.about-description p:last-child {
  margin-bottom: 26px;
}

.about-actions {
  margin-bottom: 36px;
}

.about-cta {
  background: var(--gold);
  color: #061a3a;
  font-size: 0.92rem;
  font-weight: 800;
  padding: 13px 28px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(245, 173, 36, 0.25);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.about-cta:hover {
  background: var(--gold-soft);
  box-shadow: 0 12px 30px rgba(245, 173, 36, 0.38);
  transform: translateY(-3px);
  color: #061a3a;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 18px 16px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(245, 173, 36, 0.45);
  transform: translateY(-3px);
}

.stat-number {
  color: var(--gold-soft);
  display: block;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat-label {
  color: rgba(220, 235, 255, 0.85);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.35;
  display: block;
}

/* Right Column */
.about-media-col {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-frame-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.about-image-frame {
  position: relative;
  border-radius: 28px;
  padding: 8px;
  background: linear-gradient(135deg, rgba(245, 173, 36, 0.5) 0%, rgba(11, 75, 168, 0.35) 50%, rgba(255, 255, 255, 0.15) 100%);
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.4), 0 0 30px rgba(245, 173, 36, 0.15);
  overflow: hidden;
}

.about-img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.5s ease;
}

.about-image-frame:hover .about-img {
  transform: scale(1.02);
}

.about-route-pill {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(6, 26, 58, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(245, 173, 36, 0.4);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.route-dot {
  width: 8px;
  height: 8px;
  background-color: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold);
  display: inline-block;
  animation: routePulse 2s infinite ease-in-out;
}

@keyframes routePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.about-trust-card {
  position: absolute;
  bottom: -22px;
  right: -20px;
  background: rgba(15, 30, 60, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 4px solid var(--gold);
  border-radius: 20px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  z-index: 3;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
}

.trust-card-icon {
  width: 42px;
  height: 42px;
  background: rgba(245, 173, 36, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-soft);
  flex-shrink: 0;
}

.trust-card-icon svg {
  width: 22px;
  height: 22px;
}

.trust-card-info {
  display: flex;
  flex-direction: column;
}

.trust-card-info strong {
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.25;
}

.trust-card-info span {
  color: rgba(220, 235, 255, 0.8);
  font-size: 0.76rem;
  font-weight: 500;
  margin-top: 2px;
}

/* Language Specific Typography Rules */
html[lang="km"] .about-badge {
  font-family: "Noto Sans Khmer", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
}

html[lang="km"] .about-title {
  font-family: "Noto Sans Khmer", sans-serif;
  line-height: 1.55;
  word-break: normal;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

html[lang="km"] .about-description p {
  font-family: "Noto Sans Khmer", sans-serif;
  line-height: 1.85;
}

html[lang="km"] .stat-label,
html[lang="km"] .trust-card-info strong,
html[lang="km"] .trust-card-info span,
html[lang="km"] .about-route-pill,
html[lang="km"] .about-cta {
  font-family: "Noto Sans Khmer", sans-serif;
  line-height: 1.4;
}

html[lang="en"] .about-title {
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.22;
}

html[lang="zh"],
html[lang="zh-TW"],
html[lang^="zh"] {
  font-family: "Noto Sans TC", system-ui, sans-serif;
}

html[lang="zh"] .about-title,
html[lang="zh-TW"] .about-title,
html[lang^="zh"] .about-title {
  font-family: "Noto Sans TC", system-ui, sans-serif;
  line-height: 1.35;
  font-weight: 700;
}

html[lang="zh"] .about-description p,
html[lang="zh-TW"] .about-description p,
html[lang^="zh"] .about-description p {
  font-family: "Noto Sans TC", system-ui, sans-serif;
  line-height: 1.75;
}

/* Tablet Layout (max-width: 991px) */
@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-media-col {
    order: 2;
  }

  .about-content {
    order: 1;
  }

  .about-frame-wrapper {
    max-width: 440px;
  }

  .about-trust-card {
    right: 0;
    bottom: -18px;
  }
}

/* Mobile Layout (max-width: 767px) */
@media (max-width: 767px) {
  .about-section {
    padding-block: 44px;
  }

  .about-title {
    font-size: clamp(1.55rem, 5.5vw, 2.1rem);
    line-height: 1.3;
    margin-bottom: 16px;
  }

  html[lang="km"] .about-title {
    font-size: clamp(1.45rem, 5vw, 1.95rem);
    line-height: 1.5;
  }

  .about-stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .stat-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
  }

  .stat-number {
    margin-bottom: 0;
  }

  .about-frame-wrapper {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about-image-frame {
    width: 100%;
    border-radius: 22px;
  }

  .about-route-pill {
    top: 14px;
    left: 14px;
    font-size: 0.76rem;
    padding: 6px 12px;
  }

  .about-trust-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 16px;
    width: 100%;
    box-sizing: border-box;
  }
}

/* Dark Mode Overrides for About Section */
html[data-theme="dark"] .about-section {
  background: linear-gradient(160deg, #020617 0%, #0f172a 60%, #1e293b 100%);
}

html[data-theme="dark"] .stat-card {
  background: rgba(30, 41, 59, 0.6);
  border-color: rgba(255, 255, 255, 0.1);
}

html[data-theme="dark"] .about-trust-card {
  background: rgba(15, 23, 42, 0.95);
  border-color: rgba(255, 255, 255, 0.15);
  border-left-color: var(--gold);
}

.stars {
  color: var(--gold);
  letter-spacing: 2px;
  margin: 16px 0;
}

.testimonial-top {
  align-items: center;
  display: flex;
  gap: 12px;
}

.avatar {
  align-items: center;
  background: var(--navy);
  border-radius: 50%;
  color: var(--gold-soft);
  display: inline-flex;
  font-weight: 800;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.cta {
  background: var(--surface);
  padding-block: 46px;
}

.cta-box {
  align-items: center;
  background: var(--navy);
  border-radius: 32px;
  color: #fff;
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr auto;
  padding: clamp(28px, 5vw, 50px);
}

.cta-box .eyebrow {
  color: var(--gold-soft);
}

.cta-box h2 {
  font-size: clamp(1.9rem, 4vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 14px;
}

.cta-box p {
  color: #eaf2ff;
  line-height: 1.75;
  margin-bottom: 0;
  max-width: 700px;
}

.contact-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.contact-chip {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 0.8rem;
  min-height: 42px;
  padding: 11px 15px;
}

.support-note {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  margin-top: 28px;
  padding: 26px;
}

.support-note h3 {
  margin-bottom: 8px;
}

.support-note p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0;
}

.support-note .note {
  color: #9a5b00;
  font-size: 0.86rem;
  font-weight: 800;
  margin-top: 10px;
}

.contact-layout {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: 0.7fr 1.3fr;
}

.contact-aside {
  background: linear-gradient(155deg, var(--navy-950, #061a3a) 0%, var(--navy-900, #0b2f6b) 100%);
  border-radius: 28px;
  box-shadow: var(--shadow);
  color: #fff;
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
}

.contact-aside::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 0%, rgba(245, 173, 36, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.contact-aside-title {
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 8px;
}

.contact-aside-subtitle {
  color: rgba(220, 235, 255, 0.75);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.contact-list {
  display: grid;
  gap: 20px;
}

.contact-list-item {
  align-items: flex-start;
  display: flex;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}

.contact-list-item:hover .contact-icon-box {
  background: rgba(245, 173, 36, 0.22);
}

.contact-icon-box {
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--gold-soft);
  display: inline-flex;
  flex: 0 0 auto;
  height: 42px;
  justify-content: center;
  transition: background 0.2s ease;
  width: 42px;
}

.contact-icon-box svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  flex-shrink: 0;
}

.contact-item-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(200, 220, 255, 0.6);
  display: block;
  margin-bottom: 2px;
}

.contact-item-value {
  color: rgba(240, 248, 255, 0.95);
  font-size: 0.9rem;
  font-weight: 600;
  display: block;
  line-height: 1.5;
}

.contact-aside-hours {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  margin-top: 28px;
  padding: 16px 18px;
}

.contact-aside-hours strong {
  display: block;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-aside-hours span {
  color: rgba(220, 235, 255, 0.8);
  font-size: 0.86rem;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--border, #dbe3ef);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: clamp(24px, 4vw, 38px);
}

.form-card h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  margin-bottom: 6px;
}

.form-card-subtitle {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 26px;
  margin-top: 6px;
}

.form-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-group {
  display: block;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-label {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 7px;
  color: var(--ink);
}

.form-label .required-mark {
  color: var(--danger);
  margin-left: 3px;
  font-weight: 900;
}

/* Keep backward compat with span > span pattern */
.form-group > span:first-child {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 7px;
  color: var(--ink);
}

.field {
  background: var(--white);
  border: 1.5px solid var(--border, #dbe3ef);
  border-radius: 13px;
  font-size: 1rem;
  min-height: 50px;
  padding: 12px 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  color: var(--ink);
}

.field[readonly] {
  background: var(--surface);
  color: var(--muted);
}

.field:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(245, 173, 36, 0.15);
  outline: none;
}

textarea.field {
  min-height: 130px;
  resize: vertical;
}

select.field {
  cursor: pointer;
}

.field[aria-invalid="true"] {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.1);
}

.field-error {
  color: var(--danger);
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 5px;
}

.form-status {
  border: 1.5px solid;
  border-radius: 14px;
  font-size: 0.88rem;
  font-weight: 700;
  margin-top: 20px;
  padding: 14px 16px;
  line-height: 1.6;
}

.form-status.success {
  background: #ecfdf5;
  border-color: #a7f3d0;
  color: var(--success);
}

.form-status.error {
  background: #fff1f2;
  border-color: #fecdd3;
  color: var(--danger);
}

.form-note {
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.6;
  margin: 14px 0 0;
}

.form-submit-row {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.form-submit-row .btn {
  min-width: 160px;
}

.tour-hero {
  background: var(--white);
  padding: 112px 0 38px;
}

.breadcrumbs {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.84rem;
  font-weight: 700;
  gap: 8px;
  margin-bottom: 18px;
}

.tour-cover {
  border-radius: 32px;
  height: clamp(410px, 52vw, 590px);
  overflow: hidden;
  position: relative;
}

.tour-cover > img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.tour-cover::after {
  background: linear-gradient(to top, rgba(6, 28, 69, 0.96), rgba(6, 28, 69, 0.1) 70%);
  content: "";
  inset: 0;
  position: absolute;
}

.tour-cover-content {
  bottom: 0;
  color: #fff;
  left: 0;
  padding: clamp(22px, 5vw, 42px);
  position: absolute;
  right: 0;
  z-index: 1;
}

.tour-cover-content h1 {
  font-size: clamp(1.7rem, 4.4vw, 3.3rem);
  line-height: 1.3;
  margin: 13px 0 0;
  max-width: 900px;
}

.tag {
  background: var(--gold);
  border-radius: 999px;
  color: var(--ink);
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 7px 12px;
}

.meta-pills,
.destination-pills,
.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.inline-svg-icon {
  display: inline-block;
  vertical-align: -2.5px;
  flex-shrink: 0;
}

.meta-pills span {
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  display: inline-flex;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 8px 14px;
}

.destination-pills span {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #566781;
  display: inline-flex;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 8px 14px;
}

.destination-pills span .pin-icon {
  stroke: #d99200;
}

.tour-layout {
  align-items: start;
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 0.85fr);
  padding-block: 50px 80px;
}

.tour-main {
  display: grid;
  gap: 28px;
  min-width: 0;
}

.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow-sm);
  padding: clamp(22px, 4vw, 32px);
}

.panel h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 12px;
}

.panel p {
  color: var(--muted);
  line-height: 1.8;
}

.overview-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 12px 35px rgba(6, 26, 58, 0.06);
  padding: clamp(28px, 5vw, 40px);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.overview-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--navy) 0%, var(--gold) 100%);
}

.overview-header {
  margin-bottom: 14px;
}

.overview-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(6, 45, 122, 0.08);
  border: 1px solid rgba(6, 45, 122, 0.15);
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.overview-panel h2 {
  color: var(--navy);
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  font-weight: 800;
  line-height: 1.25;
  margin: 0;
}

.overview-text {
  color: #334155;
  font-size: clamp(0.96rem, 1.2vw, 1.08rem);
  line-height: 1.85;
  margin-bottom: 24px;
}

.category-pills-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid #f1f5f9;
}

.pills-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f5f7fb;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 700;
  padding: 8px 16px;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.category-pill:hover {
  background: #eef4ff;
  border-color: rgba(11, 75, 168, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(6, 45, 122, 0.08);
}

.pill-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
}

/* Khmer & Language Specific Typography for Overview Panel */
html[lang="km"] .overview-badge {
  font-family: "Noto Sans Khmer", sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
}

html[lang="km"] .overview-panel h2 {
  font-family: "Noto Sans Khmer", sans-serif;
  line-height: 1.55;
  word-break: normal;
  overflow-wrap: break-word;
}

html[lang="km"] .overview-text {
  font-family: "Noto Sans Khmer", sans-serif;
  line-height: 1.85;
}

html[lang="km"] .category-pill,
html[lang="km"] .pills-label {
  font-family: "Noto Sans Khmer", sans-serif;
  line-height: 1.4;
}

/* Dark Mode Overrides for Overview Panel */
html[data-theme="dark"] .overview-panel {
  background: var(--surface);
  border-color: var(--line);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

html[data-theme="dark"] .overview-badge {
  background: rgba(245, 173, 36, 0.12);
  border-color: rgba(245, 173, 36, 0.3);
  color: var(--gold-soft);
}

html[data-theme="dark"] .overview-panel h2 {
  color: var(--text);
}

html[data-theme="dark"] .overview-text {
  color: var(--text-muted);
}

html[data-theme="dark"] .category-pills-wrap {
  border-top-color: var(--line);
}

html[data-theme="dark"] .category-pill {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text);
}

html[data-theme="dark"] .category-pill:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold-soft);
  color: var(--gold-soft);
}

.highlight-panel {
  background: linear-gradient(155deg, #061a3a 0%, #062d7a 50%, #0b2f6b 100%);
  border-radius: 28px;
  color: #ffffff;
  padding: clamp(28px, 5vw, 44px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(6, 26, 58, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.highlight-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(245, 173, 36, 0.12) 0%, transparent 55%),
    radial-gradient(circle at 10% 90%, rgba(11, 75, 168, 0.3) 0%, transparent 60%);
  pointer-events: none;
}

.highlight-panel-header {
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.highlight-eyebrow {
  display: inline-block;
  color: var(--gold-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.highlight-panel h2 {
  color: #ffffff;
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  font-weight: 800;
  line-height: 1.25;
  margin: 0;
}

.highlight-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  z-index: 1;
}

.highlight-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.highlight-card:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(245, 173, 36, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.highlight-icon {
  width: 36px;
  height: 36px;
  background: rgba(245, 173, 36, 0.18);
  border: 1px solid rgba(245, 173, 36, 0.4);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-soft);
  flex-shrink: 0;
}

.highlight-icon svg {
  width: 18px;
  height: 18px;
}

.highlight-text span {
  color: #f1f5f9;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.5;
  display: block;
}

/* Language Specific Rules for Highlights */
html[lang="km"] .highlight-eyebrow,
html[lang="km"] .highlight-panel h2,
html[lang="km"] .highlight-text span {
  font-family: "Noto Sans Khmer", sans-serif;
  line-height: 1.6;
}

/* Dark Mode Overrides for Highlights */
html[data-theme="dark"] .highlight-panel {
  background: linear-gradient(155deg, #020617 0%, #0f172a 50%, #1e293b 100%);
  border-color: rgba(255, 255, 255, 0.12);
}

html[data-theme="dark"] .highlight-card {
  background: rgba(30, 41, 59, 0.6);
  border-color: rgba(255, 255, 255, 0.12);
}

html[data-theme="dark"] .highlight-card:hover {
  background: rgba(30, 41, 59, 0.85);
  border-color: var(--gold);
}.itinerary {
  display: grid;
  gap: 16px;
  position: relative;
}

.day {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  overflow: hidden;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.day:hover {
  border-color: #cbd5e1;
  box-shadow: 0 6px 18px rgba(6, 28, 69, 0.06);
}

.day.open {
  border-color: #e2e8f0;
  border-left: 4px solid var(--gold);
  box-shadow: 0 12px 28px rgba(6, 28, 69, 0.08);
}

.day-header {
  align-items: center;
  background: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  display: grid;
  font: inherit;
  gap: 16px;
  grid-template-columns: auto 1fr auto;
  padding: 18px 22px;
  text-align: left;
  user-select: none;
  width: 100%;
}

.day-number {
  align-items: center;
  background: linear-gradient(135deg, #061c45, #0c2d6b);
  border-radius: 16px;
  color: #fff;
  display: inline-flex;
  flex-direction: column;
  height: 54px;
  justify-content: center;
  line-height: 1;
  width: 54px;
  transition: transform 0.25s ease, background 0.25s ease;
}

.day.open .day-number {
  background: linear-gradient(135deg, #d99200, #f59e0b);
  color: var(--navy);
  box-shadow: 0 4px 12px rgba(217, 146, 0, 0.3);
}

.day-label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.day-number strong {
  font-size: 1.25rem;
  font-weight: 800;
  margin-top: 3px;
}

.day-title strong {
  color: var(--ink);
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
}

.route-badge {
  background: #f1f5f9;
  border-radius: 999px;
  color: #475569;
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 600;
  margin-top: 6px;
  padding: 3px 10px;
}

.chevron-box {
  align-items: center;
  background: #f8fafc;
  border-radius: 50%;
  color: #64748b;
  display: inline-flex;
  height: 38px;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
  width: 38px;
}

.day:hover .chevron-box {
  background: #f1f5f9;
  color: var(--navy);
}

.chevron-icon {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.day.open .chevron-box {
  background: #fff8e8;
  color: #d99200;
}

.day.open .chevron-icon {
  transform: rotate(180deg);
}

.day-body-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.day.open .day-body-wrapper {
  grid-template-rows: 1fr;
}

.day-body {
  border-top: 1px solid #f1f5f9;
  overflow: hidden;
  padding: 0 24px;
  transition: padding 0.35s ease, opacity 0.35s ease, border-color 0.35s ease;
  opacity: 0;
}

.day.open .day-body {
  padding: 24px;
  opacity: 1;
}

.day-media img {
  border-radius: 18px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  margin-bottom: 20px;
  max-height: 340px;
  object-fit: cover;
  width: 100%;
}

.day-summary {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.activity-block {
  margin-top: 18px;
}

.activity-list {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.activity-list li {
  border-left: 2px solid #e2e8f0;
  color: #334155;
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
}

.activity-list li::before {
  background: var(--gold);
  border: 3px solid var(--white);
  border-radius: 50%;
  content: "";
  height: 11px;
  left: -7px;
  position: absolute;
  top: 6px;
  width: 11px;
}

.activity-list strong {
  color: var(--ink);
  display: block;
  font-size: 0.96rem;
  font-weight: 700;
}

.activity-list p {
  color: #64748b;
  font-size: 0.88rem;
  margin: 3px 0 0;
}

.meal-grid {
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 18px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 22px;
  padding: 18px;
}

.meal-item {
  font-size: 0.84rem;
}

.meal-item strong {
  color: var(--navy);
  display: block;
  font-weight: 700;
  margin-bottom: 2px;
}

.meal-item span {
  color: #64748b;
}

.hotel-item {
  grid-column: 1 / -1;
  border-top: 1px dashed #cbd5e1;
  padding-top: 10px;
  margin-top: 4px;
}

.quote-panel {
  background: linear-gradient(155deg, #061a3a 0%, #062d7a 50%, #0b2f6b 100%);
  border-radius: 28px;
  color: #ffffff;
  padding: clamp(32px, 6vw, 54px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(6, 26, 58, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.quote-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(245, 173, 36, 0.15) 0%, transparent 55%),
    radial-gradient(circle at 85% 85%, rgba(11, 75, 168, 0.35) 0%, transparent 60%);
  pointer-events: none;
}

.quote-panel-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.quote-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(245, 173, 36, 0.14);
  border: 1px solid rgba(245, 173, 36, 0.35);
  color: var(--gold-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.quote-panel h2 {
  color: #ffffff;
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.quote-panel p {
  color: rgba(230, 240, 255, 0.9);
  font-size: clamp(0.96rem, 1.2vw, 1.08rem);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 720px;
}

.quote-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.quote-primary-btn {
  background: var(--gold);
  color: #061a3a;
  font-size: 0.92rem;
  font-weight: 800;
  padding: 13px 28px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(245, 173, 36, 0.25);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.quote-primary-btn:hover {
  background: var(--gold-soft);
  box-shadow: 0 12px 30px rgba(245, 173, 36, 0.38);
  transform: translateY(-3px);
  color: #061a3a;
}

.quote-secondary-btn {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 800;
  padding: 13px 26px;
  border-radius: 999px;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.quote-secondary-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
  color: #ffffff;
}

/* Khmer & Language Specific Typography for Quote Panel */
html[lang="km"] .quote-badge {
  font-family: "Noto Sans Khmer", sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
}

html[lang="km"] .quote-panel h2 {
  font-family: "Noto Sans Khmer", sans-serif;
  line-height: 1.55;
  word-break: normal;
  overflow-wrap: break-word;
}

html[lang="km"] .quote-panel p {
  font-family: "Noto Sans Khmer", sans-serif;
  line-height: 1.85;
}

html[lang="km"] .quote-primary-btn,
html[lang="km"] .quote-secondary-btn {
  font-family: "Noto Sans Khmer", sans-serif;
  line-height: 1.4;
}

/* Dark Mode Overrides for Quote Panel */
html[data-theme="dark"] .quote-panel {
  background: linear-gradient(155deg, #020617 0%, #0f172a 50%, #1e293b 100%);
  border-color: rgba(255, 255, 255, 0.12);
}

.inclusions {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, 1fr);
}

.inclusion-panel {
  border-radius: 26px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.inclusion-panel:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.included-panel {
  border-top: 4px solid #10b981;
}

.excluded-panel {
  border-top: 4px solid #f43f5e;
}

.inclusion-header {
  margin-bottom: 18px;
}

.inclusion-badge {
  border-radius: 999px;
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  margin-bottom: 10px;
  padding: 4px 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-included {
  background: #d1fae5;
  color: #065f46;
}

.badge-excluded {
  background: #ffe4e6;
  color: #9f1239;
}

.inclusion-header h2 {
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0;
}

.inclusion-list {
  display: grid;
  gap: 13px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.inclusion-list li {
  align-items: flex-start;
  color: #334155;
  display: flex;
  font-size: 0.92rem;
  font-weight: 500;
  gap: 12px;
  line-height: 1.55;
}

.inc-icon {
  align-items: center;
  border-radius: 50%;
  display: inline-flex;
  flex: 0 0 auto;
  height: 22px;
  justify-content: center;
  margin-top: 1px;
  width: 22px;
}

.inc-true {
  background: #d1fae5;
  color: #059669;
}

.inc-false {
  background: #ffe4e6;
  color: #e11d48;
}

.note-panel {
  background: #fff8e8;
  border-color: #f2d58d;
}

.note-panel h2 {
  color: #5b3b00;
}

.note-panel p {
  color: #6c4a09;
}

.sticky-card {
  position: sticky;
  top: 110px;
}

.sticky-card .price {
  color: var(--navy);
  font-size: 1.9rem;
}

.legal {
  background: var(--surface);
  min-height: 70vh;
  padding: 135px 0 70px;
}

.legal-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow-sm);
  color: var(--muted);
  line-height: 1.9;
  margin-top: 25px;
  max-width: 800px;
  padding: 30px;
}

.not-found {
  align-items: center;
  background: var(--surface);
  display: flex;
  min-height: 70vh;
  padding: 140px 0 80px;
  text-align: center;
}

.not-found h1 {
  font-size: clamp(2.3rem, 6vw, 4.2rem);
}

.not-found p {
  color: var(--muted);
  line-height: 1.8;
}

.site-footer {
  background: #051b43;
  color: #fff;
  padding: 65px 0 28px;
}

.footer-grid {
  display: grid;
  gap: 35px;
  grid-template-columns: 1.45fr 0.8fr 0.8fr 1fr;
}

.footer-brand img {
  height: 66px;
  width: auto;
}

.footer-brand p,
.footer-col a,
.footer-col p {
  color: #cbdaf0;
  font-size: 0.86rem;
  line-height: 1.75;
}

.footer-col h3 {
  color: var(--gold-soft);
  font-family: inherit;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
  list-style: none;
}

.footer-links a:hover {
  color: var(--gold-soft);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #aebed5;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.75rem;
  gap: 12px;
  justify-content: space-between;
  margin-top: 48px;
  padding-top: 22px;
}

.toast-region {
  bottom: 18px;
  display: grid;
  gap: 10px;
  max-width: min(380px, calc(100% - 32px));
  position: fixed;
  right: 18px;
  z-index: 300;
}

.toast {
  background: var(--ink);
  border-radius: 14px;
  box-shadow: var(--shadow);
  color: var(--white);
  font-size: 0.85rem;
  padding: 14px 18px;
}

.noscript {
  background: #fff4d8;
  bottom: 0;
  color: var(--ink);
  font-weight: 700;
  padding: 12px;
  position: fixed;
  text-align: center;
  width: 100%;
  z-index: 500;
}

@media (max-width: 1050px) {
  .desktop-nav,
  .nav-actions > .btn {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .cards.four {
    grid-template-columns: repeat(2, 1fr);
  }

  .tour-layout {
    grid-template-columns: 1fr;
  }

  .tour-aside {
    display: none;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 800px) {
  .cards.three,
  .cards.two,
  .split,
  .contact-layout,
  .cta-box,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .highlight-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-box {
    align-items: start;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group.full {
    grid-column: 1;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, 1200px);
  }

  .nav-shell {
    height: 76px;
  }

  .brand img {
    height: 50px;
  }

  .mobile-panel.open {
    max-height: calc(100vh - 76px);
  }

  .hero {
    min-height: 640px;
    padding-top: 76px;
  }

  .hero::after {
    background: linear-gradient(
      135deg,
      rgba(6, 26, 58, 0.97) 0%,
      rgba(6, 45, 122, 0.85) 60%,
      rgba(6, 45, 122, 0.55) 100%
    );
  }

  .hero-actions .btn {
    width: 100%;
  }

  .trust-grid,
  .cards.four,
  .stats,
  .form-grid,
  .inclusions,
  .meal-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .form-group.full {
    grid-column: 1;
  }

  .page-header {
    padding: 112px 0 44px;
  }

  .tour-hero {
    padding-top: 100px;
  }

  .tour-cover {
    border-radius: 24px;
    height: 430px;
  }

  .tour-cover > img {
    object-position: 58% center;
  }

  .tour-cover-content {
    padding: 20px;
  }

  .day summary {
    gap: 10px;
    padding: 14px;
  }

  .day-number {
    height: 46px;
    width: 46px;
  }

  .language-toggle .globe {
    display: none;
  }

  /* Mobile touch sizes */
  .field {
    font-size: 16px; /* Prevent iOS zoom */
    min-height: 52px;
  }

  .btn {
    min-height: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
