/* ─── Design tokens ─────────────────────────────────────────────────── */
:root {
  --bg: #F2FAF6;
  --card: #FFFFFF;
  --dark: #071510;
  --forest: #1A7A50;
  --forest2: #0D5538;
  --gold: #E8A830;
  --aqua: #5DCAA5;
  --terra: #C85A1A;
  --text: #071510;
  --muted: #4A7060;
  --sand: #C0E0D0;
  --border: rgba(7, 21, 16, 0.08);
  --shadow: 0 2px 12px rgba(7, 21, 16, 0.08);
  --radius: 12px;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
}

/* ─── Reset ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); background: var(--bg); color: var(--text); -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font-family: var(--font-sans); cursor: pointer; }

/* ─── Nav ───────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 1.25rem;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s;
}
.nav.scrolled { background: var(--dark); box-shadow: 0 1px 12px rgba(0,0,0,0.3); }
.nav-logo {
  font-family: var(--font-serif);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-logo .ti { font-size: 18px; color: var(--aqua); }
.nav-r { display: flex; align-items: center; gap: 1.25rem; }
.nav-r a { font-size: 12px; color: rgba(255,255,255,0.65); text-decoration: none; transition: color .15s; }
.nav-r a:hover { color: #fff; }
.nav-cta {
  background: var(--forest) !important;
  color: #fff !important;
  padding: 5px 13px;
  border-radius: 6px;
  font-weight: 500;
  border: 0.5px solid rgba(93,202,165,0.3) !important;
}

/* ─── Section shared ────────────────────────────────────────────────── */
.section { padding: 1.25rem; }
.sh { display: flex; align-items: center; gap: 10px; margin-bottom: 0.85rem; }
.sh-title { font-family: var(--font-serif); font-size: 18px; color: var(--text); white-space: nowrap; }
.sh-line { flex: 1; height: 0.5px; background: var(--border); }
.section-title { font-family: var(--font-serif); font-size: 21px; color: var(--text); margin-bottom: 5px; line-height: 1.2; }
.section-sub { font-size: 12px; color: var(--muted); margin-bottom: 1rem; line-height: 1.6; }

/* ─── Why grid ──────────────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.why-card { background: var(--card); border: 0.5px solid var(--border); border-radius: var(--radius); padding: 13px; }
.wicon { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; margin-bottom: 8px; }
.wg { background: #D0EEE2; color: var(--forest2); }
.wa { background: #FEF0E2; color: var(--terra); }
.wb { background: #E8EAF8; color: #3C4AB7; }
.wq { background: #FFF8D0; color: #8A6800; }
.why-title { font-size: 12px; font-weight: 500; margin-bottom: 3px; }
.why-desc { font-size: 10px; color: var(--muted); line-height: 1.5; }

/* ─── How it works ──────────────────────────────────────────────────── */
.how-steps { display: flex; flex-direction: column; }
.step { display: flex; gap: 12px; align-items: flex-start; padding-bottom: 1rem; }
.step:last-child { padding-bottom: 0; }
.step-l { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.step-num { width: 28px; height: 28px; border-radius: 50%; background: var(--forest); color: #fff; font-size: 11px; font-weight: 500; display: flex; align-items: center; justify-content: center; }
.step-line { width: 1px; flex: 1; min-height: 20px; background: var(--border); margin-top: 3px; }
.step-body { padding-top: 4px; }
.step-title { font-size: 12px; font-weight: 500; margin-bottom: 2px; }
.step-desc { font-size: 11px; color: var(--muted); line-height: 1.5; }

/* ─── Destination cards ─────────────────────────────────────────────── */
.dest-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.dc { border-radius: var(--radius); overflow: hidden; position: relative; height: 110px; cursor: pointer; }
.dc img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.dc:hover img { transform: scale(1.04); }
.dc-grad { position: absolute; inset: 0; background: linear-gradient(to top, rgba(4,10,7,0.9) 0%, transparent 55%); }
.dc-badge { position: absolute; top: 8px; right: 8px; background: rgba(93,202,165,0.15); border: 0.5px solid rgba(93,202,165,0.3); border-radius: 20px; padding: 2px 7px; font-size: 9px; color: var(--aqua); }
.dc-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 8px 10px; }
.dc-name { font-family: var(--font-serif); font-size: 13px; color: #fff; }
.dc-tag { font-size: 9px; color: rgba(255,255,255,0.45); margin-top: 1px; }

/* ─── Testimonials ──────────────────────────────────────────────────── */
.testi-cards { display: flex; flex-direction: column; gap: 8px; }
.tc { background: var(--card); border: 0.5px solid var(--border); border-radius: var(--radius); padding: 13px; }
.tc-text { font-size: 12px; color: var(--text); line-height: 1.6; margin-bottom: 8px; font-style: italic; }
.tc-foot { display: flex; align-items: center; gap: 8px; }
.tc-av { width: 28px; height: 28px; border-radius: 50%; background: var(--forest); color: #fff; font-size: 11px; font-weight: 500; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tc-name { font-size: 11px; font-weight: 500; }
.tc-dest { font-size: 10px; color: var(--muted); }
.tc-stars { margin-left: auto; color: var(--gold); font-size: 11px; }

/* ─── Blog scroll ───────────────────────────────────────────────────── */
.blog-scroll { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; -webkit-overflow-scrolling: touch; }
.blog-scroll::-webkit-scrollbar { display: none; }
.bc { min-width: 170px; background: var(--card); border: 0.5px solid var(--border); border-radius: var(--radius); overflow: hidden; flex-shrink: 0; cursor: pointer; text-decoration: none; }
.bc-img { height: 86px; overflow: hidden; }
.bc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.bc:hover .bc-img img { transform: scale(1.04); }
.bc-body { padding: 9px 10px; }
.bc-tag { font-size: 9px; color: var(--forest); font-weight: 500; text-transform: uppercase; letter-spacing: 0.3px; margin-bottom: 3px; }
.bc-title { font-size: 11px; font-weight: 500; color: var(--text); line-height: 1.4; margin-bottom: 3px; }
.bc-meta { font-size: 9px; color: var(--muted); }

/* ─── Footer ────────────────────────────────────────────────────────── */
.footer { background: var(--dark); border-top: 0.5px solid rgba(93,202,165,0.1); }
.footer-inner { padding: 1.5rem 1.25rem; max-width: 800px; margin: 0 auto; }
.footer-top { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1rem; }
.footer-logo { font-family: var(--font-serif); color: var(--gold); font-size: 17px; display: flex; align-items: center; gap: 6px; margin-bottom: 6px; }
.footer-logo .ti { color: var(--aqua); }
.footer-sub { font-size: 11px; color: rgba(255,255,255,0.5); line-height: 1.6; max-width: 300px; }
.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.footer-col-title { font-size: 10px; text-transform: uppercase; letter-spacing: 0.5px; color: rgba(255,255,255,0.3); margin-bottom: 6px; }
.footer-col a { display: block; font-size: 11px; color: rgba(255,255,255,0.6); text-decoration: none; margin-bottom: 5px; }
.footer-col a:hover { color: var(--aqua); }
.footer-divider { height: 0.5px; background: rgba(255,255,255,0.08); margin-bottom: 12px; }
.footer-bottom { font-size: 10px; color: rgba(255,255,255,0.4); line-height: 1.7; }
.footer-bottom a { color: rgba(255,255,255,0.55); text-decoration: none; }
.footer-bottom a:hover { color: var(--aqua); }

/* ─── Loading overlay ───────────────────────────────────────────────── */
.loading-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(7,21,16,0.85);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.loading-card { background: var(--card); border-radius: 16px; padding: 2rem; text-align: center; max-width: 300px; width: 90%; }
.loading-spinner {
  width: 40px; height: 40px; border-radius: 50%;
  border: 3px solid var(--sand);
  border-top-color: var(--forest);
  animation: spin 0.8s linear infinite;
  margin: 0 auto 1rem;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading-title { font-family: var(--font-serif); font-size: 16px; color: var(--text); margin-bottom: 1rem; }
.ls { font-size: 11px; color: var(--muted); padding: 4px 0; opacity: 0.3; transition: opacity .3s; }
.ls.active { opacity: 1; color: var(--forest); }

/* ─── Utilities ─────────────────────────────────────────────────────── */
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
