/* ═══════════════════════════════════════════════════════════════
   ISKCON Vrindavan — Janmashtami Seva 2026
   style.css — Complete design system
   ═══════════════════════════════════════════════════════════════ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Noto+Serif:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Noto+Serif+Devanagari:wght@400;600&display=swap');

/* ── Design Tokens ── */
:root {
  --ivory-50:    #fffdf6;
  --ivory-100:   #fbf4df;
  --ivory-200:   #f5e8c0;
  --peacock-600: #164e6e;
  --peacock-700: #123c55;
  --peacock-900: #082533;
  --saffron-400: #f0a040;
  --saffron-500: #e8891c;
  --saffron-600: #c96e0e;
  --marigold-400: #f7ca48;
  --marigold-500: #f3b51b;
  --gold-600:    #a97816;
  --gold-700:    #8a6010;
  --tulsi-700:   #3f6b49;
  --ink:         #241c16;
  --ink-light:   #5a4a3a;

  /* Semantic */
  --bg:           var(--ivory-50);
  --bg-alt:       var(--ivory-100);
  --bg-dark:      var(--peacock-900);
  --bg-card:      #ffffff;
  --text:         var(--ink);
  --text-muted:   var(--ink-light);
  --accent:       var(--saffron-500);
  --accent-hover: var(--saffron-600);
  --accent-gold:  var(--marigold-500);
  --heading:      var(--peacock-700);
  --border:       rgba(169, 120, 22, 0.22);
  --border-card:  rgba(169, 120, 22, 0.18);
  --shadow-sm:    0 2px 8px rgba(36,28,22,0.08);
  --shadow-md:    0 8px 32px rgba(36,28,22,0.12);
  --shadow-lg:    0 16px 56px rgba(36,28,22,0.16);

  /* Spacing */
  --section-py:  5rem;
  --container:   1200px;
  --radius:      0.75rem;
  --radius-sm:   0.375rem;

  /* Fonts */
  --font-body:    'Inter', 'Noto Sans', system-ui, sans-serif;
  --font-heading: 'Noto Serif', Georgia, serif;
  --font-dev:     'Noto Serif Devanagari', serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; }
ul, ol { list-style: none; }

/* ── Container ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) { .container { padding: 0 2.5rem; } }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--heading);
  line-height: 1.2;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
p { font-size: 1rem; color: var(--text-muted); line-height: 1.75; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--saffron-500);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--saffron-500);
  border-radius: 2px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.22s ease;
  white-space: nowrap;
  min-height: 48px;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--saffron-500), var(--saffron-600));
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(232,137,28,0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--saffron-400), var(--saffron-500));
  box-shadow: 0 6px 24px rgba(232,137,28,0.45);
  transform: translateY(-1px);
}
.btn-secondary {
  background: transparent;
  color: var(--peacock-700);
  border: 2px solid var(--peacock-700);
}
.btn-secondary:hover {
  background: var(--peacock-700);
  color: #fff;
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold-600);
  border: 1.5px solid var(--gold-600);
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem;
  border-radius: var(--radius-sm);
  min-height: 36px;
  transition: all 0.2s;
}
.btn-outline-gold:hover {
  background: var(--gold-600);
  color: #fff;
}
.btn-copy {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.875rem;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 600;
  background: var(--ivory-100);
  border: 1.5px solid var(--border);
  color: var(--peacock-700);
  min-height: 36px;
  transition: all 0.18s;
  cursor: pointer;
}
.btn-copy:hover { background: var(--peacock-700); color: #fff; border-color: var(--peacock-700); }
.btn-copy.copied { background: #166534; color: #fff; border-color: #166534; }

/* ── Focus styles ── */
:focus-visible {
  outline: 3px solid var(--saffron-500);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

/* ══════════════════════════════════════════════════
   TRUST STRIP / ANNOUNCEMENT BAR
══════════════════════════════════════════════════ */
.trust-strip {
  background: var(--peacock-900);
  color: rgba(255,255,255,0.82);
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.trust-strip a { color: var(--marigold-500); text-decoration: underline; }

/* ══════════════════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════════════════ */
.site-header {
  background: rgba(255,253,246,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-card);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}
.site-logo {
  display: flex;
  flex-direction: column;
}
.logo-org {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--peacock-700);
  line-height: 1.2;
}
.logo-temple {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
}
.logo-date {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--saffron-500);
  background: rgba(232,137,28,0.1);
  border: 1px solid rgba(232,137,28,0.3);
  border-radius: 4px;
  padding: 0.2rem 0.6rem;
  margin-top: 0.25rem;
  width: fit-content;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.header-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.18s;
}
.header-nav a:hover { color: var(--peacock-700); }
.header-cta { display: none; }
@media (min-width: 768px) { .header-cta { display: flex; } }
@media (max-width: 640px) {
  .header-nav { gap: 0.875rem; }
  .header-nav .hide-mobile { display: none; }
}

/* ══════════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--peacock-900);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,37,51,0.90) 0%,
    rgba(18,60,85,0.75) 50%,
    rgba(8,37,51,0.88) 100%
  );
}
/* Ornamental SVG pattern overlay */
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Ccircle cx='40' cy='40' r='30' fill='none' stroke='%23f3b51b' stroke-width='1'/%3E%3Ccircle cx='40' cy='40' r='18' fill='none' stroke='%23f3b51b' stroke-width='0.5'/%3E%3Cline x1='40' y1='10' x2='40' y2='70' stroke='%23f3b51b' stroke-width='0.5'/%3E%3Cline x1='10' y1='40' x2='70' y2='40' stroke='%23f3b51b' stroke-width='0.5'/%3E%3C/svg%3E");
  background-size: 80px 80px;
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 5rem 0 4rem;
}
.hero-content .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .hero-content .container {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 4rem;
  }
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--marigold-500);
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--marigold-500);
}
.hero-desc {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 2rem;
}
.quick-answer {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  border-left: 3px solid var(--saffron-500);
  padding-left: 1rem;
  margin-bottom: 2.5rem;
  max-width: 520px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.hero-trust-note {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  background: rgba(232,137,28,0.12);
  border: 1px solid rgba(232,137,28,0.35);
  border-radius: var(--radius-sm);
  padding: 0.875rem 1.125rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.88);
  max-width: 520px;
}
.hero-trust-note svg { flex-shrink: 0; color: var(--marigold-500); margin-top: 0.1rem; }
.hero-card {
  background: rgba(255,253,246,0.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(243,181,27,0.25);
  border-radius: var(--radius);
  padding: 2rem;
}
.hero-card-title {
  font-family: var(--font-heading);
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--marigold-500);
  margin-bottom: 0.75rem;
}
.seva-quick-list { display: flex; flex-direction: column; gap: 0.75rem; }
.seva-quick-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(243,181,27,0.12);
  font-size: 0.9375rem;
}
.seva-quick-item:last-child { border-bottom: none; }
.seva-quick-item .name { color: rgba(255,255,255,0.9); font-weight: 500; }
.seva-quick-item .amount { color: var(--marigold-500); font-weight: 700; font-family: var(--font-heading); }

/* ══════════════════════════════════════════════════
   DEVOTIONAL CONTEXT SECTION
══════════════════════════════════════════════════ */
.section { padding: var(--section-py) 0; }
.section-alt { background: var(--bg-alt); }
.section-dark {
  background: var(--peacock-900);
  color: rgba(255,255,255,0.9);
}
.section-dark h2 { color: #fff; }
.section-dark .eyebrow { color: var(--marigold-500); }
.section-dark .eyebrow::before { background: var(--marigold-500); }
.section-header { margin-bottom: 3.5rem; }
.section-header.centered { text-align: center; }
.section-header.centered .eyebrow { justify-content: center; }
.section-header p { margin-top: 1rem; max-width: 600px; }
.section-header.centered p { margin: 1rem auto 0; }

.devotional-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
@media (min-width: 640px) { .devotional-grid { grid-template-columns: repeat(3, 1fr); } }

.devotional-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s, box-shadow 0.22s;
}
.devotional-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.devotional-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, rgba(232,137,28,0.12), rgba(243,181,27,0.12));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--saffron-500);
}
.devotional-card h3 { font-size: 1.0625rem; margin-bottom: 0.625rem; }
.devotional-card p { font-size: 0.9375rem; }

/* ══════════════════════════════════════════════════
   SEVA SELECTOR SECTION
══════════════════════════════════════════════════ */
.sevas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) { .sevas-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .sevas-grid { grid-template-columns: repeat(4, 1fr); } }

.seva-card {
  position: relative;
  background: var(--bg-card);
  border: 2px solid var(--border-card);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  cursor: pointer;
  transition: all 0.22s ease;
  box-shadow: var(--shadow-sm);
  text-align: left;
  display: flex;
  flex-direction: column;
}
.seva-card:hover {
  border-color: var(--saffron-500);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.seva-card[aria-pressed="true"] {
  border-color: var(--saffron-500);
  background: linear-gradient(135deg, rgba(232,137,28,0.05), rgba(243,181,27,0.05));
  box-shadow: 0 0 0 4px rgba(232,137,28,0.12), var(--shadow-md);
}
.seva-card-check {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--saffron-500);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.75rem;
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.2s;
}
.seva-card[aria-pressed="true"] .seva-card-check { opacity: 1; transform: scale(1); }
.seva-card-amount {
  font-family: var(--font-heading);
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--peacock-700);
  margin-bottom: 0.375rem;
}
.seva-card-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}
.seva-card-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.25rem;
}
.seva-card-gift {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--tulsi-700);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  background: rgba(63,107,73,0.08);
  border-radius: 4px;
  margin-bottom: 1.25rem;
}
.seva-card-btn {
  display: block;
  width: 100%;
  padding: 0.75rem;
  background: var(--ivory-100);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--peacock-700);
  text-align: center;
  transition: all 0.18s;
  min-height: 44px;
}
.seva-card:hover .seva-card-btn,
.seva-card[aria-pressed="true"] .seva-card-btn {
  background: var(--saffron-500);
  border-color: var(--saffron-500);
  color: #fff;
}

/* Custom amount card */
.custom-amount-card {
  background: var(--bg-card);
  border: 2px solid var(--border-card);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.custom-amount-card.active { border-color: var(--saffron-500); }
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}
.chip {
  padding: 0.5rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--peacock-700);
  background: var(--ivory-100);
  cursor: pointer;
  transition: all 0.18s;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.chip:hover, .chip.active {
  background: var(--saffron-500);
  border-color: var(--saffron-500);
  color: #fff;
}
.amount-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.amount-prefix {
  position: absolute;
  left: 1rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--peacock-700);
  pointer-events: none;
}
.amount-input {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 2.25rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--peacock-700);
  background: var(--bg);
  transition: border-color 0.2s;
}
.amount-input:focus { border-color: var(--saffron-500); outline: none; }
.amount-hint {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.625rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* ══════════════════════════════════════════════════
   PRASADAM / RETURN GIFT SECTION
══════════════════════════════════════════════════ */
.prasadam-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2.5rem 0;
}
@media (min-width: 640px) { .prasadam-steps { grid-template-columns: repeat(3, 1fr); } }
.prasadam-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
.prasadam-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron-500), var(--marigold-500));
  color: #fff;
  font-size: 1.125rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.prasadam-step p { font-size: 0.9375rem; text-align: center; }
.prasadam-note {
  background: rgba(63,107,73,0.08);
  border: 1px solid rgba(63,107,73,0.25);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  color: var(--tulsi-700);
}

/* ══════════════════════════════════════════════════
   PAYMENT SECTION
══════════════════════════════════════════════════ */
.payment-tabs {
  display: flex;
  gap: 0;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.payment-tab-btn {
  flex: 1;
  min-width: 120px;
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-card);
  border: none;
  border-right: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  min-height: 48px;
}
.payment-tab-btn:last-child { border-right: none; }
.payment-tab-btn.active {
  background: var(--peacock-700);
  color: #fff;
}
.payment-tab-btn:hover:not(.active) { background: var(--ivory-100); }

.payment-panel { display: none; }
.payment-panel.active { display: block; }

/* UPI Panel */
.upi-panel {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .upi-panel { grid-template-columns: auto 1fr; align-items: start; }
}
.upi-qr-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.upi-qr-img {
  border: 3px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  background: #fff;
  width: 280px;
  height: 280px;
  object-fit: contain;
}
@media (max-width: 640px) { .upi-qr-img { width: 240px; height: 240px; } }
.upi-id-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--ivory-100);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.625rem 1rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--peacock-700);
  user-select: all;
  width: 100%;
  word-break: break-all;
}
.upi-verify-alert {
  background: rgba(232,137,28,0.1);
  border: 1.5px solid rgba(232,137,28,0.4);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  color: var(--ink);
  display: flex;
  gap: 0.625rem;
  align-items: flex-start;
  line-height: 1.6;
}
.upi-verify-alert svg { flex-shrink: 0; color: var(--saffron-500); margin-top: 0.1rem; }
.upi-app-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--saffron-500), var(--saffron-600));
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 600;
  min-height: 48px;
  transition: all 0.2s;
}
.upi-app-btn:hover { opacity: 0.9; transform: translateY(-1px); }

/* Bank details */
.bank-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-card);
}
.bank-row:last-of-type { border-bottom: none; }
.bank-label { font-size: 0.8125rem; color: var(--text-muted); font-weight: 500; }
.bank-value {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--peacock-700);
  text-align: right;
  user-select: all;
  word-break: break-all;
}
.bank-row-inner { display: flex; flex-direction: column; gap: 0.25rem; flex: 1; }

/* Online payment panel */
.online-panel-wrap {
  background: var(--bg-card);
  border: 2px solid var(--border-card);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
#online-payment-section { display: none; }
#online-payment-section.visible { display: block; }

.selected-seva-summary {
  background: var(--ivory-100);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.selected-seva-summary .label { font-size: 0.8125rem; color: var(--text-muted); }
.selected-seva-summary .value { font-size: 1rem; font-weight: 700; color: var(--peacock-700); }

/* ══════════════════════════════════════════════════
   CONFIRMATION FORM — STEPPER
══════════════════════════════════════════════════ */
.stepper-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

/* ── Progress Bar ── */
.stepper-progress {
  padding: 2rem 2.5rem 0;
}
@media (max-width: 640px) { .stepper-progress { padding: 1.5rem 1.5rem 0; } }
.stepper-progress-track {
  height: 4px;
  background: var(--border-card);
  border-radius: 99px;
  margin-bottom: 1.25rem;
  overflow: hidden;
}
.stepper-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--saffron-500), var(--marigold-500));
  border-radius: 99px;
  transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  width: 16.66%; /* step 1 of 3 ≈ 1/6 of total */
}

/* ── Step Indicators ── */
.stepper-steps {
  display: flex;
  gap: 0;
  justify-content: space-between;
  position: relative;
}
.stepper-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
}
.stepper-step-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--border-card);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s;
}
.stepper-step-num {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: opacity 0.2s;
}
.stepper-step-check {
  position: absolute;
  color: #fff;
  opacity: 0;
  transition: opacity 0.2s;
}
.stepper-step-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  transition: color 0.3s;
}

/* Active step */
.stepper-step.active .stepper-step-dot {
  border-color: var(--saffron-500);
  background: var(--saffron-500);
  box-shadow: 0 0 0 4px rgba(232,137,28,0.15);
}
.stepper-step.active .stepper-step-num { color: #fff; }
.stepper-step.active .stepper-step-label { color: var(--saffron-500); }

/* Completed step */
.stepper-step.done .stepper-step-dot {
  border-color: var(--tulsi-700);
  background: var(--tulsi-700);
}
.stepper-step.done .stepper-step-num { opacity: 0; }
.stepper-step.done .stepper-step-check { opacity: 1; color: #fff; }
.stepper-step.done .stepper-step-label { color: var(--tulsi-700); }

/* ── Step Panels ── */
.stepper-panel {
  display: none;
  padding: 2rem 2.5rem 2.5rem;
  animation: stepFadeIn 0.3s ease both;
}
@media (max-width: 640px) { .stepper-panel { padding: 1.5rem; } }
.stepper-panel.active { display: block; }

@keyframes stepFadeIn {
  from { opacity: 0; transform: translateX(18px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes stepFadeInBack {
  from { opacity: 0; transform: translateX(-18px); }
  to   { opacity: 1; transform: translateX(0); }
}
.stepper-panel.back-anim { animation: stepFadeInBack 0.3s ease both; }

/* ── Panel Header ── */
.stepper-panel-header {
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-card);
}
.stepper-panel-header h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}
.stepper-panel-icon { font-size: 1.375rem; line-height: 1; }
.stepper-panel-header p { font-size: 0.9rem; margin-top: 0; }

/* ── Seva Readonly Row ── */
.seva-readonly-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--ivory-100);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.875rem 1rem;
  font-weight: 600;
  color: var(--peacock-700);
}

/* ── Stepper Nav ── */
.stepper-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-card);
  flex-wrap: wrap;
}

/* ── Address Section (in Step 3) ── */
.address-section {
  display: none;
  margin-top: 1rem;
}
.address-section.visible { display: block; }
.address-section-inner {
  background: var(--ivory-100);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 0.75rem;
}
.address-note {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.address-note svg { flex-shrink: 0; color: var(--saffron-500); }

/* ── Secure note ── */
.stepper-secure-note {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}
.stepper-secure-note svg { color: var(--tulsi-700); }

/* ── Success State ── */
.form-success {
  display: none;
  text-align: center;
  padding: 3.5rem 2rem;
}
.form-success.visible { display: block; }
.form-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron-500), var(--marigold-500));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 1.5rem;
}
.form-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .form-grid-2 { grid-template-columns: repeat(2, 1fr); } }

label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
label .required-star { color: #dc2626; }
label .optional { font-size: 0.75rem; font-weight: 400; color: var(--text-muted); }

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.8125rem 1rem;
  border: 2px solid var(--border-card);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  color: var(--ink);
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s;
  min-height: 48px;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--saffron-500);
  box-shadow: 0 0 0 3px rgba(232,137,28,0.12);
  outline: none;
}
.form-input.error, .form-select.error, .form-textarea.error {
  border-color: #dc2626;
}
.form-error {
  font-size: 0.8125rem;
  color: #dc2626;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.form-hint { font-size: 0.8125rem; color: var(--text-muted); }
.form-textarea { resize: vertical; min-height: 100px; }

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.checkbox-row input[type="checkbox"] {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-radius: 4px;
  accent-color: var(--saffron-500);
  flex-shrink: 0;
  margin-top: 0.1rem;
  cursor: pointer;
}
.checkbox-row label { font-size: 0.9375rem; font-weight: 400; cursor: pointer; }


/* ══════════════════════════════════════════════════
   HOW IT WORKS SECTION
══════════════════════════════════════════════════ */
.steps-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  counter-reset: step;
}
@media (min-width: 640px) { .steps-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps-list { grid-template-columns: repeat(5, 1fr); } }
.step-item {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: var(--shadow-sm);
  counter-increment: step;
}
.step-item::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron-500), var(--marigold-500));
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.step-item p { font-size: 0.9375rem; }

/* ══════════════════════════════════════════════════
   TRUST SECTION
══════════════════════════════════════════════════ */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .trust-grid { grid-template-columns: repeat(3, 1fr); } }

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(232,137,28,0.12), rgba(243,181,27,0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  flex-shrink: 0;
  color: var(--saffron-500);
}
.trust-item h3 { font-size: 0.9375rem; margin-bottom: 0.25rem; }
.trust-item p { font-size: 0.875rem; }

/* ══════════════════════════════════════════════════
   FAQ SECTION
══════════════════════════════════════════════════ */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border-card);
}
.faq-item:first-child { border-top: 1px solid var(--border-card); }
.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  background: none;
  border: none;
  cursor: pointer;
  min-height: 56px;
}
.faq-btn svg {
  flex-shrink: 0;
  transition: transform 0.22s;
  color: var(--saffron-500);
}
.faq-btn[aria-expanded="true"] svg { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 0 1.25rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.faq-answer.open { display: block; }

/* ══════════════════════════════════════════════════
   CLOSING CTA SECTION
══════════════════════════════════════════════════ */
.closing-cta {
  background: linear-gradient(135deg, var(--peacock-900) 0%, var(--peacock-700) 100%);
  color: #fff;
  text-align: center;
  padding: 5rem 0;
}
.closing-cta h2 { color: #fff; margin-bottom: 1rem; }
.closing-cta p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; }

/* Sticky CTA bar */
#sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--peacock-900);
  border-top: 2px solid rgba(243,181,27,0.3);
  padding: 0.875rem 1.5rem;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  box-shadow: 0 -8px 32px rgba(8,37,51,0.35);
}
#sticky-cta.visible { display: flex; }
.sticky-seva-info {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.sticky-seva-label { font-size: 0.75rem; color: rgba(255,255,255,0.6); }
.sticky-seva-value { font-size: 0.9375rem; font-weight: 700; color: var(--marigold-500); }

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.site-footer {
  background: var(--peacock-900);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; } }
.footer-brand .logo-org { color: #fff; margin-bottom: 0.5rem; }
.footer-brand p { font-size: 0.875rem; line-height: 1.65; margin-top: 0.75rem; }
.footer-heading {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--marigold-500);
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.18s;
}
.footer-links a:hover { color: var(--marigold-500); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  line-height: 1.55;
}
.footer-contact-item svg { flex-shrink: 0; color: var(--saffron-500); margin-top: 0.15rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  font-size: 0.8125rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-disclaimer {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  max-width: 700px;
  margin-top: 1.5rem;
}

/* Share buttons */
.share-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 2rem;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 600;
  border: 1.5px solid transparent;
  min-height: 40px;
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
}
.share-whatsapp { background: #25D366; color: #fff; }
.share-facebook { background: #1877F2; color: #fff; }
.share-x { background: #000; color: #fff; }
.share-copy { background: transparent; border-color: rgba(255,255,255,0.3); color: rgba(255,255,255,0.8); }
.share-btn:hover { opacity: 0.85; transform: translateY(-1px); }

/* ── Utility ── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.divider {
  border: none;
  border-top: 1px solid var(--border-card);
  margin: 2rem 0;
}
.tag {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: rgba(63,107,73,0.08);
  border: 1px solid rgba(63,107,73,0.2);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--tulsi-700);
}
.text-center { text-align: center; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }

/* ── Animations ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  animation: fadeInUp 0.6s ease both;
}
.reveal-delay-1 { animation-delay: 0.1s; }
.reveal-delay-2 { animation-delay: 0.2s; }
.reveal-delay-3 { animation-delay: 0.3s; }
.reveal-delay-4 { animation-delay: 0.4s; }

/* ── Live region ── */
#aria-status { display: none; }
