/* =====================================================
   Ardhkuwari Mandir Official Website Stylesheet
   Theme: Light, Spiritual, Devotional
   Palette: Saffron, Gold, Cream, White
   ===================================================== */

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

:root {
  /* Core saffron / gold / cream palette */
  --saffron: #ff7a00;
  --saffron-deep: #e85d04;
  --saffron-light: #ffb866;
  --gold: #d4a017;
  --gold-deep: #b8860b;
  --gold-light: #f4d27a;
  --cream: #fff8ec;
  --cream-soft: #fdf3df;
  --ivory: #fffdf7;
  --maroon: #7a1f1f;
  --temple-red: #b22222;

  /* Neutrals */
  --ink: #2b1f12;
  --ink-soft: #4a3a26;
  --muted: #6e5f4b;
  --line: #ecdcb8;
  --line-soft: #f6ecd6;

  /* Effects */
  --glow: 0 0 40px rgba(255, 170, 60, 0.35);
  --shadow-soft: 0 4px 18px rgba(122, 76, 0, 0.08);
  --shadow-md: 0 10px 32px rgba(122, 76, 0, 0.12);
  --shadow-lg: 0 18px 48px rgba(122, 76, 0, 0.18);

  /* Typography */
  --font-display: "Cormorant Garamond", "Playfair Display", "Georgia", serif;
  --font-script: "Yatra One", "Tiro Devanagari Hindi", "Cormorant Garamond", serif;
  --font-body: "Marcellus", "Cormorant Garamond", "Georgia", serif;
  --font-ui: "Inter", "Segoe UI", system-ui, sans-serif;

  /* Layout */
  --max: 1240px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
}

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

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.75;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background-image:
    radial-gradient(circle at 10% 0%, rgba(255, 184, 102, 0.18), transparent 45%),
    radial-gradient(circle at 95% 12%, rgba(212, 160, 23, 0.12), transparent 40%),
    linear-gradient(180deg, #fffdf7 0%, #fff8ec 100%);
  background-attachment: fixed;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--saffron-deep);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: var(--maroon);
}

::selection {
  background: var(--gold-light);
  color: var(--maroon);
}

/* ---- 2. TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--maroon);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.2px;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.85rem); margin-bottom: 0.7em; }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); margin-bottom: 0.6em; }
h4 { font-size: 1.2rem; margin-bottom: 0.5em; }

p {
  margin-bottom: 1.1em;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

p.lead {
  font-size: 1.2rem;
  color: var(--ink);
  font-style: italic;
}

.sanskrit {
  font-family: var(--font-script);
  color: var(--saffron-deep);
  font-style: normal;
  font-weight: 400;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2.6rem auto 2.2rem;
  gap: 14px;
  color: var(--gold-deep);
}

.divider::before,
.divider::after {
  content: "";
  flex: 0 0 90px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.divider svg { width: 28px; height: 28px; }

/* ---- 3. ANNOUNCEMENT STRIP ---- */
.top-strip {
  background: linear-gradient(90deg, var(--saffron-deep), var(--gold-deep), var(--saffron-deep));
  color: #fffdf3;
  font-size: 0.86rem;
  letter-spacing: 0.3px;
  padding: 7px 14px;
  text-align: center;
  font-family: var(--font-ui);
  position: relative;
  overflow: hidden;
}

.top-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  animation: shimmer 6s linear infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.top-strip span { position: relative; z-index: 1; }
.top-strip a { color: #fffdf3; text-decoration: underline; }

/* ---- 4. NAVBAR ---- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 247, 0.92);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 24px rgba(184, 134, 11, 0.06);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--maroon);
  letter-spacing: 0.4px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, #fff5d8, #f4d27a 55%, var(--gold-deep) 100%);
  display: grid;
  place-items: center;
  box-shadow: 0 2px 14px rgba(212, 160, 23, 0.45), inset 0 0 8px rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}

.brand-mark svg { width: 28px; height: 28px; color: var(--maroon); }

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text small {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--saffron-deep);
  font-weight: 600;
  margin-top: 4px;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.nav-links a {
  display: inline-block;
  padding: 9px 14px;
  border-radius: 10px;
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 0.93rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  position: relative;
  transition: all 0.25s ease;
}

.nav-links a:hover {
  color: var(--saffron-deep);
  background: rgba(255, 184, 102, 0.18);
}

.nav-links a.active {
  color: var(--maroon);
  background: linear-gradient(180deg, rgba(244, 210, 122, 0.4), rgba(255, 184, 102, 0.25));
  box-shadow: inset 0 -2px 0 var(--gold-deep);
}

.nav-cta {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-deep));
  color: #fff !important;
  padding: 10px 20px !important;
  border-radius: 999px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 16px rgba(232, 93, 4, 0.32);
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--saffron-deep), var(--maroon)) !important;
  color: #fff !important;
  transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--gold);
  border-radius: 10px;
  padding: 8px 10px;
  cursor: pointer;
  color: var(--maroon);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--maroon);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: 70px 0 0 0;
    background: var(--ivory);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 6px;
    border-top: 1px solid var(--line);
    transform: translateY(-110%);
    transition: transform 0.4s cubic-bezier(0.6, 0.04, 0.3, 1);
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(122, 76, 0, 0.15);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a {
    padding: 14px 18px;
    border-bottom: 1px solid var(--line-soft);
    border-radius: 0;
  }
  .nav-cta { margin-top: 12px; text-align: center; }
}

/* ---- 5. HERO ---- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.65) 0%, rgba(255, 248, 236, 0.85) 60%, var(--ivory) 100%),
    var(--hero-img, none) center/cover no-repeat;
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top, rgba(255, 170, 60, 0.25), transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(212, 160, 23, 0.18), transparent 50%);
  z-index: -1;
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 90px 24px 80px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 3.4px;
  text-transform: uppercase;
  color: var(--saffron-deep);
  font-weight: 600;
  margin-bottom: 22px;
  padding: 8px 16px;
  background: linear-gradient(90deg, rgba(244, 210, 122, 0.45), rgba(255, 184, 102, 0.25));
  border-radius: 999px;
  border: 1px solid rgba(212, 160, 23, 0.4);
}

.hero h1 {
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}

.hero h1 .accent {
  background: linear-gradient(110deg, var(--saffron-deep), var(--gold-deep) 60%, var(--maroon));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.hero p.lead {
  max-width: 560px;
  color: var(--ink-soft);
  margin-bottom: 32px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.hero-stats div { line-height: 1.2; }
.hero-stats .num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--maroon);
  font-weight: 700;
  display: block;
}

.hero-stats .lbl {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-figure {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 8px solid #fff;
  transform: rotate(1.2deg);
  background: var(--cream);
  aspect-ratio: 4 / 5;
}

.hero-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-figure::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: linear-gradient(135deg, var(--gold-light), transparent);
  z-index: -1;
  border-radius: 30px;
  filter: blur(20px);
  opacity: 0.7;
}

.hero-figure-cap {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: rgba(255, 253, 247, 0.92);
  backdrop-filter: blur(8px);
  padding: 12px 16px;
  border-radius: 12px;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--ink-soft);
  border-left: 3px solid var(--saffron);
}

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; padding-top: 60px; }
  .hero-figure { transform: none; max-width: 480px; margin: 0 auto; }
  .hero { min-height: auto; }
}

/* ---- 6. BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-deep));
  color: #fff;
  box-shadow: 0 6px 20px rgba(232, 93, 4, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--saffron-deep), var(--maroon));
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(178, 34, 34, 0.4);
  color: #fff;
}

.btn-secondary {
  background: #fff;
  color: var(--maroon);
  border: 2px solid var(--gold);
  box-shadow: 0 4px 14px rgba(212, 160, 23, 0.18);
}

.btn-secondary:hover {
  background: var(--cream);
  border-color: var(--saffron-deep);
  color: var(--saffron-deep);
  transform: translateY(-2px);
}

.btn svg { width: 18px; height: 18px; }

/* ---- 7. SECTIONS ---- */
section {
  padding: 90px 24px;
  position: relative;
}

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

.container-sm { max-width: 880px; margin: 0 auto; }

.section-eyebrow {
  display: block;
  text-align: center;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--saffron-deep);
  font-weight: 600;
  margin-bottom: 14px;
}

.section-title {
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.section-sub {
  text-align: center;
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 48px;
  font-style: italic;
}

/* ---- 8. CARDS ---- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 30px;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--saffron), var(--gold), var(--saffron-deep));
  opacity: 0.85;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--cream), var(--gold-light));
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--maroon);
  box-shadow: inset 0 0 0 1px rgba(212, 160, 23, 0.3);
}

.card-icon svg { width: 30px; height: 30px; }

.card h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.card p {
  font-size: 0.98rem;
  margin-bottom: 0;
}

.card .more-link {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--saffron-deep);
  text-transform: uppercase;
}

.card .more-link::after {
  content: " →";
  transition: transform 0.3s;
  display: inline-block;
}

.card:hover .more-link::after { transform: translateX(4px); }

/* ---- 9. PROSE / LONG-FORM ---- */
.prose {
  max-width: 880px;
  margin: 0 auto;
}

.prose h2 {
  margin-top: 2.4em;
  margin-bottom: 0.6em;
  text-align: left;
}

.prose h2:first-child { margin-top: 0; }

.prose h3 {
  margin-top: 1.6em;
  color: var(--saffron-deep);
}

.prose p {
  font-size: 1.08rem;
  line-height: 1.85;
}

.prose blockquote {
  border-left: 4px solid var(--saffron);
  background: var(--cream);
  padding: 22px 28px;
  margin: 30px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--maroon);
  font-size: 1.1rem;
  position: relative;
}

.prose blockquote::before {
  content: "❝";
  position: absolute;
  top: 6px;
  right: 18px;
  font-size: 3rem;
  color: var(--gold-light);
  font-family: var(--font-display);
  line-height: 1;
}

.prose ul,
.prose ol {
  padding-left: 1.6em;
  margin-bottom: 1.4em;
}

.prose li {
  margin-bottom: 10px;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.75;
}

.prose ul li::marker { color: var(--saffron); }

.prose strong { color: var(--maroon); font-weight: 600; }

.prose a {
  color: var(--saffron-deep);
  border-bottom: 1px dotted var(--gold);
}

.prose img {
  border-radius: var(--radius);
  margin: 30px 0;
  box-shadow: var(--shadow-md);
  width: 100%;
}

.callout {
  background: linear-gradient(135deg, var(--cream), var(--cream-soft));
  border: 1px solid var(--gold-light);
  border-radius: var(--radius);
  padding: 26px 30px;
  margin: 30px 0;
  position: relative;
}

.callout::before {
  content: "🛕";
  position: absolute;
  top: -16px;
  left: 24px;
  background: var(--saffron-deep);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1rem;
  box-shadow: 0 4px 14px rgba(232, 93, 4, 0.3);
}

.callout h4 {
  color: var(--saffron-deep);
  margin-bottom: 8px;
  margin-top: 6px;
}

.callout p:last-child { margin-bottom: 0; }

/* ---- 10. SPLIT SECTIONS ---- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split.reverse > :first-child { order: 2; }

@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse > :first-child { order: 0; }
}

.split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid #fff;
  position: relative;
  aspect-ratio: 4 / 3;
}

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

.split-img::after {
  content: "";
  position: absolute;
  inset: -10px;
  background: linear-gradient(135deg, var(--gold-light), transparent 60%);
  z-index: -1;
  filter: blur(20px);
  border-radius: 30px;
}

/* ---- 11. TIMINGS TABLE ---- */
.timings {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin: 30px 0;
}

.timings-head {
  background: linear-gradient(135deg, var(--saffron-deep), var(--maroon));
  color: #fff;
  padding: 22px 28px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.3px;
}

.timings-head small {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.85;
  font-weight: 500;
  margin-bottom: 4px;
}

.timings-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 2fr;
  padding: 18px 28px;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--font-ui);
  font-size: 0.95rem;
  align-items: center;
}

.timings-row:nth-child(even) { background: var(--cream-soft); }
.timings-row:last-child { border-bottom: none; }

.timings-row strong {
  color: var(--maroon);
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
}

.timings-row time {
  font-weight: 600;
  color: var(--saffron-deep);
}

.timings-row span:last-child { color: var(--muted); font-size: 0.9rem; }

@media (max-width: 700px) {
  .timings-row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 16px 18px;
  }
  .timings-head { padding: 18px 18px; font-size: 1.15rem; }
}

/* ---- 12. GALLERY ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3;
  border: 4px solid #fff;
  background: var(--cream);
  cursor: pointer;
  transition: transform 0.4s, box-shadow 0.4s;
}

.gallery-item.tall { aspect-ratio: 3 / 4; }
.gallery-item.wide { aspect-ratio: 16 / 10; grid-column: span 2; }

@media (max-width: 800px) {
  .gallery-item.wide { grid-column: span 1; }
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

.gallery-item:hover img { transform: scale(1.06); }

.gallery-item-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px 18px 14px;
  background: linear-gradient(transparent, rgba(43, 31, 18, 0.78));
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  letter-spacing: 0.3px;
  pointer-events: none;
}

/* ---- 13. FAQ ---- */
.faq {
  max-width: 880px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-item[open] {
  border-color: var(--gold);
  box-shadow: var(--shadow-soft);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--maroon);
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--saffron-deep);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  font-weight: 400;
  transition: transform 0.3s, background 0.3s;
}

.faq-item[open] summary::after {
  content: "−";
  background: var(--saffron);
  color: #fff;
  transform: rotate(180deg);
}

.faq-item summary:hover { color: var(--saffron-deep); }

.faq-item-body {
  padding: 0 26px 22px;
  border-top: 1px solid var(--line-soft);
  padding-top: 18px;
}

.faq-item-body p { margin-bottom: 12px; font-size: 1rem; line-height: 1.8; }
.faq-item-body p:last-child { margin-bottom: 0; }

/* ---- 14. CONTACT FORM ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 44px;
}

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

.info-block {
  background: linear-gradient(160deg, var(--cream), var(--cream-soft));
  border: 1px solid var(--gold-light);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}

.info-block h3 {
  color: var(--maroon);
  margin-bottom: 8px;
}

.info-row {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(212, 160, 23, 0.2);
}

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

.info-row .ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--saffron-deep);
  box-shadow: 0 2px 8px rgba(212, 160, 23, 0.18);
}

.info-row .ico svg { width: 22px; height: 22px; }
.info-row strong { font-family: var(--font-display); color: var(--maroon); display: block; margin-bottom: 2px; font-size: 1.05rem; }
.info-row span { font-family: var(--font-ui); color: var(--ink-soft); font-size: 0.95rem; }

.form-block {
  background: #fff;
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}

.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--maroon);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--ivory);
  color: var(--ink);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--saffron);
  box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.13);
}

.form-row textarea { min-height: 130px; resize: vertical; }

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

@media (max-width: 600px) {
  .form-row.two { grid-template-columns: 1fr; gap: 0; }
  .form-row.two .form-row { margin-bottom: 18px; }
}

/* ---- 15. PAGE HEADER ---- */
.page-header {
  position: relative;
  padding: 110px 24px 70px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.4), rgba(255, 248, 236, 0.95)),
    url("../images/temple-pattern.svg") center/520px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  isolation: isolate;
}

.page-header::before,
.page-header::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-light), transparent 70%);
  opacity: 0.55;
  z-index: -1;
}

.page-header::before { top: -80px; left: 8%; }
.page-header::after { bottom: -80px; right: 8%; background: radial-gradient(circle, var(--saffron-light), transparent 70%); }

.page-header .crumb {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--saffron-deep);
  margin-bottom: 14px;
  font-weight: 600;
}

.page-header h1 {
  margin-bottom: 14px;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}

.page-header p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-style: italic;
  font-size: 1.1rem;
}

/* ---- 16. CTA STRIP ---- */
.cta-strip {
  margin: 60px auto;
  max-width: 1100px;
  padding: 50px 50px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(122, 31, 31, 0.92), rgba(232, 93, 4, 0.88)),
    url("../images/temple-pattern.svg") center/300px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent, rgba(0, 0, 0, 0.15));
}

.cta-strip > * { position: relative; }

.cta-strip h2 {
  color: #fffdf3;
  margin-bottom: 12px;
}

.cta-strip p {
  color: rgba(255, 253, 243, 0.92);
  max-width: 620px;
  margin: 0 auto 24px;
  font-size: 1.1rem;
  font-style: italic;
}

.cta-strip .btn-primary {
  background: #fff;
  color: var(--saffron-deep);
}

.cta-strip .btn-primary:hover {
  background: var(--cream);
  color: var(--maroon);
}

.cta-strip .btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

.cta-strip .btn-secondary:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }

@media (max-width: 600px) {
  .cta-strip { padding: 36px 24px; margin: 40px 14px; }
}

/* ---- 17. FOOTER ---- */
.footer {
  background: linear-gradient(180deg, var(--cream-soft), var(--cream));
  border-top: 3px solid var(--gold);
  padding: 70px 24px 24px;
  position: relative;
}

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

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 44px;
}

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

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

.footer h4 {
  font-family: var(--font-display);
  color: var(--maroon);
  font-size: 1.1rem;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

.footer h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background: var(--saffron);
}

.footer ul { list-style: none; }
.footer ul li { margin-bottom: 8px; }
.footer ul a {
  font-family: var(--font-ui);
  font-size: 0.92rem;
  color: var(--ink-soft);
  display: inline-block;
  padding: 2px 0;
  position: relative;
}

.footer ul a:hover { color: var(--saffron-deep); padding-left: 8px; }
.footer ul a::before {
  content: "→";
  opacity: 0;
  margin-right: 4px;
  transition: opacity 0.25s;
}

.footer ul a:hover::before { opacity: 1; }

.footer-brand p {
  font-family: var(--font-body);
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin: 14px 0;
  line-height: 1.7;
}

.footer-bottom {
  max-width: var(--max);
  margin: 50px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-family: var(--font-ui);
  font-size: 0.84rem;
  color: var(--muted);
}

.footer-bottom .om {
  color: var(--saffron-deep);
  font-size: 1.4rem;
  margin-right: 6px;
  vertical-align: middle;
}

/* ---- 18. ANIMATIONS / UTILS ---- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 2rem; }

/* ---- 19. DECORATIVE OM SYMBOL ---- */
.om-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 40px 0 28px;
}

.om-divider .line {
  flex: 0 0 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.om-divider .om {
  font-family: serif;
  font-size: 1.8rem;
  color: var(--saffron-deep);
  text-shadow: 0 0 18px rgba(255, 170, 60, 0.4);
}

/* ---- 20. INTRA-PAGE ANCHOR LIST ---- */
.toc {
  background: linear-gradient(160deg, var(--cream), #fff);
  border: 1px solid var(--gold-light);
  border-left: 4px solid var(--saffron);
  border-radius: var(--radius);
  padding: 22px 28px;
  margin: 30px 0;
}

.toc h4 {
  font-family: var(--font-display);
  color: var(--maroon);
  margin-bottom: 14px;
  font-size: 1.15rem;
}

.toc ol {
  padding-left: 1.3em;
  margin: 0;
  columns: 2;
  column-gap: 30px;
}

.toc ol li {
  margin-bottom: 8px;
  font-family: var(--font-ui);
  font-size: 0.93rem;
  color: var(--ink-soft);
}

.toc ol li::marker { color: var(--saffron); font-weight: 700; }

.toc a { color: var(--maroon); }
.toc a:hover { color: var(--saffron-deep); }

@media (max-width: 600px) {
  .toc ol { columns: 1; }
}

/* ---- 21. FACT GRID ---- */
.fact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  margin: 30px 0;
}

.fact {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px 22px;
  border: 1px solid var(--line);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.fact::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, var(--gold-light), transparent 70%);
  top: -50px;
  right: -50px;
  opacity: 0.5;
}

.fact .num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--saffron-deep);
  font-weight: 700;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.fact .lbl {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---- 22. STEP / PROCESS LIST ---- */
.steps {
  counter-reset: step;
  display: grid;
  gap: 20px;
  margin: 30px 0;
}

.step {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 28px;
  align-items: start;
  position: relative;
  counter-increment: step;
  box-shadow: var(--shadow-soft);
}

.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--saffron-deep);
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-light), var(--cream));
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 1px rgba(212, 160, 23, 0.4);
}

.step h4 {
  margin-bottom: 6px;
  color: var(--maroon);
  font-size: 1.2rem;
}

.step p { margin-bottom: 0; font-size: 0.98rem; }

@media (max-width: 600px) {
  .step { grid-template-columns: 1fr; gap: 14px; padding: 22px; }
  .step::before { width: 56px; height: 56px; font-size: 1.6rem; }
}

/* ---- 23. DOS & DONTS ---- */
.dos-donts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin: 30px 0;
}

@media (max-width: 700px) {
  .dos-donts { grid-template-columns: 1fr; }
}

.dos, .donts {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 26px;
  border-top: 4px solid;
  box-shadow: var(--shadow-soft);
}

.dos { border-top-color: #2d8a3e; }
.donts { border-top-color: #b22222; }

.dos h3 { color: #2d8a3e; }
.donts h3 { color: #b22222; }

.dos ul, .donts ul {
  list-style: none;
  padding: 0;
  margin-top: 14px;
}

.dos ul li,
.donts ul li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 12px;
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

.dos ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #2d8a3e;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 700;
}

.donts ul li::before {
  content: "✗";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #b22222;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 700;
}

/* ---- 24. PRINT ---- */
@media print {
  .navbar, .top-strip, .footer, .cta-strip, .nav-toggle { display: none !important; }
  body { background: #fff; }
}

/* ---- 25. SCROLLBAR ---- */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--cream-soft); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold), var(--saffron-deep));
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover { background: var(--saffron-deep); }

/* ---- 26. NOTICE BANNER ---- */
.notice {
  background: linear-gradient(135deg, #fff7e0, #fde8b8);
  border: 1px solid var(--gold);
  border-left: 5px solid var(--saffron-deep);
  padding: 18px 24px;
  border-radius: var(--radius);
  margin: 24px 0;
  font-family: var(--font-ui);
  font-size: 0.94rem;
  color: var(--maroon);
}

.notice strong { font-family: var(--font-display); font-size: 1.05rem; display: block; margin-bottom: 4px; }
