:root {
  --white: #FFFFFF;
  --cream: #F4F6FB;
  --text: #1A1A2E;
  --text-sub: #4A4A6A;
  --text-muted: #9090AA;
  --gold: #4F7BE8;
  --gold-light: #6B93F0;
  --gold-pale: #EEF2FD;
  --border: #E6E9F4;
  --border-dark: #CDD2E8;
  --radius-lg: 32px;
  --radius-md: 16px;
  --radius-sm: 8px;
  --font: 'Plus Jakarta Sans', sans-serif;
  --nav-h: 72px;
  --wa-green: #25D366;
  --msg-blue: #0084FF;
  /* Pastel blob accents */
  --blob-mint: #C5EDE8;
  --blob-blue: #C8D8F5;
  --blob-yellow: #F5EEC8;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

@keyframes blob-drift {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(30px,-20px) scale(1.05); }
  66%      { transform: translate(-20px,25px) scale(0.97); }
}
@keyframes blob-drift2 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(-25px,20px) scale(1.04); }
  66%      { transform: translate(20px,-30px) scale(0.98); }
}
@keyframes blob-drift3 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(15px,20px) scale(1.06); }
}
.blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
#blob-layer {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

nav, section, footer, .strip-outer, .fab-container, .modal-overlay {
  position: relative;
  z-index: 1;
}
#blob-layer { z-index: 0; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font); }

#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  background: rgba(255,255,255,0);
  transition: background .35s, box-shadow .35s;
}
#navbar.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-logo {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--text);
  z-index: 10000;
}
.nav-logo em { color: var(--gold); font-style: normal; }
.nav-links { display: flex; list-style: none; gap: 40px; }
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-sub);
  transition: color .2s;
}
.nav-links a:hover { color: var(--text); }
.nav-right { display: flex; align-items: center; gap: 16px; z-index: 10000; }
.nav-book {
  background: var(--text);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 22px;
  border: none;
  border-radius: 100px;
  transition: background .2s;
}
.nav-book:hover { background: var(--gold); }
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text);
  z-index: 10000;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100vh;
  background: var(--white);
  z-index: 9998;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  transform: translateX(-100%);
  transition: transform .3s ease-in-out;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { font-size: 24px; font-weight: 700; color: var(--text); }

#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  inset: 0;
  background: url('https://smarthistory.org/wp-content/uploads/2022/01/face-tower-bayon.jpg') center/cover no-repeat;
}
.hero-card {
  position: absolute;
  top: 0; left: 0;
  width: 45%;
  min-width: 260px;
  background: var(--white);
  border-bottom-right-radius: 72px;
  padding: 52px 48px 60px 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 32%;
}
.hero-eyebrow { font-size: 13px; font-weight: 500; color: var(--text-muted); margin-bottom: 14px; }
.hero-title {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 24px;
}
.hero-title span { color: var(--gold); }
.hero-sub { font-size: 14px; color: var(--text-sub); line-height: 1.65; max-width: 280px; margin-bottom: 36px; }
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--text);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 100px;
  border: none;
  width: fit-content;
  transition: background .2s;
}
.hero-cta:hover { background: var(--gold); }
.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: 1.5px solid rgba(255,255,255,.8);
  cursor: pointer;
}
.hero-dot.active { background: var(--white); }

.strip-outer {
  background: var(--white);
  overflow: hidden;
  padding: 28px 0;
  position: relative;
}
.strip-outer::before, .strip-outer::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.strip-outer::before { left: 0; background: linear-gradient(to right, var(--white), transparent); }
.strip-outer::after  { right: 0; background: linear-gradient(to left, var(--white), transparent); }
.strip-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: strip-go 38s linear infinite;
}
@keyframes strip-go {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.strip-item {
  width: 320px;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.strip-item img { width: 100%; height: 100%; object-fit: cover; }
.strip-label {
  position: absolute;
  bottom: 11px;
  left: 13px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 5px rgba(0,0,0,.6);
}

.section-wrap { padding: 100px 60px; }
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.sec-title {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.sec-sub { font-size: 15px; color: var(--text-sub); max-width: 540px; line-height: 1.7; }

#values { background: var(--white); }
.values-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
  position: relative;
}
.values-head::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: var(--blob-mint);
  left: -80px; top: -100px;
  z-index: 0;
  opacity: 0.5;
}
.values-head > * { position: relative; z-index: 1; }
.values-scroll, .carousel-outer { overflow: hidden; position: relative; }
.values-track, .carousel-track { display: flex; gap: 20px; transition: transform .5s ease; }
.val-card {
  min-width: calc(33.333% - 14px);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--border);
  transition: box-shadow .25s, transform .25s;
}
.val-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.1); transform: translateY(-4px); }
.val-card-img { width: 100%; height: 220px; object-fit: cover; }
.val-card-body { padding: 26px; }
.val-card-title { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.val-card-bullets { list-style: none; padding: 0; }
.val-card-bullets li {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.65;
  padding: 4px 0 4px 16px;
  position: relative;
}
.val-card-bullets li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 11px;
}

#tours { background: var(--cream); }
.tours-head { text-align: center; margin-bottom: 56px; position: relative; }
.tours-head .sec-sub { margin: 0 auto; }
.tours-head::after {
  content: '';
  position: absolute;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: var(--blob-yellow);
  right: -60px; top: -120px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}
.tours-head > * { position: relative; z-index: 1; }
.tour-card {
  min-width: calc(33.333% - 14px);
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: box-shadow .25s, transform .25s;
  display: flex;
  flex-direction: column;
}
.tour-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.12); transform: translateY(-4px); }
.tour-img { width: 100%; height: 230px; object-fit: cover; }
.tour-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.tour-tag { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.tour-name { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.tour-desc { font-size: 13px; color: var(--text-sub); line-height: 1.65; margin-bottom: 12px; flex: 1; }
.tour-more-txt {
  font-size: 12px;
  color: var(--text-sub);
  line-height: 1.6;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed var(--border);
  display: none;
}
.tour-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}
.tour-btn-see { font-size: 12px; font-weight: 600; color: var(--gold); background: none; border: none; cursor: pointer; padding: 4px 0; }
.tour-btn-book {
  font-size: 12px;
  font-weight: 700;
  background: var(--text);
  color: var(--white);
  border: none;
  border-radius: 100px;
  padding: 8px 18px;
  margin-left: auto;
  transition: background .2s;
}
.tour-btn-book:hover { background: var(--gold); }
.tour-price { font-size: 18px; font-weight: 700; margin-bottom: 14px; }
.tour-price span { font-size: 12px; font-weight: 500; color: var(--text-muted); }
.tour-meta { display: flex; gap: 16px; font-size: 12px; color: var(--text-muted); flex-wrap: wrap; }

.carousel-nav { display: flex; align-items: center; justify-content: space-between; margin-top: 40px; }
.c-dots { display: flex; gap: 8px; }
.c-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border-dark);
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.c-dot.on { background: var(--text); transform: scale(1.3); }
.c-btns { display: flex; gap: 10px; }
.c-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border-dark);
  background: transparent;
  font-size: 18px;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.c-btn:hover { background: var(--text); color: var(--white); }

#corporate { background: var(--white); border-bottom: 1px solid var(--border); }
.corp-container { display: flex; align-items: center; justify-content: space-between; gap: 60px; flex-wrap: wrap; }
.corp-info { flex: 12; min-width: 320px; }
.corp-grid { flex: 10; display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; min-width: 300px; }
.corp-box { background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; }
.corp-box-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.corp-box-desc { font-size: 13px; color: var(--text-sub); line-height: 1.5; }

#airport { background: var(--text); color: var(--white); padding: 60px; text-align: center; }
.airport-wrap { max-width: 800px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.airport-info { text-align: left; flex: 1; min-width: 240px; }
.airport-info h3 { font-size: 24px; font-weight: 800; margin-bottom: 8px; }
.airport-info p { color: rgba(255,255,255,.7); margin-bottom: 16px; }
.airport-price { font-size: 32px; font-weight: 800; color: var(--gold-light); }
.airport-price span { font-size: 16px; font-weight: 500; color: rgba(255,255,255,.5); }
.airport-btn {
  background: var(--gold);
  color: var(--white);
  padding: 14px 28px;
  border: none;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14px;
  transition: background .2s;
}
.airport-btn:hover { background: var(--gold-light); }

#cooking { background: var(--cream); }
.cooking-wrap { display: flex; gap: 60px; align-items: flex-start; flex-wrap: wrap; }

.cooking-left { flex: 1; min-width: 320px; }
.cooking-main-img {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 12px;
}
.cooking-main-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: opacity .3s;
}
.cooking-photo-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.55));
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 24px 16px 12px;
}
.cooking-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.cooking-thumb {
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .2s, transform .2s;
}
.cooking-thumb img { width: 100%; height: 60px; object-fit: cover; display: block; }
.cooking-thumb:hover { transform: translateY(-2px); }
.cooking-thumb.active { border-color: var(--gold); }

/* Right column / info */
.cooking-img {
  flex: 1;
  min-width: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,.1);
}
.cooking-img img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.cooking-info { flex: 1; min-width: 300px; }
.cooking-price { font-size: 24px; font-weight: 800; color: var(--text); margin: 20px 0 24px; }
.cooking-price span { font-size: 14px; font-weight: 500; color: var(--text-muted); }

#hotels { background: var(--cream); }
.hotels-head { text-align: center; margin-bottom: 56px; }
.hotels-head .sec-sub { margin: 0 auto; }
.hotels-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.hotel-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s;
}
.hotel-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.08); }
.hotel-img { width: 100%; height: 220px; object-fit: cover; }
.hotel-body { padding: 24px; }
.hotel-tag { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.hotel-name { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.hotel-desc { font-size: 13px; color: var(--text-sub); line-height: 1.6; margin-bottom: 20px; }
.hotel-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  transition: color .2s;
  cursor: pointer;
}
.hotel-link:hover { color: var(--text); }

#reviews { background: var(--white); border-top: 1px solid var(--border); }
.reviews-head { text-align: center; margin-bottom: 56px; }
.reviews-head .sec-sub { margin: 0 auto; }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.review-card { background: var(--cream); border-radius: var(--radius-md); padding: 28px; border: 1px solid var(--border); }
.review-stars { color: #F5A623; font-size: 16px; margin-bottom: 12px; }
.review-text { font-size: 14px; line-height: 1.65; color: var(--text-sub); margin-bottom: 18px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.review-name { font-size: 13px; font-weight: 700; }
.review-date { font-size: 11px; color: var(--text-muted); }
.review-source { margin-left: auto; font-size: 11px; font-weight: 700; color: var(--gold); }

#guides { background: var(--cream); }
.guides-head { margin-bottom: 60px; }
.guides-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }
.guide-card { text-align: center; cursor: pointer; transition: transform .2s; }
.guide-card:hover { transform: translateY(-5px); }
.guide-avatar {
  width: 160px; height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 18px;
  border: 3px solid var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
}
.guide-name { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.guide-role { font-size: 13px; font-weight: 500; color: var(--text-sub); margin-bottom: 8px; }
.guide-lang { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; }
.guide-see-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color .2s;
}
.guide-see-more:hover { color: var(--text); }

.modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,.5);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.modal-overlay.active { display: flex; }
.modal-content {
  background: var(--white);
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  border-radius: var(--radius-lg);
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
}
.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
.modal-body {
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
}
.modal-profile-img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius-md); }
.modal-info h2 { font-size: 28px; margin-bottom: 8px; letter-spacing: -0.02em; }
.modal-info h3 { font-size: 16px; color: var(--gold); margin-bottom: 16px; font-weight: 600; }
.modal-info p { font-size: 14px; color: var(--text-sub); line-height: 1.7; margin-bottom: 24px; }
.modal-album { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 24px; }
.modal-album img { width: 100%; height: 80px; object-fit: cover; border-radius: var(--radius-sm); }
.modal-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--text);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 13px;
  border: none;
  transition: background .2s;
}
.modal-contact-btn:hover { background: var(--gold); }
.hotel-modal-body { padding: 48px; }
.hotel-modal-body h2 { font-size: 28px; margin-bottom: 24px; letter-spacing: -0.02em; }
.hotel-modal-grid { display: flex; flex-direction: column; gap: 32px; }
.hotel-modal-item {
  display: flex;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.hotel-modal-item:last-child { border-bottom: none; padding-bottom: 0; }
.hotel-modal-item img { width: 150px; height: 110px; object-fit: cover; border-radius: var(--radius-sm); flex-shrink: 0; }
.hotel-modal-info { flex: 1; }
.hotel-modal-item h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.hotel-modal-item p { font-size: 13px; color: var(--text-sub); line-height: 1.6; margin-bottom: 12px; }

#contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; margin-top: 56px; }
.contact-info-title { font-size: 20px; font-weight: 700; line-height: 1.35; margin-bottom: 36px; }
.c-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.c-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.c-lbl { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 3px; }
.c-val { font-size: 14px; font-weight: 500; }
.map-container { margin-top: 36px; border-radius: var(--radius-md); overflow: hidden; border: 2px solid var(--cream); }

.form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fld { display: flex; flex-direction: column; gap: 6px; }
.fld label { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); }
.fld input, .fld select, .fld textarea {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--text);
  outline: none;
  resize: none;
  position: relative;
}
.fld input:focus, .fld select:focus, .fld textarea:focus { border-color: var(--text); }
.form-btn {
  align-self: flex-start;
  background: var(--text);
  color: var(--white);
  border: none;
  border-radius: 100px;
  padding: 14px 30px;
  font-size: 13px;
  font-weight: 600;
  transition: background .2s;
}
.form-btn:hover { background: var(--gold); }

.fab-container { position: fixed; bottom: 28px; right: 28px; z-index: 500; display: flex; flex-direction: column; gap: 14px; }
.fab {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
  transition: transform .2s;
  border: none;
  cursor: pointer;
}
.fab:hover { transform: scale(1.1); }
.fab-wa  { background: var(--wa-green); color: white; }
.fab-msg { background: var(--msg-blue); color: white; }

footer { background: var(--text); color: rgba(255,255,255,.85); padding: 64px 60px 36px; }
.foot-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.foot-logo { font-size: 17px; font-weight: 800; color: var(--white); margin-bottom: 14px; }
.foot-logo em { color: var(--gold-light); font-style: normal; }
.foot-brand p { font-size: 13px; color: rgba(255,255,255,.5); max-width: 240px; }
.foot-col-ttl { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 18px; }
.foot-col ul { list-style: none; }
.foot-col ul li { margin-bottom: 10px; }
.foot-col ul li a { font-size: 13px; color: rgba(255,255,255,.65); }
.foot-col ul li a:hover { color: var(--gold-light); }
.foot-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; }
.foot-bottom p { font-size: 12px; color: rgba(255,255,255,.35); }

.sr { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.sr.in { opacity: 1; transform: translateY(0); }

@media (max-width: 1024px) {
  .section-wrap { padding: 80px 40px; }
  #navbar { padding: 0 40px; }
  footer { padding: 56px 40px 28px; }
  .tour-card, .val-card { min-width: calc(50% - 10px); }
  .guides-grid { grid-template-columns: repeat(3,1fr); }
  .contact-grid { gap: 48px; }
  .reviews-grid, .hotels-grid { grid-template-columns: repeat(2,1fr); }
  .modal-body, .hotel-modal-body { grid-template-columns: 1fr; }
  .cooking-wrap { gap: 40px; }
  .corp-container { flex-direction: column; gap: 36px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .section-wrap { padding: 64px 24px; }
  #navbar { padding: 0 24px; }
  footer { padding: 48px 24px 24px; }
  #airport { padding: 40px 24px; }
  .hamburger { display: block; }
  .nav-links, .nav-book { display: none; }
  .lang-switcher { display: none; } /* hidden in navbar on mobile — shown in mobile menu instead */
  .hero-card { width: 100%; border-bottom-right-radius: 48px; padding: 70px 24px 30px; min-height: auto; }
  .hero-title { font-size: 26px; margin-bottom: 14px; }
  .hero-sub { font-size: 13px; margin-bottom: 24px; }
  .tour-card, .val-card { min-width: 85vw; }
  .guides-grid { grid-template-columns: repeat(2,1fr); gap: 20px; }
  .guide-avatar { width: 100px; height: 100px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .reviews-grid, .hotels-grid { grid-template-columns: 1fr; }
  .fld select { -webkit-appearance: menulist; appearance: menulist; padding: 10px; }
  .fab-container { bottom: 20px; right: 20px; }
  .fab { width: 50px; height: 50px; }
  .modal-body, .hotel-modal-body { padding: 24px; gap: 24px; }
  .modal-album { grid-template-columns: repeat(2,1fr); }
  .airport-wrap { flex-direction: column; text-align: center; }
  .airport-info { text-align: center; }
  .cooking-wrap { flex-direction: column; }
  .cooking-img { min-width: 100%; }
  .hotel-modal-item { flex-direction: column; }
  .hotel-modal-item img { width: 100%; height: 160px; }
}

.tour-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,10,20,.55);
  backdrop-filter: blur(4px);
  z-index: 9000;
  overflow-y: auto;
  padding: 40px 16px;
}
.tour-modal-overlay.active { display: flex; align-items: flex-start; justify-content: center; }
.tour-modal-box {
  background: var(--white);
  border-radius: 20px;
  width: 100%;
  max-width: 780px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.18);
  animation: modalIn .28s cubic-bezier(.34,1.3,.64,1);
}
@keyframes modalIn {
  from { opacity:0; transform:translateY(24px) scale(.97); }
  to   { opacity:1; transform:translateY(0) scale(1); }
}
.tour-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(6px);
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  color: var(--text);
}
.tour-modal-close:hover { background: var(--white); }
.tour-modal-img { width: 100%; height: 260px; object-fit: cover; display: block; }
.tour-modal-content { padding: 28px 32px 36px; }
.tour-modal-title { font-size: 24px; font-weight: 800; margin: 6px 0 14px; color: var(--text); }
.tour-modal-meta { display: flex; gap: 20px; font-size: 13px; color: var(--text-sub); flex-wrap: wrap; margin-bottom: 8px; }
.tour-modal-meta span { display: flex; align-items: center; gap: 5px; }
.tour-modal-price { font-size: 26px; font-weight: 800; color: var(--text); margin-bottom: 24px; }
.tour-modal-price span { font-size: 13px; font-weight: 500; color: var(--text-muted); }

.tm-section { margin-bottom: 22px; }
.tm-section-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}
.tm-included { color: #2a7a4b !important; border-color: #d1f0e0 !important; }
.tm-excluded { color: #b94040 !important; border-color: #fde0e0 !important; }

.tm-itinerary { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0; }
.tm-itinerary li {
  display: flex;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  line-height: 1.55;
}
.tm-itinerary li:last-child { border-bottom: none; }
.tm-time {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  min-width: 56px;
  padding-top: 1px;
}
.tm-step { color: var(--text); }

.tm-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.tm-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.tm-list li { font-size: 13px; color: var(--text-sub); line-height: 1.5; padding-left: 4px; }
.tm-meeting { font-size: 13px; color: var(--text-sub); line-height: 1.6; margin: 0; }

.tm-book-btn {
  width: 100%;
  margin-top: 28px;
  padding: 16px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
}

@media (max-width: 600px) {
  .tour-modal-content { padding: 20px 18px 28px; }
  .tm-two-col { grid-template-columns: 1fr; }
  .tour-modal-img { height: 200px; }
  .tour-modal-title { font-size: 19px; }
}

.practical-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.practical-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: box-shadow .2s, transform .2s;
}
.practical-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  transform: translateY(-3px);
}
.practical-icon {
  font-size: 32px;
  margin-bottom: 14px;
  line-height: 1;
}
.practical-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.practical-card > p {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.65;
  margin-bottom: 14px;
}
.practical-list {
  list-style: none;
  padding: 5;
  margin: 0;
  border-top: 1px solid var(--border);
  padding-top: 12px;
  display: none;
  flex-direction: column;
  gap: 6px;
}
.practical-list li {
  font-size: 12.5px;
  color: var(--text-sub);
  line-height: 1.5;
}

.faq-list {
  max-width: 760px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  padding: 20px 8px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color .2s;
  font-family: var(--font);
}
.faq-q:hover { color: var(--gold); }
.faq-q.open { color: var(--gold); }
.faq-arrow {
  font-size: 18px;
  transition: transform .25s;
  flex-shrink: 0;
  color: var(--gold);
}
.faq-q.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 8px 20px;
}
.faq-a.open { display: block; }
.faq-a p {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 900px) {
  .practical-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .practical-grid { grid-template-columns: 1fr; }
}

.cooking-meta-row { display: flex; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--text-sub); margin: 16px 0 24px; }
.cooking-meta-row span { display: flex; align-items: center; gap: 5px; }

.cooking-dishes { margin-bottom: 22px; }
.cooking-dishes-title { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; }
.cooking-dish-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.cooking-dish-tags span {
  font-size: 12px;
  font-weight: 600;
  background: var(--gold-pale);
  color: var(--gold);
  padding: 5px 12px;
  border-radius: 100px;
}

.cooking-inex { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.cooking-inex ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 5px; }
.cooking-inex li { font-size: 12.5px; color: var(--text-sub); line-height: 1.5; }
.cooking-inex-title { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 8px; padding-bottom: 6px; border-bottom: 1px solid var(--border); }
.cooking-inex-title.incl { color: #2a7a4b; border-color: #d1f0e0; }
.cooking-inex-title.excl { color: #b94040; border-color: #fde0e0; }

@media (max-width: 700px) {
  .cooking-thumbs { grid-template-columns: repeat(5, 1fr); }
  .cooking-thumb img { height: 48px; }
  .cooking-inex { grid-template-columns: 1fr; }
}

#navbar { background: rgba(255,255,255,.96) !important; backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--border); }

.ms-wrapper { position:relative; }
.ms-trigger { width:100%; display:flex; align-items:center; justify-content:space-between; padding:11px 14px; border:1.5px solid var(--border,#e5e7eb); border-radius:10px; background:#fff; font-family:var(--font); font-size:14px; color:var(--text,#1a1f36); cursor:pointer; transition:border-color .2s; }
.ms-trigger:hover,.ms-trigger.open { border-color:var(--indigo,#4f46e5); }
.ms-trigger svg { flex-shrink:0; transition:transform .2s; }
.ms-trigger.open svg { transform:rotate(180deg); }
.ms-dropdown { display:none; position:absolute; top:calc(100% + 6px); left:0; right:0; background:#fff; border:1.5px solid var(--border,#e5e7eb); border-radius:10px; padding:8px; z-index:9999; box-shadow:0 8px 24px rgba(0,0,0,.1); max-height:280px; overflow-y:auto; }
.ms-dropdown.open { display:block; }
.ms-item { display:flex; align-items:center; gap:10px; padding:9px 10px; border-radius:7px; cursor:pointer; font-size:13px; color:var(--text,#1a1f36); transition:background .15s; }
.ms-item:hover { background:rgba(79,70,229,.06); }
.ms-item input[type="checkbox"] { accent-color:var(--indigo,#4f46e5); width:15px; height:15px; cursor:pointer; flex-shrink:0; }
.ms-item input:checked + span { font-weight:600; color:var(--indigo,#4f46e5); }
.ms-price { margin-left:auto; font-size:12px; font-weight:700; color:var(--gold,#d4a017); flex-shrink:0; }

.people-picker { display:flex; align-items:center; border:1.5px solid var(--border,#e5e7eb); border-radius:10px; overflow:hidden; height:44px; }
.pp-btn { width:44px; height:44px; border:none; background:#f8f9fb; font-size:20px; font-weight:300; cursor:pointer; color:var(--text,#1a1f36); transition:background .15s; flex-shrink:0; }
.pp-btn:hover { background:rgba(79,70,229,.08); color:var(--indigo,#4f46e5); }
#pp-count { flex:1; text-align:center; font-size:16px; font-weight:700; color:var(--text,#1a1f36); }

.lang-switcher { position:relative; }
.lang-btn { display:flex; align-items:center; gap:6px; background:var(--text,#1a1f36); border:1px solid var(--text,#1a1f36); color:#fff; font-family:var(--font); font-size:13px; font-weight:600; padding:7px 12px; border-radius:8px; cursor:pointer; transition:background .2s; }
.lang-btn:hover { background:#2d3350; }
.lang-caret { transition:transform .2s; }
.lang-btn[aria-expanded="true"] .lang-caret { transform:rotate(180deg); }
.lang-dropdown { display:none; position:absolute; top:calc(100% + 8px); right:0; background:#fff; border:1px solid rgba(0,0,0,.1); border-radius:10px; list-style:none; padding:6px; margin:0; min-width:160px; box-shadow:0 8px 24px rgba(0,0,0,.12); z-index:99999; }
.lang-dropdown.open { display:block; }
.lang-dropdown li { padding:9px 12px; border-radius:7px; font-size:13px; font-weight:500; color:var(--text,#1a1f36); cursor:pointer; transition:background .15s; }
.lang-dropdown li:hover { background:rgba(0,0,0,.05); }
.lang-dropdown li.active { color:var(--indigo,#4f46e5); font-weight:700; }

.mobile-lang { display:flex; gap:12px; flex-wrap:wrap; justify-content:center; padding:8px 0; }
.mobile-lang-btn { padding:8px 16px; border-radius:20px; border:1.5px solid var(--border,#e5e7eb); background:#fff; font-family:var(--font); font-size:14px; font-weight:600; color:var(--text,#1a1f36); cursor:pointer; transition:all .2s; }
.mobile-lang-btn:hover,.mobile-lang-btn.active { background:var(--text,#1a1f36); color:#fff; border-color:var(--text,#1a1f36); }

.goog-te-banner-frame,.skiptranslate { display:none !important; }
body { top:0 !important; }

.footer-links { list-style:none; padding:0; margin:14px 0 0; }
.footer-links li { margin-bottom:10px; }
.footer-links li a { font-size:13px; color:rgba(255,255,255,.65); }
.footer-links li a:hover { color:var(--gold-light); }
