/* ============================================================
   YasothaborakTours – Main Stylesheet
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --white: #FFFFFF;
  --cream: #FDF7EE;
  --text: #111111;
  --text-sub: #444444;
  --text-muted: #888888;
  --gold: #B07D2C;
  --gold-light: #D4A040;
  --gold-pale: #FBF0DA;
  --border: #E8E8E8;
  --border-dark: #D0D0D0;
  --radius-lg: 32px;
  --radius-md: 16px;
  --radius-sm: 8px;
  --font: 'Plus Jakarta Sans', sans-serif;
  --nav-h: 72px;
  --wa-green: #25D366;
  --msg-blue: #0084FF;
}

/* ---------- Reset ---------- */
*, *::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;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font); }

/* ---------- Navbar ---------- */
#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 ---------- */
.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 ---------- */
#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); }

/* ---------- Photo Strip ---------- */
.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, #fff, transparent); }
.strip-outer::after  { right: 0; background: linear-gradient(to left, #fff, 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 Helpers ---------- */
.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 / Carousel ---------- */
#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(--gold-pale);
  left: -80px; top: -100px;
  z-index: 0;
}
.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 ---------- */
#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(--gold-pale);
  right: -60px; top: -120px;
  z-index: 0;
  pointer-events: none;
}
.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 Controls ---------- */
.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 ---------- */
#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 ---------- */
#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 Class ---------- */
#cooking { background: var(--white); }
.cooking-wrap { display: flex; gap: 60px; align-items: center; flex-wrap: wrap; }
.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 ---------- */
#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 ---------- */
#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: #00AA6C; 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: #00AA6C; }

/* ---------- Guides ---------- */
#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); }

/* ---------- Modals ---------- */
.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 ---------- */
#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); }

/* ---------- Contact Form ---------- */
.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); }

/* ---------- FABs ---------- */
.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 ---------- */
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); }

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

/* ---------- Responsive: Tablet ---------- */
@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; }
}

/* ---------- Responsive: Mobile ---------- */
@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; }
  .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; }
}
