:root {
  --ink: #5e7361;
  --muted: #7f8c7b;
  --line: #e1e4d3;
  --bg-soft: #f5e4d0;
  --accent: #c98b7d;
  --accent-dark: #b06f61;
  --wa: #25d366;
  --cream: #fcfaf3;
  --radius-lg: 24px;
  --radius: 16px;
  --font: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-head: 'Archivo', 'Poppins', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

h1, h2, h3, h4, h5, h6,
.btn, .tab, .eyebrow, .card-name, .dest-pill, .nav-menu-links a,
.footer-col h4, .form-field label, .filter-item label,
.filter-item select, .filter-item input, .logo-text b, .faq-q,
.feature h3, .block h3, .contact-card h3, .checklist-card h3,
.review-author b, .status-pill, .admin-tabs button, .breadcrumb,
.select-trigger, .select-value, .dp-title, .mobile-nav a,
.card-cta, .filter-cta, .logo-text small, .section-head h2,
.page-hero h1, .admin-head h1, .grid-note {
  font-family: var(--font-head);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 15px; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(252,250,243,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  position: relative;
  display: flex; align-items: center; gap: 20px;
  height: 72px;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
}
.logo img { height: 44px; width: auto; flex-shrink: 0; border-radius: 12px; }
.logo-text {
  display: flex; flex-direction: column; line-height: 1.15;
  white-space: nowrap;
}
.logo-text b { font-size: 18px; font-weight: 800; letter-spacing: -.02em; }
.logo-text small {
  font-size: 10px; font-weight: 600; letter-spacing: .09em;
  text-transform: uppercase; color: var(--muted); margin-top: 2px;
}

.main-nav {
  display: flex; gap: 2px;
  margin: 0 auto;
  flex: 1 1 auto; justify-content: center;
  min-width: 0;
}
.main-nav a {
  padding: 9px 13px; border-radius: 999px; font-size: 14px; font-weight: 600;
  color: #444; transition: .15s; white-space: nowrap;
}
.main-nav a:hover { background: var(--bg-soft); color: var(--ink); }
.main-nav a.active { background: var(--ink); color: #fff; }

.header-right {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0; margin-left: auto;
}
.header-phone {
  display: flex; flex-direction: column; align-items: flex-end;
  line-height: 1.25; white-space: nowrap;
}
.header-phone .phone-num { font-size: 15px; font-weight: 800; letter-spacing: -.01em; }
.header-phone small { font-size: 10.5px; font-weight: 600; color: var(--muted); letter-spacing: .04em; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--ink); color: #fff; font-weight: 700; font-size: 14.5px;
  padding: 12px 22px; border-radius: 999px; transition: .15s; white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(0,0,0,.14); }
.btn-red { background: var(--accent); }
.btn-red:hover { background: var(--accent-dark); }
.btn-wa { background: var(--wa); color: #0b3d1f; }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; box-shadow: none; }
.btn-sm { padding: 10px 18px; font-size: 13.5px; }

.nav-toggle { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 12px; border: 1.5px solid var(--line); margin-left: auto; }

/* ---------- Nav menu (dropdown on desktop, full-screen on mobile) ---------- */
.nav-menu {
  position: fixed; top: 76px; right: max(20px, calc((100vw - 1180px) / 2));
  width: 300px; z-index: 120;
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,.16); padding: 10px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.nav-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-menu-head { display: none; }
.menu-close {
  width: 42px; height: 42px; border-radius: 12px; border: 1.5px solid var(--line);
  display: flex; align-items: center; justify-content: center; color: var(--ink);
}
.nav-menu-links { display: flex; flex-direction: column; }
.nav-menu-links a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px; border-radius: 12px; font-weight: 700; font-size: 15px; color: var(--ink);
}
.nav-menu-links a:hover { background: var(--bg-soft); }
.nav-menu-links a.active { color: var(--accent); }
.nav-menu-links a::after { content: '→'; color: #ccc; font-weight: 600; }
.nav-menu-actions {
  display: flex; flex-direction: column; gap: 10px; padding: 12px 8px 6px;
  margin-top: 6px; border-top: 1px solid var(--line);
}
.nav-menu-actions .btn { width: 100%; }

@media (max-width: 960px) {
  .nav-menu {
    top: 0; right: 0; left: 0; width: auto; height: 100%;
    border: none; border-radius: 0; box-shadow: none; padding: 0 22px 28px;
    transform: translateY(-102%); visibility: hidden;
    transition: transform .3s cubic-bezier(.4,0,.2,1), visibility .3s;
    display: flex; flex-direction: column; overflow-y: auto;
  }
  .nav-menu.open { transform: translateY(0); visibility: visible; }
  .nav-menu-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 0; border-bottom: 1px solid var(--line);
  }
  .nav-menu-links { flex: 1; padding-top: 10px; }
  .nav-menu-links a {
    padding: 16px 4px; font-size: 19px; font-weight: 800; letter-spacing: -.01em;
    border-bottom: 1px solid var(--line); border-radius: 0;
  }
  .nav-menu-actions { border-top: none; margin-top: auto; }
  body.menu-open { overflow: hidden; }
}

/* ---------- Hero ---------- */
.hero { text-align: center; padding: 56px 0 34px; }
.hero h1 {
  font-size: clamp(34px, 5.2vw, 58px); font-weight: 800; letter-spacing: -.035em;
  line-height: 1.08; max-width: 900px; margin: 0 auto;
}
/* ---------- Write highlight (SVG circle around important words) ---------- */
.write { position: relative; }
.write svg { position: absolute; top: 0; left: 0; width: 100%; height: auto; pointer-events: none; }
.write[data-write=circle] svg { top: -44%; left: -6%; width: 125%; }
[data-page="about"] .write[data-write=circle] svg { top: -4%; width: 130%; }
[data-page="services"] .write[data-write=circle] svg { top: -20%; width: 133%; }
.write[data-write=circle] svg path { stroke-dasharray: 780; stroke-dashoffset: 780; }
.write.show[data-write=circle] svg path {
  -webkit-animation: write-circle .8s ease-in forwards;
  animation: write-circle .8s ease-in forwards;
}
@-webkit-keyframes write-circle { 0% { stroke-dashoffset: 780; } 100% { stroke-dashoffset: 0; } }
@keyframes write-circle { 0% { stroke-dashoffset: 780; } 100% { stroke-dashoffset: 0; } }
.hero p.sub { margin: 18px auto 0; color: var(--muted); font-size: 17.5px; max-width: 620px; }

/* ---------- Search / filter bar ---------- */
.filter-bar {
  display: flex; align-items: center; flex-wrap: wrap; gap: 4px;
  background: #fff; border: 1.5px solid var(--line); border-radius: 999px;
  padding: 6px; max-width: 1060px; margin: 36px auto 0;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}
.filter-item {
  display: flex; flex-direction: column; gap: 2px;
  padding: 8px 18px; border-radius: 999px; cursor: pointer;
  border: none; background: none; text-align: left; min-width: 150px;
}
.filter-item:hover { background: var(--bg-soft); }
.filter-item label { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.filter-item select {
  border: none; background-color: transparent; font-weight: 700; font-size: 14px;
  color: var(--ink); cursor: pointer; width: 100%; outline: none;
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  padding-right: 22px;
  background-image: url('assets/icons/chevron-down.svg');
  background-repeat: no-repeat; background-position: right 2px center; background-size: 14px;
}
.filter-item input[type="text"] {
  border: none; background: none; font-weight: 700; font-size: 14px; outline: none; width: 100%;
}
.filter-item input[type="date"] {
  position: relative; border: none; background-color: transparent;
  font-weight: 700; font-size: 14px; outline: none; width: 100%;
  appearance: none; -webkit-appearance: none;
  padding-right: 22px;
  background-image: url('assets/icons/calendar.svg');
  background-repeat: no-repeat; background-position: right 2px center; background-size: 16px;
}
.filter-item input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer;
}
.filter-sep { width: 1px; height: 30px; background: var(--line); }
.filter-cta {
  margin-left: auto; background: var(--ink); color: #fff; font-weight: 700;
  padding: 13px 26px; border-radius: 999px; font-size: 14.5px; transition: .15s;
}
.filter-cta:hover { background: var(--accent); }

/* ---------- Search autocomplete ---------- */
.search-item { position: relative; }
.search-suggest {
  position: absolute; top: calc(100% + 10px); left: 0; right: 0; z-index: 40;
  background: rgba(255,255,255,.98); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,.16); list-style: none; padding: 8px; margin: 0;
  display: none; max-height: 340px; overflow: auto;
  animation: suggest-in .18s ease;
}
.search-suggest.show { display: block; }
@keyframes suggest-in { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.search-suggest li {
  display: flex; align-items: center; gap: 12px; padding: 10px 12px;
  border-radius: 12px; cursor: pointer; transition: background .12s;
}
.search-suggest li:hover, .search-suggest li.active { background: var(--bg-soft); }
.search-suggest .sg-flag {
  width: 30px; height: 30px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--line);
}
.search-suggest .sg-name { flex: 1; font-weight: 700; font-size: 15px; color: var(--ink); }
.search-suggest .sg-name b { color: var(--accent); font-weight: 800; }
.search-suggest .sg-chip {
  font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em;
  padding: 4px 10px; border-radius: 999px; background: var(--ink); color: #fff; flex-shrink: 0;
}
.search-suggest .sg-chip.tour { background: var(--accent); }
.search-suggest .sg-empty { padding: 14px; color: var(--muted); font-size: 14px; text-align: center; cursor: default; }
.search-suggest .sg-empty:hover { background: transparent; }

/* ---------- Custom select dropdowns ---------- */
.custom-select { position: relative; }
.select-trigger {
  display: flex; align-items: center; gap: 8px; width: 100%;
  font-weight: 700; font-size: 14px; color: var(--ink); padding: 0; cursor: pointer;
}
.select-value { flex: 1; text-align: left; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.select-caret { width: 14px; height: 14px; color: var(--muted); flex-shrink: 0; transition: transform .18s; }
.custom-select.open .select-caret { transform: rotate(180deg); }
.select-menu {
  position: absolute; top: calc(100% + 8px); left: 0; z-index: 40;
  min-width: 200px; background: rgba(255,255,255,.98); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0,0,0,.16); list-style: none; padding: 6px; margin: 0;
  display: none; animation: suggest-in .18s ease;
  max-height: 340px; overflow: auto;
}
.custom-select.open .select-menu { display: block; }
.select-menu li {
  padding: 10px 12px; border-radius: 10px; cursor: pointer;
  font-weight: 600; font-size: 14px; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  transition: background .12s;
}
.select-menu li:hover { background: var(--bg-soft); }
.select-menu li.active { color: var(--accent); }
.select-menu li.active::after { content: '✓'; font-weight: 800; }
.select-menu li.sg-group {
  padding: 8px 12px 4px; font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .06em; color: var(--muted);
  cursor: default;
}
.select-menu li.sg-group:hover { background: transparent; }

/* ---------- Custom date picker ---------- */
.date-select.open .select-caret { transform: none; }
.date-picker {
  position: absolute; top: calc(100% + 8px); left: 0; z-index: 40;
  width: 260px; background: rgba(255,255,255,.98); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0,0,0,.16); padding: 12px; margin: 0;
  display: none; animation: suggest-in .18s ease;
}
.custom-select.open .date-picker { display: block; }
.dp-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.dp-title { font-weight: 800; font-size: 14px; }
.dp-nav {
  width: 30px; height: 30px; border-radius: 9px; border: 1.5px solid var(--line);
  display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; color: var(--ink);
  cursor: pointer;
}
.dp-nav:hover { background: var(--bg-soft); }
.dp-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.dp-dow { text-align: center; font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; padding: 4px 0; }
.dp-day {
  height: 34px; border-radius: 9px; font-size: 13.5px; font-weight: 600; color: var(--ink);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.dp-day:hover { background: var(--bg-soft); }
.dp-day.empty { cursor: default; }
.dp-day.empty:hover { background: none; }
.dp-day.disabled { color: #ccc; cursor: default; }
.dp-day.disabled:hover { background: none; }
.dp-day.today { box-shadow: inset 0 0 0 1.5px var(--accent); }
.dp-day.selected { background: var(--ink); color: #fff; }

/* ---------- Tabs ---------- */
.tabs { display: flex; justify-content: center; gap: 8px; margin: 44px auto 26px; }
.tab {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 26px; border-radius: 999px; font-weight: 700; font-size: 15px;
  color: #555; border: 1.5px solid var(--line); background: #fff; transition: .15s;
}
.tab svg { width: 18px; height: 18px; }
.tab:hover { border-color: #bbb; }
.tab.active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ---------- Country grid ---------- */
.grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(248px, 1fr));
}
.grid-note { text-align: center; color: var(--muted); font-size: 14px; padding: 30px 0; }
.grid-note.hidden { display: none; }

.card {
  position: relative; overflow: hidden;
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  transition: .18s; display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(0,0,0,.1); }
.card-banner { height: 108px; display: flex; align-items: center; justify-content: center; position: relative; }
.card-banner.has-photo { background-size: cover; background-position: center; }
.card-banner-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,.18), rgba(0,0,0,0) 55%); }
.card-flag {
  width: 56px; height: 56px; border-radius: 50%; overflow: hidden;
  border: 3.5px solid #fff; box-shadow: 0 4px 12px rgba(0,0,0,.22);
  background: #fff; display: flex; align-items: center; justify-content: center;
}
.card-flag img { width: 100%; height: 100%; object-fit: cover; }
.card-badge {
  position: absolute; top: 10px; right: 10px;
  background: rgba(255,255,255,.92); color: var(--accent);
  font-size: 10.5px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
}
.card-body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.card-name { font-size: 17px; font-weight: 800; letter-spacing: -.01em; }
.card-rows { margin: 12px 0 14px; display: flex; flex-direction: column; gap: 7px; }
.card-row { display: flex; justify-content: space-between; gap: 12px; font-size: 13.2px; }
.card-row b { font-weight: 700; white-space: nowrap; }
.card-row span { color: var(--muted); text-align: right; }
.card-docs { font-size: 12.4px; color: var(--muted); border-top: 1px dashed var(--line); padding-top: 10px; margin-top: auto; }
.card-docs b { color: #444; }
.card-cta {
  margin-top: 12px; display: inline-flex; align-items: center; gap: 6px;
  font-size: 13.5px; font-weight: 800; color: var(--accent);
}
.card-cta svg { width: 15px; height: 15px; transition: .15s; }
.card:hover .card-cta svg { transform: translateX(3px); }

/* ---------- Section titles ---------- */
.section { padding: 56px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 30px; }
.section-head .eyebrow { font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }
.section-head h2 { font-size: clamp(26px, 3.6vw, 40px); font-weight: 800; letter-spacing: -.03em; margin-top: 8px; }
.section-head p { color: var(--muted); margin-top: 10px; font-size: 16px; }

/* ---------- Tagline strip ---------- */
.tagline-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 26px 20px; text-align: center; }
.tagline-strip p { font-size: 17px; color: #333; font-weight: 600; max-width: 720px; margin: 0 auto; }

/* ---------- Wall of love ---------- */
.wall { background: var(--bg-soft); }
.wall-marquee {
  overflow: hidden; white-space: nowrap; margin: 20px 0 30px;
  font-size: clamp(56px, 9vw, 110px); font-weight: 800; letter-spacing: -.04em; line-height: 1;
  color: var(--ink);
}
.marquee-track { display: inline-flex; animation: marquee-scroll 26s linear infinite; }
.marquee-track > span { display: inline-block; padding-right: 40px; }
.wall-marquee .accent { color: var(--accent); }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.wall-reviews { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.review-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 22px; }
.review-stars { color: #f5a623; letter-spacing: 2px; font-size: 15px; }
.review-card blockquote { margin: 12px 0 16px; font-size: 14.5px; color: #333; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%; background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px;
}
.review-author b { font-size: 13.5px; display: block; }
.review-author small { color: var(--muted); font-size: 12px; }
.wall-badge {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 28px;
  background: #fff; border: 1.5px solid var(--line); border-radius: 999px;
  padding: 10px 20px; font-weight: 700; font-size: 14px;
}
.wall-badge svg { width: 16px; height: 16px; }

/* ---------- Footer ---------- */
.site-footer { background: #fff; border-top: 1px solid var(--line); padding: 56px 0 24px; }
.footer-grid { display: grid; gap: 36px; grid-template-columns: 2fr 1fr 1fr 1.3fr; margin-bottom: 40px; }
.footer-brand p { color: var(--muted); font-size: 14px; margin-top: 12px; max-width: 300px; }
.footer-col h4 { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 16px; }
.footer-col a, .footer-col p { display: block; color: #555; font-size: 14px; padding: 5px 0; }
.footer-col a:hover { color: var(--accent); }
.socials { display: flex; gap: 10px; margin-top: 14px; }
.socials a {
  width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid var(--line);
  display: flex; align-items: center; justify-content: center; transition: .15s;
}
.socials a:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.socials svg { width: 17px; height: 17px; }
.footer-bottom {
  border-top: 1px solid var(--line); padding-top: 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  color: var(--muted); font-size: 13.5px;
}
.footer-bottom a { color: #444; font-weight: 600; }
.footer-bottom a:hover { color: var(--accent); }

/* ---------- Floating widgets ---------- */
.float-wa {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--wa); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(37,211,102,.45); transition: .15s;
}
.float-wa:hover { transform: scale(1.08); }
.float-wa svg { width: 30px; height: 30px; }

.support-card {
  position: fixed; right: 22px; bottom: 96px; z-index: 59;
  width: 330px; background: #fff; border-radius: 18px; border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(0,0,0,.16); overflow: hidden;
  display: none;
}
.support-card.open { display: block; animation: pop .2s ease; }
@keyframes pop { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.support-head { background: var(--ink); color: #fff; padding: 16px 18px; display: flex; align-items: center; gap: 12px; }
.support-head .ic { width: 40px; height: 40px; border-radius: 50%; background: #222; display: flex; align-items: center; justify-content: center; }
.support-head b { font-size: 15px; display: block; }
.support-head small { color: #9a9a9a; }
.support-body { padding: 16px 18px; }
.support-body p { font-size: 13.5px; color: #555; margin-bottom: 14px; }
.support-body .btn { width: 100%; }

/* ---------- Mobile bottom nav ---------- */
.mobile-nav {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
  background: rgba(255,255,255,.96); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line); padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
}
.mobile-nav a {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px;
  font-size: 10.5px; font-weight: 700; color: #777; padding: 6px;
}
.mobile-nav a.active { color: var(--accent); }
.mobile-nav svg { width: 21px; height: 21px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: 54px 0 30px; text-align: center; }
.page-hero h1 { font-size: clamp(30px, 4.4vw, 48px); font-weight: 800; letter-spacing: -.03em; }
.page-hero p { color: var(--muted); max-width: 600px; margin: 12px auto 0; font-size: 16.5px; }
.breadcrumb { font-size: 12.5px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 10px; }
.breadcrumb a:hover { color: var(--accent); }

/* ---------- Content blocks ---------- */
.content-grid { display: grid; gap: 40px; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); padding: 30px 0 20px; }
.block h3 { font-size: 21px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 12px; }
.block p { color: #444; font-size: 15.5px; margin-bottom: 12px; }
.block ul { list-style: none; }
.block li { padding: 9px 0 9px 30px; position: relative; color: #333; font-size: 15px; border-bottom: 1px solid var(--line); }
.block li:last-child { border-bottom: none; }
.block li::before { content: ''; position: absolute; left: 2px; top: 15px; width: 9px; height: 9px; border-radius: 3px; background: var(--accent); transform: rotate(45deg); }

.feature-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); padding-bottom: 40px; }
.feature {
  background: var(--bg-soft); border-radius: var(--radius); padding: 26px; transition: .15s;
}
.feature:hover { background: #fff; box-shadow: 0 10px 26px rgba(0,0,0,.08); }
.feature .ic { width: 46px; height: 46px; border-radius: 14px; background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.feature .ic svg { width: 22px; height: 22px; }
.feature h3 { font-size: 17px; font-weight: 800; margin-bottom: 6px; }
.feature p { color: var(--muted); font-size: 14px; }

/* ---------- Forms ---------- */
.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px; box-shadow: 0 10px 30px rgba(0,0,0,.05); max-width: 640px; margin: 0 auto 40px;
}
.form-card.wide { max-width: 860px; }
.form-card h2 { font-size: 22px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 6px; }
.form-card .hint { color: var(--muted); font-size: 14px; margin-bottom: 22px; }
.form-row { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; margin-bottom: 16px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field label { font-size: 13px; font-weight: 700; }
.form-field label small { color: var(--muted); font-weight: 500; }
.form-field input, .form-field select, .form-field textarea {
  border: 1.5px solid var(--line); border-radius: 12px; padding: 13px 15px; outline: none;
  transition: .15s; background: #fff;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--ink); }
.form-field textarea { min-height: 110px; resize: vertical; }
.form-field .err { color: var(--accent); font-size: 12px; display: none; }
.form-field.invalid input, .form-field.invalid select { border-color: var(--accent); }
.form-field.invalid .err { display: block; }
.form-actions { display: flex; gap: 12px; align-items: center; margin-top: 8px; flex-wrap: wrap; }
.form-note { font-size: 12.5px; color: var(--muted); }
.success-box {
  display: none; text-align: center; padding: 34px 20px;
}
.success-box.show { display: block; }
.success-box .tick { width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 50%; background: #e8f8ef; color: #1e9e50; display: flex; align-items: center; justify-content: center; }
.success-box .tick svg { width: 28px; height: 28px; }
.success-box h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.success-box p { color: var(--muted); font-size: 14.5px; margin-bottom: 18px; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto 50px; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1.5px solid var(--line); border-radius: 16px; overflow: hidden; background: #fff; }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 18px 22px; font-size: 15.5px; font-weight: 700; text-align: left; color: var(--ink);
}
.faq-q svg { width: 18px; height: 18px; transition: .2s; flex-shrink: 0; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 22px 20px; color: #555; font-size: 14.5px; }
.faq-item.open .faq-a { display: block; }

/* ---------- Checklist ---------- */
.checklist-wrap { max-width: 860px; margin: 0 auto 60px; }
.checklist-dest { margin-bottom: 14px; }
.checklist-results { display: none; }
.checklist-results.show { display: block; }
.checklist-card { background: #fff; border: 1.5px solid var(--line); border-radius: 20px; padding: 26px 28px; margin-top: 18px; }
.checklist-card h3 { display: flex; align-items: center; gap: 12px; font-size: 20px; font-weight: 800; }
.checklist-card h3 img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; }
.checklist-items { list-style: none; margin-top: 18px; }
.checklist-items li {
  display: flex; align-items: center; gap: 14px; padding: 12px 4px;
  border-bottom: 1px solid var(--line); font-size: 15px;
}
.checklist-items li:last-child { border-bottom: none; }
.checklist-items li.done { color: #aaa; text-decoration: line-through; }
.checkbox {
  width: 22px; height: 22px; border-radius: 7px; border: 2px solid #ccc; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; transition: .15s; color: #fff;
}
.checkbox svg { width: 13px; height: 13px; }
.checklist-items li.checked .checkbox { background: var(--accent); border-color: var(--accent); }
.checklist-progress { margin-top: 20px; }
.progress-track { height: 8px; background: var(--line); border-radius: 99px; overflow: hidden; }
.progress-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--accent), var(--accent-dark)); border-radius: 99px; transition: .3s; }
.checklist-progress small { color: var(--muted); font-size: 12.5px; display: block; margin-top: 8px; }

/* ---------- Contact info ---------- */
.contact-cards { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); margin-bottom: 44px; }
.contact-card { background: var(--bg-soft); border-radius: 18px; padding: 24px; }
.contact-card .ic { width: 42px; height: 42px; border-radius: 12px; background: #fff; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.contact-card .ic svg { width: 20px; height: 20px; }
.contact-card h3 { font-size: 15.5px; font-weight: 800; margin-bottom: 5px; }
.contact-card p { color: var(--muted); font-size: 14px; }
.contact-card p b { color: #333; }

/* ---------- Admin ---------- */
.admin-body { background: var(--bg-soft); }
.admin-shell { max-width: 1080px; margin: 0 auto; padding: 30px 20px 80px; }
.admin-head { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; flex-wrap: wrap; }
.admin-head h1 { font-size: 26px; font-weight: 800; letter-spacing: -.02em; }
.admin-head .btn { margin-left: auto; }
.admin-tabs { display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.admin-tabs button {
  padding: 10px 18px; border-radius: 999px; font-weight: 700; font-size: 14px;
  border: 1.5px solid var(--line); background: #fff;
}
.admin-tabs button.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.admin-download {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 12px 16px; margin-bottom: 18px;
}
.admin-download-title { font-family: var(--font-head); font-weight: 800; font-size: 14px; }
.admin-dl-field { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--muted); }
.admin-dl-field input {
  border: 1.5px solid var(--line); border-radius: 9px; padding: 7px 10px;
  font-size: 13px; background: #fff; color: var(--ink); outline: none;
}
.admin-dl-field input:focus { border-color: var(--ink); }
.admin-download .btn { margin-left: auto; }
.admin-table-wrap { background: #fff; border: 1px solid var(--line); border-radius: 18px; overflow: auto; }
table.admin-table { width: 100%; border-collapse: collapse; min-width: 760px; font-size: 14px; }
.admin-table th {
  text-align: left; padding: 13px 16px; font-size: 11.5px; text-transform: uppercase;
  letter-spacing: .06em; color: var(--muted); border-bottom: 1px solid var(--line); background: #fcfcfc;
}
.admin-table td { padding: 13px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
.admin-table tr:last-child td { border-bottom: none; }
.status-pill { display: inline-block; padding: 4px 12px; border-radius: 999px; font-size: 12px; font-weight: 800; }
.status-New { background: #fff3cd; color: #8a6d00; }
.status-Contacted { background: #e3f2fd; color: #0b5fa8; }
.status-Done { background: #e8f8ef; color: #1e7a44; }
.status-Cancelled { background: #fde8e8; color: #b02a2a; }
.admin-table select { padding: 7px 10px; border-radius: 9px; border: 1.5px solid var(--line); font-size: 13px; background: #fff; }
.admin-table .small { font-size: 12px; color: var(--muted); }
.admin-actions { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.icon-btn { padding: 7px 11px; border-radius: 9px; font-size: 12.5px; font-weight: 700; border: 1.5px solid var(--line); background: #fff; }
.icon-btn:hover { border-color: var(--ink); }
.icon-btn.danger:hover { border-color: var(--accent); color: var(--accent); }
.login-card { max-width: 380px; margin: 80px auto; }
.login-card .logo-big { display: flex; justify-content: center; margin-bottom: 18px; }
.login-card .logo-big img { height: 54px; }
.admin-empty { padding: 40px; text-align: center; color: var(--muted); }
.admin-checklist-row { display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.admin-checklist-row:last-child { border-bottom: none; }
.admin-checklist-row b { font-size: 14.5px; }
.admin-checklist-row small { color: var(--muted); display: block; }
.admin-check-edit { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 22px; margin-top: 18px; }
.admin-check-edit textarea { width: 100%; min-height: 180px; border: 1.5px solid var(--line); border-radius: 12px; padding: 14px; font-size: 13.5px; resize: vertical; outline: none; }
.admin-check-edit textarea:focus { border-color: var(--ink); }

/* ---------- Misc ---------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.hidden { display: none !important; }
.small { font-size: 13px; color: var(--muted); }
.page-pad { padding-bottom: 60px; }
.dest-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 10px; padding-bottom: 44px; }
.dest-pill {
  display: flex; align-items: center; gap: 11px; background: var(--bg-soft);
  border-radius: 999px; padding: 10px 16px; font-weight: 700; font-size: 14px; transition: .15s;
  border: 1.5px solid transparent;
}
.dest-pill:hover { background: #fff; border-color: var(--ink); }
.dest-pill img { width: 24px; height: 24px; border-radius: 50%; object-fit: cover; }

/* ---------- Folder card (tour cards) ---------- */
.folder-card {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 3.9;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.22)) drop-shadow(0 6px 6px rgba(0, 0, 0, 0.18));
  transition: filter .3s ease-in-out;
  cursor: pointer;
}
.folder-card:hover {
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.38)) drop-shadow(0 10px 10px rgba(0, 0, 0, 0.28));
}
.folder-shape {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: url(#folder-shape);
}
.folder-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.3) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,.45) 100%);
  z-index: 1;
}
.top-badge {
  position: absolute; top: 15px; left: 15px; z-index: 2;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff; padding: 4px 12px; border-radius: 15px;
  font-size: 12px; font-weight: 700; letter-spacing: .02em;
}
.destination-name {
  position: absolute; top: 64px; left: 24px; z-index: 2;
  font-size: clamp(28px, 3.2vw, 40px); font-weight: 800; line-height: 1.05;
  color: #fff; text-shadow: 0 2px 4px rgba(0,0,0,.35);
}
.bottom-bar {
  position: absolute; bottom: 22px; left: 14px; right: 14px; z-index: 2;
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  background-color: rgba(0, 0, 0, 0.72);
  padding: 11px 16px; border-radius: 30px;
}
.location {
  display: flex; align-items: center; gap: 7px;
  color: #fff; font-size: 12.5px; font-weight: 600;
  overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
}
.location svg { width: 14px; height: 14px; color: #ff5252; flex-shrink: 0; }
.book-btn {
  background: transparent; color: #fff; border: none;
  font-weight: 800; font-size: 13.5px; cursor: pointer;
  display: inline-flex; align-items: center; gap: 5px; flex-shrink: 0;
}
.book-btn:hover { color: #ff8a80; }

/* ---------- Responsive ---------- */
@media (max-width: 1280px) {
  .header-phone { display: none; }
}
@media (max-width: 1040px) {
  .header-right .btn-red { display: none; }
}
@media (max-width: 960px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .mobile-nav { display: flex; }
  body { padding-bottom: 66px; }
  .float-wa { bottom: 84px; }
  .support-card { right: 12px; left: 12px; width: auto; bottom: 152px; }
  .form-row { grid-template-columns: 1fr; }
  .filter-bar { border-radius: 24px; }
  .filter-item { min-width: calc(50% - 4px); }
  .filter-cta { width: 100%; }
  .filter-sep { display: none; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 40px; }
  .grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
  .card-banner { height: 88px; }
  .card-flag { width: 46px; height: 46px; }
  .card-body { padding: 12px 14px 14px; }
  .card-name { font-size: 15px; }
  .card-row { font-size: 12px; }
}
@media (max-width: 640px) {
  .logo-text { display: none; }
  .logo img { height: 38px; }
  .header-inner { height: 64px; gap: 12px; }
  .header-right { gap: 10px; }
  .main-nav a { padding: 8px 11px; font-size: 13.5px; }
  .filter-bar { padding: 8px; }
  .filter-item { padding: 8px 14px; }
  .tabs { gap: 6px; }
  .tab { padding: 10px 18px; font-size: 14px; }
}
