:root {
  --brand: #C8553D;
  --brand-dark: #A53E2A;
  --brand-light: #F2C9B5;
  --cream: #FAF6F1;
  --ink: #2B2B2B;
  --muted: #6E6E6E;
  --line: #E8E2DA;
  --shadow: 0 8px 24px rgba(165,62,42,.08);
  --shadow-lg: 0 12px 40px rgba(165,62,42,.16);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-dark); }
img { max-width: 100%; display: block; }
.seo-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 12px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.seo-links a {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 14px;
}

/* ===== Topbar ===== */
.topbar { background: var(--brand-dark); color: #fff; font-size: 13px; padding: 8px 0; }
.topbar .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.topbar a { color: #fff; }

/* ===== Header / Nav with dropdown ===== */
.header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 6px rgba(0,0,0,.04);
}
.header .wrap { display: flex; flex-direction: column; align-items: stretch; padding: 14px 24px 16px; gap: 12px; }
.brand-row { display: flex; align-items: center; justify-content: center; position: relative; width: 100%; }
.brand { display: flex; align-items: center; justify-content: center; gap: 14px; text-decoration: none; text-align: center; width: 100%; }
.brand-mark {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff; font-weight: 800; font-size: 22px;
  display: grid; place-items: center;
  letter-spacing: -1px;
  box-shadow: var(--shadow);
}
.brand-name { font-size: clamp(24px, 3vw, 36px); font-weight: 900; color: var(--brand); letter-spacing: 1.5px; line-height: 1.1; }
.brand-tag { font-size: 11px; color: var(--muted); letter-spacing: 2.5px; text-transform: uppercase; margin-top: 4px; }

nav { width: 100%; border-top: 1px solid var(--line); padding-top: 12px; }
nav > ul { display: flex; gap: 9px; list-style: none; align-items: center; justify-content: center; flex-wrap: wrap; }
nav a {
  display: block;
  padding: 11px 16px;
  color: var(--brand-dark);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 4px 12px rgba(165,62,42,.05);
  font-weight: 800;
  font-size: 14px;
  border-radius: 999px;
  transition: transform .18s, background .18s, color .18s, box-shadow .18s, border-color .18s;
  white-space: nowrap;
}
nav a:hover, nav a.active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(165,62,42,.18);
}

/* dropdown */
nav .has-sub { position: relative; }
nav .has-sub > ul.sub {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%);
  background: #fff;
  min-width: 240px;
  list-style: none;
  padding: 6px 0;
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
  border: 1px solid var(--line);
  display: none;
}
nav .has-sub:hover > ul.sub { display: block; }
nav .has-sub > ul.sub li { display: block; }
nav .has-sub > ul.sub a {
  padding: 10px 18px;
  border-radius: 6px;
  border: 0;
  box-shadow: none;
  font-weight: 700;
  font-size: 14px;
}
nav .has-sub > ul.sub a:hover { background: var(--cream); color: var(--brand-dark); }

/* ===== Buttons ===== */
.cta-btn {
  display: inline-block;
  background: var(--brand);
  color: #fff !important;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 700;
  border: 0; cursor: pointer;
  transition: all .2s;
  font-size: 15px;
  text-decoration: none;
}
.cta-btn:hover { background: var(--brand-dark); transform: translateY(-1px); box-shadow: var(--shadow); }
.cta-btn.outline { background: transparent; color: var(--brand) !important; border: 2px solid var(--brand); padding: 10px 22px; }
.cta-btn.outline:hover { background: var(--brand); color: #fff !important; }
.cta-btn.lg { padding: 16px 32px; font-size: 17px; }
.cta-btn.whatsapp { background: #25D366; color: #fff !important; }
.cta-btn.whatsapp:hover { background: #128C7E; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 560px;
  background: radial-gradient(circle at top left, rgba(242,201,181,.22), transparent 32%),
              linear-gradient(135deg, rgba(43,24,18,.58) 0%, rgba(165,62,42,.72) 100%),
              url('../img/udaipur-pichola.jpg') center/cover;
  color: #fff;
  display: grid; place-items: center;
  text-align: center;
  padding: 80px 24px;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.34), transparent 46%);
  pointer-events: none;
}
.hero > div { position: relative; z-index: 1; }
.hero-kicker {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 999px;
  background: rgba(255,255,255,.13);
  backdrop-filter: blur(8px);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hero h1 { font-size: clamp(32px, 5vw, 58px); font-weight: 800; margin-bottom: 18px; letter-spacing: -0.5px; line-height: 1.15; }
.hero p { font-size: clamp(16px, 1.5vw, 20px); max-width: 760px; opacity: .96; margin-bottom: 32px; }
.hero .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero .cta-btn { background: #fff; color: var(--brand) !important; }
.hero .cta-btn:hover { background: var(--cream); }
.hero .cta-btn.outline { background: transparent; color: #fff !important; border-color: #fff; }
.hero .cta-btn.outline:hover { background: #fff; color: var(--brand) !important; }
.hero .cta-btn.whatsapp { background: #25D366; color: #fff !important; }
.hero-points {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.hero-points span {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.28);
  font-weight: 700;
  font-size: 14px;
}

.page-hero {
  background: linear-gradient(135deg, rgba(200,85,61,.85) 0%, rgba(165,62,42,.92) 100%),
              url('../img/udaipur-citypalace.jpg') center/cover;
  color: #fff;
  padding: 90px 24px 70px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; }
.page-hero p { opacity: .92; margin-top: 8px; max-width: 700px; margin-inline: auto; }

/* ===== Layout ===== */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 70px 0; }
.quick-strip { padding: 0; background: #fff; border-bottom: 1px solid var(--line); }
.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  transform: translateY(-34px);
  position: relative;
  z-index: 3;
  box-shadow: var(--shadow-lg);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}
.quick-grid div {
  padding: 20px;
  border-right: 1px solid var(--line);
}
.quick-grid div:last-child { border-right: 0; }
.quick-grid strong { display: block; color: var(--brand-dark); font-size: 16px; }
.quick-grid span { display: block; color: var(--muted); font-size: 13.5px; margin-top: 4px; }
@media (max-width: 900px) {
  .quick-grid { grid-template-columns: repeat(2, 1fr); transform: translateY(-20px); }
  .quick-grid div:nth-child(2) { border-right: 0; }
}
@media (max-width: 560px) {
  .quick-grid { grid-template-columns: 1fr; }
  .quick-grid div { border-right: 0; border-bottom: 1px solid var(--line); }
}
.section-title { text-align: center; margin-bottom: 50px; }
.section-title .eyebrow {
  color: var(--brand);
  font-size: 13px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
}
.section-title h2 { font-size: clamp(26px, 3.5vw, 38px); margin-top: 8px; line-height: 1.2; }
.section-title p { color: var(--muted); margin-top: 12px; max-width: 680px; margin-inline: auto; }

/* ===== Cards ===== */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 26px; }
.card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card .img { height: 220px; overflow: hidden; }
.card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.card:hover .img img { transform: scale(1.06); }
.card .body { padding: 22px 24px 26px; }
.card h3 { font-size: 19px; margin-bottom: 8px; color: var(--brand-dark); }
.card p { color: var(--muted); font-size: 14.5px; }
.card .more { display: inline-block; margin-top: 14px; font-weight: 700; font-size: 14px; }

/* ===== Feature list ===== */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 30px; }
.feature {
  text-align: center;
  padding: 30px 22px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--line);
}
.feature .icon {
  width: 60px; height: 60px;
  margin: 0 auto 14px;
  background: var(--brand-light);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 24px;
  color: var(--brand-dark);
}
.feature h4 { font-size: 17px; margin-bottom: 6px; }
.feature p { color: var(--muted); font-size: 14px; }

/* ===== Split section ===== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.split img { border-radius: 12px; box-shadow: var(--shadow-lg); width: 100%; height: 100%; max-height: 480px; object-fit: cover; }
.split h2 { font-size: 32px; color: var(--brand-dark); margin-bottom: 16px; line-height: 1.2; }
.split .eyebrow { color: var(--brand); font-size: 13px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 12px; display: block; }
.split p { margin-bottom: 14px; color: #444; }
@media (max-width: 800px) { .split { grid-template-columns: 1fr; gap: 30px; } }

/* ===== Homepage photo story ===== */
.photo-story { background: #fff; }
.photo-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-auto-rows: 240px;
  gap: 18px;
}
.photo-tile {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  min-height: 220px;
  box-shadow: var(--shadow);
  color: #fff !important;
}
.photo-tile.big { grid-row: span 2; }
.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s;
}
.photo-tile:hover img { transform: scale(1.06); }
.photo-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.72), rgba(0,0,0,.06));
}
.photo-tile span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  font-size: 14px;
  line-height: 1.45;
}
.photo-tile strong { display: block; font-size: 20px; margin-bottom: 2px; }
.check-list { list-style: none; margin: 18px 0 24px; }
.check-list li { padding: 7px 0; color: #444; }
.check-list li::before { content: "✓ "; color: var(--brand); font-weight: 800; }
.trust-split { align-items: center; }
.route-highlight { background: linear-gradient(180deg, #fff 0%, var(--cream) 100%); }
.route-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 20px 0 22px;
}
.route-meta span {
  display: block;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--muted);
  font-size: 13px;
}
.route-meta strong { display: block; color: var(--brand-dark); font-size: 14px; margin-bottom: 2px; }
.route-actions { justify-content: flex-start; }
.route-actions .cta-btn.outline { background: #fff; }
.route-card {
  border-top: 4px solid var(--brand);
}
.route-card .body span {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--brand-light);
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 800;
}
.image-credit {
  font-size: 12px;
  color: var(--muted);
  margin-top: 14px;
  text-align: center;
}
@media (max-width: 700px) {
  .route-meta { grid-template-columns: 1fr; }
}
.sightseeing-intro { padding: 0; background: #fff; }
.sightseeing-intro .route-meta {
  transform: translateY(-28px);
  position: relative;
  z-index: 2;
  margin: 0;
  box-shadow: var(--shadow-lg);
  border-radius: 14px;
  overflow: hidden;
}
.plan-grid { align-items: stretch; }
.plan-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.plan-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
}
.plan-card span {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--brand-light);
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 12px;
}
.plan-card h3 {
  color: var(--brand-dark);
  font-size: 20px;
  margin-bottom: 8px;
}
.plan-card p {
  color: var(--muted);
  font-size: 14.5px;
}
@media (max-width: 900px) {
  .photo-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }
  .photo-tile.big { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 560px) {
  .photo-grid { grid-template-columns: 1fr; }
  .photo-tile.big { grid-column: auto; }
}

/* ===== Service row (Other Services page) ===== */
.svc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 50px 0;
  border-bottom: 1px solid var(--line);
}
.svc-row:last-of-type { border-bottom: 0; }
.svc-row.reverse { direction: rtl; }
.svc-row.reverse > * { direction: ltr; }
.svc-row img { border-radius: 12px; box-shadow: var(--shadow-lg); width: 100%; max-height: 360px; object-fit: cover; }
.svc-row h2 { font-size: 28px; color: var(--brand-dark); margin-bottom: 14px; }
.svc-row .num { display: inline-block; background: var(--brand); color: #fff; padding: 5px 14px; border-radius: 30px; font-size: 12px; font-weight: 700; letter-spacing: 1px; margin-bottom: 14px; }
.svc-row ul { list-style: none; margin-top: 14px; }
.svc-row ul li { padding: 4px 0; color: #444; }
.svc-row ul li::before { content: "✓ "; color: var(--brand); font-weight: 700; }
@media (max-width: 800px) { .svc-row { grid-template-columns: 1fr; gap: 24px; padding: 36px 0; } .svc-row.reverse { direction: ltr; } }

/* ===== Forms ===== */
.form-card {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  max-width: 760px;
  margin: 0 auto;
}
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.row3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .row2, .row3 { grid-template-columns: 1fr; } }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 14px; color: var(--ink); }
.field .req { color: var(--brand); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-family: inherit;
  font-size: 15px;
  background: #fff;
  transition: border .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-light);
}
.field textarea { min-height: 130px; resize: vertical; }

.thanks {
  display: none;
  padding: 30px;
  background: #ecf6e0;
  border: 1px solid #b9d99a;
  border-radius: 8px;
  text-align: center;
  color: #3a6b1c;
  margin-bottom: 18px;
}
.thanks.show { display: block; }

/* ===== Contact info ===== */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
.info-list { list-style: none; }
.info-list li { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.info-list li:last-child { border-bottom: 0; }
.info-list .icon {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--brand-light);
  color: var(--brand-dark);
  border-radius: 8px;
  display: grid; place-items: center;
  font-size: 18px;
}
.info-list strong { display: block; color: var(--ink); font-size: 14px; margin-bottom: 2px; }
.info-list span { color: var(--muted); font-size: 14px; }

/* ===== Tour package list ===== */
.pkg {
  display: grid;
  grid-template-columns: 300px 1fr auto;
  gap: 24px;
  padding: 22px;
  background: #fff;
  border-radius: 12px;
  margin-bottom: 18px;
  box-shadow: var(--shadow);
  transition: transform .2s;
  align-items: center;
}
.pkg:hover { transform: translateX(4px); }
.pkg .img { height: 200px; border-radius: 8px; overflow: hidden; }
.pkg .img img { width: 100%; height: 100%; object-fit: cover; }
.pkg h3 { color: var(--brand-dark); margin-bottom: 6px; font-size: 22px; }
.pkg .meta { color: var(--muted); font-size: 13px; margin-bottom: 8px; }
.pkg ul { list-style: none; font-size: 14px; }
.pkg ul li { padding: 2px 0; color: #444; }
.pkg ul li::before { content: "✓ "; color: var(--brand); font-weight: 700; }
.pkg .price { text-align: right; }
.pkg .price .num { font-size: 28px; font-weight: 800; color: var(--brand); }
.pkg .price .pp { font-size: 12px; color: var(--muted); }
@media (max-width: 800px) { .pkg { grid-template-columns: 1fr; } .pkg .price { text-align: left; } }

/* ===== Itinerary on tour detail pages ===== */
.itinerary { max-width: 880px; margin: 0 auto; }
.day {
  background: #fff;
  padding: 24px 28px;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
}
.day .badge {
  background: var(--brand);
  color: #fff;
  border-radius: 8px;
  padding: 12px 8px;
  text-align: center;
  font-weight: 800;
  height: fit-content;
}
.day .badge .small { font-size: 11px; letter-spacing: 1px; opacity: .9; display: block; }
.day .badge .num { font-size: 28px; line-height: 1; }
.day h4 { color: var(--brand-dark); margin-bottom: 6px; font-size: 18px; }
.day p { color: #444; font-size: 14.5px; }

/* ===== Fleet / pricing table ===== */
.fleet { width: 100%; border-collapse: collapse; background: #fff; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); }
.fleet th, .fleet td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line); font-size: 15px; }
.fleet th { background: var(--brand); color: #fff; font-weight: 700; }
.fleet tbody tr:hover { background: var(--cream); }

/* ===== Hotel categories ===== */
.hotel-cat .card { text-align: center; padding-bottom: 10px; }
.hotel-cat .price { font-weight: 700; color: var(--brand); margin-top: 8px; }

/* ===== Banner CTA ===== */
.banner {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  padding: 50px 24px;
  border-radius: 14px;
  text-align: center;
  margin: 60px 0 0;
}
.banner h2 { font-size: 28px; margin-bottom: 10px; }
.banner p { opacity: .92; margin-bottom: 22px; }
.banner .cta-btn { background: #fff; color: var(--brand) !important; }

/* ===== Footer ===== */
footer { background: #1f1410; color: #d8c9c2; padding: 56px 0 24px; margin-top: 60px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; }
@media (max-width: 880px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 26px; } }
@media (max-width: 480px) { .foot-grid { grid-template-columns: 1fr; } }
footer h5 { color: #fff; font-size: 16px; margin-bottom: 16px; letter-spacing: 1px; }
footer ul { list-style: none; }
footer li { padding: 4px 0; }
footer a { color: #d8c9c2; }
footer a:hover { color: #fff; }
footer .copy { text-align: center; padding-top: 28px; margin-top: 32px; border-top: 1px solid #3a2a23; font-size: 13px; opacity: .7; }
.blink-love {
  display: inline-block;
  color: #facc15;
  font-size: 15px;
  margin: 0 4px;
  animation: blinkLove 1.15s infinite;
}
.blink-love.heart {
  color: #fb7185;
  animation-delay: .35s;
}
@keyframes blinkLove {
  0%, 100% { opacity: .35; transform: scale(.92); }
  50% { opacity: 1; transform: scale(1.18); }
}

/* ===== Floating mobile/contact CTA ===== */
.float-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 200;
  display: flex;
  gap: 8px;
  align-items: center;
}
.float-cta a {
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
}
.float-call { background: var(--brand-dark); }
.float-wa { background: #25D366; }
@media (max-width: 560px) {
  .float-cta {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
  .float-cta a {
    flex: 1;
    text-align: center;
  }
  body { padding-bottom: 72px; }
}

/* ===== Mobile nav ===== */
.menu-toggle { display: none; background: none; border: 0; font-size: 26px; cursor: pointer; color: var(--brand); padding: 6px 10px; }
@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .brand-row { justify-content: center; padding-right: 48px; }
  .menu-toggle { position: absolute; right: 0; top: 50%; transform: translateY(-50%); }
  nav { position: absolute; top: 100%; left: 0; right: 0; background: #fff; box-shadow: 0 6px 16px rgba(0,0,0,.1); max-height: calc(100vh - 80px); overflow-y: auto; }
  nav > ul { display: none; flex-direction: column; padding: 8px; align-items: stretch; }
  nav > ul.open { display: flex; }
  nav a { padding: 12px 14px; border-radius: 10px; }
  nav a:hover, nav a.active { transform: none; }
  nav .has-sub > ul.sub { position: static; transform: none; box-shadow: none; border: 0; padding-left: 12px; padding-top: 0; padding-bottom: 4px; display: none; min-width: 0; border-left: 3px solid var(--brand-light); margin-left: 14px; }
  nav .has-sub.open > ul.sub { display: block; }
  nav .has-sub > ul.sub a { padding: 9px 12px; font-size: 13.5px; }
  .header .wrap { position: relative; }
}

/* ===== Tablet (≤ 768px) ===== */
@media (max-width: 768px) {
  body { font-size: 15px; line-height: 1.55; }
  section { padding: 50px 0; }
  .wrap { padding: 0 16px; }

  /* Topbar — stack vertically, smaller */
  .topbar { font-size: 11.5px; padding: 6px 0; }
  .topbar .wrap { flex-direction: column; gap: 2px; text-align: center; }

  /* Header */
  .header .wrap { padding: 10px 14px; gap: 8px; }
  .brand { gap: 10px; }
  .brand-mark { width: 44px; height: 44px; font-size: 18px; }
  .brand-name { font-size: 19px; letter-spacing: 0.5px; }
  .brand-tag { display: none; }

  /* Hero */
  .hero { min-height: 420px; padding: 60px 16px; }
  .hero h1 { font-size: 28px; line-height: 1.2; }
  .hero p { font-size: 15px; }
  .hero .actions { gap: 10px; }

  .page-hero { padding: 50px 16px 40px; }
  .page-hero h1 { font-size: 26px; }
  .page-hero p { font-size: 14.5px; }

  /* Section title */
  .section-title { margin-bottom: 32px; }
  .section-title h2 { font-size: 24px; }
  .section-title p { font-size: 14.5px; }
  .section-title .eyebrow { font-size: 11.5px; }

  /* Cards */
  .grid-3 { gap: 16px; }
  .card .img { height: 200px; }
  .card .body { padding: 18px 18px 22px; }
  .card h3 { font-size: 17px; }

  /* Features */
  .features { gap: 14px; margin-top: 22px; }
  .feature { padding: 22px 16px; }
  .feature .icon { width: 50px; height: 50px; font-size: 20px; }
  .feature h4 { font-size: 15px; }

  /* Split */
  .split { gap: 24px; }
  .split h2 { font-size: 24px; }

  /* Service rows */
  .svc-row { gap: 20px; padding: 30px 0; }
  .svc-row h2 { font-size: 22px; }
  .svc-row .num { padding: 4px 12px; font-size: 11px; }

  /* Forms */
  .form-card { padding: 24px 18px; }
  .field input, .field select, .field textarea { font-size: 16px; padding: 11px 12px; } /* 16px prevents iOS zoom on focus */
  .field label { font-size: 13.5px; }

  /* Tour package list */
  .pkg { padding: 16px; gap: 14px; margin-bottom: 14px; }
  .pkg .img { height: 170px; }
  .pkg h3 { font-size: 18px; }
  .pkg .meta { font-size: 12.5px; }
  .pkg ul { font-size: 13.5px; }
  .pkg .price .num { font-size: 22px; }
  .pkg .price { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; }
  .pkg .price .cta-btn { margin-top: 0 !important; }

  /* Itinerary */
  .day { grid-template-columns: 70px 1fr; gap: 14px; padding: 18px 18px; }
  .day .badge { padding: 10px 6px; }
  .day .badge .num { font-size: 22px; }
  .day .badge .small { font-size: 10px; }
  .day h4 { font-size: 16px; }
  .day p { font-size: 13.5px; }

  /* Banner */
  .banner { padding: 32px 18px; margin-top: 40px; }
  .banner h2 { font-size: 22px; }
  .banner p { font-size: 14.5px; }

  /* Buttons */
  .cta-btn { padding: 11px 20px; font-size: 14px; }
  .cta-btn.lg { padding: 13px 26px; font-size: 15px; }

  /* Fleet table */
  .fleet th, .fleet td { padding: 11px 12px; font-size: 13px; }
  .fleet th { font-size: 12.5px; }

  /* Contact */
  .contact-grid { gap: 28px; }
  .info-list li { padding: 14px 0; gap: 12px; }
  .info-list .icon { width: 38px; height: 38px; min-width: 38px; font-size: 15px; }
  .info-list strong { font-size: 13.5px; }
  .info-list span { font-size: 13.5px; }

  /* Footer */
  footer { padding: 40px 0 18px; margin-top: 40px; }
  .foot-grid { gap: 24px; }
  footer h5 { font-size: 14.5px; margin-bottom: 12px; }
  footer p, footer li { font-size: 13.5px; }
  footer .copy { font-size: 12px; padding-top: 22px; margin-top: 24px; }

  /* Iframe (map) */
  iframe { height: 280px !important; }
}

/* ===== Phone (≤ 480px) ===== */
@media (max-width: 480px) {
  section { padding: 40px 0; }
  .wrap { padding: 0 14px; }

  .hero { min-height: 380px; padding: 50px 14px; }
  .hero h1 { font-size: 24px; }
  .hero p { font-size: 14px; margin-bottom: 22px; }
  .hero .cta-btn, .hero .cta-btn.lg { width: 100%; max-width: 280px; }

  .page-hero { padding: 40px 14px 32px; }
  .page-hero h1 { font-size: 22px; }

  .brand-name { font-size: 13px; }
  .brand-mark { width: 40px; height: 40px; font-size: 16px; }

  .section-title h2 { font-size: 21px; }

  .grid-3, .grid-2 { gap: 14px; }
  .card .img { height: 180px; }

  .pkg .img { height: 160px; }
  .pkg h3 { font-size: 17px; }

  .day { grid-template-columns: 56px 1fr; gap: 12px; padding: 14px 14px; }
  .day .badge .num { font-size: 18px; }
  .day .badge { padding: 8px 4px; }

  .banner h2 { font-size: 19px; }
  .banner p { font-size: 13.5px; }
  .banner .cta-btn { padding: 11px 22px; font-size: 14px; }

  .form-card { padding: 20px 16px; }
  .form-card h3 { font-size: 18px; }

  .svc-row { padding: 22px 0; gap: 16px; }
  .svc-row h2 { font-size: 19px; }
  .svc-row img { max-height: 220px; }

  .fleet th, .fleet td { padding: 9px 8px; font-size: 12.5px; }

  iframe { height: 240px !important; }
}
