/* ===========================================================
   India Grand Tour — Shared Styles
   =========================================================== */

:root {
  --saffron: #FF7722;
  --saffron-light: #FFB74D;
  --green: #168F5C;
  --green-light: #4CAF87;
  --navy: #16263F;
  --navy-light: #2E4360;
  --bg: #F7F5F0;
  --card: #FFFFFF;
  --border: #E6E1D8;
  --text: #2A2A2A;
  --text-light: #6B7280;
  --shadow: 0 2px 10px rgba(22, 38, 63, 0.06);
  --shadow-lg: 0 8px 28px rgba(22, 38, 63, 0.12);
  --radius: 14px;
  --radius-sm: 8px;
  --max-width: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

/* ---------------- Layout ---------------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

main { padding-bottom: 60px; }

.page-header {
  padding: 36px 0 18px;
}
.page-header h1 {
  margin: 0 0 6px;
  font-size: 2rem;
  color: var(--navy);
}
.page-header p {
  margin: 0;
  color: var(--text-light);
  font-size: 1.05rem;
}

/* ---------------- Date picker ---------------- */
.date-picker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 22px 0 26px;
  padding: 12px 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  font-size: 0.88rem;
}
.date-picker label {
  font-weight: 600;
  color: var(--navy);
}
.date-picker input[type="date"] {
  font-family: inherit;
  font-size: 0.88rem;
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  background: var(--bg);
}
.date-picker button {
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 12px;
  border: none;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  cursor: pointer;
}
.date-picker button:hover { background: var(--navy-light); }
.date-picker .date-picker-hint {
  color: var(--text-light);
  font-size: 0.8rem;
}

/* ---------------- Navbar ---------------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.nav-logo {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.3px;
}
.nav-logo:hover { text-decoration: none; opacity: 0.9; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
}

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  display: block;
  color: #cfd6e4;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}
.nav-links a:hover,
.nav-links a.active {
  background: rgba(255,255,255,0.1);
  color: #fff;
  text-decoration: none;
}
.nav-links a.active {
  background: var(--saffron);
  color: #fff;
}

.lang-toggle {
  display: flex;
  gap: 4px;
  margin-left: 10px;
}
.lang-toggle button {
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 10px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  background: transparent;
  color: #cfd6e4;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.lang-toggle button:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.lang-toggle button.active {
  background: var(--saffron);
  border-color: var(--saffron);
  color: #fff;
}

/* ---------------- Hero ---------------- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 55%, var(--green) 130%);
  color: #fff;
  padding: 50px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,119,34,0.25), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(76,175,135,0.25), transparent 45%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero .flag-strip {
  width: 64px;
  height: 6px;
  margin: 0 auto 18px;
  border-radius: 4px;
  background: linear-gradient(to right, var(--saffron) 0 33%, #fff 33% 66%, var(--green) 66% 100%);
}
.hero h1 {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 800;
}
.hero .subtitle {
  margin: 0 0 6px;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--saffron-light);
  font-weight: 600;
}
.hero .tagline {
  margin: 0;
  color: #cfd6e4;
  font-size: 0.95rem;
}

/* ---------------- Stat grid ---------------- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 14px;
  margin: 30px 0;
}
.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 14px;
  text-align: center;
  box-shadow: var(--shadow);
}
.stat-card .stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
}
.stat-card .stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* ---------------- Section ---------------- */
.section {
  margin: 40px 0;
}
.section-title {
  font-size: 1.4rem;
  color: var(--navy);
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-title .icon { font-size: 1.5rem; }

/* ---------------- Callout ---------------- */
.callout {
  background: #FFF4E8;
  border: 1px solid var(--saffron-light);
  border-left: 5px solid var(--saffron);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin: 18px 0;
}
.callout.green {
  background: #EAF7F0;
  border-color: var(--green-light);
  border-left-color: var(--green);
}
.callout.warn {
  background: #FFF1F1;
  border-color: #F2A6A6;
  border-left-color: #E25555;
}
.callout h3 { margin: 0 0 8px; color: var(--navy); font-size: 1.05rem; }
.callout p:last-child { margin-bottom: 0; }

/* ---------------- Timeline (month groups) ---------------- */
.month-block {
  margin-bottom: 26px;
}
.month-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--border);
}
.chip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
}
.chip {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  box-shadow: var(--shadow);
  transition: transform 0.12s, box-shadow 0.12s;
}
.chip:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}
.chip .chip-icon { font-size: 1.3rem; }
.chip .chip-name { font-weight: 700; color: var(--navy); font-size: 0.92rem; display: block; margin: 4px 0 2px; }
.chip .chip-meta { font-size: 0.78rem; color: var(--text-light); }
.chip .chip-nights {
  display: inline-block;
  margin-top: auto;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--green);
  color: #fff;
  padding: 2px 8px;
  border-radius: 999px;
}

/* ---------------- Cards grid (logistics etc) ---------------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.card h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.card p, .card ul { margin: 0; font-size: 0.92rem; color: var(--text); }
.card ul { padding-left: 1.1em; }

/* ---------------- CTA links (index quick links) ---------------- */
.cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.cta-card {
  display: block;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  transition: transform 0.12s, box-shadow 0.12s;
  text-decoration: none;
}
.cta-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}
.cta-card .cta-icon { font-size: 1.8rem; }
.cta-card h3 { margin: 8px 0 4px; color: var(--navy); }
.cta-card p { margin: 0; color: var(--text-light); font-size: 0.9rem; }

/* ---------------- Accordion (itinerary) ---------------- */
.region {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  scroll-margin-top: 75px;
}
.region > summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-weight: 700;
  color: var(--navy);
  user-select: none;
}
.region > summary::-webkit-details-marker { display: none; }
.region > summary::after {
  content: "▾";
  margin-left: auto;
  color: var(--text-light);
  transition: transform 0.2s;
  font-size: 1rem;
}
.region[open] > summary::after { transform: rotate(180deg); }

.region .r-icon { font-size: 1.6rem; }
.region .r-name { font-size: 1.05rem; }
.region .r-dates {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 2px 10px;
  border-radius: 999px;
}
.region .r-nights {
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: var(--saffron);
  padding: 2px 10px;
  border-radius: 999px;
}

.region-body {
  padding: 0 18px 20px;
  border-top: 1px solid var(--border);
}
.region-body h4 {
  margin: 16px 0 8px;
  color: var(--navy);
  font-size: 0.95rem;
}
.region-body .content-idea {
  background: #F0F7FF;
  border-left: 4px solid #4F8FE0;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.9rem;
  margin-top: 12px;
}
.region-body .content-idea strong { color: var(--navy); }
.region-body .note {
  background: #FFF1F1;
  border-left: 4px solid #E25555;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.88rem;
  margin-top: 12px;
}
.region-body .extension {
  background: #F4F0FF;
  border-left: 4px solid #8B6FE0;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.88rem;
  margin-top: 12px;
}

/* ---------------- Tables (responsive) ---------------- */
table.r-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  font-size: 0.9rem;
}
table.r-table th, table.r-table td {
  text-align: left;
  padding: 9px 10px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
table.r-table th {
  background: var(--bg);
  color: var(--navy);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
table.r-table td.col-nights { font-weight: 700; color: var(--green); white-space: nowrap; }
table.r-table td.col-distance .flag { color: #E25555; font-weight: 700; }

@media (max-width: 680px) {
  table.r-table thead { display: none; }
  table.r-table, table.r-table tbody, table.r-table tr, table.r-table td {
    display: block;
    width: 100%;
  }
  table.r-table tr {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    padding: 6px 10px;
  }
  table.r-table td {
    border-bottom: none;
    padding: 6px 0;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
  }
  table.r-table td::before {
    content: attr(data-label);
    font-weight: 700;
    color: var(--navy);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    flex: 0 0 38%;
  }
  table.r-table td.col-highlights::before,
  table.r-table td.col-base::before { padding-top: 1px; }
}

/* ---------------- Budget tables & bars ---------------- */
.budget-table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0 24px;
}
.budget-table th, .budget-table td {
  padding: 12px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  font-size: 0.92rem;
}
.budget-table th {
  background: var(--navy);
  color: #fff;
  font-size: 0.8rem;
  text-transform: uppercase;
}
.budget-table td.amount { text-align: right; font-weight: 700; color: var(--navy); white-space: nowrap; }
.budget-table tr.total td { font-weight: 800; font-size: 1.05rem; color: var(--green); border-top: 2px solid var(--navy); }

.bar-row { margin-bottom: 12px; }
.bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  margin-bottom: 4px;
  color: var(--text);
}
.bar-label .bar-amount { font-weight: 700; color: var(--navy); }
.bar-track {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  height: 12px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--saffron), var(--green));
}

@media (max-width: 680px) {
  .budget-table thead { display: none; }
  .budget-table, .budget-table tbody, .budget-table tr, .budget-table td {
    display: block;
    width: 100%;
  }
  .budget-table tr {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    padding: 4px 10px;
  }
  .budget-table td {
    border-bottom: none;
    display: flex;
    justify-content: space-between;
  }
  .budget-table td::before {
    content: attr(data-label);
    font-weight: 700;
    color: var(--navy);
    font-size: 0.72rem;
    text-transform: uppercase;
  }
  .budget-table td.amount::before { content: ""; }
  .budget-table tr.total { background: #EAF7F0; }
}

/* ---------------- Checklist ---------------- */
.checklist-group { margin-bottom: 22px; }
.checklist-group h3 {
  color: var(--navy);
  font-size: 1.02rem;
  margin-bottom: 8px;
}
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-bottom: 8px;
  font-size: 0.93rem;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: background 0.15s;
}
.check-item:hover { background: #FBFAF7; }
.check-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 1px;
  accent-color: var(--green);
  flex-shrink: 0;
  cursor: pointer;
}
.check-item.checked span { text-decoration: line-through; color: var(--text-light); }

.progress-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}
.progress-wrap .progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--navy);
}
.progress-track {
  background: var(--bg);
  border-radius: 999px;
  height: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--saffron), var(--green));
  border-radius: 999px;
  transition: width 0.3s;
  width: 0%;
}

/* ---------------- Badges/flags ---------------- */
.badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-light);
}
.badge.flag { background: #FFF1F1; border-color: #F2A6A6; color: #C23C3C; }

/* ---------------- Footer ---------------- */
.footer {
  text-align: center;
  padding: 26px 0 40px;
  color: var(--text-light);
  font-size: 0.85rem;
}

/* ---------------- Mobile nav ---------------- */
@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--navy-light);
    flex-direction: column;
    padding: 8px;
    display: none;
    box-shadow: 0 6px 14px rgba(0,0,0,0.2);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 14px; }
}

/* ---------------- Travellers ---------------- */
.traveller-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
  margin-top: 14px;
}
.traveller {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  box-shadow: var(--shadow);
}
.traveller .t-name { font-weight: 700; font-size: 0.92rem; }
.traveller .t-rel { font-size: 0.8rem; color: var(--text-light); }

/* ---------------- From / To + day-by-day breakdown ---------------- */
.from-to {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  margin: 14px 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
}
.from-to .ft-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-light);
  font-weight: 700;
  margin-right: 4px;
}
.from-to .arrow { color: var(--saffron); font-weight: 700; }

.day-summary {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin: 4px 0 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}
.day-summary span { display: inline-flex; align-items: center; gap: 6px; }

.day-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.day-badge.travel { background: #FFF1F1; color: #C23C3C; }
.day-badge.tour { background: #EAF7F0; color: var(--green); }
.day-badge.home { background: #F0F7FF; color: #4F8FE0; }

table.r-table td.col-date { font-weight: 700; color: var(--navy); white-space: nowrap; }

/* ---------------- Misc ---------------- */
.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 10px;
}
.legend span { display: inline-flex; align-items: center; gap: 6px; }
.legend .dot {
  width: 10px; height: 10px; border-radius: 50%; display: inline-block;
}

/* ===========================================================
   Mobile optimization
   =========================================================== */

html { -webkit-text-size-adjust: 100%; }

/* Nothing may scroll the page sideways; long tokens wrap instead */
body { overflow-x: hidden; }
.chip-meta,
table.r-table td,
.budget-table td,
.check-item span,
.callout p,
.card p,
.from-to .ft-label { overflow-wrap: break-word; min-width: 0; }

/* Comfortable touch targets */
.lang-toggle button { min-height: 32px; }
.nav-toggle { min-width: 44px; min-height: 44px; }

@media (max-width: 760px) {
  /* Navbar: logo left, language toggle + hamburger grouped on the right */
  .nav-container { padding: 0 14px; }
  .nav-logo { font-size: 0.98rem; }
  .nav-links { order: 4; }
  .lang-toggle { order: 2; margin-left: auto; }
  .nav-toggle { order: 3; margin-left: 4px; }
}

@media (max-width: 680px) {
  .container { padding: 0 14px; }

  /* Typography & spacing scale down */
  .page-header { padding: 26px 0 14px; }
  .page-header h1 { font-size: 1.5rem; }
  .page-header p { font-size: 0.93rem; }
  .section { margin: 30px 0; }
  .section-title { font-size: 1.18rem; }
  .month-title { font-size: 0.98rem; }
  .hero { padding: 38px 0 30px; }
  .stat-grid { gap: 10px; margin: 22px 0; }
  .stat-card { padding: 13px 8px; }
  .stat-card .stat-value { font-size: 1.22rem; }
  .stat-card .stat-label { font-size: 0.7rem; }
  .callout { padding: 14px 16px; }
  .callout p, .card p { font-size: 0.9rem; }

  /* 16px input stops iOS auto-zoom on focus */
  .date-picker { padding: 12px 14px; }
  .date-picker input[type="date"] { font-size: 16px; width: 100%; }
  .date-picker label { flex: 1 1 auto; }
  .date-picker .date-picker-hint { flex-basis: 100%; }

  /* Region accordion: compact header */
  .region > summary { padding: 13px 14px; gap: 8px 10px; }
  .region .r-icon { font-size: 1.35rem; }
  .region .r-name { font-size: 0.98rem; flex: 1 1 auto; }
  .region .r-dates { font-size: 0.74rem; padding: 2px 8px; }
  .region .r-nights { font-size: 0.72rem; padding: 2px 8px; }
  .region-body { padding: 0 14px 16px; }

  /* Day-by-day cards: Date + Day Type inline, Plan gets the full width
     with its label above the text instead of beside it */
  table.r-table td[data-label="Plan"] { display: block; }
  table.r-table td[data-label="Plan"]::before {
    display: block;
    margin-bottom: 3px;
  }
  table.r-table td { font-size: 0.9rem; }
  table.r-table td::before { flex: 0 0 32%; }
  table.r-table td.col-date { font-size: 0.95rem; }

  .from-to { font-size: 0.88rem; padding: 10px 12px; gap: 8px; }
  .day-summary { gap: 10px 14px; }
  .legend { gap: 8px 14px; }
}

@media (max-width: 480px) {
  /* Timeline chips read best as a single column on phones */
  .chip-grid { grid-template-columns: 1fr; }
  .chip { padding-bottom: 12px; }
  .traveller-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .cta-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.65rem; }
  .hero .tagline { font-size: 0.85rem; padding: 0 8px; }
  .hero .subtitle { padding: 0 8px; }
  .budget-table td { font-size: 0.88rem; }
  .check-item { padding: 11px 12px; }
  .footer { font-size: 0.78rem; padding: 22px 14px 34px; }
}

@media (max-width: 400px) {
  /* Keep logo + EN/हिं + ☰ on one 320px-wide line */
  .nav-logo { font-size: 0.85rem; }
  .lang-toggle button { padding: 4px 8px; font-size: 0.72rem; }
  .nav-toggle { min-width: 38px; font-size: 1.4rem; }
  .traveller-grid { grid-template-columns: 1fr; }
}
