/* ================================================================
   GEETA MANDIR JALANDHAR — OFFICIAL WEBSITE
   Theme: Divine Saffron · Gold · White · Cream
   NO BLACK / NO DARK COLORS ANYWHERE
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Lato:wght@300;400;700&display=swap');

/* ── CSS VARIABLES ─────────────────────────────────────────────── */
:root {
  --saffron:        #E85D04;
  --saffron-light:  #F48C06;
  --saffron-pale:   #FFDDD2;
  --gold:           #D4A017;
  --gold-light:     #F3C94F;
  --gold-pale:      #FFF8E7;
  --cream:          #FFFDF5;
  --cream-deep:     #FFF3DC;
  --ivory:          #FEFBF0;
  --warm-white:     #FFFEF9;
  --text-dark:      #3D2B1F;
  --text-medium:    #6B4E35;
  --text-light:     #9C7A5C;
  --border-gold:    #DEB84A;
  --border-cream:   #F0DEB5;
  --shadow-warm:    rgba(212, 160, 23, 0.18);
  --shadow-saffron: rgba(232, 93, 4, 0.12);
  --glow-gold:      0 0 30px rgba(212, 160, 23, 0.25), 0 0 60px rgba(212, 160, 23, 0.12);
}

/* ── RESET & BASE ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--warm-white);
  color: var(--text-dark);
  line-height: 1.75;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ─────────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  line-height: 1.3;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }

.font-serif { font-family: 'Cormorant Garamond', serif; }
p { margin-bottom: 1.1rem; color: var(--text-medium); font-size: 1.05rem; }
a { color: var(--saffron); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--saffron-light); }

/* ── SCROLLBAR ──────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

/* ── TOP TICKER ─────────────────────────────────────────────────── */
.ticker-bar {
  background: linear-gradient(90deg, var(--saffron) 0%, var(--saffron-light) 50%, var(--saffron) 100%);
  color: #fff;
  padding: 7px 0;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  overflow: hidden;
}
.ticker-inner {
  display: flex;
  gap: 80px;
  animation: tickerScroll 28s linear infinite;
  white-space: nowrap;
}
.ticker-inner span { padding: 0 1rem; }
.ticker-inner .dot { color: var(--gold-light); font-size: 1.1rem; }
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── NAVBAR ─────────────────────────────────────────────────────── */
.navbar {
  background: var(--cream);
  border-bottom: 2px solid var(--border-gold);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px var(--shadow-warm);
  transition: box-shadow 0.3s;
}
.navbar.scrolled {
  box-shadow: 0 4px 30px var(--shadow-saffron);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--saffron) 0%, var(--gold) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 0 16px rgba(212,160,23,0.35);
  flex-shrink: 0;
}
.nav-logo-text .site-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--saffron);
  line-height: 1.2;
}
.nav-logo-text .site-sub {
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-menu > li > a {
  display: block;
  padding: 8px 13px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-dark);
  border-radius: 6px;
  transition: all 0.25s;
  text-transform: uppercase;
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  background: var(--saffron-pale);
  color: var(--saffron);
}
.nav-cta {
  background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-light) 100%) !important;
  color: #fff !important;
  border-radius: 24px !important;
  padding: 8px 20px !important;
  box-shadow: 0 4px 14px var(--shadow-saffron);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,93,4,0.25) !important; }

/* Hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--saffron); border-radius: 2px; transition: all 0.3s;
}

/* ── HERO ───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(160deg, var(--cream-deep) 0%, var(--ivory) 50%, var(--gold-pale) 100%);
}
.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('../images/geeta-mandir-hero.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 0.35;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255,253,245,0.92) 0%,
    rgba(255,248,231,0.78) 40%,
    rgba(255,240,200,0.55) 70%,
    rgba(232,93,4,0.08) 100%
  );
}
.hero-ornament {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,23,0.12) 0%, rgba(212,160,23,0.04) 50%, transparent 70%);
  animation: pulse-glow 6s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { transform: translateY(-50%) scale(1); opacity: 0.8; }
  50% { transform: translateY(-50%) scale(1.08); opacity: 1; }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-text { animation: fadeSlideUp 0.9s ease both; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, var(--saffron-pale), var(--gold-pale));
  border: 1.5px solid var(--border-gold);
  border-radius: 30px;
  padding: 6px 18px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--saffron);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--saffron);
  display: block;
}
.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--text-medium);
  font-weight: 500;
  margin-bottom: 1.8rem;
  font-style: italic;
  line-height: 1.5;
}
.hero-shloka {
  background: linear-gradient(135deg, rgba(212,160,23,0.12), rgba(255,248,231,0.8));
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  padding: 1rem 1.4rem;
  margin-bottom: 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-medium);
}
.hero-shloka cite {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--saffron);
  margin-top: 6px;
  font-style: normal;
  font-weight: 700;
  font-family: 'Lato', sans-serif;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-image-frame {
  position: relative;
  animation: fadeSlideRight 0.9s 0.3s ease both;
}
.hero-image-frame img {
  width: 100%;
  max-width: 500px;
  border-radius: 24px;
  box-shadow: 0 24px 60px var(--shadow-warm), 0 8px 24px rgba(212,160,23,0.2);
  display: block;
  object-fit: cover;
  min-height: 380px;
  background: var(--cream-deep);
}
.hero-image-badge {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: #fff;
  padding: 10px 28px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(232,93,4,0.3);
}
.hero-stats {
  position: absolute;
  top: 20px;
  right: -24px;
  background: var(--warm-white);
  border: 1.5px solid var(--border-gold);
  border-radius: 16px;
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 8px 24px var(--shadow-warm);
}
.hero-stats .stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--saffron);
  line-height: 1;
}
.hero-stats .stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--text-light);
  text-transform: uppercase;
  font-weight: 700;
}

/* ── BUTTONS ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  border: none;
  text-transform: uppercase;
}
.btn-primary {
  background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-light) 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(232,93,4,0.28);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(232,93,4,0.38);
  color: #fff;
}
.btn-secondary {
  background: transparent;
  color: var(--saffron);
  border: 2px solid var(--saffron);
}
.btn-secondary:hover {
  background: var(--saffron-pale);
  transform: translateY(-2px);
  color: var(--saffron);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--text-dark);
  box-shadow: 0 6px 20px rgba(212,160,23,0.28);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(212,160,23,0.38);
  color: var(--text-dark);
}

/* ── SECTION COMMONS ────────────────────────────────────────────── */
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section-header { text-align: center; margin-bottom: 4rem; }
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 0.75rem;
  padding: 5px 16px;
  background: var(--saffron-pale);
  border-radius: 20px;
}
.section-title { margin-bottom: 0.75rem; }
.section-desc {
  max-width: 640px;
  margin: 0 auto;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--text-medium);
  font-style: italic;
}
.divider-om {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem auto;
  max-width: 300px;
  justify-content: center;
}
.divider-om::before,
.divider-om::after {
  content: '';
  flex: 1;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.divider-om span { color: var(--gold); font-size: 1.5rem; }

/* ── QUICK INFO BAR ─────────────────────────────────────────────── */
.info-bar {
  background: linear-gradient(135deg, var(--saffron) 0%, #F05A00 50%, var(--saffron-light) 100%);
  padding: 26px 0;
}
.info-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.info-bar-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 28px;
  border-right: 1px solid rgba(255,255,255,0.2);
  color: #fff;
}
.info-bar-item:last-child { border-right: none; }
.info-bar-icon { font-size: 2rem; opacity: 0.9; flex-shrink: 0; }
.info-bar-item .label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
  font-weight: 700;
}
.info-bar-item .value {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
}

/* ── CARD GRID ──────────────────────────────────────────────────── */
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.card-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.card-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }

.card {
  background: var(--warm-white);
  border: 1.5px solid var(--border-cream);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.35s;
  box-shadow: 0 4px 20px var(--shadow-warm);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px var(--shadow-warm), 0 4px 16px var(--shadow-saffron);
  border-color: var(--border-gold);
}
.card-icon-top {
  background: linear-gradient(135deg, var(--saffron-pale), var(--gold-pale));
  padding: 2rem;
  text-align: center;
  border-bottom: 1.5px solid var(--border-cream);
}
.card-icon-top .icon { font-size: 3rem; }
.card-body { padding: 1.6rem; }
.card-body h3 { margin-bottom: 0.6rem; font-size: 1.2rem; }
.card-body p { font-size: 0.95rem; margin: 0; }

/* ── ABOUT SECTION (HOME) ───────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-image-wrap { position: relative; }
.about-image-wrap img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 16px 50px var(--shadow-warm);
  object-fit: cover;
  min-height: 400px;
  background: var(--cream-deep);
}
.about-image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--saffron-light));
  color: #fff;
  border-radius: 16px;
  padding: 16px 24px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(212,160,23,0.3);
}
.about-image-badge .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}
.about-image-badge .txt {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.9;
}
.about-features { margin-top: 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 1rem;
  background: var(--gold-pale);
  border-radius: 12px;
  border: 1px solid var(--border-cream);
}
.about-feature .icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.about-feature h4 { font-size: 0.95rem; margin-bottom: 3px; }
.about-feature p { font-size: 0.85rem; margin: 0; }

/* ── GITA IMPORTANCE ────────────────────────────────────────────── */
.bg-cream { background: var(--cream-deep); }
.bg-ivory { background: var(--ivory); }
.bg-gold-pale { background: var(--gold-pale); }
.bg-saffron-pale { background: var(--saffron-pale); }

.gita-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.gita-card {
  background: var(--warm-white);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1.5px solid var(--border-cream);
  box-shadow: 0 4px 20px var(--shadow-warm);
  transition: all 0.35s;
}
.gita-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: var(--glow-gold);
}
.gita-card .verse {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-medium);
  margin: 1rem 0;
  padding: 0.8rem;
  background: var(--gold-pale);
  border-radius: 8px;
  border-left: 3px solid var(--gold);
}
.number-circle {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  margin: 0 auto 1.2rem;
  box-shadow: 0 6px 18px rgba(232,93,4,0.28);
}

/* ── TIMING TABLE ───────────────────────────────────────────────── */
.timing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.97rem;
}
.timing-table th {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-light));
  color: #fff;
  padding: 14px 20px;
  text-align: left;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 0.85rem;
  text-transform: uppercase;
}
.timing-table td { padding: 13px 20px; border-bottom: 1px solid var(--border-cream); }
.timing-table tr:nth-child(even) td { background: var(--gold-pale); }
.timing-table tr:hover td { background: var(--saffron-pale); }
.timing-tag {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.tag-morning { background: #FFF3DC; color: var(--saffron); }
.tag-afternoon { background: #FFF8E7; color: #B37A00; }
.tag-evening { background: var(--saffron-pale); color: var(--saffron); }
.tag-special { background: linear-gradient(90deg, var(--saffron-pale), var(--gold-pale)); color: var(--text-dark); }

/* ── FESTIVAL CARDS ─────────────────────────────────────────────── */
.festival-card {
  background: var(--warm-white);
  border-radius: 24px;
  overflow: hidden;
  border: 1.5px solid var(--border-cream);
  box-shadow: 0 6px 24px var(--shadow-warm);
  transition: all 0.35s;
}
.festival-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: var(--glow-gold);
}
.festival-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--saffron-pale), var(--gold-pale));
}
.festival-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.festival-card:hover .festival-card-img img { transform: scale(1.06); }
.festival-month {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.festival-card-body { padding: 1.8rem; }
.festival-card-body h3 { margin-bottom: 0.6rem; }
.festival-card-body p { font-size: 0.95rem; }

/* ── GALLERY ────────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}
.gallery-grid .span-2 {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item {
  overflow: hidden;
  border-radius: 14px;
  position: relative;
  background: var(--cream-deep);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  display: block;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(232,93,4,0.6));
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

/* ── PAGE HERO ──────────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--cream-deep) 0%, var(--gold-pale) 50%, var(--saffron-pale) 100%);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--border-gold);
}
.page-hero::before {
  content: 'ॐ';
  position: absolute;
  font-size: 22rem;
  opacity: 0.04;
  color: var(--saffron);
  font-family: serif;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero .page-hero-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--text-medium);
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--text-light);
}
.breadcrumb a { color: var(--saffron); font-weight: 600; }
.breadcrumb span { color: var(--text-light); }

/* ── ACCORDION / FAQ ────────────────────────────────────────────── */
.faq-item {
  border: 1.5px solid var(--border-cream);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open { border-color: var(--border-gold); }
.faq-question {
  width: 100%;
  background: var(--warm-white);
  border: none;
  padding: 18px 24px;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: background 0.25s;
}
.faq-question:hover,
.faq-item.open .faq-question { background: var(--gold-pale); }
.faq-arrow {
  width: 28px; height: 28px;
  background: var(--saffron-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--saffron); flex-shrink: 0;
  transition: transform 0.35s;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); background: var(--saffron); color: #fff; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: var(--gold-pale);
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner { padding: 16px 24px; color: var(--text-medium); font-size: 0.97rem; line-height: 1.7; }

/* ── CONTACT FORM ───────────────────────────────────────────────── */
.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-medium);
  margin-bottom: 7px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid var(--border-cream);
  border-radius: 12px;
  background: var(--warm-white);
  font-size: 1rem;
  color: var(--text-dark);
  font-family: 'Lato', sans-serif;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,160,23,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

/* ── TESTIMONIALS ───────────────────────────────────────────────── */
.testimonial-card {
  background: var(--warm-white);
  border-radius: 20px;
  padding: 2rem;
  border: 1.5px solid var(--border-cream);
  box-shadow: 0 4px 20px var(--shadow-warm);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold-light);
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
  opacity: 0.7;
}
.testimonial-text { font-style: italic; margin-bottom: 1.2rem; font-size: 1.02rem; padding-top: 1rem; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--saffron-pale), var(--gold-pale));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.95rem; color: var(--text-dark); }
.testimonial-place { font-size: 0.8rem; color: var(--text-light); }

/* ── MAP PLACEHOLDER ────────────────────────────────────────────── */
.map-placeholder {
  background: linear-gradient(135deg, var(--gold-pale), var(--saffron-pale));
  border: 2px dashed var(--border-gold);
  border-radius: 20px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  gap: 1rem;
}
.map-placeholder .map-icon { font-size: 4rem; opacity: 0.6; }
.map-embed {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  border: 2px solid var(--border-gold);
  overflow: hidden;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ── HIGHLIGHT BOX ──────────────────────────────────────────────── */
.highlight-box {
  background: linear-gradient(135deg, var(--gold-pale), var(--saffron-pale));
  border: 2px solid var(--border-gold);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
}
.shloka-block {
  background: linear-gradient(135deg, rgba(212,160,23,0.1), rgba(232,93,4,0.06));
  border: 1.5px solid var(--border-gold);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  text-align: center;
  margin: 2rem 0;
}
.shloka-block .shloka-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 0.8rem;
}
.shloka-block .shloka-meaning {
  font-size: 0.95rem;
  color: var(--text-medium);
  margin-bottom: 0.5rem;
}
.shloka-block .shloka-source {
  font-size: 0.8rem;
  color: var(--saffron);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── INFO CARDS (CONTACT) ───────────────────────────────────────── */
.info-card {
  background: var(--warm-white);
  border: 1.5px solid var(--border-cream);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px var(--shadow-warm);
  transition: all 0.35s;
}
.info-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}
.info-card .info-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.info-card h4 { font-size: 1rem; margin-bottom: 0.4rem; }
.info-card p { font-size: 0.92rem; margin: 0; }

/* ── DO'S & DONT'S ──────────────────────────────────────────────── */
.rules-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.rules-box { border-radius: 20px; padding: 2rem; }
.rules-box.dos {
  background: linear-gradient(135deg, rgba(212,160,23,0.08), rgba(212,160,23,0.03));
  border: 1.5px solid var(--border-gold);
}
.rules-box.donts {
  background: linear-gradient(135deg, rgba(232,93,4,0.07), rgba(232,93,4,0.02));
  border: 1.5px solid #F4A97C;
}
.rules-list { list-style: none; margin-top: 1.2rem; }
.rules-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border-cream);
  font-size: 0.96rem;
  color: var(--text-medium);
}
.rules-list li:last-child { border: none; }
.rules-list .icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }

/* ── FOOTER ─────────────────────────────────────────────────────── */
footer {
  background: linear-gradient(160deg, var(--cream-deep) 0%, var(--gold-pale) 100%);
  border-top: 2px solid var(--border-gold);
  padding: 70px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.2rem;
}
.footer-brand .footer-logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.footer-brand .footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--saffron);
}
.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-medium);
}
.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--border-gold);
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links a {
  font-size: 0.92rem;
  color: var(--text-medium);
  transition: all 0.25s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before { content: '›'; color: var(--gold); font-size: 1.1rem; }
.footer-links a:hover { color: var(--saffron); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 10px; align-items: flex-start; }
.footer-contact-item .icon { color: var(--saffron); font-size: 1rem; flex-shrink: 0; margin-top: 3px; }
.footer-contact-item p { font-size: 0.88rem; margin: 0; }
.footer-bottom {
  margin-top: 3rem;
  padding: 20px 0;
  border-top: 1px solid var(--border-cream);
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-light);
}
.footer-bottom a { color: var(--saffron); }

/* ── ANIMATIONS ─────────────────────────────────────────────────── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideRight {
  from { opacity: 0; transform: translateX(28px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── UTILITY ────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-saffron { color: var(--saffron); }
.text-gold { color: var(--gold); }
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; } .mt-6 { margin-top: 3rem; }
.mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }
.flex { display: flex; } .flex-center { display: flex; align-items: center; justify-content: center; }
.gap-2 { gap: 1rem; } .gap-3 { gap: 1.5rem; } .gap-4 { gap: 2rem; }
.w-100 { width: 100%; }
.rounded { border-radius: 14px; }
.shadow { box-shadow: 0 8px 30px var(--shadow-warm); }

/* List reset for content pages */
.content-list { list-style: none; margin: 1rem 0; }
.content-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  border-bottom: 1px solid var(--border-cream);
  font-size: 0.97rem;
  color: var(--text-medium);
}
.content-list li:last-child { border: none; }
.content-list li::before { content: '🙏'; position: absolute; left: 0; top: 8px; font-size: 0.85rem; }

/* ── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .info-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .info-bar-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); padding: 14px 24px; }
}
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-image-frame { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .gita-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .span-2 { grid-column: span 1; grid-row: span 1; }
  .rules-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 1.5rem;
    box-shadow: 0 8px 30px var(--shadow-warm);
    border-top: 1.5px solid var(--border-gold);
    gap: 4px;
  }
  .nav-menu.open { display: flex; }
  .nav-toggle { display: flex; }
  .navbar { position: sticky; }
  .card-grid-3 { grid-template-columns: 1fr; }
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .card-grid-2 { grid-template-columns: 1fr; }
  .gita-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .info-bar-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .card-grid-4 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .span-2 { grid-column: auto; grid-row: auto; }
  .hero-actions { flex-direction: column; }
  .about-features { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
}
