/* ============================================================
   EZPZ Travel Q&A — Main Stylesheet
   Aesthetic: Warm editorial travel — saffron, deep teal, cream
   Fonts: Sora (UI) + Lora (editorial body)
   ============================================================ */

/* ---- Variables ---- */
:root {
  --saffron:   #E8640A;
  --saffron-lt:#FFF0E6;
  --saffron-dk:#B84D00;
  --teal:      #0F6E6E;
  --teal-lt:   #E6F4F4;
  --teal-dk:   #094F4F;
  --cream:     #FDFAF5;
  --sand:      #F5EFE4;
  --ink:       #1A1410;
  --ink-mid:   #3D2E22;
  --ink-soft:  #7A6552;
  --border:    #E2D5C4;
  --white:     #FFFFFF;
  --green:     #2D7A2D;
  --green-lt:  #EDF7ED;
  --red:       #C0392B;
  --red-lt:    #FDECEA;
  --shadow-sm: 0 1px 4px rgba(26,20,16,.08);
  --shadow-md: 0 4px 16px rgba(26,20,16,.10);
  --shadow-lg: 0 8px 32px rgba(26,20,16,.13);
  --radius:    10px;
  --radius-lg: 16px;
  --transition: .18s ease;
  --font-ui:   'Sora', sans-serif;
  --font-body: 'Lora', serif;
  --max-w:     1140px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-ui);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal-dk); }
ul { list-style: none; }

/* ---- Utility ---- */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 2px solid var(--saffron);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex; align-items: center; gap: 24px;
  height: 64px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  color: var(--ink); font-weight: 700; font-size: 1.15rem;
  flex-shrink: 0;
}
.logo:hover { color: var(--saffron); }
.logo-icon { font-size: 1.4rem; }
.logo-text em { color: var(--saffron); font-style: normal; }
.nav-links {
  display: flex; align-items: center; gap: 4px;
  margin-left: auto;
}
.nav-links a {
  color: var(--ink-mid); font-size: .9rem; font-weight: 500;
  padding: 6px 12px; border-radius: 6px;
  transition: background var(--transition), color var(--transition);
}
.nav-links a:hover { background: var(--sand); color: var(--ink); }
.btn-ask {
  background: var(--saffron) !important;
  color: var(--white) !important;
  border-radius: 8px !important;
  padding: 8px 16px !important;
  font-weight: 600 !important;
}
.btn-ask:hover { background: var(--saffron-dk) !important; }
.nav-user { display: flex; align-items: center; gap: 8px; }
.user-pill {
  display: flex; align-items: center; gap: 7px;
  background: var(--sand); border-radius: 20px;
  padding: 5px 12px 5px 6px;
  font-size: .85rem; font-weight: 600; color: var(--ink);
}
.avatar-sm {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--saffron); color: #fff;
  font-size: .75rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.btn-ghost {
  border: 1.5px solid var(--border); border-radius: 8px;
  padding: 6px 14px; font-size: .85rem; font-weight: 600;
  color: var(--ink-mid);
}
.btn-ghost:hover { border-color: var(--saffron); color: var(--saffron); }
.btn-primary-sm {
  background: var(--teal); color: #fff;
  border-radius: 8px; padding: 6px 14px;
  font-size: .85rem; font-weight: 600;
}
.btn-primary-sm:hover { background: var(--teal-dk); color: #fff; }
.admin-badge {
  background: var(--teal-lt); color: var(--teal);
  border-radius: 6px; padding: 4px 10px;
  font-size: .78rem; font-weight: 700;
}
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
}
.mobile-nav {
  display: none; flex-direction: column;
  background: var(--white); border-bottom: 2px solid var(--sand);
  padding: 8px 20px 16px;
}
.mobile-nav a {
  color: var(--ink-mid); font-size: .95rem; font-weight: 500;
  padding: 10px 0; border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav.open { display: flex; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--teal-dk) 0%, var(--teal) 60%, #1A8A6E 100%);
  padding: 72px 0 60px;
  position: relative; overflow: hidden;
}
.hero::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='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner { position: relative; text-align: center; }
.hero-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.12); color: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px; padding: 5px 16px;
  font-size: .8rem; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-body);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600; color: #fff;
  line-height: 1.2; margin-bottom: 16px;
}
.hero h1 em { color: #FFD166; font-style: normal; }
.hero-sub {
  color: rgba(255,255,255,.82); font-size: 1.1rem;
  max-width: 580px; margin: 0 auto 36px;
}
.hero-search {
  display: flex; max-width: 600px; margin: 0 auto 28px;
  background: #fff; border-radius: 50px;
  box-shadow: 0 4px 24px rgba(0,0,0,.18);
  overflow: hidden;
}
.hero-search input {
  flex: 1; border: none; outline: none;
  padding: 15px 22px; font-family: var(--font-ui);
  font-size: 1rem; color: var(--ink); background: transparent;
}
.hero-search button {
  background: var(--saffron); color: #fff; border: none;
  padding: 0 28px; font-weight: 700; font-size: .95rem;
  cursor: pointer; transition: background var(--transition);
}
.hero-search button:hover { background: var(--saffron-dk); }
.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.hero-tag {
  background: rgba(255,255,255,.12); color: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px; padding: 5px 14px;
  font-size: .82rem; transition: background var(--transition);
  cursor: pointer;
}
.hero-tag:hover { background: rgba(255,255,255,.22); color: #fff; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--saffron);
  padding: 14px 0;
}
.stats-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.stat-item { text-align: center; color: #fff; }
.stat-num { font-size: 1.4rem; font-weight: 700; line-height: 1; }
.stat-lbl { font-size: .72rem; opacity: .88; text-transform: uppercase; letter-spacing: .04em; }

/* ============================================================
   LAYOUT: Two column
   ============================================================ */
.page-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 28px;
  padding: 40px 0;
  align-items: start;
}
.main-col {}
.side-col {}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-hd {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.section-hd h2 {
  font-family: var(--font-body);
  font-size: 1.45rem; font-weight: 600; color: var(--ink);
}
.section-hd a { font-size: .85rem; color: var(--teal); font-weight: 600; }

/* ============================================================
   QUESTION CARD
   ============================================================ */
.q-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  margin-bottom: 12px;
  transition: box-shadow var(--transition), border-color var(--transition);
  display: flex; gap: 18px;
}
.q-card:hover {
  box-shadow: var(--shadow-md);
  border-color: #d0c4b4;
}
.q-votes {
  display: flex; flex-direction: column; align-items: center;
  min-width: 44px; gap: 2px;
}
.vote-btn {
  background: none; border: 1.5px solid var(--border);
  width: 34px; height: 34px; border-radius: 8px;
  font-size: 1rem; cursor: pointer; color: var(--ink-soft);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.vote-btn:hover { border-color: var(--saffron); color: var(--saffron); background: var(--saffron-lt); }
.vote-count { font-size: .85rem; font-weight: 700; color: var(--ink-mid); }
.q-body { flex: 1; min-width: 0; }
.q-title {
  font-family: var(--font-body);
  font-size: 1.05rem; font-weight: 600; color: var(--ink);
  line-height: 1.35; margin-bottom: 7px;
  display: block;
}
.q-title:hover { color: var(--teal); }
.q-excerpt {
  font-size: .88rem; color: var(--ink-soft);
  line-height: 1.5; margin-bottom: 10px;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.q-meta {
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap; font-size: .78rem; color: var(--ink-soft);
}
.q-cat {
  background: var(--teal-lt); color: var(--teal);
  border-radius: 5px; padding: 2px 9px;
  font-weight: 600; font-size: .76rem;
}
.q-answers-badge {
  background: var(--green-lt); color: var(--green);
  border-radius: 5px; padding: 2px 9px;
  font-weight: 600; font-size: .76rem;
}
.q-answers-badge.zero { background: var(--sand); color: var(--ink-soft); }
.q-guide-badge {
  background: #FFF4D6; color: #8B5E00;
  border-radius: 5px; padding: 2px 9px;
  font-weight: 600; font-size: .76rem;
}
.ai-badge {
  background: #EEF2FF; color: #4338CA;
  border-radius: 5px; padding: 2px 9px;
  font-size: .72rem; font-weight: 600;
}

/* ============================================================
   CATEGORY PILLS
   ============================================================ */
.cat-pills {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px;
}
.cat-pill {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 20px; padding: 6px 16px;
  font-size: .83rem; font-weight: 600; color: var(--ink-mid);
  cursor: pointer; transition: all var(--transition);
}
.cat-pill:hover, .cat-pill.active {
  background: var(--teal); color: #fff; border-color: var(--teal);
}

/* ============================================================
   SIDEBAR WIDGETS
   ============================================================ */
.widget {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px;
  margin-bottom: 20px;
}
.widget h3 {
  font-size: .95rem; font-weight: 700; color: var(--ink);
  margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 2px solid var(--sand);
}
.widget-book {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dk) 100%);
  color: #fff; text-align: center;
}
.widget-book h3 { color: #fff; border-bottom-color: rgba(255,255,255,.2); }
.widget-book p { font-size: .88rem; opacity: .9; margin-bottom: 14px; }
.btn-book {
  display: block; background: var(--saffron); color: #fff;
  border-radius: 8px; padding: 10px; font-weight: 700;
  font-size: .9rem; text-align: center; margin-bottom: 8px;
}
.btn-book:hover { background: var(--saffron-dk); color: #fff; }
.btn-call {
  display: block; background: rgba(255,255,255,.15); color: #fff;
  border: 1px solid rgba(255,255,255,.3); border-radius: 8px;
  padding: 9px; font-weight: 600; font-size: .88rem; text-align: center;
}
.btn-call:hover { background: rgba(255,255,255,.25); color: #fff; }
.route-list li {
  display: flex; justify-content: space-between;
  align-items: center; padding: 8px 0;
  border-bottom: 1px solid var(--sand); font-size: .87rem;
}
.route-list li:last-child { border-bottom: none; }
.route-list a { color: var(--ink); font-weight: 500; }
.route-list a:hover { color: var(--teal); }
.route-fare {
  font-weight: 700; color: var(--saffron); font-size: .85rem;
}
.top-user {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; border-bottom: 1px solid var(--sand);
}
.top-user:last-child { border-bottom: none; }
.avatar-md {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--teal); color: #fff;
  font-size: .85rem; font-weight: 700; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.top-user-info { flex: 1; min-width: 0; }
.top-user-name { font-size: .88rem; font-weight: 600; color: var(--ink); }
.top-user-badge { font-size: .75rem; color: var(--ink-soft); }
.top-user-pts { font-size: .82rem; font-weight: 700; color: var(--saffron); }

/* ============================================================
   QUESTION DETAIL PAGE
   ============================================================ */
.q-detail-header {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 30px;
  margin-bottom: 24px;
}
.q-detail-header h1 {
  font-family: var(--font-body);
  font-size: 1.7rem; font-weight: 600; color: var(--ink);
  line-height: 1.3; margin-bottom: 14px;
}
.q-detail-meta {
  display: flex; gap: 14px; flex-wrap: wrap;
  font-size: .82rem; color: var(--ink-soft);
  padding-bottom: 14px; border-bottom: 1px solid var(--border);
  margin-bottom: 14px;
}
.q-detail-body {
  font-family: var(--font-body);
  font-size: 1rem; color: var(--ink-mid); line-height: 1.75;
}
.answer-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px 26px;
  margin-bottom: 14px;
}
.answer-card.official {
  border-left: 4px solid var(--saffron);
  background: #FFFCF8;
}
.answer-card.ai-gen {
  border-left: 4px solid #818CF8;
  background: #FAFAFE;
}
.answer-header {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px; flex-wrap: wrap;
}
.answer-author { font-size: .85rem; font-weight: 600; color: var(--ink); }
.answer-time { font-size: .78rem; color: var(--ink-soft); }
.official-badge {
  background: var(--saffron-lt); color: var(--saffron-dk);
  border-radius: 5px; padding: 2px 9px;
  font-size: .76rem; font-weight: 700;
}
.answer-body {
  font-family: var(--font-body); font-size: .97rem;
  color: var(--ink-mid); line-height: 1.78;
}
.answer-body h2 { font-size: 1.2rem; font-weight: 600; margin: 18px 0 8px; }
.answer-body h3 { font-size: 1.05rem; font-weight: 600; margin: 16px 0 7px; color: var(--teal); }
.answer-body p { margin-bottom: 12px; }
.answer-body ul { padding-left: 20px; margin-bottom: 12px; }
.answer-body ul li { list-style: disc; margin-bottom: 4px; }
.answer-body strong { font-weight: 700; color: var(--ink); }
.answer-body a { color: var(--teal); text-decoration: underline; }
.answer-body table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: .9rem; }
.answer-body th { background: var(--sand); padding: 8px 12px; text-align: left; font-weight: 700; border: 1px solid var(--border); }
.answer-body td { padding: 8px 12px; border: 1px solid var(--border); }
.answer-body tr:nth-child(even) td { background: #FDFAF5; }
.answer-footer {
  display: flex; align-items: center; gap: 10px;
  margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--border);
}
.vote-helpful {
  background: var(--sand); border: 1.5px solid var(--border);
  border-radius: 8px; padding: 6px 14px;
  font-size: .82rem; font-weight: 600; color: var(--ink-mid);
  cursor: pointer; transition: all var(--transition);
  display: flex; align-items: center; gap: 5px;
}
.vote-helpful:hover { background: var(--teal-lt); color: var(--teal); border-color: var(--teal); }
.vote-helpful.voted { background: var(--teal-lt); color: var(--teal); border-color: var(--teal); }
.flag-btn {
  margin-left: auto; font-size: .78rem; color: var(--ink-soft);
  background: none; border: none; cursor: pointer; padding: 4px 8px;
}
.flag-btn:hover { color: var(--red); }

/* ============================================================
   ANSWER FORM
   ============================================================ */
.answer-form-wrap {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 26px 28px;
}
.answer-form-wrap h3 {
  font-family: var(--font-body); font-size: 1.2rem;
  font-weight: 600; margin-bottom: 18px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: .85rem; font-weight: 600;
  color: var(--ink-mid); margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px; font-family: var(--font-ui);
  font-size: .95rem; color: var(--ink);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(15,110,110,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.btn-submit {
  background: var(--saffron); color: #fff; border: none;
  border-radius: 8px; padding: 12px 28px;
  font-family: var(--font-ui); font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: background var(--transition);
}
.btn-submit:hover { background: var(--saffron-dk); }
.form-note { font-size: .78rem; color: var(--ink-soft); margin-top: 8px; }

/* ============================================================
   GUIDE / LONG-FORM PAGE
   ============================================================ */
.guide-hero {
  background: linear-gradient(135deg, #2C4A3E 0%, var(--teal) 100%);
  padding: 56px 0 48px; text-align: center;
}
.guide-hero h1 {
  font-family: var(--font-body);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  color: #fff; font-weight: 600; line-height: 1.25;
  max-width: 800px; margin: 0 auto 16px;
}
.guide-breadcrumb {
  font-size: .82rem; color: rgba(255,255,255,.7); margin-bottom: 14px;
}
.guide-breadcrumb a { color: rgba(255,255,255,.8); }
.guide-meta-row {
  display: flex; gap: 20px; justify-content: center;
  font-size: .82rem; color: rgba(255,255,255,.75); flex-wrap: wrap;
}
.guide-body {
  font-family: var(--font-body); font-size: 1.02rem;
  color: var(--ink-mid); line-height: 1.82;
}
.guide-body h2 {
  font-size: 1.5rem; font-weight: 600; color: var(--ink);
  margin: 32px 0 14px; padding-bottom: 8px;
  border-bottom: 2px solid var(--sand);
}
.guide-body h3 {
  font-size: 1.15rem; font-weight: 600; color: var(--teal);
  margin: 22px 0 10px;
}
.guide-body h4 { font-size: 1rem; font-weight: 700; margin: 16px 0 8px; }
.guide-body p { margin-bottom: 14px; }
.guide-body ul { padding-left: 22px; margin-bottom: 14px; }
.guide-body ul li { list-style: disc; margin-bottom: 6px; }
.guide-body strong { font-weight: 700; color: var(--ink); }
.guide-body em { font-style: italic; }
.guide-body a { color: var(--teal); text-decoration: underline; }
.guide-body hr { border: none; border-top: 1px solid var(--border); margin: 28px 0; }
.guide-body table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: .92rem; }
.guide-body th { background: var(--sand); padding: 10px 14px; text-align: left; font-weight: 700; border: 1px solid var(--border); }
.guide-body td { padding: 10px 14px; border: 1px solid var(--border); }
.guide-body tr:nth-child(even) td { background: var(--sand); }
.image-hint {
  background: var(--teal-lt); border-left: 3px solid var(--teal);
  border-radius: 6px; padding: 10px 14px;
  font-size: .85rem; color: var(--teal-dk); margin: 14px 0;
}
.image-hint::before { content: '📸 '; }
.guide-cta-box {
  background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-dk) 100%);
  border-radius: var(--radius-lg); padding: 24px 28px;
  color: #fff; margin: 28px 0;
}
.guide-cta-box h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.guide-cta-box p { font-size: .9rem; opacity: .92; margin-bottom: 14px; }
.guide-cta-box a {
  display: inline-block; background: #fff; color: var(--saffron-dk);
  border-radius: 8px; padding: 9px 20px; font-weight: 700; font-size: .9rem;
  margin-right: 8px; margin-bottom: 6px;
}
.guide-cta-box a:hover { background: var(--cream); }

/* ============================================================
   DESTINATION CARDS
   ============================================================ */
.dest-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px; margin-bottom: 32px;
}
.dest-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.dest-card:hover {
  box-shadow: var(--shadow-md); transform: translateY(-3px);
}
.dest-img {
  height: 130px;
  background: linear-gradient(135deg, var(--teal-dk), var(--teal));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.dest-info { padding: 14px 16px; }
.dest-name { font-weight: 700; font-size: .95rem; color: var(--ink); margin-bottom: 4px; }
.dest-state { font-size: .78rem; color: var(--ink-soft); margin-bottom: 8px; }
.dest-fare {
  font-size: .82rem; font-weight: 700; color: var(--saffron);
}
.dest-qs { font-size: .78rem; color: var(--ink-soft); }

/* ============================================================
   FARE TABLE
   ============================================================ */
.fare-table-wrap { overflow-x: auto; }
.fare-table {
  width: 100%; border-collapse: collapse;
  font-size: .9rem; background: var(--white);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.fare-table th {
  background: var(--teal); color: #fff; padding: 12px 16px;
  text-align: left; font-size: .82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .03em;
}
.fare-table td { padding: 11px 16px; border-bottom: 1px solid var(--border); }
.fare-table tr:last-child td { border-bottom: none; }
.fare-table tr:hover td { background: var(--sand); }
.fare-table td:nth-child(3),
.fare-table td:nth-child(4),
.fare-table td:nth-child(5) {
  font-weight: 700; color: var(--saffron);
}
.fare-table .book-link {
  background: var(--saffron); color: #fff;
  border-radius: 6px; padding: 5px 12px;
  font-size: .8rem; font-weight: 700;
  white-space: nowrap;
}
.fare-table .book-link:hover { background: var(--saffron-dk); }

/* ============================================================
   REVIEWS
   ============================================================ */
.review-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 22px 24px;
  margin-bottom: 14px;
}
.review-header {
  display: flex; align-items: flex-start;
  justify-content: space-between; margin-bottom: 10px;
}
.stars { color: #F59E0B; font-size: 1.1rem; letter-spacing: 1px; }
.review-route {
  font-size: .8rem; background: var(--sand);
  border-radius: 5px; padding: 2px 9px; color: var(--ink-soft);
}
.review-text {
  font-family: var(--font-body); font-size: .96rem;
  color: var(--ink-mid); line-height: 1.7; margin-bottom: 12px;
}
.review-author {
  font-size: .8rem; color: var(--ink-soft);
  display: flex; gap: 10px; align-items: center;
}
.review-author strong { color: var(--ink); }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
  display: flex; gap: 6px; justify-content: center;
  padding: 28px 0;
}
.page-btn {
  border: 1.5px solid var(--border); border-radius: 8px;
  padding: 7px 13px; font-size: .88rem; font-weight: 600;
  color: var(--ink-mid); background: var(--white);
  cursor: pointer; transition: all var(--transition);
}
.page-btn:hover { border-color: var(--teal); color: var(--teal); }
.page-btn.active { background: var(--teal); color: #fff; border-color: var(--teal); }
.page-btn:disabled { opacity: .4; cursor: default; }

/* ============================================================
   ALERTS / MESSAGES
   ============================================================ */
.alert {
  border-radius: 8px; padding: 12px 16px;
  font-size: .9rem; margin-bottom: 16px;
  display: flex; align-items: flex-start; gap: 10px;
}
.alert-success { background: var(--green-lt); color: #155724; border: 1px solid #C3E6CB; }
.alert-error   { background: var(--red-lt);   color: #721C24; border: 1px solid #F5C6CB; }
.alert-info    { background: var(--teal-lt);  color: var(--teal-dk); border: 1px solid #B2DFDF; }
.alert-warn    { background: #FFF3CD; color: #856404; border: 1px solid #FFE69C; }

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  background: var(--ink); padding: 36px 0;
}
.cta-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.cta-label { font-size: .78rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 3px; }
.cta-text { color: #fff; font-size: 1.1rem; font-weight: 600; }
.cta-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-cta {
  background: var(--saffron); color: #fff;
  border-radius: 8px; padding: 11px 22px;
  font-weight: 700; font-size: .95rem;
}
.btn-cta:hover { background: var(--saffron-dk); color: #fff; }
.btn-cta-outline {
  border: 2px solid rgba(255,255,255,.4); color: #fff;
  border-radius: 8px; padding: 9px 20px; font-weight: 600; font-size: .9rem;
}
.btn-cta-outline:hover { border-color: #fff; color: #fff; }
.btn-wa {
  background: #25D366; color: #fff;
  border-radius: 8px; padding: 11px 22px;
  font-weight: 700; font-size: .95rem;
}
.btn-wa:hover { background: #1DA855; color: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #100D0A; padding: 56px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px; padding-bottom: 40px;
}
.footer-brand .logo { margin-bottom: 12px; }
.footer-logo { color: #fff; }
.footer-brand p {
  font-size: .85rem; color: rgba(255,255,255,.55);
  line-height: 1.65;
}
.footer-meta { margin-top: 10px; }
.footer-meta a { color: var(--saffron); }
.footer-links h4 {
  font-size: .8rem; font-weight: 700; color: rgba(255,255,255,.5);
  text-transform: uppercase; letter-spacing: .07em; margin-bottom: 14px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: .86rem; color: rgba(255,255,255,.6); }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
}
.footer-bottom-inner {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.35); }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { font-size: .8rem; color: rgba(255,255,255,.4); }
.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* ============================================================
   ADMIN — basic
   ============================================================ */
.admin-wrap { padding: 32px 0; }
.admin-header {
  background: var(--ink); color: #fff; padding: 18px 24px;
  border-radius: var(--radius); margin-bottom: 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.admin-header h1 { font-size: 1.3rem; font-weight: 700; }
.admin-grid { display: grid; grid-template-columns: 220px 1fr; gap: 24px; }
.admin-nav {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.admin-nav a {
  display: flex; align-items: center; gap: 9px;
  padding: 11px 16px; font-size: .88rem; font-weight: 500;
  color: var(--ink-mid); border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.admin-nav a:last-child { border-bottom: none; }
.admin-nav a:hover, .admin-nav a.active { background: var(--sand); color: var(--ink); }
.stat-cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  margin-bottom: 24px;
}
.stat-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px 20px;
  text-align: center;
}
.stat-card .num { font-size: 2rem; font-weight: 700; color: var(--saffron); }
.stat-card .lbl { font-size: .78rem; color: var(--ink-soft); margin-top: 4px; }
.data-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.data-table th { background: var(--sand); padding: 10px 14px; text-align: left; font-weight: 700; border-bottom: 2px solid var(--border); }
.data-table td { padding: 10px 14px; border-bottom: 1px solid var(--border); }
.data-table tr:hover td { background: #FDFAF5; }
.badge-pub   { background: var(--green-lt); color: var(--green); border-radius: 4px; padding: 2px 8px; font-size: .75rem; font-weight: 700; }
.badge-pend  { background: #FFF3CD; color: #856404; border-radius: 4px; padding: 2px 8px; font-size: .75rem; font-weight: 700; }
.badge-rej   { background: var(--red-lt); color: var(--red); border-radius: 4px; padding: 2px 8px; font-size: .75rem; font-weight: 700; }
.action-btns { display: flex; gap: 6px; flex-wrap: wrap; }
.btn-sm { padding: 4px 10px; border-radius: 5px; font-size: .78rem; font-weight: 700; border: none; cursor: pointer; transition: opacity .15s; }
.btn-sm:hover { opacity: .85; }
.btn-approve { background: var(--green); color: #fff; }
.btn-reject  { background: var(--red); color: #fff; }
.btn-edit    { background: var(--teal); color: #fff; }
.btn-delete  { background: #888; color: #fff; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .page-layout { grid-template-columns: 1fr; }
  .side-col { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stat-cards { grid-template-columns: 1fr 1fr; }
  .admin-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .nav-links { display: none; }
  .nav-user { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  .hero { padding: 48px 0 40px; }
  .stats-inner { gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .q-card { flex-direction: column; }
  .q-votes { flex-direction: row; gap: 10px; }
}
