/* =============================================
   ASSISTANCE TOUR — SHARED DESIGN SYSTEM
   Brand: Poppins · Sage · Ivory · Ink
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scrollbar-width: none; }
html::-webkit-scrollbar { display: none; }

:root {
  --ink:       #0A0A0A;
  --sage:      #111111;
  --ivory:     #F4F4F4;
  --white:     #FFFFFF;
  --muted:     #6B7280;
  --border:    #E2E2E2;
  --sage-dark: #000000;
  --font:      'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius:    16px;
  --radius-sm: 8px;
  --radius-pill: 999px;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.07);
  --shadow-hover: 0 20px 60px rgba(0,0,0,0.13);
  --tr: all 0.25s cubic-bezier(0.4,0,0.2,1);
}

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

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
svg { overflow: hidden; flex-shrink: 0; }

/* ── LANGUAGE SYSTEM ───────────────────────────────────── */
html[lang="en"] [data-lang="ru"]:not(.lang-btn):not(.mnv-lang-btn) { display: none !important; }
html[lang="ru"] [data-lang="en"]:not(.lang-btn):not(.mnv-lang-btn) { display: none !important; }
label[data-lang] { display: none; }
html[lang="en"] label[data-lang="en"] { display: block !important; }
html[lang="ru"] label[data-lang="ru"] { display: block !important; }
.lang-btn, .mnv-lang-btn { display: inline-flex !important; align-items: center; }

/* ── CONTAINER ─────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── SECTIONS ──────────────────────────────────────────── */
.section     { padding: 96px 0; }
.section-sm  { padding: 64px 0; }
.section-ivory { background: var(--ivory); }
.section-ink   { background: var(--ink); }
.section-sage  { background: var(--sage); }

@media (max-width: 1024px) { .section { padding: 64px 0; } .section-sm { padding: 48px 0; } }
@media (max-width: 640px)  { .section { padding: 48px 0; } .section-sm { padding: 40px 0; } }

/* ── TYPOGRAPHY ────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--sage);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700; color: var(--ink); line-height: 1.15;
  margin-bottom: 16px;
}
.section-title.light { color: #fff; }
.section-desc {
  font-size: 1rem; color: var(--muted); line-height: 1.8;
  max-width: 560px;
}
.section-desc.light { color: rgba(255,255,255,0.75); }

/* ── BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-family: var(--font); font-size: 0.9rem; font-weight: 600;
  transition: var(--tr); cursor: pointer; border: 2px solid transparent;
  text-decoration: none; white-space: nowrap;
}
.btn-sage   { background: var(--ink);  color: #fff; border-color: var(--ink); }
.btn-sage:hover { background: var(--sage-dark); border-color: var(--sage-dark); transform: translateY(-1px); }
.btn-white  { background: #fff; color: #000; border-color: #fff; }
.btn-white:hover { background: rgba(255,255,255,0.88); border-color: rgba(255,255,255,0.88); transform: translateY(-1px); }
.btn-ghost  { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-ink    { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-ink:hover { background: #000; border-color: #000; }
.btn-sm { padding: 10px 20px; font-size: 0.82rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* ── NAVIGATION ────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 900;
  background: #000;
  transition: background 0.35s, box-shadow 0.35s, padding 0.35s;
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; padding: 0 24px;
  transition: height 0.35s;
}
.nav.scrolled .nav-inner { height: 60px; }
.nav.scrolled {
  background: #000;
  box-shadow: 0 1px 0 rgba(255,255,255,0.08);
}
.nav.solid {
  background: #000;
  box-shadow: 0 1px 0 rgba(255,255,255,0.08);
}
.nav.solid .nav-inner { height: 68px; }

.nav-logo {
  display: flex; align-items: center;
  flex-shrink: 0; line-height: 0;
}
.nav-logo-img {
  height: 38px; width: auto;
  display: block;
  transition: opacity 0.2s ease;
}
.nav-logo:hover .nav-logo-img { opacity: 0.85; }

/* Legacy: kept in case any page still uses logo-mark */
.logo-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; min-width: 36px;
  background: #fff; color: #000;
  border-radius: var(--radius-sm);
  font-size: 0.82rem; font-weight: 800; letter-spacing: -0.02em;
}

.footer-logo-img {
  height: 36px; width: auto; display: block; opacity: 0.92;
}
.footer-brand-row {
  display: flex; align-items: center; margin-bottom: 14px;
}

.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-links a {
  color: rgba(255,255,255,0.82); font-size: 0.875rem; font-weight: 500;
  padding: 8px 14px; border-radius: var(--radius-pill);
  transition: var(--tr);
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.1); }
.nav-links a.active { color: #fff; background: rgba(255,255,255,0.12); }

/* ── DROPDOWN NAV ───────────────────────────── */
.nav-dropdown { position: relative; }

.nav-dd-trigger {
  display: flex; align-items: center; gap: 5px;
  color: rgba(255,255,255,0.82); font-size: 0.875rem; font-weight: 500;
  padding: 8px 14px; border-radius: var(--radius-pill);
  transition: var(--tr); cursor: pointer; white-space: nowrap;
}
.nav-dd-trigger:hover,
.nav-dropdown.dd-open .nav-dd-trigger { color: #fff !important; background: rgba(255,255,255,0.1); }
.nav-dd-trigger.active,
.nav-dropdown.dd-open .nav-dd-trigger.active { color: #fff !important; background: rgba(255,255,255,0.12); }

.nav-chevron { flex-shrink: 0; transition: transform 0.22s ease; }
.nav-dropdown.dd-open .nav-chevron { transform: rotate(180deg); }

.nav-dd-panel {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: #fff; border-radius: 14px;
  box-shadow: 0 16px 56px rgba(0,0,0,0.13), 0 2px 8px rgba(0,0,0,0.05);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0s linear 0.15s;
  z-index: 1000;
}
.nav-dropdown.dd-open .nav-dd-panel {
  opacity: 1; visibility: visible; pointer-events: all;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.15s ease, transform 0.15s ease;
}

/* Mega menu — Destinations (2 cols) */
.nav-dd-mega {
  display: grid; grid-template-columns: 1fr 1fr;
  min-width: 380px; overflow: hidden;
}
.nav-dd-col { padding: 20px 22px; }
.nav-dd-col:first-child { border-right: 1px solid var(--border); }
.nav-dd-country {
  font-size: 0.68rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--muted);
  margin-bottom: 10px; padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.nav-dd-col a {
  display: block; font-size: 0.855rem; color: var(--ink);
  padding: 5px 0; transition: color 0.14s; font-weight: 400;
}
.nav-dd-col a:hover { color: #000; font-weight: 500; }
.nav-dd-all {
  display: block; margin-top: 10px; padding-top: 10px !important;
  border-top: 1px solid var(--border);
  font-size: 0.78rem !important; font-weight: 600 !important;
  color: var(--ink) !important;
}
.nav-dd-all:hover { color: #000 !important; }

/* Services dropdown (single col) */
.nav-dd-svc {
  left: 0; transform: translateY(-6px);
  min-width: 210px;
}
.nav-dropdown.dd-open .nav-dd-svc {
  transform: translateY(0);
}
.nav-dd-svc a {
  display: block; font-size: 0.855rem; color: var(--ink);
  padding: 8px 20px; transition: background 0.14s;
  white-space: nowrap;
}
.nav-dd-svc a:first-child { border-radius: 14px 14px 0 0; padding-top: 14px; }
.nav-dd-svc a:last-child  { border-radius: 0 0 14px 14px; padding-bottom: 14px; }
.nav-dd-svc a:hover { background: var(--ivory); }

/* Mobile: tap-to-open dropdowns */
@media (max-width: 960px) {
  .nav-dd-panel { display: none; opacity: 1; visibility: visible; transform: none;
    position: static; box-shadow: none; border-radius: 8px;
    background: rgba(255,255,255,0.06); margin: 4px 0 4px 12px; padding: 8px 0; }
  .nav-dropdown.dd-open .nav-dd-panel { display: block; }
  .nav-dd-mega { grid-template-columns: 1fr; min-width: unset; }
  .nav-dd-col { padding: 8px 12px; }
  .nav-dd-col:first-child { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .nav-dd-col a, .nav-dd-svc a { color: rgba(255,255,255,0.85); padding: 5px 0; }
  .nav-dd-country { color: rgba(255,255,255,0.45); }
  .nav-dd-all { color: rgba(255,255,255,0.6) !important; }
  .nav-dd-svc { left: unset; min-width: unset; }
  .nav-dd-svc a { padding: 6px 12px; border-radius: 0 !important; }
  .nav-dd-svc a:hover { background: rgba(255,255,255,0.08); }
  .nav-chevron { display: inline-block; }
  .nav-dropdown.dd-open .nav-chevron { transform: rotate(180deg); }
}

.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
/* Nav CTA always shows as white button on dark nav */
.nav-actions .btn { background: #fff; color: #000; border-color: #fff; }
.nav-actions .btn:hover { background: rgba(255,255,255,0.88); border-color: rgba(255,255,255,0.88); transform: translateY(-1px); }

.lang-toggle {
  display: flex; gap: 2px;
  background: rgba(255,255,255,0.1); border-radius: var(--radius-pill); padding: 3px;
}
.lang-btn {
  padding: 5px 12px; border-radius: var(--radius-pill);
  font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.6);
  transition: var(--tr); cursor: pointer; background: none; border: none;
}
.lang-btn.active { background: #fff; color: #000; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; cursor: pointer; background: none; border: none; z-index: 10;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px; transition: var(--tr);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV ────────────────────────────────────────── */
.mobile-nav {
  position: fixed; inset: 0; z-index: 960;
  background: var(--ink);
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
  padding: 0;
  overflow-y: auto;
  scrollbar-width: none;
}
.mobile-nav::-webkit-scrollbar { display: none; }
.mobile-nav.open { transform: translateX(0); }

.mnv-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 32px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mnv-logo { font-size: 1rem; font-weight: 700; color: #fff; }
.mnv-close {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.2rem; cursor: pointer; border: none;
  transition: var(--tr);
}
.mnv-close:hover { background: rgba(255,255,255,0.15); }

.mnv-links { flex: 1; padding: 16px 0; }
.mnv-links a {
  display: flex; align-items: center; justify-content: space-between;
  color: rgba(255,255,255,0.85); font-size: 1.1rem; font-weight: 500;
  padding: 18px 32px; border-bottom: 1px solid rgba(255,255,255,0.06);
  opacity: 0; transform: translateX(24px);
  transition: opacity 0.3s, transform 0.3s, color 0.2s;
}
.mobile-nav.open .mnv-links a { opacity: 1; transform: none; }
.mobile-nav.open .mnv-links a:nth-child(1) { transition-delay: 0.06s; }
.mobile-nav.open .mnv-links a:nth-child(2) { transition-delay: 0.1s; }
.mobile-nav.open .mnv-links a:nth-child(3) { transition-delay: 0.14s; }
.mobile-nav.open .mnv-links a:nth-child(4) { transition-delay: 0.18s; }
.mobile-nav.open .mnv-links a:nth-child(5) { transition-delay: 0.22s; }
.mobile-nav.open .mnv-links a:nth-child(6) { transition-delay: 0.26s; }
.mnv-links a:hover { color: #fff; }

.mnv-footer {
  padding: 24px 32px; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column; gap: 12px; align-items: stretch;
}
.mnv-footer .btn {
  width: 100%; justify-content: center;
  background: #fff !important; color: #000 !important;
}
.mnv-lang-toggle {
  display: flex; gap: 2px; align-self: flex-start;
  background: rgba(255,255,255,0.08); border-radius: var(--radius-pill); padding: 3px;
}
.mnv-lang-btn {
  padding: 6px 14px; border-radius: var(--radius-pill);
  font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.6);
  transition: var(--tr); cursor: pointer; background: none; border: none;
  display: inline-flex !important;
}
.mnv-lang-btn.active { background: #fff; color: #000; }

/* ── FOOTER ────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand-row {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
}
.footer-brand-icon {
  width: 32px; height: 32px; background: var(--sage);
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
}
.footer-brand-name { font-size: 1rem; font-weight: 700; color: #fff; }
.footer-tagline {
  font-size: 0.875rem; line-height: 1.75; color: rgba(255,255,255,0.45);
  margin-bottom: 24px; max-width: 280px;
}
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); transition: var(--tr);
}
.footer-social a:hover { background: #fff; color: #000; }

.footer h4 {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.footer ul li { margin-bottom: 11px; }
.footer ul li a {
  font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: color 0.2s;
}
.footer ul li a:hover { color: #fff; }

.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 12px;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: rgba(255,255,255,0.45); }
.footer-contact-item span, .footer-contact-item a {
  font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.5;
  transition: color 0.2s;
}
.footer-contact-item a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-bottom a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--sage); }

/* ── CARDS ─────────────────────────────────────────────── */
.tour-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}
.tour-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.tour-card:hover .tc-img img { transform: scale(1.05); }
.tc-img { height: 220px; overflow: hidden; position: relative; background: var(--border); }
.tc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.tc-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--sage); color: #fff;
  font-size: 0.72rem; font-weight: 600;
  padding: 4px 12px; border-radius: var(--radius-pill);
}
.tc-featured {
  position: absolute; top: 12px; left: 12px;
  background: #F59E0B; color: #fff;
  font-size: 0.72rem; font-weight: 600;
  padding: 4px 12px; border-radius: var(--radius-pill);
}
.tc-body { padding: 20px; }
.tc-dest {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--sage); margin-bottom: 7px;
}
.tc-title {
  font-size: 1rem; font-weight: 600; color: var(--ink);
  margin-bottom: 8px; line-height: 1.35;
}
.tc-desc {
  font-size: 0.84rem; color: var(--muted); line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.tc-footer {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--border); padding-top: 14px;
}
.tc-price { font-size: 0.82rem; color: var(--muted); }
.tc-price strong { color: var(--ink); font-size: 1rem; font-weight: 700; }

/* destination card */
.dest-card {
  border-radius: var(--radius); overflow: hidden;
  position: relative; cursor: pointer;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s, box-shadow 0.3s;
}
.dest-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.dest-card:hover .dc-img img { transform: scale(1.07); }
.dc-img { overflow: hidden; }
.dc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.dc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.82) 0%, rgba(13,27,42,0.15) 55%, transparent 100%);
}
.dc-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 22px; }
.dc-name { font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: 3px; }
.dc-tours { font-size: 0.78rem; color: rgba(255,255,255,0.72); }

@media (max-width: 640px) {
  .dc-name { font-size: 1rem; }
  .dc-tours { font-size: 0.74rem; }
}

/* partner logo */
.partner-logo-wrap {
  height: 56px; flex-shrink: 0; display: flex; align-items: center;
}
.partner-logo-wrap img {
  height: 100%; width: auto; max-width: 140px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.5);
  transition: filter 0.3s;
}
.partner-logo-wrap img:hover { filter: grayscale(0) opacity(1); }

/* ── SKELETON LOADERS ──────────────────────────────────── */
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.skeleton {
  background: linear-gradient(90deg, var(--border) 25%, #ede9e1 50%, var(--border) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.6s infinite;
  border-radius: var(--radius-sm);
}
.skel-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.skel-img  { height: 220px; }
.skel-body { padding: 20px; }
.skel-line { height: 15px; margin-bottom: 10px; }
.skel-line.w60 { width: 60%; }
.skel-line.w40 { width: 40%; }
.skel-line.w80 { width: 80%; }

/* ── SCROLL REVEAL ─────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal, * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    opacity: 1 !important; transform: none !important;
  }
}

/* ── PAGE HERO (inner pages) ───────────────────────────── */
.page-hero {
  background: var(--ink); padding-top: 84px;
}
.page-hero-inner {
  padding: 56px 24px 56px;
  max-width: 1280px; margin: 0 auto;
}
.page-hero-inner h1 { color: #fff; margin-bottom: 12px; font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
.page-hero-inner p  { color: rgba(255,255,255,0.65); max-width: 540px; }

/* ── BREADCRUMB ────────────────────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--sage); }
.breadcrumb span { color: rgba(255,255,255,0.65); }

/* ── FORM ──────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.form-control {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font); font-size: 0.9rem; color: var(--ink);
  background: var(--white); transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-control:focus { border-color: var(--sage); box-shadow: 0 0 0 3px rgba(74,124,111,0.15); }
.form-control::placeholder { color: #aaa; }
.form-control.error { border-color: #ef4444; box-shadow: 0 0 0 3px rgba(239,68,68,0.1); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 24 24'%3E%3Cpath stroke='%236B7280' stroke-width='2' d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 44px; }

.field-error { font-size: 0.8rem; color: #ef4444; margin-top: 5px; display: none; }
.field-error.show { display: block; }

.form-success {
  display: none; text-align: center; padding: 32px;
  border-radius: var(--radius); border: 1.5px solid #10b981; background: #f0fdf4;
}
.form-success.show { display: block; }
.form-success svg { color: #10b981; margin: 0 auto 12px; display: block; }
.form-success h3 { color: var(--ink); margin-bottom: 8px; }
.form-success p { color: var(--muted); font-size: 0.9rem; }

.form-error-banner {
  display: none; padding: 14px 18px; border-radius: var(--radius-sm);
  background: #fef2f2; border: 1.5px solid #fca5a5;
  color: #b91c1c; font-size: 0.88rem; margin-bottom: 20px;
}
.form-error-banner.show { display: block; }

/* ── MOBILE STICKY CTA — removed per design ──────────────── */
.mobile-cta-bar { display: none !important; }

/* ── GLOBAL OVERFLOW GUARD ────────────────────────────────── */
/* Prevent any grid/flex child from busting out of the viewport */
@media (max-width: 640px) {
  .container { padding: 0 16px; }
  img { max-width: 100%; height: auto; }
}

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  /* Hide top-bar lang toggle & CTA on tablet/mobile — they live in the drawer */
  .nav-actions .lang-toggle { display: none; }
  .nav-actions .btn { display: none; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .btn-lg { padding: 14px 28px; font-size: 0.95rem; }
  /* Smaller logo & tighter nav on phones */
  .nav-logo-img { height: 26px; }
  .nav-inner { padding: 0 16px; height: 64px; }
  .nav.scrolled .nav-inner { height: 56px; }
}

/* ── GALLERY GRID ──────────────────────────────────────── */
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-sm); overflow: hidden;
  aspect-ratio: 4/3; cursor: zoom-in;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.06); }

/* ── LIGHTBOX ──────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.92);
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: var(--radius-sm); }
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  color: #fff; font-size: 2rem; cursor: pointer; background: none; border: none;
  opacity: 0.7; transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }

/* ── INCLUDE / EXCLUDE LIST ────────────────────────────── */
.inc-exc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.inc-exc-box { background: var(--ivory); border-radius: var(--radius-sm); padding: 24px; }
.inc-exc-box h4 { font-size: 0.85rem; font-weight: 700; margin-bottom: 14px; }
.inc-exc-box ul li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.875rem; color: var(--muted); padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.inc-exc-box ul li:last-child { border-bottom: none; }
.inc-exc-box ul li svg { flex-shrink: 0; margin-top: 1px; }

@media (max-width: 640px) { .inc-exc-grid { grid-template-columns: 1fr; } }

/* ── ITINERARY ─────────────────────────────────────────── */
.itinerary-day {
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  margin-bottom: 12px; overflow: hidden;
}
.itinerary-head {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 22px; cursor: pointer;
  background: var(--ivory); transition: background 0.2s;
  user-select: none;
}
.itinerary-head:hover { background: var(--border); }
.itinerary-day-num {
  min-width: 40px; height: 40px; border-radius: 50%;
  background: var(--sage); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; font-weight: 700; flex-shrink: 0;
}
.itinerary-day-title { font-weight: 600; font-size: 0.95rem; flex: 1; color: var(--ink); }
.itinerary-chevron { color: var(--muted); transition: transform 0.3s; margin-left: auto; }
.itinerary-day.open .itinerary-chevron { transform: rotate(180deg); }
.itinerary-body {
  display: none; padding: 20px 22px;
  font-size: 0.9rem; color: var(--muted); line-height: 1.8;
}
.itinerary-day.open .itinerary-body { display: block; }
