/* JaipurKhatu.com - Pilgrimage & Travel Guide */
/* ---------- Reset & Base ---------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --saffron: #E5733C;
  --saffron-hover: #D9622A;
  --gold: #E9C46A;
  --gold-soft: #F4E2B8;
  --beige: #FDFBF7;
  --beige-warm: #F7F0E3;
  --white: #FFFFFF;
  --charcoal: #263238;
  --muted: #546E7A;
  --border: #E7E1D5;
  --shadow-sm: 0 1px 2px rgba(38,50,56,0.04);
  --shadow-md: 0 8px 30px rgba(38,50,56,0.06);
  --radius: 14px;
  --radius-sm: 8px;
  --max: 1180px;
  --section-pad: 5rem 0;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'DM Sans', system-ui, -apple-system, Segoe UI, sans-serif;
  background: var(--beige);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.65;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s ease; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--charcoal);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
h1 { font-size: clamp(2.25rem, 5vw + 0.5rem, 4rem); font-weight: 600; }
h2 { font-size: clamp(1.75rem, 3vw + 0.5rem, 2.75rem); }
h3 { font-size: clamp(1.25rem, 1.5vw + 0.5rem, 1.5rem); }

p { color: var(--muted); }
.lead { font-size: 1.1rem; color: var(--muted); }
.overline {
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.22em;
  font-weight: 500; color: var(--saffron); display: inline-block;
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}
section { padding: var(--section-pad); }
.section-head { max-width: 720px; margin-bottom: 3rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin: 0.5rem 0 1rem; }

/* ---------- Navbar ---------- */
.navbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(253, 251, 247, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(231, 225, 213, 0.6);
}
.nav-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.9rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between;
}
.brand {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600; font-size: 1.4rem; color: var(--charcoal);
}
.brand-mark {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  display: grid; place-items: center; color: white;
  font-family: 'Cormorant Garamond', serif; font-weight: 700;
}
.brand-mark span { font-size: 1rem; line-height: 1; }
.brand-text small { display: block; font-family: 'DM Sans', sans-serif; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); font-weight: 500; margin-top: -2px; }

.nav-links {
  display: flex; gap: 1.75rem; align-items: center;
  list-style: none;
}
.nav-links a {
  font-size: 0.92rem;
  color: var(--charcoal);
  font-weight: 400;
  position: relative;
  padding: 0.25rem 0;
}
.nav-links a:hover { color: var(--saffron); }
.nav-links a.active { color: var(--saffron); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--saffron);
}

.nav-toggle {
  display: none; background: none; border: 1px solid var(--border);
  width: 42px; height: 42px; border-radius: 10px; cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; color: var(--charcoal); }
.navbar.scrolled { box-shadow: 0 4px 20px rgba(38,50,56,0.08); }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 0.5rem 1.25rem 1rem;
  }
  .nav-links.open li { width: 100%; }
  .nav-links.open a {
    display: block; padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
  }
  .nav-links.open li:last-child a { border-bottom: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500; font-size: 0.95rem;
  cursor: pointer; border: 1px solid transparent;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}
.btn-primary {
  background: var(--saffron); color: var(--white);
  box-shadow: 0 6px 20px rgba(229,115,60,0.25);
}
.btn-primary:hover { background: var(--saffron-hover); transform: translateY(-1px); }
.btn-secondary {
  background: transparent; color: var(--charcoal);
  border: 1px solid var(--border);
}
.btn-secondary:hover { border-color: var(--saffron); color: var(--saffron); }
.btn svg { width: 16px; height: 16px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 86vh;
  display: flex; align-items: center;
  overflow: hidden;
  color: var(--white);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: var(--hero-img);
  background-size: cover; background-position: center;
  z-index: 0;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(28,20,14,0.7) 0%, rgba(28,20,14,0.45) 45%, rgba(28,20,14,0.15) 100%);
  z-index: 1;
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--max);
  margin: 0 auto; padding: 6rem 1.25rem;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.4rem 0.9rem; border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-soft);
}
.hero h1 {
  color: var(--white);
  max-width: 16ch;
  margin: 1.5rem 0 1.25rem;
  font-weight: 500;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero p.lead {
  color: rgba(255,255,255,0.85);
  max-width: 540px;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero .btn-secondary { color: var(--white); border-color: rgba(255,255,255,0.4); }
.hero .btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: var(--white); color: var(--white); }

.hero-meta {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  background: rgba(253,251,247,0.94);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(231,225,213,0.6);
}
.hero-meta-inner {
  max-width: var(--max); margin: 0 auto; padding: 1.4rem 1.25rem;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.hero-meta-item {
  display: flex; align-items: center; gap: 0.85rem;
  padding-right: 1rem;
}
.hero-meta-item + .hero-meta-item { border-left: 1px solid var(--border); padding-left: 1.25rem; }
.hero-meta-item .icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--beige-warm); color: var(--saffron);
  display: grid; place-items: center; flex-shrink: 0;
}
.hero-meta-item .icon svg { width: 18px; height: 18px; }
.hero-meta-item small { display: block; font-size: 0.72rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; }
.hero-meta-item strong { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; color: var(--charcoal); }

@media (max-width: 880px) {
  .hero { min-height: 78vh; }
  .hero-inner { padding: 5rem 1.25rem 7rem; }
  .hero-meta-inner { grid-template-columns: repeat(2, 1fr); gap: 1rem; padding: 1.1rem 1.25rem; }
  .hero-meta-item + .hero-meta-item { border-left: none; padding-left: 0; }
  .hero-meta-item:nth-child(2) { border-left: 1px solid var(--border); padding-left: 1rem; }
  .hero-meta-item:nth-child(4) { border-left: 1px solid var(--border); padding-left: 1rem; }
}

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(229,115,60,0.25); }
.card .card-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--beige-warm);
  color: var(--saffron);
  display: grid; place-items: center;
  margin-bottom: 1.25rem;
}
.card .card-icon svg { width: 22px; height: 22px; }
.card h3 { margin-bottom: 0.5rem; }
.card p { font-size: 0.95rem; }
.card .card-link {
  margin-top: 1.25rem;
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--saffron);
  font-size: 0.9rem; font-weight: 500;
}
.card .card-link svg { width: 14px; height: 14px; transition: transform .25s ease; }
.card:hover .card-link svg { transform: translateX(3px); }

/* Featured / bento-style page grid */
.page-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}
.page-tile {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 200px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.page-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.page-tile.span-6 { grid-column: span 6; }
.page-tile.span-4 { grid-column: span 4; }
.page-tile.span-8 { grid-column: span 8; }
.page-tile.featured {
  background: linear-gradient(135deg, #fff7ec 0%, #fdfbf7 100%);
  border-color: rgba(229,115,60,0.25);
}
.page-tile h3 { margin: 0.5rem 0; }
.page-tile small { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--saffron); font-weight: 500; }
.page-tile-arrow {
  margin-top: 1.25rem;
  align-self: flex-start;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--charcoal); color: var(--white);
  display: grid; place-items: center;
  transition: background .25s ease, transform .25s ease;
}
.page-tile-arrow svg { width: 16px; height: 16px; }
.page-tile:hover .page-tile-arrow { background: var(--saffron); transform: rotate(-45deg); }

@media (max-width: 880px) {
  .page-tile.span-6, .page-tile.span-4, .page-tile.span-8 { grid-column: span 12; }
}

/* ---------- Darshan Timing Section ---------- */
.timing-wrap {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; align-items: center;
}
.timing-table {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.timing-row {
  display: grid; grid-template-columns: 1fr 1fr;
  padding: 1.15rem 1.5rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.timing-row:last-child { border-bottom: none; }
.timing-row strong { color: var(--charcoal); font-weight: 500; }
.timing-row span { color: var(--muted); text-align: right; }
.timing-row.head { background: var(--beige-warm); font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; }
.timing-row.head strong, .timing-row.head span { color: var(--charcoal); font-weight: 600; }
.timing-note { padding: 1.1rem 1.5rem; background: #fbf4e6; font-size: 0.85rem; color: var(--muted); display: flex; gap: 0.6rem; align-items: flex-start; }
.timing-note svg { color: var(--saffron); width: 18px; flex-shrink: 0; margin-top: 2px; }

@media (max-width: 880px) {
  .timing-wrap { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---------- Route / Travel options ---------- */
.route-banner {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.route-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  border-top: 1px solid var(--border);
  margin-top: 2rem; padding-top: 2rem;
}
.route-stat strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--saffron); font-weight: 600; line-height: 1; }
.route-stat span { display: block; font-size: 0.85rem; color: var(--muted); margin-top: 0.4rem; }

.travel-modes {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
  margin-top: 1.5rem;
}
.travel-mode {
  background: var(--beige);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
}
.travel-mode .mode-head { display: flex; align-items: center; gap: 0.65rem; margin-bottom: 0.5rem; }
.travel-mode .mode-head svg { color: var(--saffron); width: 18px; }
.travel-mode strong { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; }
.travel-mode p { font-size: 0.88rem; margin-top: 0.35rem; }

@media (max-width: 880px) {
  .route-banner { padding: 1.75rem; }
  .route-stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .travel-modes { grid-template-columns: 1fr; }
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.4rem 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; color: var(--charcoal); font-weight: 500;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ''; width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--border); flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23E5733C' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
  transition: transform .25s ease;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item .faq-content {
  padding: 0 0 1.4rem;
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 90%;
}

/* ---------- Sub-page Hero (used by all sub-pages) ---------- */
.page-hero {
  background: var(--beige-warm);
  padding: 5rem 0 4rem;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw + 0.5rem, 3.25rem);
  margin: 0.75rem 0 1rem;
}
.page-hero h1 em { color: var(--saffron); font-style: italic; }
.page-hero p { font-size: 1.1rem; max-width: 640px; color: var(--muted); }

.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; color: var(--muted);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: var(--saffron); font-weight: 500; }
.breadcrumb a:hover { color: var(--saffron-hover); }

.content-section { padding: var(--section-pad); }

/* ---------- Note / callout box ---------- */
.note-box {
  display: flex; gap: 0.85rem; align-items: flex-start;
  background: #fbf4e6; border: 1px solid #f0e2bf;
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.25rem;
  font-size: 0.92rem; color: var(--charcoal);
}
.note-icon { font-size: 1.25rem; flex-shrink: 0; line-height: 1.4; }

/* ---------- Page Header (sub pages) ---------- */
.page-header {
  background: var(--beige-warm);
  padding: 5rem 0 4rem;
  border-bottom: 1px solid var(--border);
}
.page-header .container { max-width: 820px; }
.page-header .crumb {
  font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--saffron); margin-bottom: 1rem; font-weight: 500;
}
.page-header h1 { font-size: clamp(2rem, 4vw + 0.5rem, 3.25rem); margin-bottom: 1rem; }
.page-header p { font-size: 1.1rem; max-width: 640px; }

/* ---------- Prose / Article ---------- */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { margin-top: 2.5rem; margin-bottom: 1rem; }
.prose h3 { margin-top: 1.75rem; margin-bottom: 0.75rem; color: var(--charcoal); }
.prose p { margin-bottom: 1.1rem; color: var(--muted); font-size: 1.02rem; }
.prose ul, .prose ol { margin: 0 0 1.1rem 1.25rem; color: var(--muted); }
.prose li { margin-bottom: 0.5rem; }
.prose blockquote {
  border-left: 3px solid var(--saffron);
  padding: 0.4rem 0 0.4rem 1.25rem;
  margin: 1.5rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-style: italic;
  color: var(--charcoal);
}
.prose img { border-radius: var(--radius); margin: 1.5rem 0; }

.info-callout {
  display: flex; gap: 0.85rem;
  background: #fbf4e6;
  border: 1px solid #f0e2bf;
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  font-size: 0.92rem; color: var(--charcoal);
}
.info-callout svg { color: var(--saffron); width: 20px; flex-shrink: 0; margin-top: 2px; }

/* ---------- Blog ---------- */
.blog-grid {
  display: grid; gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.blog-card-image {
  aspect-ratio: 16 / 10;
  background-size: cover; background-position: center;
}
.blog-card-body { padding: 1.5rem 1.5rem 1.75rem; flex: 1; display: flex; flex-direction: column; }
.blog-card .meta { font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--saffron); margin-bottom: 0.65rem; font-weight: 500; }
.blog-card h3 { margin-bottom: 0.6rem; }
.blog-card p { font-size: 0.93rem; flex: 1; }
.blog-card .read-more {
  margin-top: 1.25rem;
  color: var(--charcoal); font-size: 0.88rem; font-weight: 500;
  border-bottom: 1px solid var(--charcoal); padding-bottom: 2px;
  align-self: flex-start;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 920px; margin: 0 auto;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}
.contact-card .icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--beige-warm); color: var(--saffron);
  display: grid; place-items: center; margin: 0 auto 1.25rem;
}
.contact-card .icon svg { width: 22px; height: 22px; }
.contact-card h3 { margin-bottom: 0.5rem; }
.contact-card a { color: var(--saffron); font-weight: 500; }
.contact-card a:hover { color: var(--saffron-hover); }

/* ---------- Strip / CTA Sections ---------- */
.cta-strip {
  background: var(--charcoal);
  color: var(--white);
  border-radius: var(--radius);
  padding: 3rem;
  display: grid; grid-template-columns: 1.6fr 1fr; align-items: center; gap: 2rem;
}
.cta-strip h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-strip p { color: rgba(255,255,255,0.7); }
.cta-strip .btn-primary { justify-self: end; }
@media (max-width: 720px) {
  .cta-strip { grid-template-columns: 1fr; padding: 2rem; }
  .cta-strip .btn-primary { justify-self: start; }
}

/* ---------- Image banner (subpage feature) ---------- */
.image-banner {
  border-radius: var(--radius);
  overflow: hidden;
  height: 360px;
  background-size: cover;
  background-position: center;
  position: relative;
  margin-bottom: 3rem;
}
.image-banner::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(38,50,56,0.55) 100%);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 2rem;
  margin-top: 5rem;
}
.footer .container { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 3rem; }
.footer h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.25rem; font-weight: 500;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 0.65rem; font-size: 0.92rem; }
.footer a:hover { color: var(--white); }
.footer-brand .brand { color: var(--white); margin-bottom: 1rem; }
.footer-brand .brand-text small { color: rgba(255,255,255,0.5); }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.93rem; max-width: 320px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 3rem; padding-top: 1.5rem;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: 0.82rem; color: rgba(255,255,255,0.5);
}
.disclaimer {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  margin-top: 2.25rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
}
@media (max-width: 880px) {
  .footer .container { grid-template-columns: 1fr 1fr; gap: 2.25rem; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 520px) {
  .footer .container { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
}

/* ---------- Misc ---------- */
.divider-leaf {
  display: block; margin: 0 auto;
  color: var(--gold); width: 32px; height: 32px;
}
.section-alt { background: var(--beige-warm); }
.section-soft { background: linear-gradient(180deg, var(--beige) 0%, #f7efe1 100%); }

/* Lucide icon stroke override (use currentColor) */
[data-lucide] { width: 20px; height: 20px; }

/* ========== EXTENDED VARIABLES ========== */
:root {
  --saffron-lt: #FEF3ED;
  --brown-dk: #3D2B1F;
  --brown-lt: #7B5C4A;
  --r-lg: 16px;
  --r-xl: 24px;
  --font-sans: 'DM Sans', system-ui, -apple-system, sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
}

/* ---------- Two & Three Column Layouts ---------- */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start;
}
.three-col {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
@media (max-width: 880px) {
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .three-col { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
}
@media (max-width: 520px) {
  .three-col { grid-template-columns: 1fr; }
}

/* ---------- Feature Box ---------- */
.feature-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}
.feature-icon { font-size: 2rem; margin-bottom: 1rem; line-height: 1; }
.feature-box h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.feature-box p { font-size: 0.9rem; }

/* ---------- Highlight Box ---------- */
.highlight-box {
  background: var(--saffron-lt);
  border: 1px solid rgba(229,115,60,0.25);
  border-left: 4px solid var(--saffron);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  font-size: 0.95rem; color: var(--charcoal); line-height: 1.65;
}

/* ---------- Outline Button ---------- */
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.5rem; border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500; font-size: 0.95rem;
  cursor: pointer; transition: border-color .25s ease, color .25s ease, background .25s ease;
  background: transparent; border: 1.5px solid var(--charcoal); color: var(--charcoal);
}
.btn-outline:hover { border-color: var(--saffron); color: var(--saffron); }

/* ---------- Stat Grid ---------- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
}
.stat-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem 1.5rem;
}
.stat-label {
  font-size: 0.73rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--muted); font-weight: 500; margin-bottom: 0.5rem;
}
.stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem; font-weight: 600; color: var(--saffron); line-height: 1.1;
}

/* ---------- Aarti / Darshan Timing ---------- */
.aarti-list {
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; background: var(--white); margin-bottom: 2rem;
}
.aarti-row {
  display: grid; grid-template-columns: 6rem 1fr 6rem;
  align-items: center; gap: 1rem;
  padding: 1.15rem 1.5rem; border-bottom: 1px solid var(--border);
}
.aarti-row:last-child { border-bottom: none; }
.aarti-row.head {
  background: var(--beige-warm);
  font-weight: 600; font-size: 0.78rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
}
.aarti-time {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 600; color: var(--saffron);
}
.aarti-info h3 { font-size: 1rem; margin-bottom: 0.2rem; }
.aarti-info p { font-size: 0.88rem; }
.aarti-badge {
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--beige-warm); color: var(--muted);
  border-radius: 999px; padding: 0.3rem 0.7rem; border: 1px solid var(--border);
  text-align: center; white-space: nowrap;
}
@media (max-width: 600px) {
  .aarti-row { grid-template-columns: 5rem 1fr; }
  .aarti-badge { display: none; }
}

/* ---------- Route Steps ---------- */
.route-steps { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.route-step {
  display: flex; gap: 1.25rem; align-items: flex-start;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem;
}
.step-num {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: var(--saffron); color: var(--white);
  display: grid; place-items: center; font-weight: 600; font-size: 0.9rem;
}
.step-info h3 { font-size: 1rem; margin-bottom: 0.35rem; }
.step-info p { font-size: 0.9rem; }

/* ---------- Tabs ---------- */
.tab-nav {
  display: flex; gap: 0; margin-bottom: 1.75rem;
  border-bottom: 2px solid var(--border); flex-wrap: wrap;
}
.tab-btn {
  background: none; border: none; cursor: pointer;
  padding: 0.8rem 1.25rem;
  font-family: 'DM Sans', sans-serif; font-size: 0.93rem; font-weight: 500;
  color: var(--muted);
  border-bottom: 2px solid transparent; margin-bottom: -2px;
  transition: color .25s ease, border-color .25s ease;
}
.tab-btn.active { color: var(--saffron); border-bottom-color: var(--saffron); }
.tab-btn:hover:not(.active) { color: var(--charcoal); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ---------- Train Cards ---------- */
.train-list {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.train-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem;
}
.train-route { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; }
.train-city { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: var(--charcoal); }
.train-arrow { color: var(--saffron); flex: 1; text-align: center; letter-spacing: -2px; }
.train-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.train-tag {
  font-size: 0.78rem; background: var(--beige-warm);
  border: 1px solid var(--border); border-radius: 999px;
  padding: 0.25rem 0.65rem; color: var(--muted); white-space: nowrap;
}

/* ---------- Mela Banner ---------- */
.mela-banner {
  background: linear-gradient(135deg, #fff3e8 0%, #fdf6ee 100%);
  border: 1px solid rgba(229,115,60,0.25);
  border-radius: var(--radius); padding: 2.5rem;
  text-align: center; margin-bottom: 3rem;
}
.mela-overline {
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.22em;
  font-weight: 500; color: var(--saffron); margin-bottom: 0.75rem;
}
.mela-dates {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 600;
  color: var(--charcoal); margin-bottom: 0.5rem;
}
.mela-subtitle { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.5rem; }
.mela-tags { display: flex; gap: 0.65rem; flex-wrap: wrap; justify-content: center; }
.mela-tag {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 999px; padding: 0.4rem 0.9rem;
  font-size: 0.85rem; color: var(--charcoal);
}

/* ---------- Station Hero ---------- */
.station-hero {
  background: linear-gradient(135deg, var(--charcoal), #374955);
  border-radius: var(--radius); padding: 2.5rem;
  text-align: center; margin-bottom: 3rem; color: var(--white);
}
.station-code {
  font-size: 0.75rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 0.5rem;
}
.station-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 600;
  color: var(--white); margin-bottom: 0.75rem;
}
.station-meta { color: rgba(255,255,255,0.65); font-size: 0.95rem; }

/* ---------- Inquiry / Contact Form ---------- */
.inquiry-form {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2.5rem;
  max-width: 640px; margin: 0 auto;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: 0.85rem; font-weight: 500;
  color: var(--charcoal); margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.8rem 1rem;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem;
  color: var(--charcoal); background: var(--beige);
  transition: border-color .25s ease, box-shadow .25s ease; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(229,115,60,0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: none;
  background: #e8f5e9; border: 1px solid #a5d6a7;
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem; color: #2e7d32; font-size: 0.95rem; margin-top: 1rem;
}

/* ---------- Hotel Cards ---------- */
.hotel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.hotel-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
  transition: transform .3s ease, box-shadow .3s ease;
}
.hotel-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.hotel-badge {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--saffron-lt); color: var(--saffron);
  border-radius: 999px; padding: 0.25rem 0.7rem;
  font-weight: 500; margin-bottom: 0.75rem; border: 1px solid rgba(229,115,60,0.2);
}
.hotel-card h3 { margin-bottom: 0.4rem; font-size: 1.1rem; }
.hotel-card .distance { font-size: 0.82rem; color: var(--saffron); font-weight: 500; margin-bottom: 0.6rem; }
.hotel-card p { font-size: 0.9rem; }
.hotel-price {
  font-family: 'Cormorant Garamond', serif; font-size: 1.4rem;
  font-weight: 600; color: var(--charcoal); margin-top: 1rem;
}
.hotel-price small { font-size: 0.75rem; color: var(--muted); font-family: 'DM Sans', sans-serif; }

/* ---------- Sticky Mobile CTA ---------- */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  display: none; align-items: center; gap: 0.75rem;
  background: var(--white); border-top: 1px solid var(--border);
  padding: 0.85rem 1.25rem;
  box-shadow: 0 -4px 24px rgba(38,50,56,0.1);
}
@media (max-width: 768px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 76px; }
}
.sticky-cta .wa-btn,
.sticky-cta .call-btn {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 0.4rem; border-radius: 999px; padding: 0.85rem 1rem;
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 0.88rem;
  border: none; cursor: pointer; text-decoration: none;
  transition: opacity .2s ease;
}
.sticky-cta .wa-btn { background: #25D366; color: var(--white); }
.sticky-cta .call-btn { background: var(--saffron); color: var(--white); }
.sticky-cta .wa-btn:hover,
.sticky-cta .call-btn:hover { opacity: 0.9; }

/* ---------- WhatsApp Floating Button (desktop) ---------- */
.wa-float {
  position: fixed; bottom: 2rem; right: 1.5rem; z-index: 200;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform .25s ease, box-shadow .25s ease;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.wa-float svg { width: 28px; height: 28px; }
@media (max-width: 768px) { .wa-float { display: none; } }

/* ---------- FAQ page specific ---------- */
.faq-category { margin-bottom: 3rem; }
.faq-category-title {
  font-family: 'DM Sans', sans-serif; font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--saffron); font-weight: 600; margin-bottom: 1rem;
  padding-bottom: 0.5rem; border-bottom: 2px solid var(--saffron-lt);
}

/* ---------- Contact info grid ---------- */
.contact-info-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem; margin-bottom: 3rem;
}
.contact-info-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem; text-align: center;
}
.contact-info-card .ci-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--saffron-lt); color: var(--saffron);
  display: grid; place-items: center; margin: 0 auto 1rem; font-size: 1.5rem;
}
.contact-info-card h3 { font-size: 1rem; margin-bottom: 0.35rem; }
.contact-info-card a { color: var(--saffron); font-weight: 500; }
.contact-info-card a:hover { color: var(--saffron-hover); }
.contact-info-card p { font-size: 0.88rem; }