/* ============================================================
   Liz Tours — Shared Stylesheet
   ============================================================ */

:root {
  --purple:       #a855f7;
  --purple-dark:  #7c3aed;
  --purple-mid:   #af77f6;
  --purple-foot:  #b078f7;
  --gold:         #fbbf24;
  --ink:          #111827;
  --muted:        #6b7280;
  --dark:         #13161a;
  --white:        #ffffff;
  --ring:         #e5e7eb;
  --nav-h:        70px;
  --radius:       14px;
  --transition:   .22s ease;
}

/* ── Reset / Base ── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

html, body {
  margin: 0; padding: 0;
  width: 100%;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--ink);
  background: #fff;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }

/* ── Navigation ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
  height: var(--nav-h);
  display: flex;
  align-items: center;
}

.nav-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo img {
  height: 52px;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0; padding: 0;
  gap: 4px;
}

.nav-menu li a {
  display: block;
  padding: 9px 18px;
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #111;
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
  position: relative;
}

.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 18px; right: 18px;
  height: 2px;
  background: var(--purple-mid);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
  transform: scaleX(1);
}

.nav-menu li a:hover,
.nav-menu li a.active {
  color: var(--purple-dark);
  background: rgba(168,85,247,.07);
}

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px 6px;
  background: none;
  border: none;
  border-radius: 6px;
  transition: background var(--transition);
}
.nav-toggle:hover { background: rgba(168,85,247,.08); }
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: #333;
  border-radius: 2px;
  transition: transform .25s, opacity .2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── WhatsApp floating button ── */
.wa-float {
  position: fixed;
  bottom: 80px; right: 20px;
  z-index: 999;
  background: #25D366;
  border-radius: 50%;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,.45);
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 26px rgba(37,211,102,.55);
}
.wa-float svg { width: 30px; height: 30px; }

/* ── Back-to-top button ── */
.back-to-top {
  position: fixed;
  bottom: 20px; right: 20px;
  z-index: 998;
  background: var(--purple-mid);
  color: #fff;
  border: none; border-radius: 50%;
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 18px;
  box-shadow: 0 4px 14px rgba(168,85,247,.4);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .3s, transform .3s, background .2s;
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover { background: var(--purple-dark); }

/* ── Section padding / container ── */
.section-pad { padding: 60px 20px; }
.container   { max-width: 1200px; margin: 0 auto; }

/* ── Page-title hero (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--purple-dark) 0%, #4c1d95 100%);
  padding: 52px 20px 42px;
  text-align: center;
  color: #fff;
}
.page-hero h1 {
  font-family: 'Raleway', Arial, sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin: 0;
  text-transform: capitalize;
  letter-spacing: .02em;
}

/* ── Hero Section (home) ── */
.hero {
  position: relative;
  background-color: #000;
  padding: 110px 20px;
  text-align: center;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  min-height: 440px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../gallery_gen/d4e9cd77d88a3f5b8999a9c4973cc23d_fit.png');
  background-size: cover; background-position: center;
  opacity: .9;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 820px; margin: 0 auto;
}
.hero-content h1 {
  font-family: 'Raleway', Arial, sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700; color: #fff;
  text-transform: capitalize;
  margin: 0 0 18px;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
}
.hero-content .hero-sub {
  font-family: 'Raleway', Arial, sans-serif;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: rgba(255,255,255,.92);
  margin: 0 0 36px;
  line-height: 1.6;
  text-shadow: 0 1px 6px rgba(0,0,0,.4);
}
.hero-btns {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}

/* ── Primary Button ── */
.btn-primary {
  display: inline-block;
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 18px; font-weight: 700;
  color: #fff;
  background: var(--purple-mid);
  border-radius: 999px;
  padding: 18px 44px;
  text-decoration: none;
  transition: background var(--transition), transform .1s, box-shadow .2s;
  border: none; cursor: pointer;
  box-shadow: 0 6px 18px rgba(175,119,246,.4);
}
.btn-primary:hover {
  background: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
}

/* ── Section: We're all connected ── */
.section-connected {
  padding: 70px 20px;
  text-align: center;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.section-connected::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(175,119,246,.18) 0%, transparent 70%);
  pointer-events: none;
}
.section-connected h2 {
  font-family: 'Raleway', Arial, sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 700; color: var(--ink);
  margin: 0 0 18px;
  position: relative;
}
.section-connected p {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: clamp(.95rem, 1.8vw, 1.15rem);
  font-weight: 300; color: #374151;
  max-width: 900px; margin: 0 auto;
  line-height: 1.8;
  position: relative;
}

/* ── Tour Carousel ── */
.section-tours { padding: 50px 0 40px; background: #fafafa; }

.section-title-wrap {
  max-width: 1100px;
  margin: 0 auto 22px;
  text-align: center;
  padding: 0 16px;
}
.section-title-wrap h2 {
  font-family: 'Raleway', Arial, sans-serif;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  font-weight: 700; margin: 0 0 6px;
}
.section-sub { margin: 0; font-size: .9rem; color: var(--muted); }

.carousel-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto 32px;
  padding: 8px 36px;
}

.arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: #fff; border: none; border-radius: 50%;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 16px;
  box-shadow: 0 6px 16px rgba(15,23,42,.25);
  transition: transform .15s, box-shadow .15s;
}
.arrow:hover { transform: translateY(-50%) scale(1.1); box-shadow: 0 8px 20px rgba(15,23,42,.35); }
.arrow-left  { left: 0; }
.arrow-right { right: 0; }

.tour-scroll {
  display: flex; overflow-x: auto;
  scroll-behavior: smooth; gap: 18px;
  padding: 8px 4px 20px;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
}
.tour-scroll::-webkit-scrollbar { height: 6px; }
.tour-scroll::-webkit-scrollbar-thumb { background: rgba(168,85,247,.7); border-radius: 999px; }
.tour-scroll::-webkit-scrollbar-track { background: #f0f0f5; border-radius: 999px; }

.tour-card {
  flex: 0 0 auto; width: 280px;
  border-radius: 18px; overflow: hidden;
  background: #fff;
  border: 1px solid rgba(15,23,42,.06);
  box-shadow: 0 10px 28px rgba(15,23,42,.12);
  display: flex; flex-direction: column;
  scroll-snap-align: start;
  transition: transform var(--transition), box-shadow var(--transition);
}
.tour-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15,23,42,.18);
}
.tour-image {
  width: 100%; height: 175px;
  background-size: cover; background-position: center;
  background-color: #e5e7eb;
  transition: transform .4s ease;
}
.tour-card:hover .tour-image { transform: scale(1.04); }
.tour-content { padding: 14px 14px 14px; display: flex; flex-direction: column; flex-grow: 1; }
.tour-title  { font-size: .98rem; font-weight: 700; margin-bottom: 4px; line-height: 1.3; }
.tour-meta   { font-size: .82rem; color: var(--muted); margin-bottom: 8px; }
.tour-rating { display: flex; align-items: center; margin-bottom: 8px; }
.stars       { color: #fbbf24; margin-right: 6px; font-size: .88rem; }
.reviews     { font-size: .78rem; color: #6b7280; }
.tour-badges { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 10px; }
.badge       { background: #f3f4ff; color: #4b5563; padding: 4px 8px; border-radius: 999px; font-size: .7rem; border: 1px solid rgba(168,85,247,.2); white-space: nowrap; }
.price       { font-size: 1.05rem; font-weight: 800; color: var(--ink); margin-bottom: 12px; }
.reserve-btn {
  margin-top: auto;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: #fff; padding: 10px 12px;
  border: none; border-radius: 999px;
  text-decoration: none; font-weight: 600; font-size: .88rem;
  text-align: center; display: block;
  box-shadow: 0 6px 14px rgba(129,140,248,.4);
  transition: filter .15s, transform .1s;
}
.reserve-btn:hover { filter: brightness(1.08); transform: translateY(-1px); }

/* ══════════════════════════════════════
   THE CAPITAL HOTEL PARTNERSHIP SECTION
   ══════════════════════════════════════ */
.section-capital {
  padding: 70px 20px 60px;
  background: linear-gradient(180deg, #fff 0%, #f8f4ff 60%, #f0e8ff 100%);
}

.capital-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 44px;
}

.capital-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, rgba(168,85,247,.12), rgba(251,191,36,.16));
  border: 1px solid rgba(168,85,247,.3);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--purple-dark);
  margin-bottom: 16px;
}
.capital-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--gold));
  flex-shrink: 0;
}

.capital-header h2 {
  font-family: 'Raleway', Arial, sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 14px;
  line-height: 1.2;
}

.capital-header p {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: clamp(.95rem, 1.7vw, 1.05rem);
  color: var(--muted);
  line-height: 1.8;
  margin: 0 0 20px;
}

.capital-perks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 6px;
}
.capital-perk {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid rgba(168,85,247,.25);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(168,85,247,.08);
}

/* Photo grid */
.capital-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto 30px;
}

/* make some images span 2 rows for visual interest */
.capital-gallery .cap-img:nth-child(1)  { grid-row: span 2; }   /* living room — tall */
.capital-gallery .cap-img:nth-child(5)  { grid-column: span 2; } /* terrace — wide */
.capital-gallery .cap-img:nth-child(9)  { grid-column: span 2; } /* lobby — wide */
.capital-gallery .cap-img:nth-child(12) { grid-row: span 2; }   /* bedroom — tall */

.cap-img {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  background: #e5e7eb;
}
.cap-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}
.cap-img:hover img { transform: scale(1.07); }

.cap-img .cap-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .3s;
  display: flex; align-items: flex-end;
  padding: 12px;
}
.cap-img:hover .cap-overlay { opacity: 1; }
.cap-overlay span {
  font-size: .75rem; font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,.6);
}

/* CTA bar */
.capital-cta {
  text-align: center;
  margin-top: 30px;
}
.capital-cta p {
  font-size: .9rem;
  color: var(--muted);
  margin: 0 0 14px;
}

/* ── Lightbox ── */
.lb-overlay {
  display: none;
  position: fixed; inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,.92);
  align-items: center; justify-content: center;
}
.lb-overlay.open { display: flex; }

.lb-inner {
  position: relative;
  max-width: 92vw;
  max-height: 90vh;
  display: flex; align-items: center; justify-content: center;
}
.lb-inner img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
  user-select: none;
}

.lb-close {
  position: fixed; top: 16px; right: 20px;
  background: rgba(255,255,255,.12);
  border: none; border-radius: 50%;
  width: 42px; height: 42px;
  color: #fff; font-size: 22px;
  cursor: pointer; z-index: 9001;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lb-close:hover { background: rgba(255,255,255,.25); }

.lb-prev, .lb-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.12);
  border: none; border-radius: 50%;
  width: 46px; height: 46px;
  color: #fff; font-size: 20px;
  cursor: pointer; z-index: 9001;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.25); }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }

.lb-caption {
  position: fixed; bottom: 18px; left: 0; right: 0;
  text-align: center;
  color: rgba(255,255,255,.8);
  font-size: .82rem;
  pointer-events: none;
}
.lb-counter {
  position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.65);
  font-size: .8rem;
  background: rgba(0,0,0,.4);
  border-radius: 999px;
  padding: 4px 12px;
}

/* ── Booking Form Section ── */
.section-booking { padding: 50px 20px 70px; }

.booking-section-title {
  font-family: 'Raleway', Arial, sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800; color: var(--purple-dark);
  text-align: center;
  margin: 0 0 32px;
  letter-spacing: .02em;
  text-transform: uppercase;
}

/* form progress bar (animated) */
.lt-bar-wrap { padding: 0 18px 16px; }
.lt-bar-track {
  height: 5px; border-radius: 999px;
  background: #e5e7eb;
  overflow: hidden;
}
.lt-bar {
  height: 100%; border-radius: 999px;
  background: linear-gradient(90deg, var(--purple), var(--gold));
  width: 33.3%;
  transition: width .4s ease;
}

/* form core */
.lt-booking-wrapper { width: 100%; overflow: visible; font-family: inherit; }
.lt-booking { max-width: 1100px; margin: 0 auto; padding: 0 16px; color: var(--ink); }
.lt-booking-header { text-align: center; margin-bottom: 22px; }
.lt-booking-kicker { font-size: .8rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--purple-dark); margin-bottom: 6px; }
.lt-booking-title { font-family: 'Raleway', Arial, sans-serif; font-size: 1.7rem; margin: 0 0 6px; font-weight: 700; }
.lt-booking-sub { margin: 0; color: var(--muted); font-size: .9rem; }
.lt-booking-highlight { display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(90deg,rgba(168,85,247,.12),rgba(251,191,36,.16)); border-radius: 999px; padding: 7px 16px; margin-top: 14px; font-size: .8rem; }
.lt-booking-card { background: #fff; border-radius: 20px; border: 1px solid rgba(15,23,42,.06); box-shadow: 0 16px 40px rgba(15,23,42,.10); overflow: hidden; }
.lt-steps-nav { padding: 12px 18px 10px; border-bottom: 1px solid #e2e8f0; display: flex; justify-content: space-between; align-items: center; gap: 10px; background: #fafafa; }
.lt-steps-label { font-size: .85rem; color: var(--muted); font-weight: 500; }
.lt-dots { display: flex; gap: 8px; }
.lt-dot { width: 10px; height: 10px; border-radius: 999px; border: 1.5px solid rgba(148,163,184,1); background: #fff; cursor: pointer; transition: background .2s, border-color .2s, transform .15s; }
.lt-dot:hover { transform: scale(1.2); }
.lt-dot.is-active { background: linear-gradient(135deg, var(--purple), var(--gold)); border-color: transparent; transform: scale(1.15); }
.lt-step-track { display: flex; overflow: hidden; } /* hide scroll, use JS only */
.lt-step { min-width: 100%; padding: 20px 20px 10px; box-sizing: border-box; }
.lt-step-title { font-family: 'Raleway', Arial, sans-serif; font-size: 1.05rem; margin: 0 0 14px; font-weight: 700; color: var(--purple-dark); }
.lt-grid { display: grid; gap: 14px; }
@media (min-width:720px) {
  .lt-grid.cols-2 { grid-template-columns: repeat(2,1fr); }
  .lt-grid.cols-3 { grid-template-columns: repeat(3,1fr); }
}
.lt-field { display: flex; flex-direction: column; gap: 5px; }
.lt-label { font-size: .88rem; font-weight: 600; color: #374151; }
.lt-input, .lt-select, .lt-textarea {
  appearance: none; width: 100%;
  border-radius: 10px; border: 1.5px solid var(--ring);
  padding: 11px 13px; font: inherit;
  background: #fff; outline: none;
  transition: border-color .2s, box-shadow .2s;
  color: var(--ink);
}
.lt-textarea { min-height: 80px; resize: vertical; }
.lt-input:focus, .lt-select:focus, .lt-textarea:focus {
  border-color: var(--purple-dark);
  box-shadow: 0 0 0 3px rgba(168,85,247,.2);
}
.lt-hint { font-size: .75rem; color: var(--muted); }
.lt-counter { display: flex; align-items: center; border: 1.5px solid var(--ring); border-radius: 10px; overflow: hidden; }
.lt-counter button { all: unset; display: grid; place-items: center; width: 38px; height: 38px; cursor: pointer; font-weight: 700; font-size: 1.1rem; color: var(--purple-dark); transition: background .15s; }
.lt-counter button:hover { background: rgba(168,85,247,.1); }
.lt-counter input { border: none; width: 100%; text-align: center; font-weight: 600; }
.lt-inline { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.lt-pill { display: inline-flex; align-items: center; gap: 4px; background: #f9f5ff; border-radius: 999px; border: 1px solid rgba(168,85,247,.2); padding: 5px 11px; font-size: .8rem; }
.lt-pill-strong { font-weight: 700; }
.lt-step-actions { padding: 12px 20px 16px; display: flex; justify-content: space-between; align-items: center; gap: 10px; border-top: 1px solid #f0f0f0; }
.lt-btn { appearance: none; border-radius: 999px; padding: 10px 20px; font-weight: 700; cursor: pointer; border: 2px solid transparent; font-size: .9rem; background: #fff; transition: all .2s; }
.lt-btn-primary { background: linear-gradient(135deg, var(--purple), var(--purple-dark)); color: #fff; box-shadow: 0 8px 20px rgba(129,140,248,.4); }
.lt-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 26px rgba(129,140,248,.5); }
.lt-btn-outline { border-color: rgba(148,163,184,1); color: var(--ink); }
.lt-btn-outline:hover { border-color: var(--purple); color: var(--purple-dark); }
.lt-btn-ghost { border-color: transparent; color: var(--muted); }
.lt-btn-ghost:disabled { opacity: .35; cursor: not-allowed; }
.lt-footer-text { margin-top: 12px; font-size: .8rem; color: var(--muted); text-align: center; line-height: 1.7; }

/* ── About Page ── */
.about-bg { background: #f8f4ff; }
.section-label {
  font-family: 'Raleway', Arial, sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700; margin: 0 0 18px;
  text-transform: lowercase; letter-spacing: .02em;
}
.about-body-text {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: clamp(.95rem, 1.7vw, 1.08rem);
  line-height: 1.85; color: #374151;
  max-width: 900px;
}
.about-two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: start;
}
.about-two-col img {
  width: 100%; border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
}
.about-vision-text {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem; line-height: 1.85;
  color: var(--muted);
}
.about-services ul { padding-left: 22px; list-style: disc; }
.about-services li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem; line-height: 2.1; color: var(--ink);
}

/* ── Contacts Page ── */
.contacts-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; max-width: 800px;
  margin: 0 auto 40px; padding: 0 20px;
}
.contact-card {
  background: var(--purple-mid);
  color: #fff; border-radius: 16px;
  padding: 32px 24px; text-align: center;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 8px 24px rgba(175,119,246,.3);
}
.contact-card:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(175,119,246,.4); }
.contact-card .contact-label { font-weight: 700; font-size: 1rem; margin-bottom: 10px; letter-spacing: .04em; text-transform: uppercase; }
.contact-card a { display: block; font-size: 1.05rem; color: #fff; text-decoration: underline; margin-top: 4px; }
.contact-card a:hover { opacity: .85; }

/* map */
.lt-map-section { padding: clamp(20px,3vw,40px); display: grid; place-items: center; }
.lt-map-card { width: min(1100px,100%); background: #fff; border-radius: 22px; box-shadow: 0 18px 50px rgba(15,23,42,.14); overflow: hidden; border: 1px solid rgba(15,23,42,.06); }
.lt-map-header { padding: 22px clamp(18px,2.4vw,28px); border-bottom: 1px solid rgba(15,23,42,.06); display: flex; gap: 16px; align-items: center; justify-content: space-between; flex-wrap: wrap; background: radial-gradient(1200px 220px at 0% 0%,rgba(168,85,247,.12),transparent 60%),radial-gradient(900px 220px at 100% 0%,rgba(251,191,36,.10),transparent 60%),#fff; }
.lt-map-title { margin: 0; font-size: clamp(17px,2.2vw,23px); font-weight: 700; letter-spacing: .1px; }
.lt-map-sub { color: #64748b; font-size: clamp(13px,1.6vw,14px); margin-top: 4px; }
.lt-map-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(168,85,247,.09); color: var(--purple-dark); border: 1px solid rgba(168,85,247,.3); padding: 7px 13px; border-radius: 999px; font-weight: 600; font-size: 13px; white-space: nowrap; }
.lt-map-badge-dot { width: 9px; height: 9px; border-radius: 50%; background: radial-gradient(circle at 30% 30%,var(--purple),var(--purple-dark)); }
.lt-map-body { display: grid; grid-template-columns: 1.2fr .8fr; }
.lt-map-embed { position: relative; min-height: 420px; background: #e2e8f0; }
.lt-map-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.lt-map-side { padding: 22px clamp(16px,2vw,26px); display: flex; flex-direction: column; gap: 16px; }
.lt-map-address { border: 1px solid rgba(15,23,42,.08); border-radius: 16px; padding: 16px 18px; background: radial-gradient(160% 140% at 0% 0%,rgba(168,85,247,.05),#fff); }
.lt-map-address h3 { margin: 0 0 7px; font-size: 15px; font-weight: 700; }
.lt-map-address p { margin: 0; color: #64748b; font-size: 14px; line-height: 1.7; }
.lt-map-btn-row { display: flex; flex-wrap: wrap; gap: 10px; }
.lt-btn-map { appearance: none; border: 0; cursor: pointer; border-radius: 999px; padding: 10px 14px; font-weight: 700; font-size: 13px; display: inline-flex; align-items: center; gap: 7px; text-decoration: none; transition: transform .1s, box-shadow .2s; }
.lt-btn-map:active { transform: translateY(1px); }
.lt-btn-map-primary { background: linear-gradient(135deg,var(--purple),var(--purple-dark)); color: #fff; box-shadow: 0 8px 20px rgba(148,119,255,.3); border: 2px solid transparent; }
.lt-btn-map-primary:hover { box-shadow: 0 12px 28px rgba(148,119,255,.45); transform: translateY(-1px); }
.lt-btn-map-outline { background: #fff; color: var(--ink); border: 1.5px solid rgba(148,163,184,.9); }
.lt-btn-map-outline:hover { border-color: var(--purple-dark); color: var(--purple-dark); }
.lt-map-meta { display: grid; gap: 10px; grid-template-columns: 1fr 1fr; }
.lt-map-item { border: 1px dashed rgba(148,163,184,.6); border-radius: 14px; padding: 12px 13px; font-size: 13px; color: #64748b; background: #fff; line-height: 1.6; }
.lt-map-item b { color: var(--ink); font-weight: 700; }
.lt-map-note { font-size: 12px; color: #94a3b8; }

/* ── Footer ── */
.site-footer {
  background: var(--purple-foot);
  color: #fff;
  padding: 28px 20px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-inner p, .footer-inner a {
  font-family: 'Raleway', Arial, sans-serif;
  font-size: .95rem; color: #fff; margin: 0;
}
.footer-inner a:hover { opacity: .8; text-decoration: underline; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .capital-gallery { grid-template-columns: repeat(3, 1fr); }
  .capital-gallery .cap-img:nth-child(9) { grid-column: span 1; }
}

@media (max-width: 900px) {
  .about-two-col { grid-template-columns: 1fr; }
  .contacts-grid { grid-template-columns: 1fr; }
  .lt-map-body { grid-template-columns: 1fr; }
  .lt-map-embed { min-height: 340px; }
  .lt-map-meta { grid-template-columns: 1fr; }
  .capital-gallery { grid-template-columns: repeat(2, 1fr); }
  .capital-gallery .cap-img:nth-child(1) { grid-row: span 1; }
  .capital-gallery .cap-img:nth-child(12) { grid-row: span 1; }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none; flex-direction: column;
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: #fff; padding: 10px 16px 20px;
    box-shadow: 0 10px 24px rgba(0,0,0,.12);
    gap: 2px; border-top: 1px solid #f0f0f0;
  }
  .nav-menu.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-menu li a::after { display: none; }
}

@media (max-width: 640px) {
  .carousel-wrapper { padding-inline: 28px; }
  .capital-gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .capital-gallery .cap-img:nth-child(5) { grid-column: span 1; }
  .lt-map-section { padding: 16px 10px 26px; }
  .lt-map-side { padding: 16px 12px 18px; }
  .lt-booking { padding: 0 8px; }
  .lt-step { padding: 16px 14px 8px; }
  .lt-input, .lt-select, .lt-textarea { padding: 9px 11px; font-size: .88rem; }
  .hero { padding: 75px 16px; }
  .section-pad { padding: 44px 16px; }
  .section-capital { padding: 50px 14px 44px; }
}

@media (max-width: 480px) {
  .capital-gallery { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .capital-gallery .cap-img:nth-child(12) { grid-row: span 1; }
}

/* ════════════════════════════════════════════════════════════
   v2 DESIGN UPGRADES — trust bar, why-choose, steps, reviews
   ════════════════════════════════════════════════════════════ */

/* ── Trust / Stats strip ── */
.trust-strip {
  background: linear-gradient(135deg, var(--purple-dark) 0%, #4c1d95 50%, var(--purple) 100%);
  color: #fff;
  padding: 34px 20px;
  position: relative;
  overflow: hidden;
}
.trust-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 15% 50%, rgba(251,191,36,.15) 0%, transparent 50%),
              radial-gradient(circle at 85% 50%, rgba(255,255,255,.08) 0%, transparent 50%);
  pointer-events: none;
}
.trust-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 18px; position: relative; z-index: 1;
  text-align: center;
}
.trust-item { padding: 6px; }
.trust-num {
  display: block;
  font-family: 'Raleway', Arial, sans-serif;
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
  letter-spacing: -.01em;
}
.trust-num small {
  font-size: .6em; color: rgba(255,255,255,.8);
  font-weight: 500;
}
.trust-label {
  display: block;
  font-family: 'Raleway', Arial, sans-serif;
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,.92);
  margin-top: 4px;
  letter-spacing: .03em;
}
@media (max-width: 640px) {
  .trust-inner { grid-template-columns: repeat(2,1fr); gap: 22px; }
}

/* ── Why Choose Us ── */
.section-why {
  padding: 70px 20px;
  background: #fff;
}
.why-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 42px;
}
.why-kicker {
  font-size: .78rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--purple-dark); margin-bottom: 10px;
}
.why-header h2 {
  font-family: 'Raleway', Arial, sans-serif;
  font-size: clamp(1.6rem, 3.6vw, 2.4rem);
  font-weight: 700; color: var(--ink);
  margin: 0 0 14px; line-height: 1.2;
}
.why-header p {
  color: var(--muted); line-height: 1.7;
  font-size: 1rem; margin: 0;
}
.why-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.why-card {
  background: #fff;
  border: 1px solid rgba(15,23,42,.07);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: left;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(124,58,237,.14);
  border-color: rgba(168,85,247,.3);
}
.why-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(168,85,247,.15), rgba(251,191,36,.15));
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 16px;
  border: 1px solid rgba(168,85,247,.2);
}
.why-card h3 {
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 1.08rem; font-weight: 700;
  color: var(--ink); margin: 0 0 8px;
}
.why-card p {
  color: var(--muted); font-size: .92rem;
  line-height: 1.6; margin: 0;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

/* ── How to Book 3 steps ── */
.section-steps {
  padding: 70px 20px;
  background: linear-gradient(180deg, #faf5ff 0%, #fff 100%);
}
.steps-header { text-align: center; max-width: 720px; margin: 0 auto 42px; }
.steps-header h2 {
  font-family: 'Raleway', Arial, sans-serif;
  font-size: clamp(1.6rem, 3.6vw, 2.4rem);
  font-weight: 700; color: var(--ink);
  margin: 0 0 12px; line-height: 1.2;
}
.steps-header p { color: var(--muted); margin: 0; font-size: 1rem; }
.steps-grid {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 28px; position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 44px; left: 16.66%; right: 16.66%;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(168,85,247,.4) 0 6px, transparent 6px 14px);
  z-index: 0;
}
.step-card {
  background: #fff;
  border: 1px solid rgba(15,23,42,.06);
  border-radius: 18px;
  padding: 32px 22px 26px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(15,23,42,.06);
  position: relative; z-index: 1;
  transition: transform var(--transition);
}
.step-card:hover { transform: translateY(-3px); }
.step-num {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 800; font-size: 1.3rem;
  margin-bottom: 16px;
  box-shadow: 0 8px 18px rgba(124,58,237,.35);
  border: 3px solid #fff;
}
.step-card h3 {
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 1.08rem; font-weight: 700;
  color: var(--ink); margin: 0 0 8px;
}
.step-card p {
  color: var(--muted); font-size: .92rem;
  line-height: 1.6; margin: 0;
}
@media (max-width: 760px) {
  .steps-grid { grid-template-columns: 1fr; gap: 18px; }
  .steps-grid::before { display: none; }
}

/* ── Testimonials / Reviews ── */
.section-reviews {
  padding: 70px 20px 80px;
  background: #fafafa;
}
.reviews-header { text-align: center; max-width: 720px; margin: 0 auto 42px; }
.reviews-header .why-kicker { color: var(--purple-dark); }
.reviews-header h2 {
  font-family: 'Raleway', Arial, sans-serif;
  font-size: clamp(1.6rem, 3.6vw, 2.4rem);
  font-weight: 700; color: var(--ink);
  margin: 0 0 12px; line-height: 1.2;
}
.reviews-header .rating-hero {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 12px;
  background: #fff; border-radius: 999px;
  padding: 8px 18px;
  border: 1px solid rgba(168,85,247,.25);
  box-shadow: 0 4px 14px rgba(168,85,247,.1);
}
.reviews-header .rating-hero strong {
  font-size: 1.1rem; color: var(--ink);
}
.reviews-header .rating-hero .stars {
  font-size: 1.05rem; color: var(--gold); margin: 0;
}
.reviews-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 22px;
}
.review-card {
  background: #fff;
  border: 1px solid rgba(15,23,42,.06);
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 6px 18px rgba(15,23,42,.06);
  display: flex; flex-direction: column;
  gap: 12px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(15,23,42,.1);
}
.review-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.review-text {
  color: #374151; font-size: .95rem;
  line-height: 1.7; margin: 0;
  font-style: italic;
  position: relative; padding-left: 18px;
}
.review-text::before {
  content: '“';
  position: absolute; left: 0; top: -6px;
  font-size: 1.8rem; color: var(--purple);
  font-family: Georgia, serif;
  line-height: 1;
}
.review-author {
  display: flex; align-items: center; gap: 12px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(15,23,42,.06);
}
.review-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem;
  flex-shrink: 0;
}
.review-meta { display: flex; flex-direction: column; gap: 2px; }
.review-name { font-weight: 700; font-size: .92rem; color: var(--ink); }
.review-trip { font-size: .78rem; color: var(--muted); }
@media (max-width: 860px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ── Enhanced Tour Card additions ── */
.tour-card { position: relative; }
.tour-ribbon {
  position: absolute; top: 12px; left: -4px;
  background: linear-gradient(135deg, var(--gold), #f59e0b);
  color: #1f2937;
  font-family: 'Raleway', Arial, sans-serif;
  font-size: .68rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 12px 5px 10px;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 3px 8px rgba(245,158,11,.4);
  z-index: 2;
}
.tour-ribbon::after {
  content: ''; position: absolute;
  left: 0; top: 100%;
  border: 3px solid transparent;
  border-top-color: #b45309; border-right-color: #b45309;
}
.tour-meta-row {
  display: flex; flex-wrap: wrap; gap: 10px;
  font-size: .78rem; color: var(--muted);
  margin-bottom: 8px;
}
.tour-meta-row span {
  display: inline-flex; align-items: center; gap: 4px;
}
.tour-price-row {
  display: flex; align-items: baseline; gap: 6px;
  margin-bottom: 12px;
}
.tour-price-label {
  font-size: .7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
}
.tour-price-num {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--purple-dark);
  line-height: 1;
}
.tour-price-per {
  font-size: .75rem;
  color: var(--muted);
  font-weight: 500;
}

/* ── Footer v2 ── */
.footer-v2 {
  background: linear-gradient(135deg, #1f1147 0%, #2d1b69 60%, #4c1d95 100%);
  color: rgba(255,255,255,.85);
  padding: 56px 20px 24px;
  position: relative;
  overflow: hidden;
}
.footer-v2::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(168,85,247,.2), transparent 45%),
              radial-gradient(circle at 80% 70%, rgba(251,191,36,.1), transparent 45%);
  pointer-events: none;
}
.footer-v2-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 38px;
  position: relative; z-index: 1;
}
.footer-v2 h4 {
  font-family: 'Raleway', Arial, sans-serif;
  font-size: .85rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: #fff; margin: 0 0 16px;
}
.footer-brand p {
  font-size: .9rem; line-height: 1.7;
  color: rgba(255,255,255,.72);
  margin: 12px 0 18px;
  max-width: 320px;
}
.footer-brand img {
  height: 50px; filter: brightness(0) invert(1);
  opacity: .96;
}
.footer-v2 ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.footer-v2 ul a, .footer-v2 ul span {
  color: rgba(255,255,255,.78);
  font-size: .9rem;
  display: inline-flex; align-items: center; gap: 8px;
  transition: color .15s, transform .15s;
}
.footer-v2 ul a:hover {
  color: var(--gold);
  transform: translateX(3px);
}
.footer-socials {
  display: flex; gap: 10px; margin-top: 12px;
}
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1rem;
  transition: background .2s, transform .15s, border-color .2s;
}
.footer-socials a:hover {
  background: var(--gold);
  color: #1f1147;
  border-color: var(--gold);
  transform: translateY(-2px);
}
.footer-v2-bottom {
  max-width: 1200px; margin: 36px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: .82rem; color: rgba(255,255,255,.65);
  position: relative; z-index: 1;
}
.footer-v2-bottom a { color: rgba(255,255,255,.8); }
.footer-v2-bottom a:hover { color: var(--gold); }
@media (max-width: 900px) {
  .footer-v2-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 520px) {
  .footer-v2-inner { grid-template-columns: 1fr; gap: 26px; }
  .footer-v2 { padding: 44px 20px 20px; }
}

/* ── Hero refinements ── */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.2) 0%, rgba(30,17,71,.5) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-content { z-index: 2; }
.hero-badges {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: .78rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: .02em;
}
.hero-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,.3);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,.3); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,.1); }
}

/* ── Section header common ── */
.section-title-wrap h2 { font-weight: 700; letter-spacing: -.01em; }
.section-title-wrap .section-kicker {
  font-size: .78rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--purple-dark); margin-bottom: 8px;
}

/* ── Utility classes ── */
.btn-outline {
  display: inline-block;
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 16px; font-weight: 700;
  color: var(--purple-dark);
  background: transparent;
  border: 2px solid var(--purple);
  border-radius: 999px;
  padding: 14px 32px;
  text-decoration: none;
  transition: all var(--transition);
}
.btn-outline:hover {
  background: var(--purple-dark);
  color: #fff; border-color: var(--purple-dark);
  transform: translateY(-2px);
}
