/* ══════════════════════════════════════════════════════════════
   Rocket Guide — Neem Karoli Baba Tour Guide
   Shared Stylesheet — Light & Dark Mode
   © 2025 Mahakumbrix Innovation
══════════════════════════════════════════════════════════════ */

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Crimson+Pro:ital,wght@0,300;0,400;0,600;1,400&family=Tiro+Devanagari+Hindi&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --saffron: #E8630A;
  --saffron-light: #F5A623;
  --saffron-deep: #B84A06;
  --gold: #C8941A;
  --gold-light: #F0C040;
  --rust: #8B2E0F;

  /* Light Mode */
  --bg: #FDF6E3;
  --bg2: #F5E6C8;
  --bg3: #FFFDF7;
  --surface: #FFFFFF;
  --surface2: #F5E6C8;
  --text: #2A1508;
  --text2: #4A2510;
  --text3: #6B3A1F;
  --muted: rgba(42,21,8,0.5);
  --border: rgba(200,148,26,0.25);
  --nav-bg: rgba(42,21,8,0.97);
  --nav-text: #F5E6C8;
  --hero-bg1: #1A0C03;
  --hero-bg2: #2A1508;
  --quote-bg: linear-gradient(135deg, #3D1E0A, #5A2E12);
  --quote-text: #FDF6E3;
  --card-shadow: 0 4px 24px rgba(42,21,8,0.10);
  --timeline-line: linear-gradient(180deg, var(--saffron), var(--gold), transparent);
  --dark-section-bg: linear-gradient(135deg, #2A1508, #3D1E0A);
  --dark-section-text: rgba(253,246,227,0.82);
  --dark-card: rgba(255,255,255,0.06);
  --dark-border: rgba(200,148,26,0.22);
  --tag-bg: #F5E6C8;
  --tag-text: #4A2510;
  --input-bg: #FFFFFF;
  --input-border: rgba(200,148,26,0.3);
  --progress-bg: rgba(42,21,8,0.08);
  --scrollbar: var(--saffron);
  --translate-bg: rgba(255,255,255,0.9);
  --translate-border: rgba(200,148,26,0.3);
}

[data-theme="dark"] {
  --bg: #120803;
  --bg2: #1A0C03;
  --bg3: #1E0E04;
  --surface: #221008;
  --surface2: #2A1508;
  --text: #FDF6E3;
  --text2: #F5E6C8;
  --text3: #E5C890;
  --muted: rgba(245,230,200,0.45);
  --border: rgba(200,148,26,0.2);
  --nav-bg: rgba(10,4,0,0.98);
  --nav-text: #F5E6C8;
  --hero-bg1: #080300;
  --hero-bg2: #120803;
  --quote-bg: linear-gradient(135deg, #1A0C03, #2A1508);
  --quote-text: #FDF6E3;
  --card-shadow: 0 4px 24px rgba(0,0,0,0.5);
  --timeline-line: linear-gradient(180deg, var(--saffron), var(--gold), transparent);
  --dark-section-bg: linear-gradient(135deg, #0E0501, #1A0C03);
  --dark-section-text: rgba(253,246,227,0.75);
  --dark-card: rgba(255,255,255,0.04);
  --dark-border: rgba(200,148,26,0.18);
  --tag-bg: rgba(200,148,26,0.12);
  --tag-text: #E5C890;
  --input-bg: #221008;
  --input-border: rgba(200,148,26,0.25);
  --progress-bg: rgba(0,0,0,0.2);
  --translate-bg: rgba(18,8,3,0.95);
  --translate-border: rgba(200,148,26,0.25);
}

/* ── RESET ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Crimson Pro', Georgia, serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  transition: background 0.35s, color 0.35s;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { cursor: pointer; font-family: inherit; }
:focus-visible { outline: 2px solid var(--saffron); outline-offset: 3px; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--scrollbar); border-radius: 4px; }

/* ══════════════════
   PROGRESS BAR
══════════════════ */
#progressBar {
  position: fixed; top: 60px; left: 0; z-index: 98;
  height: 3px; width: 0;
  background: linear-gradient(90deg, var(--saffron), var(--gold-light));
  transition: width 0.08s linear;
}

/* ══════════════════
   NAV
══════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 60px;
  background: var(--nav-bg);
  backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid rgba(200,148,26,0.25);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 16px;
  gap: 10px;
  transition: background 0.35s;
}

.nav-left { display: flex; align-items: center; gap: 12px; min-width: 0; }
.nav-logo-link { text-decoration: none; display: flex; flex-direction: column; line-height: 1.15; }
.nav-site { font-family: 'Playfair Display', serif; color: var(--gold-light); font-size: 1rem; white-space: nowrap; }
.nav-tag  { color: rgba(245,166,35,0.5); font-size: 0.48rem; letter-spacing: 1.5px; text-transform: uppercase; white-space: nowrap; }

.nav-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

/* Theme toggle */
.theme-btn {
  background: rgba(200,148,26,0.12); border: 1px solid var(--border);
  color: var(--gold-light); border-radius: 50%; width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.theme-btn:hover { background: rgba(200,148,26,0.25); transform: rotate(20deg); }

/* Hamburger */
.nav-menu-btn {
  background: none; border: none;
  display: flex; flex-direction: column; gap: 5px; padding: 4px;
  flex-shrink: 0;
}
.nav-menu-btn span {
  display: block; width: 22px; height: 2px;
  background: var(--gold-light); border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-menu-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Drawer */
.nav-drawer {
  position: fixed; top: 60px; left: 0; right: 0; z-index: 199;
  background: var(--nav-bg);
  border-bottom: 1px solid rgba(200,148,26,0.15);
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.nav-drawer.open { max-height: 600px; }
.nav-drawer a {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 20px;
  color: var(--nav-text); text-decoration: none;
  font-size: 1rem; border-bottom: 1px solid rgba(200,148,26,0.08);
  transition: color 0.2s, background 0.2s, padding-left 0.25s;
}
.nav-drawer a:hover { color: var(--gold-light); background: rgba(200,148,26,0.06); padding-left: 28px; }
.nav-drawer .nav-cur { color: var(--saffron-light); font-weight: 600; }

/* ══════════════════
   GOOGLE TRANSLATE
══════════════════ */
.translate-wrap {
  position: relative;
}
#google_translate_element {
  position: absolute; top: 44px; right: 0;
  background: var(--translate-bg);
  border: 1px solid var(--translate-border);
  border-radius: 10px; padding: 6px 8px;
  min-width: 180px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  display: none; z-index: 300;
}
#google_translate_element.open { display: block; }
.translate-btn {
  background: rgba(200,148,26,0.12); border: 1px solid var(--border);
  color: var(--gold-light); border-radius: 20px;
  padding: 6px 12px; font-size: 0.78rem;
  letter-spacing: 1px; display: flex; align-items: center; gap: 5px;
  white-space: nowrap; transition: background 0.2s;
}
.translate-btn:hover { background: rgba(200,148,26,0.25); }

/* Hide Google Translate branding bar */
.goog-te-banner-frame, .skiptranslate { display: none !important; }
body { top: 0 !important; }
.goog-te-gadget { color: transparent !important; font-size: 0 !important; }
.goog-te-gadget .goog-te-combo {
  color: var(--text) !important;
  background: var(--input-bg) !important;
  border: 1px solid var(--input-border) !important;
  border-radius: 6px; padding: 6px 8px;
  font-family: 'Crimson Pro', serif; font-size: 0.9rem;
  width: 100%;
}

/* ══════════════════
   SHARE BUTTONS
══════════════════ */
.share-bar {
  display: flex; gap: 10px; flex-wrap: wrap;
  align-items: center; justify-content: center;
  margin: 20px 0;
}
.share-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 18px; border-radius: 30px;
  font-size: 0.85rem; border: none; text-decoration: none;
  font-family: 'Crimson Pro', serif;
  transition: transform 0.18s, box-shadow 0.18s, opacity 0.18s;
  letter-spacing: 0.5px; white-space: nowrap;
}
.share-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.25); }
.share-btn:active { transform: scale(0.97); opacity: 0.85; }
.share-wa  { background: #25D366; color: #fff; }
.share-tg  { background: #2AABEE; color: #fff; }
.share-cp  { background: var(--saffron); color: #fff; }
.share-fb  { background: #1877F2; color: #fff; }
.share-tw  { background: #1DA1F2; color: #fff; }
.copy-toast {
  position: fixed; bottom: 90px; left: 50%; transform: translateX(-50%) translateY(10px);
  background: var(--text); color: var(--bg);
  padding: 10px 22px; border-radius: 30px; font-size: 0.85rem;
  opacity: 0; transition: opacity 0.3s, transform 0.3s;
  pointer-events: none; z-index: 999; white-space: nowrap;
}
.copy-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ══════════════════
   LOADER
══════════════════ */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: #120803;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px;
  transition: opacity 0.8s ease;
}
#loader.hide { opacity: 0; pointer-events: none; }
.loader-om {
  font-size: 78px; color: var(--saffron-light);
  animation: omPulse 2s ease-in-out infinite;
  text-shadow: 0 0 50px rgba(232,99,10,0.6), 0 0 100px rgba(232,99,10,0.3);
  line-height: 1;
}
@keyframes omPulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}
.loader-title { font-family: 'Playfair Display', serif; color: #F5E6C8; font-size: 1.15rem; letter-spacing: 3px; }
.loader-sub { color: rgba(245,166,35,0.5); font-size: 0.68rem; letter-spacing: 3px; text-transform: uppercase; }
.loader-bar { width: 180px; height: 2px; background: rgba(255,255,255,0.08); border-radius: 2px; overflow: hidden; }
.loader-fill { height: 100%; background: linear-gradient(90deg, var(--saffron), var(--gold-light)); animation: loadFill 2.5s ease forwards; }
@keyframes loadFill { from { width:0; } to { width:100%; } }

/* ══════════════════
   HERO
══════════════════ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: calc(60px + 48px) 20px 70px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 38%, rgba(232,99,10,0.22) 0%, transparent 62%),
              linear-gradient(180deg, var(--hero-bg1) 0%, var(--hero-bg2) 55%, #3D1E0A 100%);
  transition: background 0.35s;
}
/* Stars */
.hero-stars {
  position: absolute; inset: 0; overflow: hidden;
}
.star {
  position: absolute; border-radius: 50%;
  background: rgba(245,166,35,0.7);
  animation: twinkle linear infinite;
}
@keyframes twinkle {
  0%,100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.4); }
}
/* Petals */
.petal {
  position: absolute; pointer-events: none; border-radius: 60% 0 60% 0;
  animation: floatPetal linear infinite;
}
@keyframes floatPetal {
  0% { transform: translateY(110vh) rotate(0deg); opacity: 0; }
  8% { opacity: 0.14; }
  92% { opacity: 0.14; }
  100% { transform: translateY(-15vh) rotate(720deg); opacity: 0; }
}
.hero-badge {
  position: relative; font-size: 0.68rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--saffron-light); margin-bottom: 14px;
  display: flex; align-items: center; gap: 12px;
}
.hero-badge::before, .hero-badge::after {
  content: ''; height: 1px; width: 50px;
  background: linear-gradient(90deg, transparent, var(--saffron-light), transparent);
}
.hero h1 {
  position: relative;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 9vw, 5.5rem);
  color: #FDF6E3; line-height: 1.12;
  text-shadow: 0 2px 40px rgba(200,148,26,0.45);
  margin-bottom: 6px;
}
.hero h1 em {
  display: block; font-size: 0.42em;
  color: var(--gold-light); letter-spacing: 5px;
  font-style: normal; text-transform: uppercase; margin-bottom: 6px;
}
.hero-hindi {
  position: relative;
  font-family: 'Tiro Devanagari Hindi', serif;
  font-size: clamp(1.1rem, 3.5vw, 1.8rem);
  color: rgba(245,166,35,0.65); margin-bottom: 22px;
}
.hero-desc {
  position: relative; max-width: 520px;
  color: rgba(253,246,227,0.72); font-size: 1.08rem; line-height: 1.85;
  margin-bottom: 32px;
}
.hero-btns { position: relative; display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.hero-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-deep));
  color: white; text-decoration: none;
  padding: 13px 28px; border-radius: 50px;
  font-size: 1rem; letter-spacing: 0.5px;
  box-shadow: 0 8px 30px rgba(232,99,10,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
.hero-cta:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(232,99,10,0.5); }
.hero-cta-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; border: 1px solid rgba(245,166,35,0.45);
  color: rgba(245,166,35,0.85); text-decoration: none;
  padding: 13px 28px; border-radius: 50px;
  font-size: 1rem; letter-spacing: 0.5px;
  transition: background 0.2s, border-color 0.2s;
}
.hero-cta-outline:hover { background: rgba(245,166,35,0.08); border-color: var(--gold-light); }
.hero-scroll {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(245,230,200,0.35); font-size: 0.62rem; letter-spacing: 3px; text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll::after { content:''; width:1px; height:30px; background: linear-gradient(180deg,rgba(245,166,35,0.4),transparent); }
@keyframes scrollBounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ══════════════════
   SECTION COMMONS
══════════════════ */
.section { padding: 72px 20px; background: var(--bg3); }
.section.alt { background: var(--bg); }
.section.dark { background: var(--dark-section-bg); }
.section-inner { max-width: 780px; margin: 0 auto; }

.section-head { text-align: center; margin-bottom: 44px; }
.section-eyebrow {
  font-size: 0.68rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--saffron); margin-bottom: 8px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 5vw, 2.9rem);
  color: var(--rust); line-height: 1.2;
  margin-bottom: 10px;
}
.section.dark .section-title { color: var(--gold-light); }
.divider-om {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; margin: 10px 0 0;
}
.divider-om span { font-size: 1.1rem; color: var(--saffron); }
.divider-om::before, .divider-om::after {
  content: ''; flex: 1; max-width: 80px; height: 1px;
}
.divider-om::before { background: linear-gradient(90deg, transparent, var(--gold)); }
.divider-om::after  { background: linear-gradient(90deg, var(--gold), transparent); }

/* ══════════════════
   CARDS & GRIDS
══════════════════ */
.card {
  background: var(--surface); border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(42,21,8,0.14); }
[data-theme="dark"] .card:hover { box-shadow: 0 10px 36px rgba(0,0,0,0.45); }

.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.info-card {
  background: var(--surface2); border-radius: 12px;
  padding: 16px 14px; border: 1px solid var(--border);
  transition: background 0.35s;
}
.info-card .lbl { font-size: 0.62rem; letter-spacing: 2px; text-transform: uppercase; color: var(--saffron); margin-bottom: 5px; }
.info-card .val { font-family: 'Playfair Display', serif; font-size: 0.98rem; color: var(--text); }

/* ══════════════════
   QUOTE BLOCK
══════════════════ */
.quote-block {
  background: var(--quote-bg); color: var(--quote-text);
  padding: 30px 26px; border-radius: 16px;
  border-left: 4px solid var(--saffron-light);
  font-size: 1.15rem; line-height: 1.9; font-style: italic;
  position: relative;
}
.quote-block::before {
  content: '"'; font-family: 'Playfair Display', serif;
  font-size: 7rem; color: rgba(232,99,10,0.15);
  position: absolute; top: -14px; left: 14px; line-height: 1;
}
.quote-block cite {
  display: block; margin-top: 14px;
  font-size: 0.82rem; font-style: normal;
  color: var(--saffron-light); letter-spacing: 2px; text-transform: uppercase;
}

/* ══════════════════
   TAGS / BADGES
══════════════════ */
.tag {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--tag-bg); color: var(--tag-text);
  padding: 4px 10px; border-radius: 20px;
  font-size: 0.75rem; transition: background 0.35s, color 0.35s;
}
.tag-saffron { background: var(--saffron); color: white; }

/* ══════════════════
   TIMELINE
══════════════════ */
.timeline { position: relative; padding-left: 0; }
.timeline::before {
  content: ''; position: absolute; left: 20px; top: 10px; bottom: 0;
  width: 2px; background: var(--timeline-line);
}
.tl-item { padding-left: 52px; margin-bottom: 38px; position: relative; }
.tl-dot {
  position: absolute; left: 11px; top: 4px;
  width: 18px; height: 18px; border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron-light), var(--saffron-deep));
  border: 3px solid var(--bg2);
  box-shadow: 0 0 0 2px var(--saffron);
  transition: border-color 0.35s;
}
.tl-year { font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase; color: var(--saffron); margin-bottom: 4px; }
.tl-item h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--rust); margin-bottom: 6px; }
[data-theme="dark"] .tl-item h3 { color: var(--saffron-light); }
.tl-item p { font-size: 0.97rem; line-height: 1.78; color: var(--text2); }

/* ══════════════════
   GALLERY
══════════════════ */
.gallery-tabs {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 26px;
}
.g-tab {
  padding: 8px 16px; border-radius: 30px; border: 1px solid var(--border);
  background: transparent; color: var(--text3);
  font-size: 0.88rem; transition: all 0.22s;
}
.section.dark .g-tab { color: rgba(245,230,200,0.55); border-color: rgba(200,148,26,0.22); }
.g-tab.active, .g-tab:hover { background: var(--saffron); border-color: var(--saffron); color: white; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 480px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }

.g-item {
  position: relative; overflow: hidden; border-radius: 10px;
  cursor: pointer; aspect-ratio: 3/4;
  border: 1px solid var(--border);
  background: var(--surface2);
  transition: border-color 0.35s;
}
.g-item img { width:100%; height:100%; object-fit:cover; transition: transform 0.5s ease; display: block; }
.g-item:hover img { transform: scale(1.08); }
.g-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,4,0,0.82) 100%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; padding: 10px;
}
.g-item:hover .g-overlay { opacity: 1; }
.g-overlay span { color: #FDF6E3; font-size: 0.78rem; font-style: italic; line-height: 1.4; }

/* ══════════════════
   LIGHTBOX
══════════════════ */
#lightbox {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(6,2,0,0.97);
  display: none; align-items: center; justify-content: center;
  flex-direction: column; padding: 20px;
}
#lightbox.open { display: flex; }
#lb-img {
  max-width: min(90vw, 680px); max-height: 70svh;
  object-fit: contain; border-radius: 8px;
  border: 1px solid rgba(200,148,26,0.2);
}
#lb-caption {
  margin-top: 14px; color: #FDF6E3;
  font-style: italic; font-size: 1rem; text-align: center; max-width: 90vw;
}
#lb-counter { color: rgba(245,166,35,0.5); font-size: 0.78rem; margin-top: 6px; letter-spacing: 2px; }
.lb-nav { display: flex; gap: 14px; margin-top: 18px; }
.lb-btn {
  background: rgba(232,99,10,0.18); border: 1px solid rgba(232,99,10,0.35);
  color: var(--saffron-light); padding: 9px 20px; border-radius: 30px;
  font-size: 0.95rem; transition: background 0.2s;
}
.lb-btn:hover { background: var(--saffron); color: white; }
.lb-close {
  position: absolute; top: 14px; right: 18px;
  background: none; border: none; color: rgba(245,166,35,0.7);
  font-size: 2.2rem; line-height: 1;
}
.lb-close:hover { color: white; }

/* ══════════════════
   SITE CARDS
══════════════════ */
.sites-grid { display: grid; gap: 20px; }
.site-card { background: var(--surface); border-radius: 16px; overflow: hidden; box-shadow: var(--card-shadow); border: 1px solid var(--border); transition: transform 0.25s, box-shadow 0.25s; }
.site-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(42,21,8,0.14); }
[data-theme="dark"] .site-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.5); }
.site-img { height: 200px; overflow: hidden; background: var(--surface2); position: relative; }
.site-img img { width:100%; height:100%; object-fit:cover; }
.site-badge-wrap { position: absolute; top: 10px; left: 10px; display: flex; gap: 6px; flex-wrap: wrap; }
.site-body { padding: 20px; }
.site-body h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--rust); margin-bottom: 6px; }
[data-theme="dark"] .site-body h3 { color: var(--saffron-light); }
.site-body p { font-size: 0.96rem; line-height: 1.78; color: var(--text2); margin-bottom: 14px; }
.site-meta { display: flex; flex-wrap: wrap; gap: 8px; }

/* ══════════════════
   TEACHING CARDS
══════════════════ */
.teaching-card {
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: 14px; padding: 22px 20px; position: relative; overflow: hidden;
}
.teaching-card::before {
  content: attr(data-n); position: absolute; right: 14px; top: 10px;
  font-family: 'Playfair Display', serif; font-size: 5rem;
  color: rgba(200,148,26,0.07); line-height: 1; font-weight: 700;
}
.teaching-card h3 { font-family: 'Playfair Display', serif; color: var(--saffron-light); font-size: 1.05rem; margin-bottom: 8px; }
.teaching-card p { color: var(--dark-section-text); font-size: 0.97rem; line-height: 1.82; }

/* ══════════════════
   DEVOTEE CARDS
══════════════════ */
.devotee-scroll {
  display: flex; gap: 14px; overflow-x: auto; padding-bottom: 10px;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  scrollbar-width: thin; scrollbar-color: var(--saffron) transparent;
}
.devotee-card {
  min-width: 210px; flex-shrink: 0; scroll-snap-align: start;
  background: var(--surface); border-radius: 14px; padding: 18px 16px;
  border: 1px solid var(--border); box-shadow: var(--card-shadow);
  transition: background 0.35s;
}
.devotee-avatar {
  width: 50px; height: 50px; border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--rust));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 10px;
}
.devotee-card h4 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--rust); margin-bottom: 3px; }
[data-theme="dark"] .devotee-card h4 { color: var(--saffron-light); }
.devotee-rel { font-size: 0.67rem; letter-spacing: 2px; text-transform: uppercase; color: var(--saffron); margin-bottom: 9px; }
.devotee-card p { font-size: 0.87rem; color: var(--text2); line-height: 1.7; font-style: italic; }

/* ══════════════════
   VISITOR BLOCKS
══════════════════ */
.visitor-grid { display: grid; gap: 18px; }
@media (min-width: 540px) { .visitor-grid { grid-template-columns: 1fr 1fr; } }
.visitor-block {
  background: var(--surface2); border-radius: 14px; padding: 20px 18px;
  border-left: 4px solid var(--saffron); transition: background 0.35s;
}
.visitor-block h3 { font-family: 'Playfair Display', serif; color: var(--rust); font-size: 1.05rem; margin-bottom: 10px; }
[data-theme="dark"] .visitor-block h3 { color: var(--saffron-light); }
.visitor-block ul { list-style: none; display: grid; gap: 7px; }
.visitor-block li {
  font-size: 0.94rem; color: var(--text2); line-height: 1.6;
  display: flex; gap: 8px; align-items: flex-start;
}
.visitor-block li::before { content: '🪷'; font-size: 0.82rem; flex-shrink: 0; margin-top: 2px; }

/* ══════════════════
   MAP
══════════════════ */
.map-embed { border-radius: 14px; overflow: hidden; border: 2px solid var(--border); }
.map-embed iframe { width:100%; height: 300px; border: none; display: block; }
.map-chips { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 14px; }
.map-chip {
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: 10px; padding: 13px 14px; color: #FDF6E3;
}
.map-chip .mc-lbl { font-size: 0.62rem; letter-spacing: 2px; text-transform: uppercase; color: var(--saffron-light); margin-bottom: 4px; }
.map-chip .mc-val { font-size: 0.93rem; }

/* ══════════════════
   MIRACLE / STORIES
══════════════════ */
.miracle-card {
  background: var(--surface); border-radius: 14px; padding: 22px 20px;
  border: 1px solid var(--border); box-shadow: var(--card-shadow);
  position: relative; overflow: hidden;
}
.miracle-card::after {
  content: '✨'; position: absolute; bottom: 12px; right: 16px;
  font-size: 2.5rem; opacity: 0.08;
}
.miracle-card h3 { font-family: 'Playfair Display', serif; color: var(--rust); font-size: 1.1rem; margin-bottom: 8px; }
[data-theme="dark"] .miracle-card h3 { color: var(--saffron-light); }
.miracle-card p { font-size: 0.96rem; line-height: 1.82; color: var(--text2); }

/* ══════════════════
   FAQ / ACCORDION
══════════════════ */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 16px 0; display: flex; justify-content: space-between; align-items: center;
  font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--rust);
  gap: 14px; transition: color 0.2s;
}
[data-theme="dark"] .faq-q { color: var(--saffron-light); }
.faq-q:hover { color: var(--saffron); }
.faq-icon { font-size: 1.2rem; flex-shrink: 0; transition: transform 0.3s; color: var(--saffron); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a p { font-size: 0.97rem; line-height: 1.82; color: var(--text2); padding-bottom: 16px; }
.faq-item.open .faq-a { max-height: 400px; }

/* ══════════════════
   FOOTER
══════════════════ */
footer {
  background: #0A0300; border-top: 1px solid rgba(200,148,26,0.12);
  padding: 44px 20px 28px; text-align: center;
  transition: background 0.35s;
}
[data-theme="dark"] footer { background: #060100; }
.footer-logo { font-family: 'Playfair Display', serif; color: var(--gold-light); font-size: 1.3rem; margin-bottom: 3px; }
.footer-powered { font-size: 0.62rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(245,166,35,0.35); margin-bottom: 22px; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 24px; }
.footer-nav a { color: rgba(245,230,200,0.45); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-nav a:hover { color: var(--saffron-light); }
.footer-copy { font-size: 0.72rem; color: rgba(245,230,200,0.2); line-height: 1.9; }
.footer-jai { font-size: 1rem; color: rgba(245,166,35,0.5); margin-bottom: 12px; font-family: 'Tiro Devanagari Hindi', serif; }

/* ══════════════════
   FLOATING BUTTONS
══════════════════ */
.fab-group {
  position: fixed; bottom: 22px; right: 16px; z-index: 80;
  display: flex; flex-direction: column; gap: 10px; align-items: flex-end;
}
.fab {
  border: none; border-radius: 50px; padding: 11px 16px;
  font-size: 0.82rem; display: flex; align-items: center; gap: 6px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3); white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
}
.fab:hover { transform: scale(1.05) translateY(-2px); }
.fab-top { background: linear-gradient(135deg, var(--saffron), var(--saffron-deep)); color: white; }
.fab-share { background: #25D366; color: white; }

/* ══════════════════
   REVEAL ANIMATION
══════════════════ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ══════════════════
   RESPONSIVE
══════════════════ */
@media (min-width: 640px) {
  .sites-grid { grid-template-columns: 1fr 1fr; }
  .map-embed iframe { height: 360px; }
}
@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}
