/* ==========================================================================
   WORLD FAMOUS GANGA ARTI EVENT — Design System
   Palette: cream base, deep maroon, saffron/marigold, temple-dark footer
   ========================================================================== */

:root {
  --cream: #faf6ee;
  --cream-2: #f3ecdd;
  --peach: #fbe3c2;
  --peach-2: #f7d6a4;
  --maroon: #8e2323;
  --maroon-dark: #6d1a1a;
  --saffron: #e8912d;
  --saffron-light: #f2ab52;
  --saffron-deep: #d97b16;
  --ink: #2e2118;
  --ink-soft: #5b4a3e;
  --ink-mute: #8a7666;
  --card: #ffffff;
  --card-tint: #fdf3e3;
  --footer-bg: #1c0f0d;
  --footer-bg-2: #2b1512;
  --gold: #d9a05b;
  --whatsapp: #25d366;

  --font-display: "Montserrat", "Segoe UI", "Helvetica Neue", sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", Roboto, "Helvetica Neue", sans-serif;
  --font-devanagari: "Noto Serif Devanagari", "Montserrat", serif;

  --radius: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 10px rgba(70, 40, 10, 0.07);
  --shadow-md: 0 8px 30px rgba(70, 40, 10, 0.10);
  --shadow-lg: 0 18px 50px rgba(70, 40, 10, 0.16);
  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* Devanagari text rendering */
[lang="hi"], .hi-text { font-family: var(--font-devanagari); }

/* ==========================================================================
   TOP MARQUEE BAR
   ========================================================================== */

.topbar {
  background: linear-gradient(90deg, #e07b12, #f09c33, #e07b12);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  overflow: hidden;
  position: relative;
  z-index: 60;
}

.topbar-inner {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.marquee {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: inline-flex;
  gap: 3rem;
  padding: 8px 0;
  animation: marquee 28s linear infinite;
  will-change: transform;
}

.marquee-track span { padding-right: 3rem; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.topbar-static {
  padding: 8px 20px;
  background: rgba(120, 60, 0, 0.28);
  font-weight: 800;
  flex-shrink: 0;
}

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */

.header {
  background: linear-gradient(180deg, #fdf3e0, #fbeed6);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 0 rgba(140, 90, 30, 0.12);
  transition: box-shadow 0.3s var(--ease);
}

.header.scrolled { box-shadow: 0 6px 24px rgba(90, 50, 10, 0.12); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 24px;
  max-width: var(--container);
  margin: 0 auto;
}

.brand { display: flex; align-items: center; gap: 12px; }

.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #f6c063, #b95f10 70%, #7a3a05);
  display: grid;
  place-items: center;
  color: #fff7e8;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  box-shadow: inset 0 0 0 2px rgba(255, 235, 200, 0.55), 0 3px 10px rgba(150, 80, 10, 0.35);
  flex-shrink: 0;
}

.brand-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.3;
  color: var(--ink);
}

.bn-br { display: none; }

.brand-tag {
  display: block;
  font-size: 0.74rem;
  color: var(--ink-mute);
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.nav { display: flex; align-items: center; gap: 6px; }

.nav a {
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1f4e79;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.nav a:hover { background: rgba(232, 145, 45, 0.16); color: var(--saffron-deep); }

.nav a.active {
  background: linear-gradient(135deg, var(--saffron-light), var(--saffron-deep));
  color: #fff;
  box-shadow: 0 4px 14px rgba(217, 123, 22, 0.35);
}

.header-right { display: flex; align-items: center; gap: 12px; }

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(140, 90, 30, 0.3);
  border-radius: 999px;
  background: #fffdf8;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: all 0.25s var(--ease);
}

.lang-toggle:hover { border-color: var(--saffron); box-shadow: 0 3px 12px rgba(217, 123, 22, 0.2); }

.lang-toggle .lang-code { font-weight: 800; color: var(--maroon); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-burger span {
  width: 24px;
  height: 2.5px;
  background: var(--maroon);
  border-radius: 2px;
  transition: 0.3s var(--ease);
}

/* ==========================================================================
   HERO — HOME (dark, image overlay)
   ========================================================================== */

.hero-home {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  color: #f8ead6;
  isolation: isolate;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(240, 150, 40, 0.22), transparent 60%),
    linear-gradient(180deg, #1a0f08 0%, #241207 45%, #180c05 100%);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-img, none);
  background-size: cover;
  background-position: center;
  opacity: 0.34;
  mix-blend-mode: luminosity;
}

/* floating diya embers */
.ember {
  position: absolute;
  bottom: -10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffd27a, #ff8c1a 60%, transparent);
  filter: blur(0.5px);
  animation: rise linear infinite;
  opacity: 0;
  z-index: -1;
}

@keyframes rise {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  8% { opacity: 0.85; }
  60% { opacity: 0.5; }
  100% { transform: translateY(-92vh) translateX(var(--drift, 30px)); opacity: 0; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 48px 0 56px;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #f4c078;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4.6vw, 3.9rem);
  line-height: 1.12;
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.45);
}

.hero-title em {
  font-style: normal;
  background: linear-gradient(100deg, #ffd58a, #f2a13c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 1.04rem;
  color: rgba(250, 235, 214, 0.88);
  max-width: 58ch;
  margin-bottom: 26px;
}

.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }

.badge-pill {
  padding: 8px 18px;
  border: 1px solid rgba(244, 192, 120, 0.55);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f8dcae;
  background: rgba(60, 30, 8, 0.35);
  backdrop-filter: blur(4px);
}

.hero-cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.btn-saffron {
  background: linear-gradient(135deg, #f6b45e, var(--saffron-deep));
  color: #3a1c02;
  box-shadow: 0 8px 26px rgba(217, 123, 22, 0.45);
}

.btn-saffron:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(217, 123, 22, 0.55); }

.btn-outline-light {
  border: 1.5px solid rgba(248, 220, 174, 0.6);
  color: #f8dcae;
}

.btn-outline-light:hover { background: rgba(248, 220, 174, 0.12); transform: translateY(-2px); }

.hero-trust {
  margin-top: 18px;
  font-size: 0.88rem;
  color: rgba(244, 214, 170, 0.75);
}

/* Hero side card */
.hero-card {
  background: linear-gradient(160deg, rgba(46, 22, 6, 0.82), rgba(28, 13, 4, 0.9));
  border: 1px solid rgba(244, 192, 120, 0.4);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 60px rgba(240, 150, 40, 0.18), var(--shadow-lg);
  animation: cardGlow 5s ease-in-out infinite alternate;
}

@keyframes cardGlow {
  from { box-shadow: 0 0 40px rgba(240, 150, 40, 0.14), var(--shadow-lg); }
  to { box-shadow: 0 0 80px rgba(240, 150, 40, 0.3), var(--shadow-lg); }
}

.hero-card h3 {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #f4c078;
  margin-bottom: 16px;
}

.hero-card p { font-size: 0.95rem; color: rgba(250, 235, 214, 0.85); margin-bottom: 18px; }

.hero-card-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding-top: 16px;
  border-top: 1px dashed rgba(244, 192, 120, 0.35);
  font-size: 0.88rem;
  color: rgba(250, 235, 214, 0.9);
}

.diya-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 30%, #ffd88f, #c96a10);
  position: relative;
  box-shadow: 0 0 16px rgba(255, 170, 60, 0.6);
  animation: flicker 2.2s ease-in-out infinite;
}

@keyframes flicker {
  0%, 100% { box-shadow: 0 0 14px rgba(255, 170, 60, 0.55); }
  50% { box-shadow: 0 0 24px rgba(255, 190, 80, 0.85); }
}

/* ==========================================================================
   HERO — SUBPAGES (light gradient + breadcrumb)
   ========================================================================== */

.breadcrumb-bar {
  background: var(--cream-2);
  border-bottom: 1px solid rgba(140, 90, 30, 0.1);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.breadcrumb-bar .container { display: flex; gap: 10px; padding-top: 10px; padding-bottom: 10px; }
.breadcrumb-bar a { color: #1f4e79; }
.breadcrumb-bar a:hover { color: var(--saffron-deep); }
.breadcrumb-bar .crumb-current { color: var(--maroon); }
.breadcrumb-bar .sep { color: var(--ink-mute); }

.hero-sub-page {
  background: linear-gradient(115deg, #fdf1da 0%, #f9dfae 55%, #f4cd8b 100%);
  padding: 64px 0 72px;
  position: relative;
  overflow: hidden;
}

.hero-sub-page::after {
  content: "ॐ";
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16rem;
  color: rgba(200, 130, 40, 0.1);
  font-family: var(--font-devanagari);
  pointer-events: none;
  line-height: 1;
}

.hero-sub-page .hero-eyebrow { color: #1f4e79; }

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  color: var(--maroon);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
}

.page-lede { max-width: 60ch; color: var(--ink-soft); font-size: 1.02rem; }
.page-lede + .page-lede { margin-top: 10px; }

/* ==========================================================================
   SECTIONS & CARDS
   ========================================================================== */

.section { padding: 72px 0; }
.section-tint { background: var(--cream-2); }

.panel {
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(28px, 4vw, 52px);
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--maroon);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-heading.center { text-align: center; }

.section-lede {
  color: var(--ink-soft);
  max-width: 64ch;
  margin-bottom: 8px;
}

.section-lede.center { margin-left: auto; margin-right: auto; text-align: center; }

/* About grid (home) */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}

.why-card {
  background: var(--card-tint);
  border: 1px solid rgba(217, 123, 22, 0.22);
  border-radius: var(--radius);
  padding: 26px 26px 22px;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--maroon);
  margin-bottom: 14px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron-light), var(--saffron-deep));
  box-shadow: 0 2px 6px rgba(217, 123, 22, 0.4);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 5.5px;
  top: 8.5px;
  width: 5px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(42deg);
}

/* Stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.stat-card {
  background: linear-gradient(150deg, #fdf1dc, #fae3bd);
  border: 1px solid rgba(217, 123, 22, 0.22);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.stat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--maroon);
  margin-bottom: 4px;
}

.stat-label { font-size: 0.9rem; color: var(--ink-soft); }

/* ==========================================================================
   SERVICE CARDS
   ========================================================================== */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 42px;
}

.service-card {
  background: var(--card);
  border: 1px solid rgba(160, 110, 40, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  box-shadow: var(--shadow-sm);
}

.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }

.card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
  background: linear-gradient(140deg, #2a150a, #5c2c10 55%, #b06a1e);
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.service-card:hover .card-media img { transform: scale(1.07); }

.card-media .media-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 220, 160, 0.65);
  font-family: var(--font-devanagari);
  font-size: 3.2rem;
}

.card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }

.card-title {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--maroon);
  margin-bottom: 10px;
  line-height: 1.3;
}

.card-text { font-size: 0.92rem; color: var(--ink-soft); flex: 1; margin-bottom: 18px; }

.card-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.btn-sm {
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  transition: all 0.25s var(--ease);
}

.btn-book {
  background: linear-gradient(135deg, var(--saffron-light), var(--saffron-deep));
  color: #fff;
  box-shadow: 0 4px 14px rgba(217, 123, 22, 0.35);
}

.btn-book:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(217, 123, 22, 0.5); }

.btn-ghost {
  border: 1.5px solid rgba(140, 90, 30, 0.35);
  color: var(--ink-soft);
  background: #fffdf8;
}

.btn-ghost:hover { border-color: var(--saffron-deep); color: var(--saffron-deep); }

/* ==========================================================================
   GALLERY
   ========================================================================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  border: 1px solid rgba(160, 110, 40, 0.16);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  cursor: pointer;
}

.gallery-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.gallery-card .card-media { aspect-ratio: 4 / 3; }

.gallery-caption {
  padding: 14px 16px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  background: linear-gradient(160deg, #fdf0da, #fae4c2);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(15, 7, 3, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.open { display: flex; animation: fadeIn 0.3s var(--ease); }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.lightbox-content { max-width: 900px; width: 100%; }
.lightbox-content img { width: 100%; max-height: 74vh; object-fit: contain; border-radius: 12px; }

.lightbox-caption { color: #f4d6aa; text-align: center; margin-top: 16px; font-size: 0.95rem; }

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 30px;
  color: #f8dcae;
  font-size: 2.2rem;
  line-height: 1;
  transition: transform 0.25s;
}

.lightbox-close:hover { transform: rotate(90deg); }

/* ==========================================================================
   VIDEO CARDS (Mantra page + home)
   ========================================================================== */

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-top: 32px;
}

.video-card {
  border: 1px solid rgba(160, 110, 40, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.video-card video { width: 100%; aspect-ratio: 16 / 9; background: #120a05; display: block; }

.video-caption {
  padding: 14px 18px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  background: linear-gradient(160deg, #fdf3e2, #fbe8cb);
}

/* Mantra split section (home) */
.mantra-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

/* Shloka card */
.shloka-card {
  background: linear-gradient(150deg, #221008, #3a1a0c);
  border: 1px solid rgba(244, 192, 120, 0.35);
  border-radius: var(--radius);
  padding: 28px 30px;
  color: #f6ddb2;
  box-shadow: 0 10px 40px rgba(50, 20, 5, 0.4);
}

.shloka-card .shloka-label {
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #e8a34e;
  margin-bottom: 14px;
}

.shloka-card .shloka-lines {
  font-family: var(--font-devanagari);
  font-size: 1.18rem;
  line-height: 2;
  margin-bottom: 16px;
}

.shloka-card .shloka-meaning {
  font-size: 0.9rem;
  color: rgba(246, 221, 178, 0.8);
  border-top: 1px dashed rgba(244, 192, 120, 0.3);
  padding-top: 14px;
}

/* ==========================================================================
   BOOKING / SERVICE AREA
   ========================================================================== */

.booking-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}

.service-area-card {
  background: linear-gradient(150deg, #fdf1dc, #f9e2ba);
  border: 1px solid rgba(217, 123, 22, 0.25);
  border-radius: var(--radius);
  padding: 30px 28px;
}

.service-area-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--maroon);
  margin-bottom: 14px;
}

.service-area-card p { font-size: 0.96rem; color: var(--ink-soft); margin-bottom: 14px; }

.btn-whatsapp-cta {
  width: 100%;
  justify-content: center;
  background: #fffdf6;
  border: 1.5px solid rgba(142, 35, 35, 0.4);
  color: var(--maroon);
  font-weight: 700;
  padding: 15px 22px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.btn-whatsapp-cta:hover {
  background: var(--maroon);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(142, 35, 35, 0.35);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
  background: linear-gradient(180deg, #120806, var(--footer-bg) 30%, var(--footer-bg-2));
  color: #e9cfa8;
  padding: 64px 0 40px;
  text-align: center;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--saffron), transparent);
  opacity: 0.7;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}

.footer-brand .brand-logo { width: 36px; height: 36px; font-size: 0.9rem; }

.footer-nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 26px; margin-bottom: 22px; font-size: 0.95rem; }
.footer-nav a { transition: color 0.25s; }
.footer-nav a:hover { color: var(--saffron-light); }

.footer-social { display: flex; justify-content: center; gap: 20px; margin-bottom: 26px; }

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(233, 207, 168, 0.35);
  display: grid;
  place-items: center;
  transition: all 0.3s var(--ease);
}

.footer-social a:hover { background: var(--saffron-deep); border-color: var(--saffron-deep); transform: translateY(-3px); }

.footer-social svg { width: 17px; height: 17px; fill: currentColor; }

.footer-address { font-size: 0.9rem; line-height: 1.9; color: rgba(233, 207, 168, 0.8); margin-bottom: 22px; }

.footer-legal { font-size: 0.84rem; color: rgba(233, 207, 168, 0.6); }
.footer-legal p + p { margin-top: 8px; }

/* ==========================================================================
   FLOATING WHATSAPP
   ========================================================================== */

.wa-float {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #4ce884, var(--whatsapp) 70%);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 26px rgba(37, 211, 102, 0.45);
  z-index: 100;
  transition: transform 0.3s var(--ease);
  animation: waPulse 2.6s ease-in-out infinite;
}

.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 26px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 8px 26px rgba(37, 211, 102, 0.45), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   MODAL (service details)
   ========================================================================== */

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(20, 10, 4, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(3px);
}

.modal-backdrop.open { display: flex; animation: fadeIn 0.28s var(--ease); }

.modal {
  background: var(--cream);
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 100%;
  max-height: 86vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: modalUp 0.35s var(--ease);
}

@keyframes modalUp {
  from { transform: translateY(28px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.modal-header {
  background: linear-gradient(120deg, var(--maroon), var(--maroon-dark));
  color: #fbe8cb;
  padding: 24px 28px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.modal-header h3 { font-family: var(--font-display); font-size: 1.4rem; line-height: 1.3; }

.modal-close { color: #fbe8cb; font-size: 1.7rem; line-height: 1; flex-shrink: 0; transition: transform 0.25s; }
.modal-close:hover { transform: rotate(90deg); }

.modal-body { padding: 26px 28px 30px; }
.modal-body p { color: var(--ink-soft); font-size: 0.96rem; margin-bottom: 18px; }
.modal-body .check-list { margin-bottom: 24px; }

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.in { opacity: 1; transform: translateY(0); }

.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .cards-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .booking-grid, .mantra-split { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav {
    position: fixed;
    top: 0;
    right: -290px;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, #fdf3e0, #f8e6c6);
    flex-direction: column;
    align-items: stretch;
    padding: 90px 24px 24px;
    gap: 10px;
    box-shadow: -10px 0 40px rgba(60, 30, 5, 0.25);
    transition: right 0.4s var(--ease);
    z-index: 55;
  }

  .nav.open { right: 0; }
  .nav a { text-align: center; }
  .nav-burger { display: flex; z-index: 56; }

  .nav-burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-burger.open span:nth-child(2) { opacity: 0; }
  .nav-burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  .header-inner { padding: 10px 14px; gap: 10px; }
  .brand { gap: 9px; flex: 1; min-width: 0; }
  .brand > span:last-child { min-width: 0; }
  .brand-logo { width: 36px; height: 36px; font-size: 0.9rem; }
  .bn-br { display: inline; }
  .brand-name { font-size: 0.78rem; line-height: 1.25; letter-spacing: 0.07em; white-space: nowrap; }
  .brand-tag { font-size: 0.55rem; letter-spacing: 0.04em; white-space: nowrap; }
  .lang-toggle { padding: 6px 11px; font-size: 0.78rem; gap: 5px; flex-shrink: 0; }
  .lang-toggle .lang-label { display: none; }
  .cards-grid, .gallery-grid, .video-grid { grid-template-columns: 1fr; }
  .hero-home { min-height: auto; }
  .hero-grid { padding: 28px 0 44px; gap: 28px; }
  .hero-eyebrow { margin-bottom: 12px; }
  .section { padding: 54px 0; }
  .hero-sub-page::after { font-size: 9rem; opacity: 0.6; }
  .topbar-static { display: none; }
  .topbar { font-size: 0.6rem; letter-spacing: 0.1em; }
  .marquee-track { padding: 5px 0; }
  .festival-banner-inner { font-size: 0.64rem; }
  .wa-float { right: 18px; bottom: 18px; width: 52px; height: 52px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   CALL FLOAT (phone button above WhatsApp)
   ========================================================================== */

.call-float {
  position: fixed;
  right: 26px;
  bottom: 96px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--saffron-light), var(--saffron-deep) 70%);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 26px rgba(217, 123, 22, 0.45);
  z-index: 100;
  transition: transform 0.3s var(--ease);
}

.call-float:hover { transform: scale(1.1); }
.call-float svg { width: 26px; height: 26px; fill: #fff; }

/* ==========================================================================
   BOOKING FORM
   ========================================================================== */

.booking-form { max-width: 760px; margin: 34px auto 0; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.form-field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }

.form-field label {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--ink-soft);
  letter-spacing: 0.03em;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px 14px;
  border: 1.5px solid rgba(140, 90, 30, 0.25);
  border-radius: 10px;
  background: #fffdf8;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(232, 145, 45, 0.18);
}

.form-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 6px; }

.btn-outline-dark {
  border: 1.5px solid var(--maroon);
  color: var(--maroon);
  background: transparent;
}

.btn-outline-dark:hover { background: rgba(142, 35, 35, 0.08); }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}

.testimonial-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(140, 90, 30, 0.10);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.testimonial-card .stars { color: var(--saffron); font-size: 1rem; letter-spacing: 3px; }

.testimonial-text { font-size: 0.93rem; color: var(--ink-soft); line-height: 1.7; flex: 1; }

.testimonial-name { font-weight: 700; font-size: 0.92rem; color: var(--maroon); }
.testimonial-name span { font-weight: 500; color: var(--ink-mute); }

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */

.faq-list { max-width: 820px; margin-left: auto; margin-right: auto; }

.faq-item {
  border: 1px solid rgba(140, 90, 30, 0.16);
  border-radius: 12px;
  background: #fffdf8;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  padding: 16px 20px;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--ink);
  transition: background 0.25s var(--ease);
}

.faq-q:hover { background: rgba(232, 145, 45, 0.07); }

.faq-arrow { color: var(--saffron-deep); transition: transform 0.3s var(--ease); flex-shrink: 0; }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}

.faq-a p { padding: 0 20px 18px; font-size: 0.93rem; color: var(--ink-soft); line-height: 1.7; }

.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-item.open .faq-a { max-height: 300px; }

/* ==========================================================================
   INSTAGRAM BAND
   ========================================================================== */

.insta-band {
  background: linear-gradient(100deg, #7a2050, #b0356b 45%, #d96a34);
  color: #fff;
  padding: 40px 0;
}

.insta-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.insta-icon { width: 54px; height: 54px; fill: #fff; flex-shrink: 0; }

.insta-inner > div { flex: 1; min-width: 240px; }

.insta-inner h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.insta-inner p { font-size: 0.95rem; opacity: 0.9; }

@media (max-width: 720px) {
  .form-row { grid-template-columns: 1fr; }
  .call-float { right: 18px; bottom: 84px; width: 52px; height: 52px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .insta-inner { text-align: center; justify-content: center; }
}

/* ==========================================================================
   FESTIVAL BANNER
   ========================================================================== */

.festival-banner {
  background: linear-gradient(90deg, var(--maroon-dark), var(--maroon), var(--maroon-dark));
  color: #ffe9c9;
  position: relative;
  z-index: 59;
}

.festival-banner-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 10px 48px 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
}

.fest-btn {
  background: linear-gradient(135deg, var(--saffron-light), var(--saffron-deep));
  color: #fff;
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 0.25s var(--ease);
}

.fest-btn:hover { transform: scale(1.05); }

.fest-close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #ffe9c9;
  font-size: 1.4rem;
  line-height: 1;
  opacity: 0.8;
}

.fest-close:hover { opacity: 1; }

/* ==========================================================================
   AARTI TIMINGS & FESTIVALS
   ========================================================================== */

.timing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.timing-card {
  background: var(--card-tint);
  border: 1px solid rgba(140, 90, 30, 0.14);
  border-radius: var(--radius);
  padding: 26px 24px;
  text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.timing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.timing-icon { font-size: 2rem; margin-bottom: 12px; }

.timing-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--maroon);
  margin-bottom: 10px;
}

.timing-card p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.65; }

.fest-heading {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--maroon);
  text-align: center;
  margin: 42px 0 18px;
}

.fest-list { max-width: 680px; margin: 0 auto; }

.fest-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 18px;
  border-bottom: 1px dashed rgba(140, 90, 30, 0.25);
}

.fest-row:last-child { border-bottom: none; }

.fest-name { font-weight: 600; font-size: 0.95rem; }

.fest-month {
  color: var(--saffron-deep);
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
}

.fest-note {
  text-align: center;
  font-size: 0.84rem;
  color: var(--ink-mute);
  margin-top: 18px;
}

/* ==========================================================================
   BLOG / ARTICLES
   ========================================================================== */

.blog-card-date {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--saffron-deep);
  margin-bottom: 8px;
}

.article-wrap { max-width: 820px; margin: 0 auto; }

.article-date {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--saffron-deep);
  margin-bottom: 12px;
}

.article-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
  line-height: 1.25;
  color: var(--maroon);
  margin-bottom: 24px;
}

.article-media {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 28px;
  max-height: 420px;
}

.article-media img { width: 100%; height: 100%; object-fit: cover; }

.article-body h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--maroon);
  margin: 30px 0 12px;
}

.article-body p { margin-bottom: 16px; color: var(--ink-soft); line-height: 1.8; }

.article-body ul { margin: 0 0 16px 4px; }

.article-body li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.article-body li::before {
  content: "🪔";
  position: absolute;
  left: 0;
  font-size: 0.85rem;
}

.article-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px dashed rgba(140, 90, 30, 0.25);
}

@media (max-width: 900px) {
  .timing-grid { grid-template-columns: 1fr; }
}

.footer-legal a { color: var(--gold); }
.footer-legal a:hover { text-decoration: underline; }

/* Festival banner — patla strip, phone pe ek line */
.festival-banner-inner { padding: 6px 44px 6px 20px; font-size: 0.88rem; }
.fest-btn { padding: 4px 14px; font-size: 0.8rem; }
.fest-msg { min-width: 0; }

@media (max-width: 720px) {
  .festival-banner-inner {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 8px;
    padding: 5px 36px 5px 12px;
    font-size: 0.68rem;
    text-align: left;
  }
  .fest-msg {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .fest-btn { display: none; }
  .fest-close { right: 10px; font-size: 1.2rem; }
}

/* Stats cards — phone pe compact horizontal design */
@media (max-width: 900px) {
  .stats-row { gap: 12px; margin-top: 28px; }

  .stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
  }

  .stat-card:hover { transform: none; }

  .stat-num {
    font-size: 1.45rem;
    margin-bottom: 0;
    flex-shrink: 0;
    min-width: 92px;
    text-align: center;
    padding-right: 14px;
    border-right: 1.5px dashed rgba(217, 123, 22, 0.35);
    line-height: 1.2;
  }

  .stat-label { font-size: 0.82rem; line-height: 1.5; }
}

/* Gallery cards — phone pe ek line me 2 */
@media (max-width: 760px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px; }
  .gallery-caption { font-size: 0.7rem; padding: 10px 10px; line-height: 1.45; }
}

/* Home glimpses — desktop pe 4 cards ek line me */
.glimpse-grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) and (min-width: 761px) {
  .glimpse-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* Timing cards — phone pe compact horizontal design */
@media (max-width: 900px) {
  .timing-grid { gap: 12px; }

  .timing-card {
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
    padding: 14px 16px;
  }

  .timing-card:hover { transform: none; }

  .timing-icon {
    font-size: 1.5rem;
    margin-bottom: 0;
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    background: rgba(232, 145, 45, 0.14);
    border-radius: 50%;
  }

  .timing-card h3 { font-size: 0.92rem; margin-bottom: 4px; }
  .timing-card p { font-size: 0.78rem; line-height: 1.5; }
}

/* Instagram band — professional look */
.insta-band { padding: 44px 0; }

.insta-icon {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  padding: 12px;
  width: 56px;
  height: 56px;
  box-sizing: content-box;
}

.insta-inner h2 { letter-spacing: 0.01em; }

.insta-inner p { max-width: 520px; }

.insta-band .btn-saffron {
  background: #fff;
  color: #a03260;
  font-weight: 700;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.22);
}

.insta-band .btn-saffron:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

@media (max-width: 720px) {
  .insta-band { padding: 36px 0; }

  .insta-inner {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }

  .insta-icon { width: 46px; height: 46px; padding: 10px; }

  .insta-inner h2 { font-size: 1.25rem; margin-bottom: 4px; }
  .insta-inner p { font-size: 0.88rem; margin: 0 auto; }

  .insta-band .btn-saffron { margin-top: 4px; padding: 11px 34px; }
}

/* Phone pe headings + booking form compact */
@media (max-width: 760px) {
  .section-heading { font-size: 1.3rem; line-height: 1.3; }
  .section-lede { font-size: 0.88rem; }
  .panel { padding: 22px 16px; }

  .booking-form { margin-top: 20px; }
  .form-field { margin-bottom: 10px; gap: 5px; }
  .form-field label { font-size: 0.8rem; }
  .form-field input,
  .form-field select,
  .form-field textarea { padding: 10px 12px; font-size: 16px; }
  .form-row { gap: 0; }
  .form-actions { margin-top: 10px; }
}

/* ==========================================================================
   FOOTER — naya design (3-column grid, contact info ke saath)
   ========================================================================== */

.footer { text-align: left; padding: 56px 0 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1.2fr;
  gap: 44px;
  padding-bottom: 40px;
}

.f-col h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f4c078;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

.f-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--saffron), transparent);
}

.footer .footer-brand { margin-bottom: 14px; font-size: 1rem; line-height: 1.35; }

.f-tag {
  font-size: 0.86rem;
  line-height: 1.75;
  color: rgba(233, 207, 168, 0.75);
  margin-bottom: 20px;
  max-width: 300px;
}

.footer .footer-nav {
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 0;
  font-size: 0.9rem;
}

.footer .footer-nav a {
  color: rgba(233, 207, 168, 0.85);
  position: relative;
  padding-left: 16px;
}

.footer .footer-nav a::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--saffron);
  transition: transform 0.25s var(--ease);
}

.footer .footer-nav a:hover { color: #ffe9c9; }
.footer .footer-nav a:hover::before { transform: translateX(3px); }

.f-contact { display: flex; flex-direction: column; gap: 14px; }

.f-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(233, 207, 168, 0.85);
}

.f-contact .f-ic {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(232, 145, 45, 0.14);
  border: 1px solid rgba(232, 145, 45, 0.25);
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.f-contact a { color: #ffd9a0; font-weight: 600; }
.f-contact a:hover { color: #ffe9c9; text-decoration: underline; }

.footer .footer-social { justify-content: flex-start; margin-bottom: 0; }

.footer-bottom {
  border-top: 1px solid rgba(233, 207, 168, 0.14);
  padding: 20px 0 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: rgba(233, 207, 168, 0.55);
}

@media (max-width: 860px) {
  .footer { padding-top: 40px; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 28px;
  }

  .f-col h4 { margin-bottom: 14px; }
  .f-tag { font-size: 0.82rem; }
  .footer .footer-nav { gap: 9px; font-size: 0.86rem; }
  .f-contact { gap: 11px; }
  .f-contact li { font-size: 0.82rem; }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    font-size: 0.74rem;
    gap: 6px;
    padding-bottom: calc(22px + env(safe-area-inset-bottom));
  }
}

/* Phone pe cards, buttons, headings sab compact */
@media (max-width: 760px) {
  .service-area-card h3 { font-size: 1.02rem; }
  .service-area-card p { font-size: 0.85rem; }
  .why-card h3 { font-size: 1.02rem; }
  .check-list li { font-size: 0.88rem; }
  .btn { padding: 12px 22px; font-size: 0.88rem; text-align: center; }
  .card-title { font-size: 1.02rem; }
  .card-text { font-size: 0.85rem; }
  .gallery-caption { font-size: 0.7rem; }
  .page-title { font-size: 1.6rem; }
  .page-lede { font-size: 0.9rem; }
  .hero-title { font-size: 1.8rem; }
  .hero-sub { font-size: 0.9rem; }
  .testimonial-text { font-size: 0.86rem; }
  .faq-q { font-size: 0.88rem; padding: 14px 16px; }
  .faq-a p { font-size: 0.85rem; }
}

/* Hero video — title ke neeche */
.hero-video {
  margin: 26px 0 4px;
  max-width: 560px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(244, 192, 120, 0.35);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  background: #000;
}

.hero-video video { width: 100%; display: block; }

@media (max-width: 760px) {
  .hero-video { margin: 20px 0 2px; border-radius: 12px; }
}

/* Hero video: PC pe right card me, phone pe title ke neeche */
.hero-card-video {
  margin: -14px -12px 18px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(244, 192, 120, 0.3);
  background: #000;
}

.hero-card-video video { width: 100%; display: block; }

@media (min-width: 761px) {
  .hero-video { display: none; }
}

@media (max-width: 760px) {
  .hero-card-video { display: none; }
}

/* Nav items ek line me */
.nav a { white-space: nowrap; }

@media (min-width: 761px) and (max-width: 1180px) {
  .nav { gap: 2px; }
  .nav a { padding: 8px 12px; font-size: 0.88rem; }
}

/* ══════════ NEW: star picker, form status, panchang & festival countdown ══════════ */
.starpick { display: flex; gap: 6px; font-size: 1.7rem; user-select: none; }
.starpick span { color: #e4d5bd; cursor: pointer; transition: transform .15s, color .15s; }
.starpick span.on { color: var(--saffron); }
.starpick span:active { transform: scale(1.25); }

.form-status { display: none; margin-top: 14px; padding: 12px 16px; border-radius: 12px; font-size: 0.9rem; font-weight: 600; text-align: center; }
.form-status.ok { display: block; background: #e9f7ee; color: #1e8e4a; }
.form-status.err { display: block; background: #fdecea; color: #d64533; }

/* Festival countdown card */
.fest-countdown {
  margin-top: 34px; padding: 26px 22px; border-radius: 18px; text-align: center;
  background: linear-gradient(135deg, var(--maroon, #8e2323), #5c1414);
  color: #ffe9c9; box-shadow: 0 12px 34px rgba(90, 20, 20, 0.25);
}
.fest-countdown .fc-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.8; }
.fest-countdown .fc-name { font-family: var(--font-display, serif); font-size: 1.6rem; margin: 6px 0 2px; }
.fest-countdown .fc-date { font-size: 0.9rem; opacity: 0.85; margin-bottom: 14px; }
.fest-countdown .fc-timer { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.fest-countdown .fc-box { background: rgba(255, 255, 255, 0.1); border-radius: 12px; padding: 10px 14px; min-width: 66px; }
.fest-countdown .fc-box b { display: block; font-size: 1.5rem; }
.fest-countdown .fc-box small { font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.75; }
.fest-upcoming { margin-top: 18px; }
.fest-upcoming .fest-row .fest-days { font-size: 0.78rem; font-weight: 700; color: var(--saffron-deep, #d97b16); white-space: nowrap; }

/* Panchang widget */
.panchang-card {
  margin-top: 26px; border-radius: 18px; padding: 24px 22px;
  background: linear-gradient(145deg, #fffdf8, #fdf3e0);
  border: 1px solid rgba(140, 90, 30, 0.14); box-shadow: 0 8px 26px rgba(80, 45, 10, 0.08);
}
.panchang-card h3 { font-family: var(--font-display, serif); color: var(--maroon, #8e2323); text-align: center; margin-bottom: 4px; font-size: 1.25rem; }
.panchang-card .pan-date { text-align: center; font-size: 0.85rem; color: var(--ink-mute, #9a8672); margin-bottom: 18px; }
.pan-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 12px; }
.pan-cell { background: #fff; border: 1px solid rgba(140, 90, 30, 0.1); border-radius: 12px; padding: 12px 10px; text-align: center; }
.pan-cell .pc-l { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute, #9a8672); }
.pan-cell .pc-v { font-weight: 700; margin-top: 3px; color: var(--ink, #2e2118); font-size: 0.95rem; }
.panchang-card .pan-note { text-align: center; font-size: 0.75rem; color: var(--ink-mute, #9a8672); margin-top: 14px; }

/* ══════════ TEAM SECTION ══════════ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 240px));
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}
.team-card {
  background: var(--card);
  border: 1px solid rgba(140, 90, 30, 0.12);
  border-radius: 16px;
  padding: 28px 20px 24px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-photo {
  position: relative;
  width: 110px;
  height: 110px;
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(145deg, var(--peach), var(--cream-2));
  border: 3px solid var(--saffron);
}
.team-photo .team-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 2.2rem;
}
.team-photo img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--maroon);
  margin: 0 0 4px;
}
.team-role {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0;
}

/* ══════════ BOOKING FORM STATUS ══════════ */
.bf-status {
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
}
.bf-status.ok { background: #e8f6e9; border: 1px solid #b7e0bb; color: #256b2d; }
.bf-status.err { background: #fdecec; border: 1px solid #f2c1c1; color: #8e2323; }

/* ══════════ ADVANCE FEE PAYMENT ══════════ */
.fee-hint {
  margin-top: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--maroon);
  background: var(--card-tint);
  border: 1px dashed var(--saffron);
  border-radius: 10px;
  padding: 8px 12px;
}
.pay-box {
  max-width: 480px;
  margin: 24px auto 0;
  padding: 28px 24px;
  background: var(--card-tint);
  border: 2px solid var(--saffron);
  border-radius: 18px;
  text-align: center;
}
.pay-box h3 {
  font-family: var(--font-display);
  color: var(--maroon);
  margin: 0 0 6px;
}
.pay-seva { color: var(--ink-soft); font-size: 0.92rem; margin: 0 0 10px; }
.pay-amount {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--maroon);
  margin-bottom: 14px;
}
.pay-qr {
  display: inline-block;
  padding: 12px;
  background: #fff;
  border-radius: 12px;
  margin-bottom: 14px;
}
.pay-qr img, .pay-qr canvas { display: block; }
.pay-qr:empty { display: none; }
.pay-upi { font-size: 0.95rem; margin: 0 0 12px; }
.pay-app-btn { width: 100%; margin-bottom: 16px; }
.pay-note { font-size: 0.85rem; color: var(--ink-mute); margin: 0 0 8px; }
.pay-box .form-actions { flex-direction: column; gap: 10px; margin-top: 12px; }
.pay-box .form-actions .btn { width: 100%; }
@media (min-width: 640px) {
  .pay-app-btn { display: none; } /* desktop pe QR scan hi best hai */
}

.svc-fee {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--maroon);
  background: var(--card-tint);
  border-radius: 8px;
  padding: 6px 10px;
  margin: 10px 0 0;
}

/* Footer copyright — double-tap se text select na ho (hidden admin access) */
.footer-bottom p[data-i18n="footer_rights"] { user-select: none; -webkit-user-select: none; cursor: default; }
