/* =========================================================
   Sree Dattatreya Temple & Public Seva Trust — main styles
   Palette drawn from the trust emblem: night navy field,
   temple gold, kumkum red, saffron, and the seven chakra hues.
   ========================================================= */

:root {
  --navy: #121a3f;
  --navy-2: #1b2556;
  --navy-3: #0c1230;
  --gold: #d6a23a;
  --gold-lt: #f3d27a;
  --gold-dk: #a8791f;
  --kumkum: #b81d24;
  --saffron: #e8741c;
  --paper: #fffaf2;
  --paper-2: #fbf1df;
  --ink: #1c1f2e;
  --muted: #5b6078;
  --line: rgba(214, 162, 58, .35);

  --c-crown: #8e2bbf;
  --c-third: #4b2fbf;
  --c-throat: #1f6fe0;
  --c-heart: #1e9e3a;
  --c-solar: #e0a800;
  --c-sacral: #f07a12;
  --c-root: #d9241c;

  --wa: #25d366;
  --call: #1565c0;
  --call-dk: #0d47a1;
  --radius-lg: 22px;
  --radius-sm: 10px;
  --font-display: "Cinzel", "Times New Roman", serif;
  --font-body: "Mukta", "Segoe UI", system-ui, -apple-system, sans-serif;
  --nav-h: 76px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); }

body {
  font-family: var(--font-body);
  font-size: 1.075rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}
html { overflow-x: hidden; }

h1, h2, h3, h4, .display-font {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .01em;
}

a { color: var(--kumkum); }
a:hover { color: var(--saffron); }

:focus-visible {
  outline: 3px solid var(--gold-lt);
  outline-offset: 3px;
  border-radius: 4px;
}

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

.measure { max-width: 68ch; }
.measure-sm { max-width: 56ch; }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 2000;
  display: grid; place-items: center;
  background: var(--navy);
  transition: opacity .6s ease, visibility .6s ease;
}
.preloader img {
  width: 110px; height: 110px; object-fit: cover; border-radius: 50%;
  box-shadow: 0 0 0 3px var(--gold), 0 0 50px rgba(243, 210, 122, .55);
  animation: pulseGlow 1.6s ease-in-out infinite;
}
.preloader.is-hidden { opacity: 0; visibility: hidden; }

@keyframes pulseGlow {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 3px var(--gold), 0 0 30px rgba(243, 210, 122, .35); }
  50% { transform: scale(1.06); box-shadow: 0 0 0 3px var(--gold-lt), 0 0 70px rgba(243, 210, 122, .7); }
}

/* ---------- Top strip ---------- */
.topbar {
  background: var(--navy-3);
  color: rgba(255, 255, 255, .78);
  font-size: .9rem;
  border-bottom: 1px solid rgba(214, 162, 58, .25);
}
.topbar a { color: var(--gold-lt); text-decoration: none; }
.topbar a:hover { color: #fff; }
.topbar .bi { color: var(--gold); margin-right: .35rem; }

/* ---------- Navbar ---------- */
.site-nav {
  background: var(--navy);
  min-height: var(--nav-h);
  border-bottom: 2px solid var(--gold);
  transition: box-shadow .3s ease, min-height .3s ease;
}
.site-nav.is-scrolled { box-shadow: 0 8px 30px rgba(12, 18, 48, .45); }

.brand { display: flex; align-items: center; gap: .75rem; text-decoration: none; }
.brand img {
  height: 64px; width: auto; object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(243, 210, 122, .35));
  transition: transform .4s ease;
}
.brand:hover img { transform: rotate(-6deg) scale(1.05); }
.brand-text { line-height: 1.1; }
.brand-name {
  display: block; font-family: var(--font-display); font-weight: 700;
  color: var(--gold-lt); font-size: 1.05rem;
}
.brand-sub { display: block; color: rgba(255, 255, 255, .7); font-size: .8rem; }

.site-nav .nav-link {
  color: rgba(255, 255, 255, .86);
  font-weight: 500;
  padding: .5rem .9rem !important;
  position: relative;
}
.site-nav .nav-link::after {
  content: ""; position: absolute; left: .9rem; right: .9rem; bottom: .2rem;
  height: 2px; background: var(--gold); transform: scaleX(0);
  transform-origin: left; transition: transform .3s ease;
}
.site-nav .nav-link:hover,
.site-nav .nav-link.active { color: var(--gold-lt); }
.site-nav .nav-link:hover::after,
.site-nav .nav-link.active::after { transform: scaleX(1); }

.navbar-toggler { border-color: var(--gold); }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23f3d27a' stroke-linecap='round' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ---------- Buttons ---------- */
.btn { font-weight: 600; border-radius: 999px; padding: .7rem 1.5rem; }
.btn .bi { margin-right: .4rem; }

.btn-gold {
  background: linear-gradient(180deg, var(--gold-lt), var(--gold));
  color: var(--navy); border: 1px solid var(--gold-dk);
  box-shadow: 0 6px 18px rgba(214, 162, 58, .35);
}
.btn-gold:hover, .btn-gold:focus {
  background: linear-gradient(180deg, #fff0bf, var(--gold-lt));
  color: var(--navy); transform: translateY(-2px);
}
.btn-kumkum { background: var(--kumkum); color: #fff; border: 1px solid var(--kumkum); }
.btn-kumkum:hover { background: #9a141a; color: #fff; transform: translateY(-2px); }
.btn-call { background: var(--call); color: #fff; border: 1px solid var(--call); box-shadow: 0 6px 18px rgba(21, 101, 192, .35); }
.btn-call:hover, .btn-call:focus { background: var(--call-dk); border-color: var(--call-dk); color: #fff; transform: translateY(-2px); }
.btn-wa { background: var(--wa); color: #0b3d1f; border: 1px solid #1eb458; }
.btn-wa:hover { background: #1fbe5a; color: #062a14; transform: translateY(-2px); }
.btn-outline-gold { color: var(--gold-lt); border: 1.5px solid var(--gold); background: transparent; }
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); }
.btn-outline-navy { color: var(--navy); border: 1.5px solid var(--navy); background: transparent; }
.btn-outline-navy:hover { background: var(--navy); color: var(--gold-lt); }
.btn { transition: transform .25s ease, background .25s ease, color .25s ease; }

.text-link {
  font-weight: 600; color: var(--kumkum); text-decoration: none;
  border-bottom: 1.5px solid var(--line);
}
.text-link:hover { color: var(--saffron); border-color: var(--saffron); }

/* ---------- Kolam pattern backgrounds ---------- */
.bg-navy {
  background-color: var(--navy);
  background-image:
    radial-gradient(circle at 20% 10%, rgba(243, 210, 122, .10), transparent 40%),
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56' viewBox='0 0 56 56'%3e%3cg fill='none' stroke='%23d6a23a' stroke-opacity='.12'%3e%3ccircle cx='28' cy='28' r='3'/%3e%3cpath d='M28 8c8 8 8 32 0 40M8 28c8-8 32-8 40 0'/%3e%3c/g%3e%3c/svg%3e");
  color: rgba(255, 255, 255, .88);
}
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: var(--gold-lt); }

.bg-paper-2 { background: var(--paper-2); }

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 26px;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='52' height='26' viewBox='0 0 52 26'%3e%3cpath d='M0 26 C13 26 13 6 26 6 C39 6 39 26 52 26Z' fill='%23fffaf2'/%3e%3c/svg%3e") repeat-x bottom;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-style: italic; color: var(--gold-lt);
  padding: .35rem .95rem; border: 1px solid var(--line); border-radius: 999px;
  background: rgba(255, 255, 255, .04); font-size: .95rem;
}
.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  color: #fff;
  margin: 1.1rem 0 1rem;
  text-shadow: 0 2px 30px rgba(243, 210, 122, .25);
}
.hero .lead { color: rgba(255, 255, 255, .86); font-size: 1.18rem; }
.hero .support { color: rgba(255, 255, 255, .66); }
.micro-trust {
  display: flex; flex-wrap: wrap; gap: .5rem 1.25rem; margin-top: 1.25rem;
  color: rgba(255, 255, 255, .78); font-size: .95rem; list-style: none; padding: 0;
}
.micro-trust .bi { color: var(--gold); margin-right: .35rem; }

/* Emblem with orbiting chakras — the one signature animation */
.orbit {
  position: relative;
  width: min(460px, 86vw);
  aspect-ratio: 1;
  margin-inline: auto;
}
.orbit-emblem {
  position: absolute; inset: 17%;
  display: grid; place-items: center;
}
.orbit-emblem img {
  width: 100%;
  filter: drop-shadow(0 0 30px rgba(243, 210, 122, .45));
  animation: emblemIn 1.2s cubic-bezier(.2, .8, .2, 1) both .3s;
}
.orbit-halo {
  position: absolute; inset: 9%;
  border-radius: 50%;
  border: 1px dashed rgba(243, 210, 122, .45);
  box-shadow: inset 0 0 80px rgba(243, 210, 122, .10), 0 0 90px rgba(243, 210, 122, .12);
}
.orbit-ring {
  position: absolute; inset: 0;
  animation: spin 60s linear infinite;
}
.orbit-ring .chakra {
  position: absolute; width: 16%; aspect-ratio: 1;
  left: 50%; top: 50%;
  transform:
    rotate(calc(var(--i) * 51.43deg))
    translateY(-262%)
    rotate(calc(var(--i) * -51.43deg));
  margin: -8% 0 0 -8%;
}
.orbit-ring .chakra img {
  width: 100%;
  animation: spin 60s linear infinite reverse, chakraIn .7s ease both;
  animation-delay: 0s, calc(.9s + var(--i) * .12s);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .35));
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes emblemIn { from { opacity: 0; transform: scale(.8) rotate(-8deg); } to { opacity: 1; transform: none; } }
@keyframes chakraIn { from { opacity: 0; scale: .4; } to { opacity: 1; scale: 1; } }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(3.5rem, 6vw, 5.5rem);
  overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 26px;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='52' height='26' viewBox='0 0 52 26'%3e%3cpath d='M0 26 C13 26 13 6 26 6 C39 6 39 26 52 26Z' fill='%23fffaf2'/%3e%3c/svg%3e") repeat-x bottom;
}
.page-hero h1 { font-size: clamp(2rem, 4.4vw, 3.1rem); color: #fff; margin: 1rem 0; }
.page-hero .lead { color: rgba(255, 255, 255, .84); }
.page-hero-mark {
  position: absolute; right: -60px; top: 50%; translate: 0 -50%;
  width: 360px; opacity: .14; pointer-events: none;
  animation: spin 90s linear infinite;
}
.breadcrumb-lite { font-size: .9rem; color: rgba(255, 255, 255, .6); }
.breadcrumb-lite a { color: var(--gold-lt); text-decoration: none; }

/* ---------- Sections ---------- */
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section-head { margin-bottom: 2.5rem; }
.section-head .kicker {
  font-style: italic; color: var(--saffron); font-weight: 500; margin-bottom: .35rem;
}
.bg-navy .section-head .kicker { color: var(--gold); }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); color: var(--navy); margin-bottom: .75rem; }
.bg-navy .section-head h2 { color: var(--gold-lt); }
.section-head p { color: var(--muted); }
.bg-navy .section-head p { color: rgba(255, 255, 255, .75); }

/* lotus divider under headings */
.lotus-rule {
  display: flex; align-items: center; gap: .75rem; margin: .5rem 0 1rem;
  color: var(--gold);
}
.text-center .lotus-rule, .lotus-rule.center { justify-content: center; }
.lotus-rule::before, .lotus-rule::after {
  content: ""; height: 1.5px; width: 64px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.lotus-rule::after { background: linear-gradient(90deg, var(--gold), transparent); }
.lotus-rule svg { width: 26px; height: 18px; }

/* ---------- Counters band ---------- */
.counters { padding: 3.5rem 0; }
.counter { text-align: center; padding: 1rem .5rem; }
.counter-value {
  display: block;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.8rem); color: var(--gold-lt);
  line-height: 1.1;
}
.counter-label { color: rgba(255, 255, 255, .78); }
.counters-caption { color: rgba(255, 255, 255, .6); font-style: italic; text-align: center; margin-top: 1rem; }

/* ---------- About / pillars ---------- */
.pillar {
  padding: 1.25rem 0 1.25rem 1.25rem;
  border-left: 3px solid var(--gold);
}
.pillar h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: .3rem; }
.pillar p { color: var(--muted); margin: 0; }

.about-figure {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--navy);
  padding: 2rem;
  box-shadow: 0 25px 60px rgba(18, 26, 63, .25);
}
.about-figure img { display: block; margin-inline: auto; max-width: 360px; width: 100%; }
.about-figure.light { background: #fff; border: 1px solid var(--line); }
.about-figure.light img { max-width: 440px; }
.about-figure.light .caption { color: var(--navy); }
.about-figure .caption {
  margin-top: 1rem; text-align: center; color: var(--gold-lt);
  font-family: var(--font-display); font-size: 1rem;
}

/* ---------- Guruji quote ---------- */
.quote-block {
  position: relative;
  max-width: 820px; margin-inline: auto;
  text-align: center;
}
.quote-block blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.3vw, 1.6rem);
  line-height: 1.55; color: #fff; font-weight: 400;
  margin: 0 0 1.5rem;
}
.quote-block .qmark {
  font-family: var(--font-display); font-size: 5rem; line-height: 1;
  color: var(--gold); opacity: .6; display: block; height: 3rem;
}
.quote-block figcaption { color: var(--gold-lt); font-weight: 500; }

/* ---------- Service cards (photo + icon) ---------- */
.service, .seva-card {
  --accent: var(--gold);
  height: 100%;
  background: #fff;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border-bottom: 4px solid var(--accent);
  box-shadow: 0 10px 30px rgba(18, 26, 63, .08);
  display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.seva-card { --accent: var(--saffron); }
.service:hover, .seva-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(18, 26, 63, .14); }
.service-media {
  position: relative; aspect-ratio: 16 / 10;
  background: linear-gradient(145deg, var(--navy-2), var(--navy));
}
.service-media img, .detail-media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
}
.service:hover .service-media img, .seva-card:hover .service-media img { transform: scale(1.07); }
.service-icon {
  position: absolute; left: 1.25rem; bottom: -26px; z-index: 2;
  width: 54px; height: 54px; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.45rem;
  background: var(--accent); color: #fff;
  border: 3px solid #fff; box-shadow: 0 6px 16px rgba(0, 0, 0, .2);
}
.service-body { padding: 2.2rem 1.5rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.service h3, .seva-card h3 { font-size: 1.25rem; color: var(--navy); margin-bottom: .4rem; }
.service p, .seva-card p { color: var(--muted); }
.seva-card p { margin: 0; }
.service .text-link { margin-top: auto; align-self: flex-start; color: var(--accent); border-color: var(--accent); }

.accent-crown  { --accent: var(--c-crown); }
.accent-third  { --accent: var(--c-third); }
.accent-throat { --accent: var(--c-throat); }
.accent-heart  { --accent: var(--c-heart); }
.accent-solar  { --accent: #b88700; }
.accent-sacral { --accent: var(--c-sacral); }
.accent-root   { --accent: var(--c-root); }

/* Detailed service rows (services page) */
.service-detail {
  display: grid; grid-template-columns: minmax(0, 300px) 1fr; gap: 2rem; align-items: start;
  padding: 2.5rem 0; border-bottom: 1px solid var(--line);
}
.detail-media {
  position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius-sm); overflow: visible;
  background: linear-gradient(145deg, var(--navy-2), var(--navy));
}
.detail-media img { border-radius: var(--radius-sm); }
.service-detail:hover .detail-media img { transform: scale(1.03); }
.service-detail:last-child { border-bottom: 0; }
.service-detail h3 { color: var(--navy); font-size: 1.6rem; margin-bottom: .25rem; }
.service-detail .for { color: var(--accent); font-weight: 600; font-style: italic; }
.service-detail .meta {
  display: inline-block; background: var(--paper-2); border-left: 3px solid var(--accent);
  padding: .5rem .9rem; border-radius: 0 8px 8px 0; font-size: .95rem; margin: .5rem 0 1rem;
}
.tag-list { display: flex; flex-wrap: wrap; gap: .45rem; padding: 0; list-style: none; margin: .5rem 0 1rem; }
.tag-list li {
  border: 1px solid var(--accent); color: var(--ink);
  border-radius: 999px; padding: .15rem .8rem; font-size: .92rem; background: #fff;
}
@media (max-width: 575.98px) {
  .service-detail { grid-template-columns: 1fr; gap: 2.2rem; }
}

/* ---------- Why choose us (objections) ---------- */
.objection { padding: 1.25rem 0; border-bottom: 1px dashed var(--line); }
.objection h3 {
  font-family: var(--font-body); font-style: italic; font-weight: 600;
  font-size: 1.15rem; color: var(--kumkum); margin-bottom: .35rem;
}
.objection p { margin: 0; color: var(--ink); }
.objection .bi { color: var(--gold-dk); margin-right: .4rem; }

.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { padding: .45rem 0 .45rem 2rem; position: relative; }
.check-list li::before {
  content: "\F26B"; font-family: "bootstrap-icons"; position: absolute; left: 0; top: .45rem;
  color: var(--c-heart); font-size: 1.15rem;
}

/* ---------- Seva ---------- */
.seva-band {
  background:
    linear-gradient(135deg, rgba(184, 29, 36, .96), rgba(232, 116, 28, .94)),
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56'%3e%3ccircle cx='28' cy='28' r='2' fill='%23fff' fill-opacity='.2'/%3e%3c/svg%3e");
  color: #fff;
}
.seva-band .section-head h2 { color: #fff; }
.seva-band .section-head .kicker { color: var(--gold-lt); }
.seva-band .section-head p, .seva-band p { color: rgba(255, 255, 255, .9); }
.seva-list { list-style: none; padding: 0; margin: 0; }
.seva-list li {
  display: flex; gap: .85rem; align-items: flex-start;
  padding: .7rem 0; border-bottom: 1px solid rgba(255, 255, 255, .2);
}
.seva-list .bi { font-size: 1.35rem; color: var(--gold-lt); line-height: 1.4; }
.seva-paths { display: grid; gap: 1rem; }
.seva-path {
  background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .3);
  border-radius: var(--radius-sm); padding: 1.35rem 1.5rem;
}
.seva-path h3 { font-size: 1.2rem; color: #fff; }

.seva-item {
  display: grid; grid-template-columns: 56px 1fr; gap: 1rem; align-items: start;
  padding: 1.25rem 0; border-bottom: 1px solid var(--line);
}
.seva-item .ico {
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  background: var(--navy); color: var(--gold-lt); font-size: 1.5rem;
}
.seva-item h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: .25rem; }
.seva-item p { margin: 0; color: var(--muted); }

/* ---------- Testimonials ---------- */
.testimonial {
  height: 100%; background: #fff; padding: 1.75rem; border-radius: var(--radius-sm);
  border-left: 4px solid var(--gold); box-shadow: 0 10px 28px rgba(18, 26, 63, .07);
}
.testimonial blockquote { font-style: italic; color: var(--ink); margin-bottom: 1rem; }
.testimonial figcaption { color: var(--muted); font-weight: 600; }

/* ---------- Gallery placeholders ---------- */
.gallery-grid {
  display: grid; gap: .9rem;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
}
.gallery-grid .tile:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-grid .tile:nth-child(4),
.gallery-grid .tile:nth-child(5),
.gallery-grid .tile:nth-child(6) { grid-column: span 2; }
.tile {
  position: relative; border-radius: var(--radius-sm); overflow: hidden;
  background: linear-gradient(145deg, var(--navy-2), var(--navy));
  display: grid; place-items: center; color: var(--gold-lt); text-align: center;
  padding: 1rem;
}
.tile { margin: 0; }
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.tile:hover img { transform: scale(1.07); }
.tile figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  padding: 2.5rem 1rem .8rem; text-align: left; color: #fff; font-weight: 600;
  background: linear-gradient(transparent, rgba(12, 18, 48, .85));
  transform: translateY(6px); transition: transform .4s ease;
}
.tile:hover figcaption { transform: none; }
@media (max-width: 767.98px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .gallery-grid .tile:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-grid .tile:nth-child(5),
  .gallery-grid .tile:nth-child(6) { grid-column: span 1; }
}

/* ---------- Steps (a real sequence) ---------- */
.steps { counter-reset: step; list-style: none; padding: 0; margin: 0; }
.steps li {
  position: relative; padding: 0 0 2rem 4.25rem;
}
.steps li::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: 0;
  width: 3rem; height: 3rem; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.25rem;
  background: var(--navy); color: var(--gold-lt); border: 2px solid var(--gold);
}
.steps li::after {
  content: ""; position: absolute; left: calc(1.5rem - 1px); top: 3.2rem; bottom: .2rem;
  width: 2px; background: repeating-linear-gradient(var(--gold) 0 6px, transparent 6px 12px);
}
.steps li:last-child::after { display: none; }
.steps h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: .2rem; padding-top: .55rem; }
.steps p { color: var(--muted); margin: 0; }
.bg-navy .steps h3 { color: var(--gold-lt); }
.bg-navy .steps p { color: rgba(255, 255, 255, .75); }

@media (min-width: 992px) {
  .steps.horizontal { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
  .steps.horizontal li { padding: 4.25rem 0 0 0; }
  .steps.horizontal li::after {
    left: 3.4rem; right: -1.2rem; top: calc(1.5rem - 1px); bottom: auto; width: auto; height: 2px;
    background: repeating-linear-gradient(90deg, var(--gold) 0 6px, transparent 6px 12px);
  }
  .steps.horizontal h3 { padding-top: 0; }
}

/* ---------- FAQ ---------- */
.faq .accordion-item { border: 0; border-bottom: 1px solid var(--line); background: transparent; }
.faq .accordion-button {
  font-family: var(--font-body); font-weight: 600; font-size: 1.08rem;
  color: var(--navy); background: transparent; box-shadow: none; padding: 1.15rem 0;
}
.faq .accordion-button:not(.collapsed) { color: var(--kumkum); }
.faq .accordion-button:focus-visible { outline: 3px solid var(--gold); }
.faq .accordion-button::after {
  background-image: none; content: "\F4FE"; font-family: "bootstrap-icons";
  color: var(--gold-dk); font-size: 1.2rem; width: auto; height: auto;
  transition: transform .3s ease;
}
.faq .accordion-button:not(.collapsed)::after { content: "\F2EA"; transform: none; }
.faq .accordion-body { padding: 0 0 1.25rem; color: var(--muted); }

/* ---------- Milestones timeline ---------- */
.timeline { position: relative; list-style: none; padding: 0 0 0 2rem; margin: 0; }
.timeline::before {
  content: ""; position: absolute; left: .45rem; top: .4rem; bottom: .4rem; width: 2px;
  background: linear-gradient(var(--c-crown), var(--c-third), var(--c-throat), var(--c-heart), var(--c-solar), var(--c-sacral), var(--c-root));
}
.timeline li { position: relative; padding-bottom: 1.75rem; }
.timeline li::before {
  content: ""; position: absolute; left: -2rem; top: .45rem;
  width: 1rem; height: 1rem; border-radius: 50%;
  background: var(--paper); border: 3px solid var(--gold);
}
.timeline .year { font-family: var(--font-display); font-weight: 700; color: var(--kumkum); }

/* ---------- Contact ---------- */
.contact-card {
  display: flex; gap: 1rem; align-items: center;
  padding: 1rem 1.15rem; border-radius: var(--radius-sm);
  background: #fff; border: 1px solid var(--line);
  text-decoration: none; color: var(--ink);
  transition: transform .25s ease, border-color .25s ease;
}
.contact-card:hover { transform: translateX(4px); border-color: var(--gold); color: var(--ink); }
.contact-card .ico {
  flex: 0 0 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  font-size: 1.35rem; color: #fff; background: var(--navy);
}
.contact-card .ico.wa { background: var(--wa); color: #073b1c; }
.contact-card .ico.call { background: var(--call); }
.contact-card small { display: block; color: var(--muted); }
.contact-card strong { font-size: 1.08rem; }

.form-panel {
  background: #fff; border-radius: var(--radius-lg); padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: 0 20px 50px rgba(18, 26, 63, .12); border-top: 5px solid var(--gold);
}
.form-panel h2 { color: var(--navy); font-size: 1.7rem; }
.form-label { font-weight: 600; color: var(--navy); margin-bottom: .3rem; }
.form-label .opt { font-weight: 400; color: var(--muted); font-size: .9rem; }
.form-control, .form-select {
  border-radius: var(--radius-sm); border: 1.5px solid #d9d3c4; padding: .7rem .9rem;
  font-size: 1rem; background-color: #fffdf9;
}
.form-control:focus, .form-select:focus {
  border-color: var(--gold); box-shadow: 0 0 0 .25rem rgba(214, 162, 58, .25);
}
.form-check-input:checked { background-color: var(--kumkum); border-color: var(--kumkum); }
.form-status { display: none; border-radius: var(--radius-sm); padding: 1rem 1.15rem; margin-top: 1rem; }
.form-status.show { display: block; }
.form-status.ok { background: #e9f7ee; color: #125a2b; border: 1px solid #9bd5ae; }
.form-status.err { background: #fdeceb; color: #8a1a16; border: 1px solid #f0a7a3; }
.privacy-note { color: var(--muted); font-size: .92rem; }
.hp-field { position: absolute; left: -9999px; }

.map-wrap {
  border-radius: var(--radius-lg); overflow: hidden; border: 3px solid var(--gold);
  aspect-ratio: 16 / 9;
}
@media (max-width: 575.98px) { .map-wrap { aspect-ratio: auto; height: 320px; } }
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

.hours-list { list-style: none; padding: 0; margin: 0; }
.hours-list li { display: flex; justify-content: space-between; padding: .45rem 0; border-bottom: 1px dashed var(--line); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; }
.cta-band h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
.cta-band .diya {
  width: 90px; margin-bottom: 1rem;
  animation: flicker 3s ease-in-out infinite;
}
@keyframes flicker {
  0%, 100% { filter: drop-shadow(0 0 14px rgba(243, 210, 122, .6)); }
  45% { filter: drop-shadow(0 0 26px rgba(255, 170, 60, .9)); }
  60% { filter: drop-shadow(0 0 10px rgba(243, 210, 122, .5)); }
}
.trust-line { color: rgba(255, 255, 255, .65); font-size: .95rem; }

/* ---------- Legal pages ---------- */
.legal h2 { font-size: 1.35rem; color: var(--navy); margin-top: 2rem; }
.legal ul { padding-left: 1.2rem; }
.legal .updated { color: var(--muted); font-style: italic; }
.legal .emergency {
  background: #fdeceb; border-left: 4px solid var(--kumkum);
  padding: 1rem 1.25rem; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-3); color: rgba(255, 255, 255, .74); font-size: .98rem; }
.site-footer h3 { font-size: 1.05rem; color: var(--gold-lt); margin-bottom: 1rem; }
.site-footer a { color: rgba(255, 255, 255, .78); text-decoration: none; }
.site-footer a:hover { color: var(--gold-lt); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { padding: .22rem 0; }
.footer-contact li { display: flex; gap: .6rem; padding: .3rem 0; }
.footer-contact .bi { color: var(--gold); }
.social { display: flex; gap: .6rem; margin-top: 1rem; }
.social a {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid var(--line); color: var(--gold-lt); font-size: 1.1rem;
}
.social a:hover { background: var(--gold); color: var(--navy); }
.footer-cta {
  background: var(--navy-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.footer-cta h3 { margin: 0; color: #fff; font-size: 1.3rem; }
.footer-disclaimer {
  font-size: .88rem; color: rgba(255, 255, 255, .6);
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.footer-disclaimer strong { color: var(--gold-lt); }
.bottom-bar { border-top: 1px solid rgba(255, 255, 255, .08); font-size: .9rem; }
.bottom-bar a { margin-left: 1rem; }

/* ---------- Floating contact buttons ---------- */
.float-actions {
  position: fixed; right: 18px; bottom: 22px; z-index: 1030;
  display: flex; flex-direction: column; gap: .75rem;
}
.float-btn {
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.6rem; text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .25);
  position: relative;
  transition: transform .25s ease;
}
.float-btn:hover { transform: scale(1.08); }
.float-btn.wa { background: var(--wa); color: #fff; }
.float-btn.call { background: var(--call); color: #fff; }
.float-btn.wa::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--wa); animation: ripple 2.2s ease-out infinite;
}
.float-btn .tip {
  position: absolute; right: 70px; white-space: nowrap;
  background: var(--navy); color: var(--gold-lt); font-size: .85rem;
  padding: .3rem .7rem; border-radius: 6px; opacity: 0; pointer-events: none;
  transform: translateX(8px); transition: all .25s ease;
}
.float-btn:hover .tip, .float-btn:focus-visible .tip { opacity: 1; transform: none; }
@keyframes ripple { from { transform: scale(1); opacity: .8; } to { transform: scale(1.6); opacity: 0; } }

.to-top {
  position: fixed; left: 18px; bottom: 22px; z-index: 1030;
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--gold);
  background: var(--navy); color: var(--gold-lt); font-size: 1.2rem;
  opacity: 0; visibility: hidden; transition: all .3s ease;
}
.to-top.show { opacity: 1; visibility: visible; }

/* Mobile bottom action bar */
.mobile-bar { display: none; }
@media (max-width: 767.98px) {
  .float-actions { display: none; }
  .to-top { bottom: 84px; left: auto; right: 14px; }
  .mobile-bar {
    display: grid; grid-template-columns: 1fr 1fr;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 1030;
    box-shadow: 0 -6px 20px rgba(0, 0, 0, .2);
    padding-bottom: env(safe-area-inset-bottom, 0);
    background: var(--navy);
  }
  .mobile-bar a {
    display: flex; align-items: center; justify-content: center; gap: .5rem;
    padding: .95rem .5rem; font-weight: 700; text-decoration: none; font-size: 1.05rem;
  }
  .mobile-bar .call { background: var(--call); color: #fff; }
  .mobile-bar .wa { background: var(--wa); color: #073b1c; }
  body { padding-bottom: 64px; }
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }

/* ---------- Responsive tweaks ---------- */
@media (max-width: 991.98px) {
  .site-nav .navbar-collapse {
    background: var(--navy); padding: .75rem 0 1rem; border-top: 1px solid var(--line); margin-top: .5rem;
  }
  .site-nav .nav-link::after { display: none; }
  .hero { text-align: center; }
  .hero .micro-trust, .hero .hero-ctas { justify-content: center; }
  .hero .measure { margin-inline: auto; }
  .page-hero-mark { width: 240px; right: -80px; }
}
@media (max-width: 575.98px) {
  body { font-size: 1.02rem; }
  .brand-name { font-size: .92rem; }
  .brand-sub { font-size: .72rem; }
  .brand img { height: 52px; width: auto; }
  .hero-ctas .btn { width: 100%; }
  .bottom-bar a { margin: 0 .5rem; }
}

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


/* ---------- Photos ---------- */
img.is-broken { opacity: 0; }

.page-hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .28; }
.page-hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(18, 26, 63, .95) 0%, rgba(18, 26, 63, .7) 55%, rgba(18, 26, 63, .45) 100%);
}
.cta-band .page-hero-bg::after, .quote-block .page-hero-bg::after { background: rgba(18, 26, 63, .72); }
.page-hero-bg.dim img { opacity: .16; }
.page-hero-bg.dim::after { background: rgba(18, 26, 63, .55); }
.page-hero .container, .quote-block > :not(.page-hero-bg) { position: relative; z-index: 1; }
.counters, .cta-band { position: relative; overflow: hidden; }

.photo-stack { position: relative; padding: 0 0 2.5rem 2.5rem; }
.photo-stack .main {
  display: block; width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: 0 25px 60px rgba(18, 26, 63, .25);
  background: var(--navy);
}
.photo-stack .inset {
  position: absolute; left: 0; bottom: 0; width: 46%; aspect-ratio: 1; object-fit: cover;
  border-radius: var(--radius-sm); border: 6px solid var(--paper);
  box-shadow: 0 15px 35px rgba(18, 26, 63, .3); background: var(--navy);
}
.photo-badge {
  position: absolute; right: 1rem; top: 1rem;
  background: var(--navy); color: #fff; border: 2px solid var(--gold);
  border-radius: var(--radius-sm); padding: .7rem 1rem; text-align: center; line-height: 1.1;
}
.photo-badge strong { display: block; font-family: var(--font-display); color: var(--gold-lt); font-size: 1.6rem; }
.photo-badge span { font-size: .85rem; }

.seva-photo {
  border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, var(--navy-2), var(--navy));
  box-shadow: 0 18px 45px rgba(18, 26, 63, .2);
}
.seva-photo.wide { aspect-ratio: 21 / 9; }
.seva-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 575.98px) { .seva-photo.wide { aspect-ratio: 4 / 3; } .photo-stack { padding: 0 0 2rem 1.5rem; } }

/* ---------- Counter icons ---------- */
.counters-title { text-align: center; color: var(--gold-lt); font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 1.5rem; }
.counter-icon {
  width: 68px; height: 68px; border-radius: 50%; margin: 0 auto .8rem;
  display: grid; place-items: center; font-size: 1.8rem;
  color: var(--navy); background: linear-gradient(180deg, var(--gold-lt), var(--gold));
  box-shadow: 0 0 0 6px rgba(243, 210, 122, .15), 0 10px 25px rgba(0, 0, 0, .25);
}
.value-icon {
  width: 72px; height: 72px; border-radius: 50%; display: inline-grid; place-items: center;
  font-size: 1.9rem; color: var(--gold-lt); background: var(--navy);
  border: 2px solid var(--gold);
}
