:root {
  --crimson: #8B0000;
  --deep-crimson: #5C0000;
  --gold: #C9922A;
  --bright-gold: #F0C040;
  --ivory: #FDF8EE;
  --warm-dark: #1A0A00;
  --saffron: #FF6B00;
  --ash: #E8E0D0;
  --text-dark: #2A1200;
  --text-mid: #5A3A1A;
}

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

body {
  font-family: 'Noto Sans Telugu', 'Lora', serif;
  background: var(--ivory);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── LANGUAGE TOGGLE ── */
.lang-bar {
  background: var(--deep-crimson);
  padding: 8px 24px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  align-items: center;
}
.lang-bar span { color: var(--ash); font-size: 12px; letter-spacing: 1px; }
.lang-btn {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 4px 14px;
  border-radius: 2px;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 1px;
  transition: all 0.2s;
}
.lang-btn.active, .lang-btn:hover {
  background: var(--gold);
  color: var(--deep-crimson);
  font-weight: 700;
}

/* ── HEADER ── */
header {
  background: linear-gradient(160deg, var(--deep-crimson) 0%, var(--crimson) 60%, #A01010 100%);
  padding: 0;
  position: relative;
  overflow: hidden;
}
header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9922A' fill-opacity='0.08'%3E%3Cpath d='M30 0l8.66 15H21.34L30 0zM30 60l-8.66-15h17.32L30 60zM0 30l15-8.66v17.32L0 30zM60 30L45 38.66V21.34L60 30z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
}

.header-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 36px 24px 28px;
  text-align: center;
}

.om-symbol {
  font-size: 52px;
  color: var(--bright-gold);
  line-height: 1;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 16px rgba(240,192,64,0.5));
  animation: pulse-glow 3s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { filter: drop-shadow(0 0 12px rgba(240,192,64,0.4)); }
  50% { filter: drop-shadow(0 0 28px rgba(240,192,64,0.9)); }
}

.peetam-name-te {
  font-family: 'Noto Serif Telugu', serif;
  font-size: clamp(22px, 5vw, 34px);
  font-weight: 700;
  color: var(--bright-gold);
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  margin: 0 0 4px;
}
.peetam-name-en {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(11px, 2.5vw, 16px);
  color: var(--ash);
  letter-spacing: 2px;
  margin-bottom: 12px;
  opacity: 0.85;
}

.guru-name {
  background: rgba(201,146,42,0.15);
  border: 1px solid rgba(201,146,42,0.4);
  border-radius: 4px;
  padding: 6px 20px;
  margin-bottom: 10px;
}
.guru-name .te { font-size: 13px; color: var(--bright-gold); font-family: 'Noto Serif Telugu', serif; }
.guru-name .en { font-size: 11px; color: var(--ash); opacity: 0.8; letter-spacing: 0.5px; }

.location-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--ash);
  font-size: 13px;
  opacity: 0.8;
}
.location-tag svg { width: 14px; height: 14px; fill: var(--gold); flex-shrink: 0; }

/* ── DIVIDER ── */
.mandala-divider {
  text-align: center;
  color: var(--gold);
  font-size: 20px;
  letter-spacing: 12px;
  padding: 20px 0 8px;
  opacity: 0.6;
}

/* ── FESTIVAL BANNER ── */
.festival-banner {
  background: linear-gradient(135deg, var(--warm-dark) 0%, #2D0A00 100%);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.festival-banner::before {
  content: '🔱';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  opacity: 0.15;
}
.festival-banner::after {
  content: '🔱';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  opacity: 0.15;
}

.festival-title-te {
  font-family: 'Noto Serif Telugu', serif;
  font-size: clamp(20px, 5vw, 30px);
  font-weight: 700;
  color: var(--bright-gold);
  margin-bottom: 4px;
}
.festival-title-en {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(12px, 3vw, 17px);
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.dates-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--crimson);
  border: 1px solid var(--gold);
  border-radius: 4px;
  padding: 8px 20px;
  color: var(--ivory);
  font-size: 14px;
}
.dates-badge strong { color: var(--bright-gold); font-size: 16px; }

/* ── MAIN LAYOUT ── */
main { max-width: 960px; margin: 0 auto; padding: 0 16px; }

section { padding: 40px 0 20px; }
section + section { border-top: 1px solid rgba(201,146,42,0.2); }

.section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.section-icon { font-size: 28px; flex-shrink: 0; }
.section-heading {
  flex: 1;
  margin: 0;
  font-size: inherit;
  font-weight: normal;
}
.section-heading .te {
  font-family: 'Noto Serif Telugu', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--crimson);
  display: block;
  line-height: 1.3;
}
.section-heading .en {
  font-size: 12px;
  color: var(--text-mid);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
}
.section-rule { flex: 1; height: 1px; background: linear-gradient(to right, var(--gold), transparent); }

/* ── DIKSHA CARD ── */
.diksha-card {
  background: linear-gradient(135deg, #FFF8EE 0%, #FFF2D8 100%);
  border: 1px solid rgba(201,146,42,0.35);
  border-left: 4px solid var(--crimson);
  border-radius: 4px;
  padding: 20px 24px;
  margin-bottom: 16px;
}
.diksha-card h3 {
  font-family: 'Noto Serif Telugu', serif;
  font-size: 16px;
  color: var(--crimson);
  margin-bottom: 8px;
}
.diksha-card p { font-size: 14px; color: var(--text-mid); line-height: 1.8; }
.highlight-box {
  background: var(--crimson);
  color: var(--ivory);
  padding: 12px 18px;
  border-radius: 4px;
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.7;
}
.highlight-box strong { color: var(--bright-gold); }

.notice-box {
  background: #FFF8E1;
  border: 1px solid #F0C040;
  border-left: 4px solid var(--saffron);
  border-radius: 4px;
  padding: 14px 18px;
  margin-top: 12px;
  font-size: 13px;
  color: #5A3A00;
  line-height: 1.7;
}

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}
.service-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.service-card {
  background: white;
  border: 1px solid rgba(201,146,42,0.25);
  border-radius: 6px;
  padding: 18px;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(139,0,0,0.12);
  border-color: var(--gold);
}
.service-card .price {
  font-size: 22px;
  font-weight: 700;
  color: var(--crimson);
  font-family: 'Lora', serif;
}
.service-card .price span { font-size: 13px; color: var(--text-mid); font-weight: 400; }
.service-card .name-te {
  font-family: 'Noto Serif Telugu', serif;
  font-size: 14px;
  color: var(--text-dark);
  margin: 4px 0 2px;
  line-height: 1.5;
}
.service-card .name-en {
  font-size: 11px;
  color: var(--text-mid);
  letter-spacing: 0.5px;
}
.service-card .tag {
  display: inline-block;
  margin-top: 8px;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 2px;
  border: 1px solid;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.tag-homa { color: #B06000; border-color: #B06000; background: #FFF3E0; }
.tag-seva { color: #004D40; border-color: #004D40; background: #E0F2F1; }
.tag-annadana { color: #1A237E; border-color: #1A237E; background: #E8EAF6; }
.tag-rathotsavam { color: var(--deep-crimson); border-color: var(--deep-crimson); background: #FFEBEE; }

/* ── VAMACHARA NOTE ── */
.vama-note {
  background: linear-gradient(135deg, #1A0A00 0%, #2D0A00 100%);
  border: 1px solid rgba(201,146,42,0.4);
  border-radius: 6px;
  padding: 20px 24px;
  color: var(--ash);
  font-size: 14px;
  line-height: 1.8;
  margin-top: 16px;
}
.vama-note h4 { color: var(--bright-gold); font-family: 'Noto Serif Telugu', serif; font-size: 16px; margin-bottom: 8px; }

/* ── PARTICIPATION RULES ── */
.rules-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 540px) { .rules-grid { grid-template-columns: 1fr; } }
.rule-card {
  border: 1px solid rgba(201,146,42,0.25);
  border-radius: 6px;
  padding: 16px 18px;
  background: #FFFBF4;
}
.rule-card .rule-icon { font-size: 28px; margin-bottom: 8px; }
.rule-card p { font-family: 'Noto Sans Telugu'; font-size: 13px; color: var(--text-mid); line-height: 1.8; }

/* ── BOOKING FORM ── */
.booking-section {
  background: linear-gradient(160deg, var(--crimson) 0%, var(--deep-crimson) 100%);
  border-radius: 8px;
  padding: 32px 28px;
  margin: 20px 0;
}
.booking-section h1, .booking-section h2 {
  font-family: 'Noto Serif Telugu', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--bright-gold);
  text-align: center;
  margin: 0 0 4px;
}
.booking-section .sub {
  text-align: center;
  color: var(--ash);
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 24px;
  opacity: 0.8;
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 4px; }
.form-group.full { grid-column: 1 / -1; }
label {
  font-size: 11px;
  color: var(--ash);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  opacity: 0.85;
}
.label-te {
  font-family: 'Noto Sans Telugu';
  font-size: 12px;
  color: var(--bright-gold);
  letter-spacing: 0;
  text-transform: none;
  display: block;
  margin-bottom: 2px;
  opacity: 1;
}
input, select, textarea {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(201,146,42,0.4);
  border-radius: 4px;
  padding: 10px 12px;
  color: white;
  font-size: 14px;
  font-family: 'Noto Sans Telugu', sans-serif;
  transition: border-color 0.2s;
  width: 100%;
}
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.4); }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--bright-gold);
  background: rgba(255,255,255,0.15);
}
select option { background: var(--deep-crimson); color: white; }

.services-checkboxes {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 8px;
  grid-column: 1 / -1;
}
.checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(201,146,42,0.3);
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.checkbox-item:hover { background: rgba(201,146,42,0.1); border-color: var(--gold); }
.checkbox-item input[type=checkbox] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--bright-gold);
  padding: 0;
  border: none;
}
.checkbox-item .item-info { flex: 1; }
.checkbox-item .item-te { font-family: 'Noto Sans Telugu'; font-size: 13px; color: var(--ash); display: block; line-height: 1.4; }
.checkbox-item .item-price { font-size: 12px; color: var(--bright-gold); font-weight: 600; }

/* Summary box */
.amount-summary {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--gold);
  border-radius: 4px;
  padding: 14px 18px;
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.amount-summary .label-te { font-size: 16px; color: var(--ash); margin: 0; }
.amount-summary .total { font-size: 26px; font-weight: 700; color: var(--bright-gold); font-family: 'Lora'; }

.submit-btn {
  width: 100%;
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--gold) 0%, var(--bright-gold) 100%);
  color: var(--deep-crimson);
  border: none;
  border-radius: 4px;
  padding: 14px;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Noto Serif Telugu', serif;
  cursor: pointer;
  letter-spacing: 1px;
  transition: all 0.2s;
}
.submit-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(240,192,64,0.4); }
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; box-shadow: none; }

/* ── SUCCESS MESSAGE ── */
.success-msg {
  display: none;
  background: #1B5E20;
  color: white;
  padding: 20px 24px;
  border-radius: 6px;
  text-align: center;
  grid-column: 1 / -1;
  font-family: 'Noto Serif Telugu', serif;
  font-size: 16px;
  line-height: 1.8;
}

.error-msg {
  display: none;
  background: #7A1010;
  color: white;
  padding: 14px 18px;
  border-radius: 6px;
  text-align: center;
  grid-column: 1 / -1;
  font-size: 13px;
  line-height: 1.6;
}

/* ── CONTACT ── */
.contact-strip {
  background: var(--warm-dark);
  padding: 28px 24px;
  text-align: center;
  margin-top: 40px;
}
.contact-strip p { color: var(--ash); font-size: 14px; line-height: 2; }
.contact-strip .phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--crimson);
  color: white;
  padding: 10px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  margin-top: 12px;
  letter-spacing: 1px;
  transition: background 0.2s;
}
.contact-strip .phone:hover { background: var(--gold); color: var(--warm-dark); }

/* ── VISITOR BAR ── */
.visitor-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--warm-dark);
  color: var(--ash);
  font-size: 12px;
  letter-spacing: 0.5px;
  padding: 8px;
  border-top: 1px solid rgba(201,146,42,0.2);
}
.visitor-bar .te, .visitor-bar .en { display: inline; }
#visitorCount { color: var(--bright-gold); font-weight: 700; }

/* ── FOOTER ── */
footer {
  background: var(--deep-crimson);
  color: var(--ash);
  text-align: center;
  padding: 16px;
  font-size: 12px;
  opacity: 0.8;
  letter-spacing: 0.5px;
}

/* ── LANG SWITCHING ── */
.te { display: block; }
.en { display: block; }
body.lang-en .te { display: none; }
body.lang-te .en { display: none; }

/* Combined inline te/en spans */
span.te, span.en { display: inline; }
body.lang-en span.te { display: none; }
body.lang-te span.en { display: none; }

@media (max-width: 480px) {
  .booking-section { padding: 22px 14px; }
  .service-card .price { font-size: 18px; }
}

/* ── PAYMENT / CONFIRMATION PAGE ── */
.payment-wrap { max-width: 640px; margin: 40px auto; padding: 0 16px; }
.payment-card {
  background: linear-gradient(160deg, var(--crimson) 0%, var(--deep-crimson) 100%);
  border-radius: 8px;
  padding: 32px 28px;
}
.payment-card h1 {
  font-family: 'Noto Serif Telugu', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--bright-gold);
  text-align: center;
  margin: 0 0 4px;
}
.payment-card .sub {
  text-align: center;
  color: var(--ash);
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 24px;
  opacity: 0.8;
}
.summary-box {
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--gold);
  border-radius: 6px;
  padding: 18px 20px;
  margin-bottom: 18px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(201,146,42,0.25);
  font-size: 13px;
  color: var(--ash);
}
.summary-row:last-child { border-bottom: none; }
.summary-row .k { opacity: 0.75; }
.summary-row .v { color: white; font-weight: 600; text-align: right; }
.summary-row.total-row { padding-top: 14px; }
.summary-row.total-row .k { font-size: 15px; color: var(--bright-gold); opacity: 1; }
.summary-row.total-row .v { font-size: 22px; color: var(--bright-gold); font-family: 'Lora'; }
.pending-note {
  background: rgba(240,192,64,0.12);
  border: 1px solid var(--gold);
  border-radius: 6px;
  padding: 16px 18px;
  color: var(--ash);
  font-size: 14px;
  line-height: 1.8;
  text-align: center;
}
.back-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--bright-gold);
  font-size: 13px;
  text-decoration: none;
  letter-spacing: 0.5px;
}
.back-link:hover { text-decoration: underline; }

/* ── SITE NAV ── */
.site-nav {
  background: var(--warm-dark);
  border-bottom: 2px solid var(--gold);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: auto;
}
.logo-mark { width: 34px; height: 34px; flex-shrink: 0; border-radius: 50%; }
.nav-brand span {
  font-family: 'Noto Serif Telugu', serif;
  font-size: 14px;
  color: var(--bright-gold);
}

/* Hamburger toggle - hidden on desktop, shown on mobile */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  background: transparent;
  border: 1px solid var(--gold);
  border-radius: 4px;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--gold); }

.nav-menu { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.nav-links { display: flex; gap: 4px; flex-wrap: wrap; align-items: center; }
.nav-link {
  color: var(--ash);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.5px;
  padding: 6px 12px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.nav-link:hover { background: rgba(201,146,42,0.15); color: var(--bright-gold); }
.nav-link.active { background: rgba(201,146,42,0.25); color: var(--bright-gold); font-weight: 600; }
.nav-cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--bright-gold) 100%);
  color: var(--deep-crimson) !important;
  font-weight: 700;
  padding: 7px 16px !important;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(240,192,64,0.4); }
.nav-socials { display: flex; gap: 10px; align-items: center; }
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  transition: background 0.2s, color 0.2s;
}
.social-icon:hover { background: var(--gold); color: var(--deep-crimson); }
.social-icon svg { width: 16px; height: 16px; fill: currentColor; }
.social-icon.lg { width: 44px; height: 44px; }
.social-icon.lg svg { width: 22px; height: 22px; }

@media (max-width: 640px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--warm-dark);
    border-bottom: 2px solid var(--gold);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 16px;
    gap: 10px;
    z-index: 500;
  }
  .nav-menu.open { display: flex; }
  .nav-links { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav-link { text-align: center; }
  .nav-cta { text-align: center; }
  .nav-socials { justify-content: center; padding-top: 10px; border-top: 1px solid rgba(201,146,42,0.25); }
}

/* ── FLOATING WHATSAPP BUTTON ── */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.35);
  z-index: 900;
  transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 30px; height: 30px; fill: currentColor; }

@media (max-width: 640px) {
  .whatsapp-float { right: 14px; bottom: 14px; width: 50px; height: 50px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
}

/* ── POPUP ── */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,4,0,0.75);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.popup-overlay.open { display: flex; }
.popup-card {
  position: relative;
  max-width: 480px;
  width: 100%;
  background: var(--ivory);
  border: 2px solid var(--gold);
  border-radius: 10px;
  overflow: hidden;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}
.popup-card img { width: 100%; display: block; max-height: 65vh; object-fit: contain; background: var(--warm-dark); }
.popup-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.6);
  color: var(--ivory);
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  z-index: 2;
}
.popup-close:hover { background: var(--crimson); }
.popup-actions { padding: 16px; text-align: center; background: var(--deep-crimson); }
.popup-actions a {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--bright-gold) 100%);
  color: var(--deep-crimson);
  font-weight: 700;
  text-decoration: none;
  padding: 10px 26px;
  border-radius: 4px;
  font-family: 'Noto Serif Telugu', serif;
  letter-spacing: 0.5px;
}

/* ── PROCESS STEPS (Diksha) ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}
@media (max-width: 700px) { .process-steps { grid-template-columns: 1fr; } }
.process-step {
  background: linear-gradient(160deg, var(--warm-dark) 0%, #2D0A00 100%);
  border: 1px solid rgba(201,146,42,0.4);
  border-radius: 8px;
  padding: 20px 16px;
  text-align: center;
  color: var(--ash);
}
.process-step .step-num {
  display: inline-block;
  width: 28px;
  height: 28px;
  line-height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--deep-crimson);
  font-weight: 700;
  margin-bottom: 10px;
}
.process-step .step-te { font-family: 'Noto Serif Telugu', serif; font-size: 15px; color: var(--bright-gold); margin-bottom: 4px; }
.process-step .step-en { font-size: 12px; letter-spacing: 0.5px; opacity: 0.85; }

/* ── GALLERY / LIGHTBOX ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.gallery-item {
  border: 1px solid rgba(201,146,42,0.3);
  border-radius: 8px;
  overflow: hidden;
  background: white;
  cursor: pointer;
  aspect-ratio: 3/4;
  position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  font-size: 13px;
  text-align: center;
  padding: 16px;
  background: repeating-linear-gradient(45deg, #FFF8EE, #FFF8EE 10px, #FFF2D8 10px, #FFF2D8 20px);
  cursor: default;
}
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,4,0,0.9);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 90vh; border-radius: 6px; border: 2px solid var(--gold); }

/* ── CONTACT / DIRECTIONS ── */
.address-card {
  background: #FFFBF4;
  border: 1px solid rgba(201,146,42,0.3);
  border-left: 4px solid var(--crimson);
  border-radius: 6px;
  padding: 18px 20px;
  margin-bottom: 16px;
}
.address-card h3 { font-family: 'Noto Serif Telugu', serif; font-size: 16px; color: var(--crimson); margin-bottom: 6px; }
.address-card p { font-size: 14px; color: var(--text-mid); line-height: 1.7; }
.directions-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--crimson);
  border: 1px solid var(--crimson);
  padding: 6px 14px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.5px;
  transition: all 0.2s;
}
.directions-link:hover { background: var(--crimson); color: white; }

.map-embed {
  border: 1px solid rgba(201,146,42,0.3);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 20px;
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}

/* ── LAYOUT HELPERS (replace one-off inline styles) ── */
.text-center { text-align: center; }
.teaser-link { text-align: center; margin-top: 14px; }
.btn-cta-link {
  display: inline-block;
  text-decoration: none;
  width: auto;
  padding: 14px 40px;
  margin-top: 14px;
}
.service-card.featured { border-color: var(--gold); background: linear-gradient(135deg,#FFF8EE,#FFF2D8); }
.service-card.rathotsavam { border-color: var(--crimson); }
.poster-img {
  width: 100%;
  max-width: 520px;
  display: block;
  margin: 20px auto 0;
  border-radius: 8px;
  border: 1px solid rgba(201,146,42,0.35);
}
.address-line-gold {
  color: var(--gold);
  font-family: 'Noto Serif Telugu', serif;
  font-size: 14px;
}
.address-line-sub {
  font-size: 12px;
  opacity: 0.6;
  margin-top: 4px;
}
.social-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-social-link {
  color: var(--bright-gold);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.5px;
}

/* ── APP DOWNLOAD ── */
.app-download-card {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, #FFF8EE 0%, #FFF2D8 100%);
  border: 1px solid rgba(201,146,42,0.35);
  border-left: 4px solid var(--crimson);
  border-radius: 8px;
  padding: 20px 24px;
}
.app-download-icon { font-size: 36px; flex-shrink: 0; }
.app-download-text { flex: 1; min-width: 200px; }
.app-download-title {
  font-family: 'Noto Serif Telugu', serif;
  font-size: 16px;
  color: var(--crimson);
  font-weight: 700;
}
.app-download-sub { font-size: 13px; color: var(--text-mid); margin-top: 2px; }
.app-download-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--bright-gold) 100%);
  color: var(--deep-crimson);
  font-weight: 700;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 4px;
  font-family: 'Noto Serif Telugu', serif;
  letter-spacing: 0.5px;
  white-space: nowrap;
  flex-shrink: 0;
}
.app-download-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(240,192,64,0.4); }

/* ── QR PAYMENT ── */
.qr-box {
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--gold);
  border-radius: 6px;
  padding: 20px;
  margin-bottom: 18px;
  text-align: center;
}
.qr-box h3 {
  font-family: 'Noto Serif Telugu', serif;
  color: var(--bright-gold);
  font-size: 16px;
  margin-bottom: 12px;
}
.qr-image {
  width: 220px;
  height: 220px;
  object-fit: contain;
  background: white;
  border-radius: 6px;
  padding: 10px;
  margin: 0 auto;
  display: block;
}
.qr-placeholder {
  width: 220px;
  height: 220px;
  margin: 0 auto;
  background: rgba(255,255,255,0.08);
  border: 2px dashed var(--gold);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ash);
  font-size: 13px;
  text-align: center;
  padding: 16px;
}
.qr-ref { color: var(--ash); font-size: 13px; margin-top: 12px; }
.qr-ref strong { color: var(--bright-gold); }
.payment-timer {
  margin-top: 14px;
  color: var(--ash);
  font-size: 13px;
}
.payment-timer strong { color: var(--bright-gold); font-size: 16px; }
.payment-done-btn { margin-top: 14px; }
.confirm-form h3 {
  font-family: 'Noto Serif Telugu', serif;
  color: var(--bright-gold);
  font-size: 15px;
  text-align: center;
  margin-bottom: 4px;
}

/* ── GURU CARD ── */
.guru-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, #FFF8EE 0%, #FFF2D8 100%);
  border: 1px solid rgba(201,146,42,0.35);
  border-left: 4px solid var(--crimson);
  border-radius: 8px;
  padding: 20px;
  flex-wrap: wrap;
}
.guru-photo {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--gold);
  flex-shrink: 0;
}
.guru-info { flex: 1; min-width: 200px; }
.guru-title-te {
  font-family: 'Noto Serif Telugu', serif;
  font-size: 13px;
  color: var(--text-mid);
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.guru-name-te {
  font-family: 'Noto Serif Telugu', serif;
  font-size: 20px;
  color: var(--crimson);
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.4;
}
.guru-name-en { font-size: 14px; color: var(--text-mid); }
@media (max-width: 540px) {
  .guru-card { flex-direction: column; text-align: center; }
}

/* ── DEITY GRID ── */
.deity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 16px;
}
.deity-card {
  background: linear-gradient(135deg, #FFF8EE 0%, #FFF2D8 100%);
  border: 1px solid rgba(201,146,42,0.35);
  border-left: 4px solid var(--crimson);
  border-radius: 8px;
  padding: 18px;
  text-align: center;
}
.deity-photo {
  width: 100%;
  max-width: 240px;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 6px;
  border: 3px solid var(--gold);
  margin: 0 auto 12px;
  display: block;
}
.deity-name-te {
  font-family: 'Noto Serif Telugu', serif;
  font-size: 18px;
  color: var(--crimson);
  font-weight: 700;
  margin-bottom: 2px;
}
.deity-name-en { font-size: 13px; color: var(--text-mid); margin-bottom: 8px; }
.deity-credit { font-size: 10px; color: var(--ash); opacity: 0.75; }
.deity-credit a { color: inherit; }
