﻿   :root {
    --indigo: #1a0a3c;
    --deep-purple: #2d1060;
    --mid-purple: #5b2fc9;
    --violet: #7c3aed;
    --glow-purple: #a78bfa;
    --smoke: #c4b5fd;
    --gold: #d4a843;
    --gold-light: #f0c96a;
    --silver: #c0c8d8;
    --text-main: #f0eaff;
    --text-muted: #b8a8d8;
    --card-bg: rgba(45, 16, 96, 0.55);
    --card-border: rgba(124, 58, 237, 0.3);
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--indigo);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
  }

  /* ── STAR FIELD ── */
  body::before {
    content: '';
    position: fixed; inset: 0;
    background-image:
      radial-gradient(1px 1px at 10% 15%, rgba(255,255,255,0.6) 0%, transparent 100%),
      radial-gradient(1px 1px at 30% 40%, rgba(255,255,255,0.4) 0%, transparent 100%),
      radial-gradient(1px 1px at 55% 20%, rgba(255,255,255,0.5) 0%, transparent 100%),
      radial-gradient(1px 1px at 75% 60%, rgba(255,255,255,0.3) 0%, transparent 100%),
      radial-gradient(1px 1px at 90% 10%, rgba(255,255,255,0.6) 0%, transparent 100%),
      radial-gradient(1px 1px at 20% 75%, rgba(255,255,255,0.4) 0%, transparent 100%),
      radial-gradient(1px 1px at 65% 85%, rgba(255,255,255,0.5) 0%, transparent 100%),
      radial-gradient(1px 1px at 45% 55%, rgba(255,255,255,0.3) 0%, transparent 100%),
      radial-gradient(1px 1px at 82% 35%, rgba(255,255,255,0.5) 0%, transparent 100%),
      radial-gradient(2px 2px at 5% 50%, rgba(200,180,255,0.4) 0%, transparent 100%),
      radial-gradient(2px 2px at 95% 75%, rgba(200,180,255,0.4) 0%, transparent 100%),
      radial-gradient(2px 2px at 38% 92%, rgba(200,180,255,0.3) 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
  }

  /* ── NAVBAR ── */
  .navbar {
    background: rgba(26, 10, 60, 0.92) !important;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--card-border);
    position: sticky;
    top: 0;
    z-index: 1030;
  }

  .nav-logo .planet {
    width: 38px; height: 38px;
    background: radial-gradient(circle at 35% 35%, #7c3aed, #1a0a3c);
    border-radius: 50%;
    border: 2px solid var(--gold);
    box-shadow: 0 0 12px rgba(124,58,237,0.6);
    position: relative;
    flex-shrink: 0;
  }
  .nav-logo .planet::after {
    content: '';
    position: absolute;
    top: 50%; left: -20%; right: -20%;
    height: 6px;
    border: 2px solid rgba(212,168,67,0.5);
    border-radius: 50%;
    transform: translateY(-50%) rotateX(75deg);
  }
  .nav-logo .brand-name {
    font-family: 'Cinzel', serif;
    font-size: 1.25rem; font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 0.04em;
    line-height: 1.2;
  }
  .nav-logo .brand-sub {
    font-size: 0.65rem; font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .navbar-nav .nav-link {
    color: var(--text-muted) !important;
    font-size: 0.88rem; font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.2s;
  }
  .navbar-nav .nav-link:hover { color: var(--gold-light) !important; }

  .nav-cta {
    background: linear-gradient(135deg, #fffbe6 0%, #f5d06a 14%, #d4a843 30%, #b8860b 48%, #d4a843 62%, #f0c96a 76%, #a87820 100%);
    color: #1a0a3c !important;
    padding: 0.5rem 1.3rem;
    border-radius: 9999px;
    font-weight: 600; font-size: 0.875rem;
    text-decoration: none;
    transition: filter 0.2s;
  }
  .nav-cta:hover { filter: brightness(1.12); }

  .navbar-toggler {
    border-color: var(--card-border);
    color: var(--text-main);
  }
  .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='rgba%28240,234,255,0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }

  /* ── TICKER ── */
  .ticker {
    background: linear-gradient(90deg, var(--deep-purple), rgba(91,47,201,0.5), var(--deep-purple));
    border-bottom: 1px solid rgba(167,139,250,0.2);
    padding: 0.45rem 0;
    overflow: hidden;
    position: relative; z-index: 1;
  }
  .ticker-track {
    display: flex; gap: 3rem;
    animation: ticker-scroll 25s linear infinite;
    white-space: nowrap;
  }
  .ticker-item {
    font-size: 0.78rem; color: var(--smoke);
    letter-spacing: 0.05em;
    display: flex; align-items: center; gap: 0.5rem;
  }
  .ticker-dot { color: var(--gold); }
  @keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* ── HERO SLIDER ── */
  .hero-slider {
    position: relative; z-index: 1;
    min-height: 90vh;
    overflow: hidden;
  }

  .hero-slide::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(
      135deg,
      rgba(10, 5, 30, 0.90) 0%,
      rgba(26, 10, 60, 0.80) 40%,
      rgba(45, 16, 96, 0.62) 70%,
      rgba(10, 5, 30, 0.88) 100%
    );
    pointer-events: none;
  }

  .hero-slide {
    position: absolute; inset: 0;
    padding: 5rem 0 6rem;
    display: flex;
    align-items: center;
    overflow: hidden;
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.75s ease, transform 0.75s ease;
    pointer-events: none;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }
  .hero-slide .container { position: relative; z-index: 1; }
  .hero-slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
  }
  .hero-slide.exit {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.75s ease, transform 0.75s ease;
    position: absolute; inset: 0;
    pointer-events: none;
  }

  /* Slider arrows */
  .slider-arrow {
    position: absolute; top: 50%; z-index: 10;
    transform: translateY(-50%);
    background: rgba(45,16,96,0.7);
    border: 1px solid var(--card-border);
    color: var(--smoke);
    width: 46px; height: 46px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    backdrop-filter: blur(8px);
  }
  .slider-arrow:hover { background: rgba(91,47,201,0.7); border-color: var(--glow-purple); color: #fff; }
  .slider-prev { left: 1.2rem; }
  .slider-next { right: 1.2rem; }

  /* Slider dots */
  .slider-dots {
    position: absolute; bottom: 2rem; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 0.6rem;
    z-index: 10;
  }
  .slider-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    border: 1.5px solid rgba(167,139,250,0.4);
    background: transparent;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s, width 0.3s;
    padding: 0;
  }
  .slider-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    width: 24px;
    border-radius: 4px;
  }

  /* Slider progress bar */
  .slider-progress {
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 2px;
    background: rgba(124,58,237,0.15);
    z-index: 10;
  }
  .slider-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--glow-purple));
    width: 0%;
    transition: width 5s linear;
  }
  .slider-progress-bar.running { width: 100%; }

  .hero-bg-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
  }
  .hero-bg-orb.orb1 {
    width: 600px; height: 600px;
    top: -150px; right: -100px;
    background: radial-gradient(circle, rgba(91,47,201,0.35) 0%, transparent 70%);
  }
  .hero-bg-orb.orb2 {
    width: 350px; height: 350px;
    bottom: -50px; left: -80px;
    background: radial-gradient(circle, rgba(124,58,237,0.2) 0%, transparent 70%);
  }

  /* ── RAHU-KETU ECLIPSE SYSTEM ── */

  /* fills .hero-visual (380×380) exactly — no double-positioning */
  .rk-eclipse-system {
    position: absolute; inset: 0;
    z-index: 2;
  }

  /* Static orbit track — same inset:0 as serpent ring, Moon travels along this */
  .rk-orbit-path {
    position: absolute; inset: 0;
    border-radius: 50%;
    border: 1px dashed rgba(192, 210, 230, 0.2);
    box-shadow: 0 0 6px rgba(192, 210, 230, 0.06);
  }

  /* Outer serpent ring — ecliptic, dual purple/gold border spins */
  .rk-serpent-ring {
    position: absolute; inset: 0;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color:    rgba(124,58,237,0.7);
    border-right-color:  rgba(212,168,67,0.45);
    border-bottom-color: rgba(124,58,237,0.3);
    border-left-color:   rgba(212,168,67,0.7);
    animation: spin-slow 22s linear infinite;
  }

  /* Inner dashed ring — counter-spins */
  .rk-inner-ring {
    position: absolute; inset: 20%;
    border-radius: 50%;
    border: 1px dashed rgba(212,168,67,0.18);
    animation: spin-slow 14s linear infinite reverse;
  }

  /* Sun — Surya, true center, gold pulsing glow + expanding corona rings */
  .rk-sun {
    position: absolute;
    width: 82px; height: 82px;
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at 38% 35%, #fffde0 0%, #ffd700 28%, #ff8c00 60%, #b04000 100%);
    animation: sun-pulse 3.5s ease-in-out infinite, sun-during-eclipse 8s ease-in-out infinite;
    z-index: 3;
  }
  /* Expanding corona rings via pseudo-elements */
  .rk-sun::before,
  .rk-sun::after {
    content: '';
    position: absolute; border-radius: 50%;
    top: 50%; left: 50%;
  }
  .rk-sun::before {
    width: 116px; height: 116px;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255,200,0,0.3);
    animation: corona-ring 3.5s ease-in-out infinite;
  }
  .rk-sun::after {
    width: 146px; height: 146px;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255,160,0,0.15);
    animation: corona-ring 3.5s ease-in-out infinite 0.8s;
  }

  /* Rahu shadow — sweeps in from left, eclipses Sun at peak */
  .rk-rahu-shadow {
    position: absolute;
    width: 82px; height: 82px;
    border-radius: 50%;
    top: 50%; left: 50%;
    background: radial-gradient(circle at 62% 48%, #3b1080 0%, #1a0a3c 50%, #0a0520 100%);
    border: 1.5px solid rgba(124,58,237,0.35);
    animation: rahu-eclipse 8s ease-in-out infinite;
    z-index: 4;
  }

  /* Ketu node — fixed right side (true lunar node, opposite Rahu) */
  .rk-ketu-dot {
    position: absolute;
    width: 14px; height: 14px;
    border-radius: 50%;
    top: 50%; right: 10%;
    transform: translateY(-50%);
    background: radial-gradient(circle, #a78bfa, #5b2fc9);
    box-shadow: 0 0 12px rgba(167,139,250,0.9), 0 0 24px rgba(124,58,237,0.5);
    animation: ketu-glow 2.5s ease-in-out infinite;
    z-index: 3;
  }
  /* Ketu comet stream */
  .rk-ketu-stream {
    position: absolute;
    height: 3px; width: 48px;
    top: 50%; right: calc(10% + 14px);
    transform: translateY(-50%);
    background: linear-gradient(to left, rgba(167,139,250,0.85), rgba(124,58,237,0.3), transparent);
    border-radius: 2px;
    z-index: 3;
  }

  /* Moon crescent — orbits from centre exactly like slide-2 mandala dots */
  .rk-moon {
    position: absolute;
    width: 38px; height: 38px;
    border-radius: 50%;
    top: 50%; left: 50%;
    background: transparent;
    box-shadow: inset -11px 2px 0 2px rgba(210,225,238,0.92);
    filter: drop-shadow(0 0 8px rgba(190,210,230,0.65));
    animation:
      moon-orbit 12s linear infinite,
      moon-color-cycle 12s linear infinite;
    z-index: 5;
  }

  /* ── KEYFRAMES ── */

  /* Rahu sweeps from far left into the Sun, holds at full eclipse, retreats */
  @keyframes rahu-eclipse {
    0%   { transform: translate(calc(-50% - 115px), -50%);
           box-shadow: 0 0 8px rgba(91,47,201,0.3); }
    45%  { transform: translate(calc(-50% + 6px), -50%);
           box-shadow: 0 0 32px rgba(91,47,201,1), inset -10px 0 28px rgba(124,58,237,0.85); }
    55%  { transform: translate(calc(-50% + 6px), -50%);
           box-shadow: 0 0 32px rgba(91,47,201,1), inset -10px 0 28px rgba(124,58,237,0.85); }
    100% { transform: translate(calc(-50% - 115px), -50%);
           box-shadow: 0 0 8px rgba(91,47,201,0.3); }
  }

  /* Sun pulses and dims when Rahu is at peak (45-55% of 8s) */
  @keyframes sun-pulse {
    0%, 100% { box-shadow: 0 0 22px rgba(255,200,0,0.95), 0 0 50px rgba(255,140,0,0.65), 0 0 88px rgba(200,80,0,0.3); }
    50%       { box-shadow: 0 0 32px rgba(255,220,0,1),    0 0 68px rgba(255,160,0,0.78), 0 0 108px rgba(200,80,0,0.42); }
  }
  @keyframes sun-during-eclipse {
    0%, 38%    { opacity: 1; filter: brightness(1); }
    50%        { opacity: 0.22; filter: brightness(0.28) hue-rotate(-10deg); }
    62%, 100%  { opacity: 1; filter: brightness(1); }
  }

  /* Corona rings expand and fade */
  @keyframes corona-ring {
    0%, 100% { transform: translate(-50%, -50%) scale(1);    opacity: 0.65; }
    50%      { transform: translate(-50%, -50%) scale(1.22); opacity: 0; }
  }

  /* Moon: silver → blood-red at 25% (Ketu, right side) → near-invisible at 75% (Rahu, left side) */
  @keyframes moon-color-cycle {
    0%   { box-shadow: inset -11px 2px 0 2px rgba(210,225,238,0.92);
           filter: drop-shadow(0 0 8px rgba(190,210,230,0.65)); opacity: 1; }
    20%  { box-shadow: inset -11px 2px 0 2px rgba(210,225,238,0.92);
           filter: drop-shadow(0 0 8px rgba(190,210,230,0.65)); opacity: 1; }
    25%  { box-shadow: inset -11px 2px 0 2px rgba(220,45,15,0.92);
           filter: drop-shadow(0 0 14px rgba(200,30,10,0.9)); opacity: 0.9; }
    30%  { box-shadow: inset -11px 2px 0 2px rgba(210,225,238,0.92);
           filter: drop-shadow(0 0 8px rgba(190,210,230,0.65)); opacity: 1; }
    70%  { box-shadow: inset -11px 2px 0 2px rgba(210,225,238,0.92);
           filter: drop-shadow(0 0 8px rgba(190,210,230,0.65)); opacity: 1; }
    75%  { box-shadow: inset -11px 2px 0 2px rgba(70,30,90,0.3);
           filter: drop-shadow(0 0 4px rgba(91,47,201,0.4)); opacity: 0.12; }
    80%  { box-shadow: inset -11px 2px 0 2px rgba(210,225,238,0.92);
           filter: drop-shadow(0 0 8px rgba(190,210,230,0.65)); opacity: 1; }
    100% { box-shadow: inset -11px 2px 0 2px rgba(210,225,238,0.92);
           filter: drop-shadow(0 0 8px rgba(190,210,230,0.65)); opacity: 1; }
  }

  /* Moon orbits along the serpent ring path — 190px radius (matches inset:0 ring) */
  @keyframes moon-orbit {
    from { transform: translate(-50%, -50%) rotate(0deg)   translateX(190px) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg) translateX(190px) rotate(-360deg); }
  }

  @keyframes ketu-glow {
    0%, 100% { box-shadow: 0 0 12px rgba(167,139,250,0.9), 0 0 24px rgba(124,58,237,0.5); }
    50%       { box-shadow: 0 0 20px rgba(167,139,250,1),   0 0 40px rgba(124,58,237,0.82); }
  }

  /* ── SLIDE 2 — Animated ॐ Mandala ── */
  .mandir-mandala {
    position: absolute;
    right: 4%; top: 50%;
    transform: translateY(-50%);
    width: 360px; height: 360px;
    z-index: 2;
  }
  .mm-ring {
    position: absolute; border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
  }
  .mm-ring.mr1 {
    width: 320px; height: 320px;
    border: 2px solid transparent;
    border-top-color: rgba(212,168,67,0.75);
    border-right-color: rgba(212,168,67,0.25);
    border-bottom-color: rgba(212,168,67,0.55);
    border-left-color: rgba(212,168,67,0.2);
    animation: spin-slow 18s linear infinite;
  }
  .mm-ring.mr2 {
    width: 230px; height: 230px;
    border: 1.5px solid transparent;
    border-top-color: rgba(167,139,250,0.55);
    border-right-color: rgba(167,139,250,0.18);
    border-bottom-color: rgba(167,139,250,0.4);
    border-left-color: rgba(167,139,250,0.12);
    animation: spin-slow 12s linear infinite reverse;
  }
  .mm-ring.mr3 {
    width: 148px; height: 148px;
    border: 1.5px solid transparent;
    border-top-color: rgba(212,168,67,0.55);
    border-left-color: rgba(212,168,67,0.2);
    border-bottom-color: rgba(212,168,67,0.4);
    border-right-color: rgba(212,168,67,0.12);
    animation: spin-slow 8s linear infinite;
  }
  .mm-center {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 96px; height: 96px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,168,67,0.18) 0%, rgba(26,10,60,0.85) 70%);
    border: 1.5px solid rgba(212,168,67,0.38);
    display: flex; align-items: center; justify-content: center;
    animation: mm-glow 3s ease-in-out infinite;
  }
  .mm-om {
    font-family: serif;
    font-size: 2.8rem; line-height: 1;
    color: var(--gold-light);
    animation: mm-om-pulse 3s ease-in-out infinite;
  }
  .mm-dot {
    position: absolute;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 8px rgba(212,168,67,0.9);
    top: 50%; left: 50%;
  }
  .md1 { animation: dot-orbit 18s linear infinite 0s; }
  .md2 { animation: dot-orbit 18s linear infinite -4.5s; }
  .md3 { animation: dot-orbit 18s linear infinite -9s; }
  .md4 { animation: dot-orbit 18s linear infinite -13.5s; }

  @keyframes dot-orbit {
    from { transform: translate(-50%,-50%) rotate(0deg)   translateX(160px) rotate(0deg); }
    to   { transform: translate(-50%,-50%) rotate(360deg) translateX(160px) rotate(-360deg); }
  }
  @keyframes mm-glow {
    0%, 100% { box-shadow: 0 0 22px rgba(212,168,67,0.2),  0 0 45px rgba(212,168,67,0.08); }
    50%       { box-shadow: 0 0 35px rgba(212,168,67,0.38), 0 0 70px rgba(212,168,67,0.16); }
  }
  @keyframes mm-om-pulse {
    0%, 100% { text-shadow: 0 0 16px rgba(212,168,67,0.9), 0 0 32px rgba(212,168,67,0.4); }
    50%       { text-shadow: 0 0 26px rgba(240,201,106,1),  0 0 52px rgba(212,168,67,0.6); }
  }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(212,168,67,0.12);
    border: 1px solid rgba(212,168,67,0.35);
    color: var(--gold-light);
    font-size: 0.78rem; font-weight: 500;
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
  }

  .hero h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.18;
    color: #fff;
    margin-bottom: 1.2rem;
  }
  .hero h1 span { color: var(--gold-light); }

  .hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 2rem;
  }

  .trust-item {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.82rem; color: var(--text-muted);
  }
  .trust-icon { color: var(--gold); font-size: 1rem; }
  .trust-num { font-weight: 700; color: var(--text-main); font-size: 0.95rem; }

  /* Planet Visual */
  .hero-visual {
    position: absolute;
    right: 5%; top: 50%;
    transform: translateY(-50%);
    width: 380px; height: 380px;
    z-index: 2;
  }
  .rahu-planet {
    width: 280px; height: 280px;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
  }
  .planet-body {
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #4c1d95, #1a0a3c 60%, #0a0520);
    border: 2px solid rgba(124,58,237,0.4);
    box-shadow: 0 0 40px rgba(91,47,201,0.5), inset 0 0 30px rgba(0,0,0,0.5);
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
  }
  .planet-ring {
    width: 280px; height: 80px;
    border: 3px solid transparent;
    border-top-color: rgba(212,168,67,0.5);
    border-bottom-color: rgba(212,168,67,0.3);
    border-radius: 50%;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) rotateX(70deg);
  }
  .orbit-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--gold-light);
    box-shadow: 0 0 8px var(--gold);
    position: absolute;
    top: 50%; left: 50%;
    animation: orbit 6s linear infinite;
  }
  .orbit-dot:nth-child(3) { animation-delay: -2s; }
  .orbit-dot:nth-child(4) { width: 6px; height: 6px; animation-delay: -4s; animation-duration: 9s; }
  @keyframes orbit {
    0% { transform: rotate(0deg) translateX(130px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(130px) rotate(-360deg); }
  }
  .glyph-ring {
    width: 320px; height: 320px;
    border: 1px solid rgba(167,139,250,0.12);
    border-radius: 50%;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: spin-slow 30s linear infinite;
  }
  @keyframes spin-slow {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
  }


  .ab-breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; color: var(--text-muted);
  margin-bottom: 1rem;
}
.ab-breadcrumb a {
  color: var(--text-muted); text-decoration: none;
  transition: color 0.2s;
}
.ab-breadcrumb a:hover { color: var(--gold); }

  /* ── BUTTONS ── */
  .btn-primary-gold {
    background: linear-gradient(135deg, #fffbe6 0%, #f5d06a 14%, #d4a843 30%, #b8860b 48%, #d4a843 62%, #f0c96a 76%, #a87820 100%);
    color: #1a0a3c;
    padding: 0.8rem 1.8rem;
    border-radius: 9999px;
    font-weight: 700; font-size: 0.95rem;
    text-decoration: none;
    border: none; cursor: pointer;
    transition: filter 0.2s, transform 0.1s;
    display: inline-flex; align-items: center; gap: 0.5rem;
  }
  .btn-primary-gold:hover { filter: brightness(1.12); transform: translateY(-1px); color: #1a0a3c; }
  .btn-primary-gold:active { transform: scale(0.98); }

  .btn-ghost-purple {
    background: transparent;
    border: 1.5px solid rgba(167,139,250,0.5);
    color: var(--smoke);
    padding: 0.8rem 1.6rem;
    border-radius: 9999px;
    font-weight: 500; font-size: 0.95rem;
    text-decoration: none; cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    display: inline-flex; align-items: center; gap: 0.5rem;
  }
  .btn-ghost-purple:hover { border-color: var(--smoke); color: var(--text-main); }

  /* ── TRUST BAR ── */
  .trust-bar {
    position: relative; z-index: 1;
    background: rgba(45,16,96,0.5);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
    padding: 1.2rem 0;
  }
  .tbar-item {
    display: flex; align-items: center; gap: 0.75rem;
    font-size: 0.88rem; color: var(--text-muted);
  }
  .tbar-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(124,58,237,0.2);
    border: 1px solid var(--card-border);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
  }
  .tbar-item strong { color: var(--text-main); font-weight: 600; }

  /* ── SECTION COMMON ── */
  section { position: relative; z-index: 1; padding: 5rem 0; }

  .section-eyebrow {
    font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.6rem;
    display: flex; align-items: center; gap: 0.5rem;
    justify-content: center;
  }
  .section-eyebrow::before, .section-eyebrow::after {
    content: '—';
    color: rgba(212,168,67,0.4);
  }
  .section-eyebrow.text-start { justify-content: flex-start; }

  .section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 600; color: var(--text-main);
    margin-bottom: 0.75rem;
  }

  .section-sub {
    color: var(--text-muted);
    font-size: 1rem; line-height: 1.75;
  }

  /* ── PUJA CARDS ── */
  .puja-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border) !important;
    border-radius: 14px !important;
    overflow: hidden;
    transition: border-color 0.25s, transform 0.2s;
    height: 100%;
  }
  .puja-card:hover { border-color: rgba(167,139,250,0.55) !important; transform: translateY(-3px); }

  .puja-card-img {
    height: 160px;
    background: linear-gradient(135deg, var(--deep-purple) 0%, rgba(124,58,237,0.3) 100%);
    display: flex; align-items: center; justify-content: center;
    font-size: 3.5rem;
    position: relative;
    overflow: hidden;
  }
  .puja-card-img::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(26,10,60,0.8));
  }

  .puja-badge {
    position: absolute; top: 10px; left: 10px; z-index: 1;
    background: linear-gradient(135deg, #fffbe6 0%, #f5d06a 14%, #d4a843 30%, #b8860b 48%, #d4a843 62%, #f0c96a 76%, #a87820 100%);
    color: #1a0a3c;
    font-size: 0.68rem; font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .puja-card-title {
    font-family: 'Cinzel', serif;
    font-size: 1rem; font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.4rem;
    line-height: 1.35;
  }
  .puja-card-desc {
    font-size: 0.83rem; color: var(--text-muted);
    line-height: 1.6; margin-bottom: 1rem;
  }
  .puja-meta-item {
    font-size: 0.78rem; color: var(--text-muted);
    display: flex; align-items: center; gap: 0.3rem;
  }
  .puja-meta-item span { color: var(--smoke); }

  .puja-card-footer {
    border-top: 1px solid rgba(124,58,237,0.2);
    padding-top: 1rem;
  }
  .puja-price {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem; font-weight: 700;
    color: var(--gold-light);
  }
  .puja-price small { font-family: 'Inter', sans-serif; font-size: 0.75rem; color: var(--text-muted); font-weight: 400; }

  .btn-book {
    background: var(--violet);
    color: #fff !important;
    padding: 0.5rem 1.2rem;
    border-radius: 9999px;
    font-weight: 600; font-size: 0.82rem;
    border: none; cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
  }
  .btn-book:hover { background: var(--mid-purple); }

  /* ── SIGNS SECTION ── */
  .signs-section {
    padding: 5.5rem 0;
    position: relative;
    overflow: hidden;
  }
  .signs-section::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 55% 70% at 22% 50%, rgba(130,15,15,0.1) 0%, transparent 65%),
      radial-gradient(ellipse 50% 60% at 80% 50%, rgba(60,20,100,0.06) 0%, transparent 60%);
    pointer-events: none;
  }

  /* Warning badge */
  .signs-warning-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: rgba(180,30,30,0.12);
    border: 1px solid rgba(210,50,50,0.3);
    border-radius: 20px;
    color: rgba(230,90,90,0.9);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
  }

  /* ── RAHU ORB ── */
  .rahu-orb-wrap {
    position: relative;
    width: 340px; height: 340px;
    margin: 0 auto;
  }
  /* Ambient glow behind orb */
  .ro-atmosphere {
    position: absolute;
    inset: -30px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(170,15,15,0.14) 0%, transparent 65%);
    animation: ro-atm 5s ease-in-out infinite;
  }
  @keyframes ro-atm {
    0%,100% { opacity: 0.6; transform: scale(0.95); }
    50%      { opacity: 1;   transform: scale(1.05); }
  }
  /* The dark planet sphere */
  .ro-planet {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 158px; height: 158px;
    border-radius: 50%;
    background: radial-gradient(circle at 32% 32%,
      rgba(55,18,72,0.95) 0%,
      rgba(10,4,24,1) 50%,
      rgba(0,0,0,1) 100%);
    box-shadow:
      inset -20px -20px 40px rgba(0,0,0,0.95),
      inset 6px 6px 20px rgba(110,40,40,0.12),
      0 0 50px rgba(160,20,20,0.4),
      0 0 120px rgba(100,8,8,0.18);
    z-index: 5;
    display: flex; align-items: center; justify-content: center;
    animation: ro-planet-glow 6s ease-in-out infinite;
  }
  @keyframes ro-planet-glow {
    0%,100% { box-shadow: inset -20px -20px 40px rgba(0,0,0,0.95), inset 6px 6px 20px rgba(110,40,40,0.12), 0 0 50px rgba(160,20,20,0.4), 0 0 120px rgba(100,8,8,0.18); }
    50%      { box-shadow: inset -20px -20px 40px rgba(0,0,0,0.95), inset 6px 6px 20px rgba(110,40,40,0.12), 0 0 70px rgba(190,20,20,0.55), 0 0 160px rgba(120,8,8,0.25); }
  }
  .ro-planet-surface {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 2px;
  }
  .ro-devanagari {
    font-family: serif;
    font-size: 2.4rem;
    color: rgba(212,168,67,0.75);
    text-shadow: 0 0 24px rgba(212,168,67,0.5);
    line-height: 1;
  }
  .ro-planet-sub {
    font-size: 0.45rem;
    font-family: 'Cinzel', serif;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(212,168,67,0.3);
  }
  /* Pulsing corona rings */
  .ro-corona {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    border-radius: 50%;
    animation: ro-corona-beat 3s ease-in-out infinite;
  }
  .ro-c1 { width: 188px; height: 188px; border: 1.5px solid rgba(200,40,40,0.45); animation-delay: 0s; }
  .ro-c2 { width: 236px; height: 236px; border: 1px solid rgba(170,25,25,0.25); animation-delay: -1s; }
  .ro-c3 { width: 284px; height: 284px; border: 1px solid rgba(140,15,15,0.12); animation-delay: -2s; }
  @keyframes ro-corona-beat {
    0%,100% { opacity: 1; }
    50%      { opacity: 0.25; }
  }
  /* Dual orbit rings */
  .ro-orbit-ring {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    border-radius: 50%;
  }
  .ro-or1 {
    width: 310px; height: 310px;
    border: 1px dashed rgba(167,139,250,0.14);
    animation: ro-spin 28s linear infinite;
  }
  .ro-or2 {
    width: 260px; height: 260px;
    border: 1px dashed rgba(167,139,250,0.08);
    animation: ro-spin 18s linear infinite reverse;
  }
  @keyframes ro-spin { to { transform: translate(-50%,-50%) rotate(360deg); } }
  /* Orbiting shadow nodes */
  .ro-node {
    position: absolute;
    top: 50%; left: 50%;
    border-radius: 50%;
    background: rgba(210,55,55,0.9);
    box-shadow: 0 0 10px rgba(210,55,55,0.7);
    animation: ro-node-spin 28s linear infinite;
  }
  .rn-1 { width: 9px; height: 9px; margin: -4.5px 0 0 -4.5px; animation-delay: 0s; }
  .rn-2 { width: 7px; height: 7px; margin: -3.5px 0 0 -3.5px; animation-delay: calc(-28s / 3); background: rgba(167,139,250,0.9); box-shadow: 0 0 10px rgba(167,139,250,0.6); }
  .rn-3 { width: 5px; height: 5px; margin: -2.5px 0 0 -2.5px; animation-delay: calc(-56s / 3); }
  @keyframes ro-node-spin {
    from { transform: rotate(0deg)   translateX(155px) rotate(0deg); }
    to   { transform: rotate(360deg) translateX(155px) rotate(-360deg); }
  }
  /* Orb label */
  .rahu-orb-label {
    display: flex; align-items: center; gap: 0.55rem;
    margin-top: 1.25rem;
    opacity: 0.42;
    font-family: 'Cinzel', serif;
    font-size: 0.62rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--text-muted);
  }
  .rahu-orb-label-dot { font-size: 0.45rem; }

  /* ── SIGN ROWS ── */
  .signs-rows { margin-bottom: 0; }
  .sign-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.05rem 0 1.05rem 0;
    border-bottom: 1px solid rgba(124,58,237,0.08);
    transition: padding-left 0.25s;
    cursor: default;
  }
  .sign-row:last-child { border-bottom: none; }
  .sign-row:hover { padding-left: 0.4rem; }
  .sign-row:hover .sign-row-num { border-color: rgba(210,50,50,0.5); background: rgba(210,50,50,0.1); }
  .sign-row:hover .sign-row-num span { color: rgba(235,80,80,0.9); }
  .sign-row:hover .sign-row-fill { filter: brightness(1.25); }
  .sign-row-num {
    flex-shrink: 0;
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(124,58,237,0.22);
    display: flex; align-items: center; justify-content: center;
    transition: border-color 0.3s, background 0.3s;
    margin-top: 1px;
  }
  .sign-row-num span {
    font-family: 'Cinzel', serif;
    font-size: 0.68rem;
    font-weight: 700;
    color: rgba(167,139,250,0.45);
    transition: color 0.3s;
  }
  .sign-row-icon {
    flex-shrink: 0;
    font-size: 1.4rem;
    width: 36px;
    display: flex; align-items: flex-start; justify-content: center;
    padding-top: 1px;
  }
  .sign-row-body { flex: 1; min-width: 0; }
  .sign-row-title {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.25rem;
    line-height: 1.35;
  }
  .sign-row-desc {
    font-size: 0.77rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 0.55rem;
  }
  .sign-row-bar {
    height: 2px;
    background: rgba(124,58,237,0.1);
    border-radius: 2px;
    overflow: hidden;
  }
  .sign-row-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, rgba(190,35,35,0.75) 0%, rgba(230,80,50,0.4) 100%);
    border-radius: 2px;
    transition: width 1.3s cubic-bezier(0.4,0,0.2,1), filter 0.3s;
  }
  .signs-section.signs-anim .sign-row-fill { width: var(--w); }

  /* Callout strip */
  .signs-callout {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.2rem 1.5rem;
    background: rgba(180,30,30,0.07);
    border: 1px solid rgba(200,50,50,0.16);
    border-left: 4px solid rgba(210,60,60,0.6);
    border-radius: 12px;
  }
  .signs-callout-icon { font-size: 1.8rem; flex-shrink: 0; }
  .signs-callout-body { flex: 1; }
  .signs-callout-body p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.6; margin: 0; }
  .signs-callout-body strong { color: var(--text-main); }
  @media (max-width: 575px) { .signs-callout { flex-direction: column; text-align: center; } }

  /* ── PROCESS ── */
  .process-step {
    padding: 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    position: relative;
    height: 100%;
  }
  .process-step-num {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem; font-weight: 700;
    color: rgba(167,139,250,0.12);
    position: absolute; top: 0.8rem; right: 1rem;
    line-height: 1;
  }
  .step-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: rgba(124,58,237,0.25);
    border: 1px solid rgba(124,58,237,0.35);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .process-step h4 { font-size: 1rem; font-weight: 600; color: var(--text-main); margin-bottom: 0.4rem; }
  .process-step p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

  /* ── MANTRA ── */
  .mantra-section {
    background: linear-gradient(135deg, rgba(45,16,96,0.6) 0%, rgba(26,10,60,0.8) 100%);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
  }
  .mantra-card {
    background: rgba(91,47,201,0.12);
    border: 1px solid rgba(167,139,250,0.25);
    border-radius: 14px;
    padding: 2.5rem;
    text-align: center;
  }
  .mantra-text {
    font-family: 'Cinzel', serif;
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    color: var(--gold-light);
    line-height: 2;
    letter-spacing: 0.03em;
    margin-bottom: 1rem;
  }
  .mantra-transliteration { font-size: 0.85rem; color: var(--text-muted); font-style: italic; line-height: 1.8; margin-bottom: 1rem; }
  .mantra-meaning { font-size: 0.88rem; color: var(--smoke); line-height: 1.75; margin: 0; }

  .mantra-info-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    padding: 1.2rem;
    text-align: center;
    height: 100%;
  }
  .mantra-info-card h4 { font-size: 0.9rem; color: var(--text-main); margin-bottom: 0.3rem; }
  .mantra-info-card p { font-size: 0.82rem; color: var(--text-muted); margin: 0; }

  /* ── BENEFITS ── */
  .benefits-section {
    padding: 5rem 0;
    background: #04091f;
  }
  .benefit-item {
    padding: 1.3rem;
    background: #070e30;
    border: 1px solid rgba(30,60,160,0.25);
    border-radius: 10px;
    display: flex; gap: 1rem;
    transition: border-color 0.2s, transform 0.15s;
    height: 100%;
  }
  .benefit-item:hover { border-color: rgba(60,100,220,0.5); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(4,10,38,0.6); }
  .benefit-emoji { font-size: 1.8rem; flex-shrink: 0; }
  .benefit-item h4 { font-size: 0.92rem; font-weight: 600; color: var(--text-main); margin-bottom: 0.3rem; }
  .benefit-item p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

  /* ── TESTIMONIALS ── */
  .testimonials-section { background: rgba(45,16,96,0.25); }

  .testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 1.35rem 1.4rem 1.1rem;
    height: 100%;
    display: flex; flex-direction: column;
    transition: transform 0.25s, box-shadow 0.25s;
  }
  .testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(10,4,28,0.5);
  }
  /* Header row: avatar + name + location */
  .tc-header {
    display: flex; align-items: center; gap: 0.75rem;
    margin-bottom: 0.8rem;
  }
  .tc-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    object-fit: cover; flex-shrink: 0;
    border: 2px solid rgba(167,139,250,0.3);
  }
  .tc-user { display: flex; flex-direction: column; }
  .tc-name {
    font-size: 0.9rem; font-weight: 700; color: var(--text-main);
    display: flex; align-items: center; gap: 0.3rem;
  }
  .tc-badge {
    display: inline-flex; align-items: center; justify-content: center;
    width: 16px; height: 16px; border-radius: 50%;
    background: #1a73e8; color: #fff;
    font-size: 0.6rem; font-weight: 700;
    flex-shrink: 0;
  }
  .tc-loc { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.1rem; }
  /* Stars */
  .tc-stars { color: var(--gold); font-size: 0.95rem; margin-bottom: 0.7rem; letter-spacing: 0.05em; }
  /* Review body — clamped to 3 lines */
  .tc-body {
    font-size: 0.88rem; color: var(--silver); line-height: 1.75;
    margin-bottom: 0.6rem; flex: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    font-style: italic;
  }
  .tc-body.tc-expanded {
    display: block;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    overflow: visible;
  }
  .tc-read-more {
    background: none; border: none; padding: 0;
    font-size: 0.8rem; font-weight: 600; color: var(--gold-light);
    cursor: pointer; text-align: left;
    align-self: flex-start;
  }
  .tc-read-more:hover { text-decoration: underline; color: #fff; }

  /* ── OUR PANDITS ── */
  .pandits-section {
    padding: 5rem 0;
    background: #030610;
    position: relative;
  }
  .pandits-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(91,47,201,0.12) 0%, transparent 70%);
    pointer-events: none; z-index: 0;
  }
  .pandits-section .container { position: relative; z-index: 1; }

  .pandit-card {
    background: linear-gradient(160deg, rgba(18,6,52,0.97) 0%, rgba(4,2,14,0.99) 100%);
    border: 1px solid rgba(212,168,67,0.18);
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    height: 100%;
  }
  .pandit-card::after {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  }
  .pandit-card:hover {
    border-color: rgba(212,168,67,0.4);
    transform: translateY(-7px);
    box-shadow: 0 22px 55px rgba(0,0,0,0.65), 0 0 35px rgba(212,168,67,0.07);
  }
  .pandit-card-body {
    padding: 2rem 1.5rem 1.75rem;
    text-align: center;
    display: flex; flex-direction: column; align-items: center;
  }
  .pandit-circle-wrap {
    width: 112px; height: 112px; border-radius: 50%;
    border: 3px solid var(--gold);
    box-shadow: 0 0 0 7px rgba(212,168,67,0.1), 0 0 30px rgba(212,168,67,0.28);
    overflow: hidden;
    margin: 0 auto 1rem;
    flex-shrink: 0;
  }
  .pandit-photo {
    width: 100%; height: 100%; object-fit: cover; object-position: top;
    display: block; transition: transform 0.4s ease;
  }
  .pandit-card:hover .pandit-photo { transform: scale(1.08); }

  .pandit-badge {
    display: inline-flex; align-items: center; gap: 0.3rem;
    background: rgba(212,168,67,0.12);
    border: 1px solid rgba(212,168,67,0.38);
    color: var(--gold-light);
    font-size: 0.6rem; font-weight: 700; letter-spacing: 0.08em;
    padding: 4px 12px; border-radius: 20px;
    text-transform: uppercase; margin-bottom: 0.8rem;
  }
  .pandit-name {
    font-family: 'Cinzel', serif;
    font-size: 1.05rem; font-weight: 700; color: var(--text-main);
    margin-bottom: 0.2rem; line-height: 1.3;
  }
  .pandit-title {
    font-size: 0.7rem; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem;
  }
  .pandit-divider {
    display: flex; align-items: center; gap: 0.5rem;
    width: 100%; margin-bottom: 0.75rem;
    color: rgba(212,168,67,0.55); font-size: 0.78rem;
  }
  .pandit-divider::before, .pandit-divider::after {
    content: ''; flex: 1; height: 1px; background: rgba(212,168,67,0.18);
  }
  .pandit-rating-row {
    display: flex; align-items: center; justify-content: center; gap: 0.55rem;
    margin-bottom: 1rem;
  }
  .pandit-stars { color: var(--gold); font-size: 0.82rem; letter-spacing: 0.05em; }
  .pandit-exp-badge {
    background: rgba(91,47,201,0.22);
    border: 1px solid rgba(91,47,201,0.38);
    color: var(--glow-purple);
    font-size: 0.68rem; font-weight: 600;
    padding: 2px 10px; border-radius: 20px;
  }
  .pandit-tags {
    display: flex; flex-wrap: wrap; gap: 0.4rem;
    justify-content: center; margin-bottom: 1.3rem;
  }
  .pandit-tag {
    background: rgba(124,58,237,0.12);
    border: 1px solid rgba(124,58,237,0.22);
    color: var(--smoke);
    font-size: 0.67rem; padding: 3px 9px; border-radius: 20px;
  }
  .pandit-btn {
    display: block; width: 100%;
    padding: 0.65rem 1rem;
    background: linear-gradient(135deg, rgba(212,168,67,0.14) 0%, rgba(212,168,67,0.05) 100%);
    border: 1px solid rgba(212,168,67,0.32);
    border-radius: 9px;
    color: var(--gold-light);
    font-size: 0.82rem; font-weight: 600; letter-spacing: 0.03em;
    text-decoration: none; text-align: center;
    transition: background 0.25s, border-color 0.25s, box-shadow 0.25s;
    cursor: pointer;
  }
  .pandit-btn:hover {
    background: linear-gradient(135deg, rgba(212,168,67,0.28) 0%, rgba(212,168,67,0.12) 100%);
    border-color: var(--gold);
    box-shadow: 0 4px 18px rgba(212,168,67,0.15);
    color: #fff; text-decoration: none;
  }

  /* ── DEVOTEES GALLERY ── */
  .devotees-section {
    padding: 5rem 0;
    background: #050e20;
  }
  .devotee-card {
    background: linear-gradient(145deg, rgba(14,6,40,0.95) 0%, rgba(6,3,18,0.98) 100%);
    border: 1px solid rgba(124,58,237,0.18);
    border-radius: 16px;
    padding: 1.6rem 1.6rem 1.4rem;
    position: relative;
    overflow: hidden;
    display: flex; flex-direction: column;
    transition: border-color 0.25s, transform 0.22s, box-shadow 0.25s;
    height: 100%;
  }
  .devotee-card::before {
    content: '\201C';
    position: absolute; top: 0.4rem; right: 1rem;
    font-size: 5.5rem; line-height: 1;
    color: rgba(212,168,67,0.07);
    pointer-events: none;
    font-family: Georgia, serif;
  }
  .devotee-card:hover {
    border-color: rgba(167,139,250,0.38);
    transform: translateY(-5px);
    box-shadow: 0 16px 44px rgba(0,0,0,0.55), 0 0 24px rgba(124,58,237,0.07);
  }
  .devotee-stars {
    color: var(--gold); font-size: 0.9rem;
    letter-spacing: 0.06em; margin-bottom: 0.85rem;
  }
  .devotee-quote {
    font-size: 0.88rem; color: var(--silver);
    line-height: 1.75; font-style: italic;
    flex: 1; margin-bottom: 1.2rem; position: relative;
  }
  .devotee-quote::before { content: '\201C'; color: var(--gold); font-size: 1.1rem; }
  .devotee-quote::after  { content: '\201D'; color: var(--gold); font-size: 1.1rem; }
  .devotee-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(124,58,237,0.3), transparent);
    margin-bottom: 1rem;
  }
  .devotee-footer { display: flex; align-items: center; gap: 0.8rem; }
  .devotee-avatar {
    width: 50px; height: 50px; border-radius: 50%;
    border: 2px solid var(--gold);
    box-shadow: 0 0 12px rgba(212,168,67,0.22);
    overflow: hidden; flex-shrink: 0;
  }
  .devotee-avatar img {
    width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block;
  }
  .devotee-info { display: flex; flex-direction: column; }
  .devotee-name { font-size: 0.88rem; font-weight: 600; color: var(--text-main); }
  .devotee-loc  { font-size: 0.73rem; color: var(--text-muted); margin-top: 0.1rem; }
  .devotee-verified {
    display: inline-flex; align-items: center; gap: 0.25rem;
    font-size: 0.63rem; color: #4ade80; font-weight: 600;
    margin-top: 0.25rem; letter-spacing: 0.03em;
  }
  .devotee-verified::before { content: '\2714'; }

  /* ── FAQ ── */
  .faq-section {
    padding: 5rem 0;
    background: #04091a;
    position: relative;
  }
  .faq-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 55% 55% at 85% 50%, rgba(91,47,201,0.09) 0%, transparent 70%);
    pointer-events: none;
  }
  .faq-section .container { position: relative; z-index: 1; }

  .faq-left { position: sticky; top: 90px; }

  .faq-contact-card {
    background: linear-gradient(135deg, rgba(18,6,52,0.92) 0%, rgba(5,2,16,0.96) 100%);
    border: 1px solid rgba(212,168,67,0.2);
    border-radius: 14px;
    padding: 1.2rem 1.4rem;
    display: flex; align-items: center; gap: 1rem;
  }
  .faq-contact-icon {
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(212,168,67,0.1);
    border: 1px solid rgba(212,168,67,0.28);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem; color: var(--gold); flex-shrink: 0;
  }
  .faq-contact-title { font-size: 0.88rem; font-weight: 600; color: var(--text-main); }
  .faq-contact-sub   { font-size: 0.72rem; color: var(--text-muted); margin-top: 0.1rem; }

  .faq-contact-btn {
    display: block;
    padding: 0.55rem 1.2rem;
    background: linear-gradient(135deg, rgba(212,168,67,0.12) 0%, rgba(212,168,67,0.04) 100%);
    border: 1px solid rgba(212,168,67,0.3);
    border-radius: 9px;
    color: var(--gold-light);
    font-size: 0.82rem; font-weight: 600;
    text-decoration: none; text-align: center;
    transition: background 0.2s, border-color 0.2s;
  }
  .faq-contact-btn:hover {
    background: rgba(212,168,67,0.2);
    border-color: var(--gold);
    color: #fff; text-decoration: none;
  }

  .faq-stat-row {
    display: flex; gap: 1.5rem;
  }
  .faq-stat {
    display: flex; flex-direction: column; gap: 0.15rem;
  }
  .faq-stat-num {
    font-family: 'Cinzel', serif;
    font-size: 1.25rem; font-weight: 700; color: var(--gold-light);
  }
  .faq-stat-label {
    font-size: 0.7rem; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 0.06em;
  }

  .faq-accordion { display: flex; flex-direction: column; gap: 0.7rem; }

  .faq-item {
    background: linear-gradient(135deg, rgba(14,5,40,0.92) 0%, rgba(5,2,16,0.96) 100%);
    border: 1px solid rgba(124,58,237,0.16);
    border-radius: 13px;
    overflow: hidden;
    transition: border-color 0.25s, box-shadow 0.25s;
  }
  .faq-item.open {
    border-color: rgba(212,168,67,0.28);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 20px rgba(212,168,67,0.04);
  }

  .faq-question {
    width: 100%; background: none; border: none;
    padding: 1.1rem 1.3rem;
    display: flex; align-items: center; gap: 0.9rem;
    cursor: pointer; text-align: left;
    transition: background 0.2s;
  }
  .faq-question:hover { background: rgba(124,58,237,0.06); }
  .faq-item.open .faq-question { background: rgba(212,168,67,0.04); }

  .faq-num {
    font-family: 'Cinzel', serif;
    font-size: 0.72rem; font-weight: 700;
    color: var(--gold); opacity: 0.65;
    flex-shrink: 0; min-width: 1.5rem;
  }
  .faq-q-text {
    flex: 1;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem; font-weight: 500;
    color: var(--text-main); line-height: 1.4;
    transition: color 0.2s;
  }
  .faq-item.open .faq-q-text { color: var(--gold-light); }

  .faq-chevron {
    width: 28px; height: 28px; border-radius: 50%;
    background: rgba(124,58,237,0.14);
    border: 1px solid rgba(124,58,237,0.24);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem; font-weight: 300; color: var(--text-muted);
    flex-shrink: 0; line-height: 1;
    transition: transform 0.3s ease, background 0.25s, color 0.25s, border-color 0.25s;
  }
  .faq-item.open .faq-chevron {
    transform: rotate(45deg);
    background: rgba(212,168,67,0.14);
    border-color: rgba(212,168,67,0.38);
    color: var(--gold);
  }

  .faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.38s ease, padding 0.3s;
    font-size: 0.88rem; color: var(--text-muted); line-height: 1.82;
    padding: 0 1.3rem 0 calc(1.3rem + 1.5rem + 0.9rem);
  }
  .faq-item.open .faq-answer { max-height: 260px; padding-bottom: 1.3rem; }

  /* ── CTA BAND ── */
  .cta-band {
    background: linear-gradient(135deg, rgba(91,47,201,0.3) 0%, rgba(26,10,60,0.7) 100%);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
    padding: 4rem 0;
    position: relative; z-index: 1;
  }
  .cta-band h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--text-main);
    margin-bottom: 1rem;
  }
  .cta-band p { color: var(--text-muted); font-size: 1rem; line-height: 1.7; }

  /* ── TESTIMONIAL SLIDER ── */
  .testimonials-section { padding: 5rem 0; }

  .ts-slider {
    overflow: hidden;
    position: relative;
    margin: 0 -0.75rem;
  }
  .ts-track {
    display: flex;
    will-change: transform;
  }
  .ts-slide {
    flex: 0 0 33.333%;
    padding: 0 0.75rem;
    box-sizing: border-box;
  }

  /* Controls row: dots centred */
  .ts-controls {
    display: flex; align-items: center; justify-content: center;
    gap: 1.2rem; margin-top: 2rem;
  }
  .ts-dots {
    display: flex; gap: 0.45rem; align-items: center;
  }
  .ts-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(124,58,237,0.3);
    border: 1px solid rgba(124,58,237,0.4);
    cursor: pointer; padding: 0;
    transition: background 0.25s, transform 0.25s, width 0.25s;
  }
  .ts-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    width: 22px; border-radius: 4px;
  }

  @media (max-width: 991.98px) { .ts-slide { flex: 0 0 50%; } }
  @media (max-width: 575.98px) { .ts-slide { flex: 0 0 100%; } }

  /* ── PANDIT ENHANCEMENTS ── */
  .pandit-bio {
    font-size: 0.73rem; color: var(--text-muted); font-style: italic;
    line-height: 1.5; margin-bottom: 0.7rem; padding: 0 0.25rem;
    border-left: 2px solid rgba(212,168,67,0.3);
    padding-left: 0.6rem; text-align: left;
  }
  .pandit-puja-count {
    display: inline-flex; align-items: center; gap: 0.35rem;
    background: rgba(212,168,67,0.08);
    border: 1px solid rgba(212,168,67,0.2);
    border-radius: 20px; padding: 3px 12px; margin-bottom: 1rem;
    font-size: 0.72rem;
  }
  .pandit-puja-count .ppc-num {
    color: var(--gold); font-weight: 700; font-size: 0.8rem;
  }
  .pandit-puja-count .ppc-label { color: var(--text-muted); }

  .pandits-network {
    display: flex; align-items: center; justify-content: center;
    gap: 1.5rem; flex-wrap: wrap;
    margin-top: 3rem;
    background: linear-gradient(135deg, rgba(18,6,52,0.85) 0%, rgba(4,2,14,0.9) 100%);
    border: 1px solid rgba(212,168,67,0.15);
    border-radius: 16px; padding: 1.4rem 2rem;
  }
  .pn-text { color: var(--silver); font-size: 0.88rem; }
  .pn-text strong { color: var(--gold); }
  .pn-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; }
  .pn-badge {
    background: rgba(91,47,201,0.2);
    border: 1px solid rgba(91,47,201,0.35);
    color: rgba(167,139,250,0.9);
    font-size: 0.68rem; letter-spacing: 0.05em;
    padding: 3px 10px; border-radius: 20px;
    text-transform: uppercase;
  }
  .pn-cta {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(212,168,67,0.1);
    border: 1px solid rgba(212,168,67,0.35);
    border-radius: 8px; color: var(--gold);
    font-size: 0.82rem; text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
    white-space: nowrap;
  }
  .pn-cta:hover { background: rgba(212,168,67,0.2); border-color: var(--gold); }

  /* ── TESTIMONIAL ENHANCEMENTS ── */
  .ts-summary {
    display: flex; align-items: center; justify-content: center;
    gap: 0; flex-wrap: wrap;
    background: linear-gradient(135deg, rgba(18,6,52,0.75) 0%, rgba(45,16,96,0.3) 100%);
    border: 1px solid rgba(212,168,67,0.15);
    border-radius: 14px; padding: 1rem 0;
    margin-bottom: 2.5rem;
  }
  .ts-sum-item {
    flex: 1 1 140px; text-align: center; padding: 0.6rem 1.5rem;
  }
  .ts-sum-num {
    font-family: 'Cinzel', serif; font-size: 1.5rem; font-weight: 700;
    color: var(--gold); line-height: 1.2;
  }
  .ts-sum-lbl { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 0.2rem; }
  .ts-sum-sep { width: 1px; background: rgba(212,168,67,0.2); align-self: stretch; margin: 0.5rem 0; }

  .tc-meta-row {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 0.75rem; gap: 0.5rem; flex-wrap: wrap;
  }
  .tc-puja-tag {
    background: rgba(124,58,237,0.18);
    border: 1px solid rgba(124,58,237,0.32);
    color: rgba(167,139,250,0.95);
    font-size: 0.66rem; letter-spacing: 0.05em;
    padding: 3px 9px; border-radius: 20px;
    text-transform: uppercase;
  }
  .tc-verified {
    display: flex; align-items: center; gap: 0.3rem;
    font-size: 0.66rem; color: rgba(134,239,172,0.85);
    letter-spacing: 0.03em;
  }
  .tc-verified::before {
    content: '✔'; font-size: 0.6rem; color: rgba(134,239,172,0.9);
  }

  .reviewer-img {
    width: 100%; height: 100%; object-fit: cover;
    border-radius: 50%; display: block;
  }
  .reviewer-avatar { overflow: hidden; }

  /* ── FOOTER ── */
  footer {
    position: relative; z-index: 1;
    background: rgba(10,5,30,0.95);
    border-top: 1px solid var(--card-border);
    padding: 3.5rem 0 2rem;
  }
  .footer-brand p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.75; }
  .social-btn {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: rgba(124,58,237,0.2);
    border: 1px solid var(--card-border);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.95rem; color: var(--text-muted);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
  }
  .social-btn:hover { background: rgba(124,58,237,0.4); color: var(--text-main); }
  .footer-col h5 { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; }
  .footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.55rem; }
  .footer-col a { font-size: 0.85rem; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
  .footer-col a:hover { color: var(--smoke); }
  .footer-bottom { border-top: 1px solid rgba(124,58,237,0.15); padding-top: 1.5rem; }
  .footer-bottom p { font-size: 0.78rem; color: var(--text-muted); margin: 0; }
  .badge-pill {
    font-size: 0.7rem; color: var(--text-muted);
    border: 1px solid rgba(124,58,237,0.25);
    padding: 3px 10px; border-radius: 20px;
  }

  /* ══════════════════════════════════════
     ABOUT MANDIR SECTION (homepage)
  ══════════════════════════════════════ */
  .about-mandir {
    padding: 5.5rem 0 4rem;
    position: relative;
    overflow: hidden;
  }
  .about-mandir::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 15% 50%, rgba(212,168,67,0.07) 0%, transparent 50%),
                radial-gradient(ellipse at 85% 50%, rgba(124,58,237,0.09) 0%, transparent 50%);
    pointer-events: none;
  }

  /* Mountain silhouette */
  .am-mountains {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 160px;
    pointer-events: none;
    opacity: 0.9;
  }
  .am-mountains svg { width: 100%; height: 100%; }

  /* Eyebrow row with lines */
  .am-eyebrow-row {
    display: flex; align-items: center; justify-content: center; gap: 1rem;
    margin-bottom: 0.25rem;
  }
  .am-eyebrow-line {
    flex: 1; max-width: 80px; height: 1px;
    background: linear-gradient(to right, transparent, rgba(212,168,67,0.4), transparent);
  }

  /* Scene (visual left column) */
  .am-scene {
    position: relative;
    width: 340px; height: 340px;
    max-width: 100%;
    display: flex; align-items: center; justify-content: center;
    isolation: isolate; /* contain internal z-indexes so they don't bleed into page stacking context */
  }
  .am-scene-halo {
    position: absolute; inset: -15%;
    background: radial-gradient(circle, rgba(212,168,67,0.1) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    animation: am-halo-pulse 4s ease-in-out infinite;
  }
  @keyframes am-halo-pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50%       { opacity: 1;   transform: scale(1.06); }
  }
  .am-scene-orbit {
    position: absolute; inset: 14px;
    border-radius: 50%;
    border: 1px dashed rgba(212,168,67,0.2);
    pointer-events: none;
    animation: spin-slow 28s linear infinite;
  }

  /* Orbiting gold particles */
  .am-particle {
    position: absolute;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240,201,106,0.9), rgba(212,168,67,0.5));
    top: 50%; left: 50%;
    box-shadow: 0 0 6px rgba(212,168,67,0.6);
  }
  .ap1 { animation: am-orbit 9s linear infinite; }
  .ap2 { animation: am-orbit 9s linear infinite -2.25s; opacity: 0.7; }
  .ap3 { animation: am-orbit 9s linear infinite -4.5s; opacity: 0.5; }
  .ap4 { animation: am-orbit 9s linear infinite -6.75s; opacity: 0.35; }
  @keyframes am-orbit {
    from { transform: translate(-50%,-50%) rotate(0deg)   translateX(152px) rotate(0deg); }
    to   { transform: translate(-50%,-50%) rotate(360deg) translateX(152px) rotate(-360deg); }
  }

  /* Temple card */
  .am-card-inner {
    position: relative; z-index: 2;
    background: linear-gradient(155deg, rgba(45,16,96,0.75) 0%, rgba(18,7,50,0.95) 100%);
    border: 1px solid rgba(212,168,67,0.32);
    border-radius: 20px;
    padding: 1.6rem 1.4rem 1.3rem;
    text-align: center;
    width: 230px;
    box-shadow: 0 20px 60px rgba(10,4,28,0.6), 0 0 0 1px rgba(212,168,67,0.07);
  }
  .am-card-badge {
    display: inline-block;
    font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--gold);
    background: rgba(212,168,67,0.1); border: 1px solid rgba(212,168,67,0.3);
    border-radius: 20px; padding: 0.22rem 0.65rem; margin-bottom: 0.9rem;
  }
  .am-temple-svg {
    margin-bottom: 0.7rem;
    filter: drop-shadow(0 0 18px rgba(212,168,67,0.28));
  }
  .am-card-label {
    font-family: 'Cinzel', serif; font-size: 0.88rem; font-weight: 600;
    color: var(--text-main); margin-bottom: 0.2rem;
  }
  .am-card-meta { font-size: 0.66rem; color: var(--text-muted); margin-bottom: 0.9rem; }
  .am-card-divider {
    height: 1px; margin-bottom: 0.9rem;
    background: linear-gradient(to right, transparent, rgba(212,168,67,0.25), transparent);
  }
  .am-card-stats { display: flex; align-items: center; justify-content: center; gap: 0.75rem; }
  .am-stat { display: flex; flex-direction: column; gap: 0.1rem; text-align: center; }
  .am-stat strong { font-size: 0.75rem; color: var(--gold-light); font-weight: 600; }
  .am-stat small  { font-size: 0.6rem; color: var(--text-muted); }
  .am-stat-sep    { width: 1px; height: 28px; background: rgba(124,58,237,0.3); }

  /* Floating tags */
  .am-float-tag {
    position: absolute; z-index: 3;
    background: rgba(26,10,60,0.92);
    border: 1px solid rgba(212,168,67,0.3);
    border-radius: 20px;
    padding: 0.3rem 0.75rem;
    font-size: 0.7rem; color: var(--gold-light); font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(10,4,28,0.4);
  }
  .aft1 { top: 6%;  right: -5%; animation: am-tag-float 3.5s ease-in-out infinite; }
  .aft2 { bottom: 16%; left: -8%; animation: am-tag-float 4s ease-in-out infinite 1s; }
  .aft3 { bottom: 6%; right: 0%;  animation: am-tag-float 3s ease-in-out infinite 0.5s; }
  @keyframes am-tag-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-6px); }
  }

  /* Mobile-only temple info strip */
  .am-mobile-info {
    display: flex; align-items: center; flex-wrap: wrap; gap: 0.35rem 0.5rem;
    background: rgba(45,16,96,0.35);
    border: 1px solid rgba(212,168,67,0.18);
    border-radius: 10px;
    padding: 0.65rem 1rem;
    margin-bottom: 1.25rem;
    font-size: 0.75rem; color: var(--silver);
  }
  .am-mi-item { white-space: nowrap; }
  .am-mi-sep { color: rgba(212,168,67,0.4); font-size: 0.65rem; }

  /* Content right column */
  .am-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
  .am-tag {
    background: rgba(124,58,237,0.12);
    border: 1px solid rgba(124,58,237,0.25);
    border-radius: 20px; padding: 0.25rem 0.75rem;
    font-size: 0.72rem; color: var(--smoke); font-weight: 500;
  }
  .am-para {
    color: var(--text-muted); font-size: 0.93rem; line-height: 1.82; margin-bottom: 1rem;
  }
  .am-para strong { color: var(--text-main); }

  /* Feature list */
  .am-features { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.2rem; }
  .am-fi {
    display: flex; gap: 1rem; align-items: flex-start;
    background: rgba(45,16,96,0.35);
    border: 1px solid rgba(124,58,237,0.18);
    border-radius: 12px; padding: 1rem;
    transition: border-color 0.2s, background 0.2s;
  }
  .am-fi:hover { border-color: rgba(212,168,67,0.28); background: rgba(45,16,96,0.55); }
  .am-fi-icon { font-size: 1.3rem; flex-shrink: 0; }
  .am-fi h5 { font-size: 0.84rem; font-weight: 600; color: var(--gold-light); margin-bottom: 0.2rem; }
  .am-fi p  { font-size: 0.77rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

  /* Stats strip */
  .am-stats-strip {
    display: flex; align-items: center; justify-content: center;
    gap: 0; flex-wrap: wrap;
    margin-top: 4rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(212,168,67,0.15);
    border-bottom: 1px solid rgba(124,58,237,0.12);
    position: relative; z-index: 2;
  }
  .am-ss-item {
    text-align: center;
    padding: 0.5rem 2.5rem;
    flex: 1; min-width: 140px;
  }
  .am-ss-num {
    font-family: 'Cinzel', serif;
    font-size: 1.7rem; font-weight: 700;
    color: var(--gold-light); line-height: 1;
    margin-bottom: 0.3rem;
  }
  .am-ss-label {
    font-size: 0.72rem; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 0.08em;
  }
  .am-ss-sep { width: 1px; height: 44px; background: rgba(124,58,237,0.25); flex-shrink: 0; }

  /* ── Tablet: columns stack, scene stays visible centred ── */
  @media (max-width: 991.98px) {
    .about-mandir { padding: 4rem 0 3rem; }
    .am-scene { width: 310px; height: 310px; }
    .am-card-inner { width: 215px; }
  }
  @media (max-width: 991.98px) {
    @keyframes am-orbit {
      from { transform: translate(-50%,-50%) rotate(0deg)   translateX(132px) rotate(0deg); }
      to   { transform: translate(-50%,-50%) rotate(360deg) translateX(132px) rotate(-360deg); }
    }
  }

  /* ── Small tablets / large phones ── */
  @media (max-width: 767.98px) {
    .about-mandir { padding: 3.5rem 0 2.5rem; }
    .am-scene { width: 260px; height: 260px; }
    .am-card-inner { width: 182px; padding: 1.2rem 1rem 1rem; }
    .am-float-tag { display: none; }
    .am-ss-sep { display: none; }
    .am-ss-item { padding: 0.5rem 1.2rem; flex: 0 0 50%; min-width: 0; }
    .am-para { font-size: 0.88rem; }
    .am-fi { gap: 0.75rem; }
    .am-tags { gap: 0.4rem; }
    .am-stats-strip { margin-top: 2.5rem; padding: 1.5rem 0; }
  }
  @media (max-width: 767.98px) {
    @keyframes am-orbit {
      from { transform: translate(-50%,-50%) rotate(0deg)   translateX(110px) rotate(0deg); }
      to   { transform: translate(-50%,-50%) rotate(360deg) translateX(110px) rotate(-360deg); }
    }
  }

  /* ── Phones ── */
  @media (max-width: 575.98px) {
    .about-mandir { padding: 3rem 0 2rem; }
    .am-scene { width: 220px; height: 220px; }
    .am-card-inner { width: 152px; padding: 1rem 0.85rem 0.9rem; }
    .am-temple-svg svg { width: 120px !important; height: 138px !important; }
    .am-card-badge { font-size: 0.58rem; padding: 2px 7px; }
    .am-card-label { font-size: 0.78rem; }
    .am-card-meta { font-size: 0.6rem; }
    .am-ss-num { font-size: 1.35rem; }
    .am-ss-label { font-size: 0.67rem; }
    .am-ss-item { flex: 0 0 50%; padding: 0.6rem 0.75rem; }
    .am-eyebrow-line { max-width: 48px; }
  }
  @media (max-width: 575.98px) {
    @keyframes am-orbit {
      from { transform: translate(-50%,-50%) rotate(0deg)   translateX(92px) rotate(0deg); }
      to   { transform: translate(-50%,-50%) rotate(360deg) translateX(92px) rotate(-360deg); }
    }
  }

  /* ══════════════════════════════════════
     PACKAGE CARDS (creative redesign)
  ══════════════════════════════════════ */
  .pkg-section {
    padding: 5rem 0;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
  }
  .pkg-section::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,4,28,0.87) 0%, rgba(18,7,50,0.84) 50%, rgba(10,4,28,0.9) 100%);
    pointer-events: none;
  }
  .pkg-section .container { position: relative; z-index: 2; }

  .pkg-card {
    background: rgba(18,7,50,0.82);
    border: 1px solid rgba(124,58,237,0.22);
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    display: flex; flex-direction: column;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    position: relative;
    backdrop-filter: blur(4px);
  }
  .pkg-card:hover {
    border-color: rgba(167,139,250,0.5);
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(10,4,28,0.55), 0 0 0 1px rgba(124,58,237,0.18);
  }
  .pkg-card-featured {
    border-color: rgba(212,168,67,0.42) !important;
    box-shadow: 0 8px 32px rgba(212,168,67,0.1);
  }
  .pkg-card-featured:hover {
    border-color: rgba(212,168,67,0.72) !important;
    box-shadow: 0 24px 64px rgba(10,4,28,0.55), 0 0 28px rgba(212,168,67,0.18);
  }
  .pkg-featured-ribbon {
    position: absolute; top: 18px; right: -26px;
    background: linear-gradient(135deg, #d4a843, #f0c96a);
    color: #1a0a3c;
    font-size: 0.62rem; font-weight: 800;
    letter-spacing: 0.12em; text-transform: uppercase;
    padding: 0.28rem 2.4rem;
    transform: rotate(40deg);
    z-index: 6;
    box-shadow: 0 2px 8px rgba(10,4,28,0.4);
  }

  .pkg-card-top {
    background: linear-gradient(145deg, var(--pg1,#0d0428) 0%, var(--pg2,rgba(124,58,237,0.3)) 100%);
    padding: 2.2rem 1rem 1.8rem;
    display: flex; flex-direction: column; align-items: center;
    position: relative; overflow: hidden; min-height: 130px;
    justify-content: center;
  }
  .pkg-card-top::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 50px;
    background: linear-gradient(to top, rgba(18,7,50,0.82), transparent);
  }

  .pkg-icon-wrap {
    position: relative; display: inline-flex;
    align-items: center; justify-content: center;
  }
  .pkg-icon { font-size: 3.2rem; position: relative; z-index: 2; }
  .pkg-icon-glow {
    position: absolute; inset: -60%;
    background: rgba(124,58,237,0.32);
    border-radius: 50%;
    filter: blur(18px); z-index: 1;
    animation: pkg-glow-pulse 2.8s ease-in-out infinite;
  }
  @keyframes pkg-glow-pulse {
    0%,100% { opacity: 0.5; transform: scale(1); }
    50%      { opacity: 1;   transform: scale(1.25); }
  }

  .pkg-badge {
    position: absolute; top: 12px; left: 12px;
    font-size: 0.62rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 0.22rem 0.7rem; border-radius: 20px; z-index: 5;
  }
  .pkg-badge-purple { background: rgba(124,58,237,0.88); color: #f0eaff; }
  .pkg-badge-violet { background: rgba(91,47,201,0.9);   color: #f0eaff; }

  .pkg-body {
    padding: 1.4rem 1.3rem 1.3rem;
    display: flex; flex-direction: column; flex: 1;
  }
  .pkg-name {
    font-family: 'Cinzel', serif;
    font-size: 0.96rem; font-weight: 700;
    color: var(--text-main); margin-bottom: 0.3rem;
    line-height: 1.3;
  }
  .pkg-tagline {
    font-size: 0.73rem; color: var(--text-muted);
    margin-bottom: 1rem; line-height: 1.45;
  }

  .pkg-features {
    list-style: none; padding: 0; margin: 0 0 1rem;
    display: flex; flex-direction: column; gap: 0.42rem;
    flex: 1;
  }
  .pkg-features li {
    font-size: 0.78rem; color: var(--text-muted);
    padding-left: 1.35rem; position: relative; line-height: 1.5;
  }
  .pkg-features li::before {
    content: '✓';
    position: absolute; left: 0;
    color: var(--gold); font-weight: 800; font-size: 0.72rem;
    top: 0.05em;
  }
  .pkg-card-featured .pkg-features li::before { color: var(--gold-light); }

  .pkg-meta {
    display: flex; gap: 0.75rem; flex-wrap: wrap;
    font-size: 0.72rem; color: var(--text-muted);
    padding-top: 0.8rem; margin-bottom: 1rem;
    border-top: 1px solid rgba(124,58,237,0.15);
  }

  .pkg-footer { margin-top: auto; }
  .pkg-price {
    font-family: 'Cinzel', serif;
    font-size: 1.35rem; font-weight: 700;
    color: var(--gold-light); margin-bottom: 0.7rem; line-height: 1;
  }
  .pkg-price small {
    font-size: 0.68rem; color: var(--text-muted);
    font-family: 'Inter', sans-serif; font-weight: 400;
  }
  .pkg-btn {
    display: block; width: 100%;
    background: rgba(124,58,237,0.18);
    border: 1px solid rgba(124,58,237,0.38);
    border-radius: 9999px;
    color: var(--smoke);
    font-size: 0.82rem; font-weight: 600;
    text-decoration: none; text-align: center;
    padding: 0.65rem 1rem;
    transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
  }
  .pkg-btn:hover {
    background: rgba(124,58,237,0.42);
    border-color: rgba(167,139,250,0.6);
    color: #fff;
    box-shadow: 0 0 18px rgba(124,58,237,0.3);
  }
  .pkg-btn-gold {
    background: linear-gradient(135deg,#fffbe6 0%,#f5d06a 14%,#d4a843 30%,#b8860b 48%,#d4a843 62%,#f0c96a 76%,#a87820 100%);
    border: none; color: #1a0a3c;
    box-shadow: 0 4px 16px rgba(212,168,67,0.3);
  }
  .pkg-btn-gold:hover { filter: brightness(1.1); color: #1a0a3c; box-shadow: 0 6px 24px rgba(212,168,67,0.45); }

  @media (max-width: 991.98px) {
    .hero-slider { min-height: 100svh; }
    .hero-slide { padding-top: 3rem; }
    .hero-visual { display: none; }
    .slide-mandir-wrap { display: none; }
    .slider-arrow { width: 36px; height: 36px; font-size: 0.9rem; }
    .slider-prev { left: 0.5rem; }
    .slider-next { right: 0.5rem; }
  }

  /* ══════════════════════════════════════
     BOOKING MODAL
  ══════════════════════════════════════ */
  .bk-modal {
    position: fixed; inset: 0;
    z-index: 3000;
    display: flex; align-items: center; justify-content: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .bk-modal.open {
    opacity: 1;
    pointer-events: auto;
  }
  .bk-modal.open .bk-dialog {
    transform: translateY(0) scale(1);
  }

  .bk-backdrop {
    position: absolute; inset: 0;
    background: rgba(10, 4, 28, 0.88);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }

  .bk-dialog {
    position: relative;
    background: linear-gradient(160deg, rgba(26,10,60,0.99) 0%, rgba(18,6,46,0.99) 100%);
    border: 1px solid rgba(124,58,237,0.3);
    border-top-color: rgba(212,168,67,0.35);
    border-radius: 18px;
    width: 100%;
    max-width: 880px;
    max-height: 92vh;
    overflow-y: auto;
    padding: 2.5rem 2.5rem 2rem;
    box-shadow: 0 32px 100px rgba(10,4,28,0.85), 0 0 0 1px rgba(212,168,67,0.08);
    transform: translateY(24px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
    scrollbar-width: thin;
    scrollbar-color: rgba(124,58,237,0.4) transparent;
  }

  .bk-close {
    position: absolute; top: 1rem; right: 1.1rem;
    background: rgba(124,58,237,0.15);
    border: 1px solid rgba(124,58,237,0.25);
    color: var(--text-muted);
    width: 34px; height: 34px;
    border-radius: 50%;
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
  }
  .bk-close:hover {
    background: rgba(124,58,237,0.45);
    border-color: rgba(167,139,250,0.5);
    color: #fff;
  }

  /* Header */
  .bk-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(124,58,237,0.18);
  }
  .bk-eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
  }
  .bk-header h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.35rem;
    color: var(--text-main);
    margin: 0;
    font-weight: 600;
  }

  /* Steps */
  .bk-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin-bottom: 2.2rem;
    position: relative;
  }
  .bk-step {
    background: rgba(45,16,96,0.35);
    border: 1px solid rgba(124,58,237,0.18);
    border-radius: 12px;
    padding: 1.1rem 0.8rem 1rem;
    text-align: center;
    position: relative;
    margin: 0 0.35rem;
    transition: border-color 0.2s, background 0.2s;
  }
  .bk-step:hover {
    background: rgba(45,16,96,0.6);
    border-color: rgba(124,58,237,0.4);
  }
  .bk-step-connector {
    position: absolute;
    top: 1.9rem;
    right: calc(-0.35rem - 1px);
    width: calc(0.7rem + 2px);
    height: 2px;
    background: linear-gradient(to right, rgba(124,58,237,0.4), rgba(212,168,67,0.3));
    z-index: 1;
  }
  .bk-step-num {
    font-family: 'Cinzel', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: rgba(212,168,67,0.45);
    line-height: 1;
    margin-bottom: 0.3rem;
  }
  .bk-step-icon {
    font-size: 1.3rem;
    margin-bottom: 0.45rem;
    filter: drop-shadow(0 0 4px rgba(212,168,67,0.3));
  }
  .bk-step h4 {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.4rem;
    line-height: 1.3;
  }
  .bk-step p {
    font-size: 0.68rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
  }

  /* Form section */
  .bk-form-wrap {
    border-top: 1px solid rgba(124,58,237,0.18);
    padding-top: 1.8rem;
  }
  .bk-form-wrap h3 {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: var(--gold-light);
    margin-bottom: 1.3rem;
    font-weight: 600;
  }
  .bk-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 0;
  }
  .bk-field {
    display: flex;
    flex-direction: column;
    gap: 0.38rem;
    margin-bottom: 1rem;
  }
  .bk-field label {
    font-size: 0.76rem;
    color: var(--text-muted);
    font-weight: 500;
  }
  .bk-field label span { color: var(--gold); }
  .bk-field input,
  .bk-field select,
  .bk-field textarea {
    background: rgba(10,4,28,0.65);
    border: 1px solid rgba(124,58,237,0.28);
    border-radius: 9px;
    color: var(--text-main);
    padding: 0.62rem 0.9rem;
    font-size: 0.84rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
  }
  .bk-field input:focus,
  .bk-field select:focus,
  .bk-field textarea:focus {
    border-color: rgba(167,139,250,0.55);
    box-shadow: 0 0 0 3px rgba(124,58,237,0.12);
  }
  .bk-field input::placeholder,
  .bk-field textarea::placeholder { color: rgba(184,168,216,0.45); }
  .bk-field select option { background: #1a0a3c; color: var(--text-main); }
  .bk-field textarea { resize: vertical; min-height: 74px; }

  .bk-payment-note {
    display: flex; align-items: center; gap: 0.6rem;
    background: rgba(45,16,96,0.4);
    border: 1px solid rgba(124,58,237,0.2);
    border-radius: 8px;
    padding: 0.65rem 1rem;
    font-size: 0.76rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
  }
  .bk-pay-icon { font-size: 1rem; flex-shrink: 0; }
  .bk-payment-note strong { color: var(--gold-light); font-weight: 600; }

  .bk-submit {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #fffbe6 0%, #f5d06a 14%, #d4a843 30%, #b8860b 48%, #d4a843 62%, #f0c96a 76%, #a87820 100%);
    color: #1a0a3c;
    border: none;
    border-radius: 9999px;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: filter 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(212,168,67,0.3);
  }
  .bk-submit:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(212,168,67,0.45);
  }
  .bk-submit:active { transform: translateY(0); filter: brightness(0.97); }

  /* Responsive */
  @media (max-width: 768px) {
    .bk-dialog { padding: 1.6rem 1.2rem 1.4rem; }
    .bk-steps { grid-template-columns: repeat(3, 1fr); gap: 0; }
    .bk-step:nth-child(3) .bk-step-connector,
    .bk-step:nth-child(5) .bk-step-connector { display: none; }
    .bk-row { grid-template-columns: 1fr; }
  }
  @media (max-width: 480px) {
    .bk-dialog { padding: 1.2rem 0.9rem 1.1rem; border-radius: 12px; }
    .bk-header h2 { font-size: 1.1rem; }
    .bk-steps { grid-template-columns: 1fr 1fr; }
    .bk-step:nth-child(2) .bk-step-connector,
    .bk-step:nth-child(4) .bk-step-connector { display: none; }
    .bk-step { margin: 0 0.2rem; padding: 0.8rem 0.5rem 0.75rem; }
  }

/* ── MOBILE NAV DRAWER ── */
.nav-backdrop {
  display: none;
  position: fixed; inset: 0;
  background: rgba(5, 1, 20, 0.72);
  z-index: 1038;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.nav-backdrop.show { display: block; }

@media (max-width: 991.98px) {
  #navMenu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    position: fixed !important;
    top: 0; left: 0;
    width: 285px;
    max-width: 83vw;
    height: 100vh;
    background: rgba(12, 4, 36, 0.98) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-right: 1px solid rgba(124, 58, 237, 0.38);
    box-shadow: 6px 0 40px rgba(0, 0, 0, 0.7);
    z-index: 1039;
    transform: translateX(-100%);
    transition: transform 0.33s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1.25rem 1.25rem 2.5rem;
    overflow-y: auto;
  }
  #navMenu.nav-open { transform: translateX(0); }

  .nav-close-btn {
    display: flex;
    align-self: flex-end;
    background: none;
    border: 1px solid rgba(124, 58, 237, 0.35);
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 1.5rem; line-height: 1;
    cursor: pointer;
    padding: 0.15rem 0.55rem 0.25rem;
    margin-bottom: 1.25rem;
    transition: color 0.2s, border-color 0.2s;
  }
  .nav-close-btn:hover { color: var(--gold-light); border-color: var(--gold); }

  #navMenu .navbar-nav {
    flex-direction: column;
    width: 100%;
    gap: 0 !important;
    margin: 0 !important;
  }
  #navMenu .nav-item { width: 100%; }
  #navMenu .nav-link {
    font-size: 1rem !important;
    padding: 0.85rem 0.5rem !important;
    border-bottom: 1px solid rgba(124, 58, 237, 0.15);
    width: 100%;
  }
  #navMenu .nav-item:last-child .nav-link { border-bottom: none; }
  #navMenu .nav-cta {
    margin: 1.5rem 0 0 0 !important;
    text-align: center;
    width: 100%;
    display: block;
  }
}

@media (min-width: 992px) {
  .nav-backdrop,
  .nav-close-btn { display: none !important; }
}

/* ═══════════════════════════════════════════════════════
   PAGE: ABOUT (about.html)
═══════════════════════════════════════════════════════ */

/* ── PAGE HERO ── */
.ab-hero {
  min-height: 72vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 7rem 0 4rem;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(18,7,50,0.0) 0%, rgba(45,16,96,0.25) 100%);
}
.ab-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 40%, rgba(124,58,237,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 60%, rgba(212,168,67,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.ab-hero-mountains {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 260px;
  pointer-events: none;
}
.ab-hero-mountains svg { width: 100%; height: 100%; }

.ab-hero-content { position: relative; z-index: 2; max-width: 680px; }

.ab-breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; color: var(--text-muted);
  margin-bottom: 1rem;
}
.ab-breadcrumb a {
  color: var(--text-muted); text-decoration: none;
  transition: color 0.2s;
}
.ab-breadcrumb a:hover { color: var(--gold); }

.ab-hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-main);
  margin: 0.5rem 0 1rem;
}
.ab-hero h1 span { color: var(--gold-light); }

.ab-hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  max-width: 540px;
}

.ab-hero-tags {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
}
.ab-hero-tags span {
  background: rgba(45,16,96,0.6);
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: 20px;
  padding: 0.3rem 0.85rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.ab-hero-visual {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  animation: ab-float 4s ease-in-out infinite;
}
.ab-temple-glow {
  position: absolute; inset: -30%;
  background: radial-gradient(circle, rgba(212,168,67,0.18) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
@keyframes ab-float {
  0%, 100% { transform: translateY(-50%) translateY(0); }
  50%       { transform: translateY(-50%) translateY(-12px); }
}

/* ── STATS BAR ── */
.ab-stats-bar {
  background: linear-gradient(90deg, rgba(45,16,96,0.9) 0%, rgba(26,10,60,0.95) 100%);
  border-top: 1px solid rgba(212,168,67,0.2);
  border-bottom: 1px solid rgba(124,58,237,0.2);
  padding: 1.4rem 0;
  position: relative; z-index: 2;
}
.ab-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.ab-stat-item {
  text-align: center;
  padding: 0.4rem 2.5rem;
}
.ab-stat-num {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.ab-stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
}
.ab-stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(124,58,237,0.3);
  flex-shrink: 0;
}

/* ── SHARED SECTION PADDING ── */
.ab-section { padding: 5rem 0; }
.ab-para {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.1rem;
}
.ab-para strong { color: var(--text-main); }

/* ── QUOTE ── */
.ab-quote {
  border-left: 3px solid rgba(212,168,67,0.5);
  padding: 1rem 1.2rem;
  background: rgba(212,168,67,0.05);
  border-radius: 0 8px 8px 0;
  margin: 1.5rem 0;
  position: relative;
}
.ab-quote-mark {
  font-family: 'Cinzel', serif;
  font-size: 3rem;
  color: rgba(212,168,67,0.3);
  position: absolute;
  top: -0.5rem; left: 0.8rem;
  line-height: 1;
}
.ab-quote blockquote {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  color: var(--gold-light);
  font-style: italic;
  margin: 0 0 0.5rem;
  padding-left: 1.5rem;
  line-height: 1.7;
  border: none;
}
.ab-quote cite {
  font-size: 0.72rem;
  color: var(--text-muted);
  padding-left: 1.5rem;
}

/* ── INFO STACK ── */
.ab-info-stack { display: flex; flex-direction: column; gap: 1rem; }
.ab-info-card {
  display: flex; gap: 1rem; align-items: flex-start;
  background: rgba(45,16,96,0.4);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 12px;
  padding: 1.1rem;
  transition: border-color 0.2s, background 0.2s;
}
.ab-info-card:hover {
  border-color: rgba(212,168,67,0.3);
  background: rgba(45,16,96,0.6);
}
.ab-ic-icon { font-size: 1.4rem; flex-shrink: 0; }
.ab-info-card h5 {
  font-size: 0.85rem; font-weight: 600;
  color: var(--gold-light); margin-bottom: 0.3rem;
}
.ab-info-card p {
  font-size: 0.78rem; color: var(--text-muted);
  line-height: 1.6; margin: 0;
}
.ab-info-card p strong { color: var(--text-main); }

/* ── MYTHOLOGY SECTION ── */
.ab-myth {
  background: linear-gradient(180deg, transparent 0%, rgba(45,16,96,0.2) 50%, transparent 100%);
}
.ab-myth-timeline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.ab-myth-step {
  background: rgba(26,10,60,0.7);
  border: 1px solid rgba(124,58,237,0.22);
  border-radius: 14px;
  padding: 1.5rem;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.ab-myth-step:hover {
  border-color: rgba(212,168,67,0.35);
  transform: translateY(-3px);
}
.ab-ms-num {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 700;
  color: rgba(212,168,67,0.2);
  line-height: 1;
  margin-bottom: 0.7rem;
}
.ab-myth-step h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 0.6rem;
  line-height: 1.4;
}
.ab-myth-step p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}
.ab-myth-step p strong { color: var(--text-main); }

/* ── FEATURE CARDS ── */
.ab-feature-card {
  background: rgba(45,16,96,0.45);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 14px;
  padding: 1.5rem 1.2rem;
  height: 100%;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.ab-feature-card:hover {
  border-color: rgba(212,168,67,0.35);
  background: rgba(45,16,96,0.7);
  transform: translateY(-4px);
}
.ab-fc-icon {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  display: block;
}
.ab-feature-card h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.ab-feature-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ── PANDIT TEAM ── */
.ab-pandits { padding: 4rem 0; }
.ab-pandit-card { text-align: center; }
.ab-pandit-photo-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 1.2rem;
  overflow: visible;
}
.ab-pandit-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  display: block;
  border: 5px solid rgba(15,6,42,0.92);
  box-shadow: 0 0 0 2px rgba(255,255,255,0.12), 0 12px 40px rgba(0,0,0,0.6);
}
/* + / × button on the top-right arc */
.ab-pandit-plus {
  position: absolute;
  top: 18px;
  right: 6px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(145deg, #06082e 0%, #1e0b5e 100%);
  border: 2px solid var(--gold);
  color: var(--gold-light);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  z-index: 3;
  transition: box-shadow 0.2s;
  box-shadow: 0 0 0 2px rgba(212,168,67,0.2), 0 3px 10px rgba(0,0,0,0.5);
}
.ab-pandit-plus:hover {
  box-shadow: 0 0 0 3px rgba(212,168,67,0.4), 0 4px 14px rgba(0,0,0,0.55);
}
.ab-pandit-card.ab-active .ab-pandit-plus {
  border-color: var(--gold-light);
  box-shadow: 0 0 0 3px rgba(212,168,67,0.3), 0 4px 14px rgba(0,0,0,0.55);
}
/* Social icons — arc on the right side of the 200px circle (radius 130px from centre).
   Angles +5°, +30°, +55° keep them well below the × button. */
.ab-ps-link {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(145deg, #06082e 0%, #1e0b5e 100%);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  text-decoration: none;
  opacity: 0;
  transform: scale(0.3);
  z-index: 2;
  transition: opacity 0.22s, transform 0.22s;
  pointer-events: none;
  box-shadow: 0 0 0 2px rgba(212,168,67,0.15), 0 4px 14px rgba(0,0,0,0.55);
}
/* radius 108px from centre — snug to the circle edge */
.ab-ps-link:nth-child(3) { left: 188px; top: 66px;  transition-delay: 0.05s; }
.ab-ps-link:nth-child(4) { left: 175px; top: 115px; transition-delay: 0.12s; }
.ab-ps-link:nth-child(5) { left: 144px; top: 153px; transition-delay: 0.19s; }
.ab-ps-link:hover {
  border-color: var(--gold-light);
  box-shadow: 0 0 0 3px rgba(212,168,67,0.35), 0 4px 14px rgba(0,0,0,0.55);
  color: #fff;
}
.ab-pandit-card.ab-active .ab-ps-link {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.ab-pandit-role {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.4rem;
}
.ab-pandit-name {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

/* ── DARSHAN TIMINGS ── */
.ab-timings {
  background: radial-gradient(ellipse at 50% 0%, rgba(124,58,237,0.1) 0%, transparent 60%);
}
.ab-timing-note {
  display: flex; gap: 0.7rem; align-items: flex-start;
  background: rgba(212,168,67,0.07);
  border: 1px solid rgba(212,168,67,0.2);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
  line-height: 1.6;
}
.ab-timing-note span:first-child { font-size: 1.1rem; flex-shrink: 0; }
.ab-timing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.ab-timing-card {
  background: rgba(26,10,60,0.7);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 12px;
  padding: 1.2rem;
  transition: border-color 0.2s;
}
.ab-timing-card:hover { border-color: rgba(212,168,67,0.3); }
.ab-tc-day {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.ab-tc-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}
.ab-tc-time {
  font-size: 0.8rem;
  color: var(--gold-light);
  font-family: 'Cinzel', serif;
  margin-bottom: 0.5rem;
}
.ab-timing-card p {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ── REACH CARDS ── */
.ab-reach-card {
  background: rgba(45,16,96,0.4);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 14px;
  padding: 1.5rem;
  height: 100%;
  transition: border-color 0.25s, background 0.25s;
}
.ab-reach-card:hover {
  border-color: rgba(212,168,67,0.3);
  background: rgba(45,16,96,0.65);
}
.ab-rc-icon { font-size: 2rem; margin-bottom: 0.6rem; display: block; }
.ab-reach-card h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  color: var(--gold-light);
  margin-bottom: 0.25rem;
  font-weight: 600;
}
.ab-rc-dist {
  font-size: 0.7rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.7rem;
}
.ab-reach-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.ab-reach-card p strong { color: var(--text-main); }
.ab-rc-tip {
  font-size: 0.72rem;
  color: rgba(167,139,250,0.7);
  background: rgba(124,58,237,0.1);
  border-radius: 6px;
  padding: 0.4rem 0.7rem;
}

.ab-nearby {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(124,58,237,0.15);
}
.ab-nearby h3 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
}
.ab-nearby-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.ab-nearby-item {
  display: flex; align-items: flex-start; gap: 0.7rem;
  background: rgba(45,16,96,0.3);
  border: 1px solid rgba(124,58,237,0.15);
  border-radius: 10px;
  padding: 0.85rem;
}
.ab-nearby-item span:first-child { font-size: 1.2rem; flex-shrink: 0; }
.ab-nearby-item div { display: flex; flex-direction: column; gap: 0.15rem; }
.ab-nearby-item strong { font-size: 0.8rem; color: var(--text-main); }
.ab-nearby-item small { font-size: 0.7rem; color: var(--text-muted); }

/* ── REMOTE PUJA ── */
.ab-remote {
  background: linear-gradient(135deg, rgba(45,16,96,0.2) 0%, rgba(26,10,60,0.4) 100%);
}
.ab-remote-steps { display: flex; flex-direction: column; gap: 0; }
.ab-rs {
  display: flex; gap: 1.2rem; align-items: flex-start;
  padding-bottom: 1.5rem;
  position: relative;
}
.ab-rs:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 18px; top: 40px;
  width: 2px;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(212,168,67,0.3), rgba(124,58,237,0.2));
}
.ab-rs-num {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(212,168,67,0.12);
  border: 1px solid rgba(212,168,67,0.35);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  position: relative; z-index: 1;
}
.ab-rs-body h5 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.3rem;
}
.ab-rs-body p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 1199px) { .ab-hero-visual { display: none !important; } }
@media (max-width: 768px) {
  .ab-hero { min-height: auto; padding: 6rem 0 3rem; }
  .ab-myth-timeline { grid-template-columns: 1fr; }
  .ab-timing-grid { grid-template-columns: 1fr; }
  .ab-nearby-grid { grid-template-columns: 1fr 1fr; }
  .ab-stats-row { gap: 1rem; }
  .ab-stat-sep { display: none; }
  .ab-stat-item { padding: 0.4rem 1rem; }
}
@media (max-width: 480px) {
  .ab-hero h1 { font-size: 2rem; }
  .ab-nearby-grid { grid-template-columns: 1fr; }
  .ab-pandit-photo { width: 150px; height: 150px; }
  .ab-ps-link { width: 34px; height: 34px; }
  .ab-ps-link:nth-child(3) { left: 155px; top: 48px; }
  .ab-ps-link:nth-child(4) { left: 142px; top: 87px; }
  .ab-ps-link:nth-child(5) { left: 114px; top: 118px; }
}

/* ═══════════════════════════════════════════════════════
   PAGE: CONTACT (contact.html)
═══════════════════════════════════════════════════════ */

/* ── HERO ── */
.ct-hero {
  min-height: 65vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 7rem 0 5rem;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(18,7,50,0) 0%, rgba(45,16,96,0.2) 100%);
}
.ct-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 22% 45%, rgba(124,58,237,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 72% 55%, rgba(130,15,15,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.ct-hero-mountains {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 260px;
  pointer-events: none;
}
.ct-hero-mountains svg { width: 100%; height: 100%; }

.ct-hero-content { max-width: 640px; position: relative; z-index: 2; }
.ct-hero-content h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.9rem, 4.5vw, 2.9rem);
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
  margin: 0.5rem 0 1rem;
}
.ct-hero-content h1 span {
  display: block;
  font-size: 0.52em;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
  opacity: 0.7;
}
.ct-hero-sub {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.ct-hero-tags { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.ct-hero-tags span {
  padding: 0.32rem 0.85rem;
  background: rgba(124,58,237,0.11);
  border: 1px solid rgba(124,58,237,0.22);
  border-radius: 20px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.ct-hero-orb {
  position: absolute;
  right: 7%; top: 50%;
  transform: translateY(-48%);
  width: 260px; height: 260px;
  z-index: 1;
}
.ct-orb-glow {
  position: absolute; inset: -25px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155,15,15,0.14) 0%, transparent 65%);
  animation: ct-orb-atm 5s ease-in-out infinite;
}
@keyframes ct-orb-atm { 0%,100%{opacity:.6;transform:scale(.96)} 50%{opacity:1;transform:scale(1.04)} }
.ct-orb-planet {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 118px; height: 118px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 32%, rgba(50,15,72,.95) 0%, rgba(8,3,20,1) 50%, #000 100%);
  box-shadow: inset -14px -14px 30px rgba(0,0,0,.95), 0 0 40px rgba(150,18,18,.4), 0 0 90px rgba(90,6,6,.18);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2px;
  z-index: 3;
  animation: ct-planet-pulse 6s ease-in-out infinite;
}
@keyframes ct-planet-pulse {
  0%,100%{box-shadow:inset -14px -14px 30px rgba(0,0,0,.95),0 0 40px rgba(150,18,18,.4),0 0 90px rgba(90,6,6,.18)}
  50%{box-shadow:inset -14px -14px 30px rgba(0,0,0,.95),0 0 60px rgba(180,20,20,.55),0 0 120px rgba(110,8,8,.25)}
}
.ct-orb-dev {
  font-family: serif;
  font-size: 1.85rem;
  color: rgba(212,168,67,.78);
  text-shadow: 0 0 22px rgba(212,168,67,.5);
  line-height: 1;
}
.ct-orb-sub {
  font-size: 0.38rem;
  font-family: 'Cinzel', serif;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(212,168,67,.28);
}
.ct-orb-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  border-radius: 50%;
}
.ctr-1 { width: 148px; height: 148px; border: 1px solid rgba(200,40,40,.35); animation: ct-corona 3s ease-in-out infinite; }
.ctr-2 { width: 210px; height: 210px; border: 1px dashed rgba(167,139,250,.14); animation: ct-ring-spin 22s linear infinite; }
@keyframes ct-corona { 0%,100%{opacity:1} 50%{opacity:.2} }
@keyframes ct-ring-spin { to{transform:translate(-50%,-50%) rotate(360deg)} }
.ct-orb-node {
  position: absolute;
  top: 50%; left: 50%;
  width: 7px; height: 7px;
  margin: -3.5px 0 0 -3.5px;
  border-radius: 50%;
  background: rgba(210,55,55,.9);
  box-shadow: 0 0 9px rgba(210,55,55,.7);
  animation: ct-node-orbit 22s linear infinite;
}
.ctn-2 { animation-delay: calc(-22s / 2); background: rgba(167,139,250,.9); box-shadow: 0 0 9px rgba(167,139,250,.6); }
@keyframes ct-node-orbit {
  from{transform:rotate(0deg) translateX(105px) rotate(0deg)}
  to{transform:rotate(360deg) translateX(105px) rotate(-360deg)}
}

/* ── INFO STRIP ── */
.ct-info-strip {
  padding: 4rem 0;
  background: rgba(6,2,18,0.85);
  position: relative;
}
.ct-info-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(30,10,80,0.35) 0%, transparent 70%);
  pointer-events: none;
}
.ct-info-card {
  position: relative;
  padding: 1.75rem 1.5rem;
  background: rgba(10,4,32,0.9);
  border: 1px solid rgba(124,58,237,0.15);
  border-top: 2px solid rgba(124,58,237,0.35);
  border-radius: 16px;
  height: 100%;
  transition: border-top-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.ct-info-card:hover {
  border-top-color: rgba(212,168,67,0.65);
  transform: translateY(-5px);
  box-shadow: 0 18px 50px rgba(4,2,16,0.55);
}
.ct-info-icon-wrap {
  width: 52px; height: 52px;
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.1rem;
  transition: background 0.3s, border-color 0.3s;
}
.ct-info-card:hover .ct-info-icon-wrap {
  background: rgba(212,168,67,0.1);
  border-color: rgba(212,168,67,0.3);
}
.ct-info-card h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.6rem;
  letter-spacing: 0.04em;
}
.ct-info-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.1rem;
}
.ct-info-link {
  font-size: 0.74rem;
  font-weight: 600;
  color: rgba(167,139,250,0.65);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.ct-info-link:hover { color: var(--gold); }

/* ── MAIN FORM SECTION ── */
.ct-main-section { padding: 5.5rem 0; }

.ct-form-card {
  position: relative;
  background: rgba(10,4,32,0.82);
  border: 1px solid rgba(124,58,237,0.18);
  border-radius: 20px;
  padding: 2.5rem;
  overflow: hidden;
}
.ct-form-card-deco {
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.ct-form-header { margin-bottom: 1.75rem; }
.ct-form-header h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.4rem;
}
.ct-form-header p { font-size: 0.84rem; color: var(--text-muted); margin: 0; line-height: 1.6; }

.ct-field { margin-bottom: 1.15rem; }
.ct-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.15rem;
}
.ct-field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  font-family: 'Cinzel', serif;
  color: var(--text-muted);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 0.42rem;
}
.ct-req { color: rgba(230,90,90,0.85); margin-left: 2px; }
.ct-field input,
.ct-field select,
.ct-field textarea {
  width: 100%;
  background: rgba(5,2,16,0.8);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 10px;
  padding: 0.72rem 1rem;
  color: var(--text-main);
  font-size: 0.88rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.22s, box-shadow 0.22s;
  -webkit-appearance: none;
  appearance: none;
}
.ct-field input::placeholder,
.ct-field textarea::placeholder { color: rgba(167,139,250,0.28); }
.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
  border-color: rgba(212,168,67,0.5);
  box-shadow: 0 0 0 3px rgba(212,168,67,0.07);
}
.ct-field textarea { resize: vertical; min-height: 120px; }
.ct-field select { cursor: pointer; }
.ct-field select option { background: #120830; }

.ct-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.9rem 2rem;
  background: linear-gradient(135deg, rgba(124,58,237,0.9) 0%, rgba(91,47,201,0.95) 100%);
  border: 1px solid rgba(167,139,250,0.3);
  border-radius: 11px;
  color: #fff;
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.ct-submit span { color: var(--gold); }
.ct-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(124,58,237,0.4); }

.ct-success {
  display: none;
  text-align: center;
  padding: 2.5rem 1rem;
}
.ct-success-icon { font-size: 3.2rem; margin-bottom: 0.75rem; }
.ct-success h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 0.55rem;
}
.ct-success p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.65; margin: 0; }

.ct-wa-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: rgba(15,68,35,0.22);
  border: 1px solid rgba(37,160,75,0.22);
  border-radius: 14px;
  margin-bottom: 1.2rem;
  text-decoration: none;
  transition: background 0.28s, border-color 0.28s, transform 0.2s;
}
.ct-wa-card:hover { background: rgba(15,68,35,0.35); border-color: rgba(37,160,75,0.42); transform: translateY(-2px); }
.ct-wa-icon { font-size: 2rem; flex-shrink: 0; }
.ct-wa-text { flex: 1; }
.ct-wa-text strong { display: block; color: var(--text-main); font-size: 0.9rem; margin-bottom: 0.15rem; }
.ct-wa-text span { color: var(--text-muted); font-size: 0.77rem; }
.ct-wa-arrow { color: rgba(37,160,75,0.7); font-size: 1.2rem; }

.ct-yantra-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.4rem;
  background: rgba(10,4,32,0.65);
  border: 1px solid rgba(124,58,237,0.14);
  border-radius: 14px;
  margin-bottom: 1.2rem;
}
.ct-yantra-visual { flex-shrink: 0; width: 88px; height: 88px; }
.ct-yantra-visual svg { width: 100%; height: 100%; animation: ct-yantra-spin 60s linear infinite; }
@keyframes ct-yantra-spin { to{transform:rotate(360deg)} }
.ct-yantra-text h4 {
  font-family: serif;
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 0.35rem;
  line-height: 1.3;
}
.ct-yantra-text p { font-size: 0.77rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

.ct-promises { display: flex; flex-direction: column; gap: 0.8rem; }
.ct-promise {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  background: rgba(10,4,32,0.55);
  border: 1px solid rgba(124,58,237,0.1);
  border-radius: 10px;
}
.ct-promise-icon { font-size: 1.05rem; flex-shrink: 0; margin-top: 1px; }
.ct-promise div { font-size: 0.78rem; color: var(--text-muted); line-height: 1.55; }
.ct-promise div strong { color: var(--text-main); display: block; margin-bottom: 1px; font-size: 0.82rem; }

/* ── MAP SECTION ── */
.ct-map-section {
  padding: 5rem 0;
  background: rgba(6,2,18,0.7);
}
.ct-map-box {
  position: relative;
  height: 440px;
  border: 1px solid rgba(124,58,237,0.28);
  border-bottom: none;
  border-radius: 18px 18px 0 0;
  overflow: hidden;
}
.ct-map-box iframe { width: 100%; height: 100%; border: 0; display: block; }

.ct-map-caption {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(18,6,52,0.97) 0%, rgba(4,2,14,0.99) 100%);
  border: 1px solid rgba(124,58,237,0.28);
  border-top: 1px solid rgba(212,168,67,0.18);
  border-radius: 0 0 18px 18px;
  padding: 1rem 1.5rem;
  margin-bottom: 1.25rem;
}
.ct-map-caption-pin { font-size: 1.6rem; flex-shrink: 0; }
.ct-map-caption-text { flex: 1; min-width: 160px; }
.ct-map-caption-text strong { display: block; font-family: 'Cinzel', serif; font-size: 0.88rem; color: var(--text-main); margin-bottom: 2px; }
.ct-map-caption-text span { font-size: 0.75rem; color: var(--text-muted); }

.ct-map-btn {
  display: inline-block;
  padding: 0.55rem 1.4rem;
  background: rgba(124,58,237,0.2);
  border: 1px solid rgba(124,58,237,0.38);
  border-radius: 8px;
  color: rgba(167,139,250,0.9);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.22s, border-color 0.22s, color 0.22s;
}
.ct-map-btn:hover { background: rgba(124,58,237,0.38); border-color: rgba(167,139,250,0.6); color: #fff; }

.ct-travel-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  background: rgba(10,4,32,0.7);
  border: 1px solid rgba(124,58,237,0.1);
  border-radius: 11px;
  height: 100%;
}
.ct-travel-icon { font-size: 1.45rem; flex-shrink: 0; }
.ct-travel-card strong { display: block; font-size: 0.8rem; font-weight: 600; color: var(--text-main); margin-bottom: 0.12rem; }
.ct-travel-card span { font-size: 0.74rem; color: var(--text-muted); }

@media (max-width: 767px) {
  .ct-field-row { grid-template-columns: 1fr; }
  .ct-form-card { padding: 1.5rem 1.25rem; }
  .ct-yantra-card { flex-direction: column; text-align: center; }
  .ct-hero { padding-top: 5rem; min-height: auto; }
}

/* ═══════════════════════════════════════════════════════
   PAGE: MANDIR (mandir.html)
   Immersive Rahu Mandir pilgrimage experience
═══════════════════════════════════════════════════════ */

/* ── HERO ── */
.mn-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 6rem 0 4rem;
  overflow: hidden;
}
.mn-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 90% at 65% 50%, rgba(60,15,120,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 35% 50% at 15% 35%, rgba(212,168,67,0.06) 0%, transparent 55%);
  pointer-events: none;
}

.mn-star {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  animation: mn-twinkle var(--dur, 3s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  pointer-events: none;
}
@keyframes mn-twinkle {
  0%, 100% { opacity: 0.15; transform: scale(0.8); }
  50% { opacity: 0.9; transform: scale(1.3); }
}

.mn-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212,168,67,0.1);
  border: 1px solid rgba(212,168,67,0.28);
  border-radius: 20px;
  padding: 0.35rem 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.mn-hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.1rem, 5vw, 3.9rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}
.mn-hero h1 span { color: var(--gold-light); }
.mn-hero-tagline {
  font-family: 'Cinzel', serif;
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  color: rgba(212,168,67,0.55);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.mn-hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 1.75rem;
}
.mn-hero-locs {
  display: flex; flex-wrap: wrap; gap: 0.55rem;
  margin-bottom: 2rem;
}
.mn-hero-loc {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  background: rgba(45,16,96,0.5);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 6px;
  padding: 0.28rem 0.72rem;
}

/* Eclipse animation */
.mn-eclipse-wrap {
  position: relative;
  width: 380px; height: 380px;
  flex-shrink: 0;
}
.mn-sun {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 155px; height: 155px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 38%, rgba(255,248,190,0.96) 0%, rgba(240,200,80,0.75) 35%, rgba(212,168,67,0.35) 65%, transparent 80%);
  box-shadow: 0 0 55px rgba(212,168,67,0.65), 0 0 110px rgba(212,168,67,0.3), 0 0 200px rgba(212,168,67,0.1);
  animation: mn-sun-pulse 5s ease-in-out infinite;
}
@keyframes mn-sun-pulse {
  0%, 100% { box-shadow: 0 0 55px rgba(212,168,67,0.65), 0 0 110px rgba(212,168,67,0.3), 0 0 200px rgba(212,168,67,0.1); }
  50%       { box-shadow: 0 0 75px rgba(212,168,67,0.85), 0 0 150px rgba(212,168,67,0.45), 0 0 280px rgba(212,168,67,0.16); }
}
.mn-rahu-shadow {
  position: absolute;
  top: 50%; left: 50%;
  width: 158px; height: 158px;
  border-radius: 50%;
  background: radial-gradient(circle at 42% 42%, #100428, #060118, #000);
  box-shadow: inset -22px -22px 45px rgba(0,0,0,0.95), -8px -8px 25px rgba(0,0,0,0.6);
  animation: mn-rahu-cross 11s ease-in-out infinite;
  z-index: 2;
}
@keyframes mn-rahu-cross {
  0%   { transform: translate(-50%,-50%) translate(-95px, 12px); }
  38%  { transform: translate(-50%,-50%) translate(-8px, 0px); }
  62%  { transform: translate(-50%,-50%) translate(8px, 0px); }
  100% { transform: translate(-50%,-50%) translate(95px, -12px); }
}
.mn-corona {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 210px; height: 210px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(212,168,67,0.12), 0 0 35px rgba(212,168,67,0.07);
  animation: mn-corona-glow 5s ease-in-out infinite;
}
@keyframes mn-corona-glow {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; box-shadow: 0 0 0 3px rgba(212,168,67,0.45), 0 0 70px rgba(212,168,67,0.22); }
}
.mn-orbit-ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1px dashed rgba(124,58,237,0.18);
  transform: translate(-50%, -50%);
}
.mn-or1 { width: 265px; height: 265px; animation: mn-ring-spin 20s linear infinite; }
.mn-or2 { width: 360px; height: 360px; animation: mn-ring-spin 38s linear infinite reverse; border-color: rgba(212,168,67,0.08); }
@keyframes mn-ring-spin { to { transform: translate(-50%, -50%) rotate(360deg); } }
.mn-orb-node {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  animation: mn-node-orbit var(--dur, 20s) linear infinite var(--delay, 0s);
}
.mn-orb-node::before {
  content: '';
  display: block;
  width: var(--sz, 7px); height: var(--sz, 7px);
  border-radius: 50%;
  background: var(--col, rgba(167,139,250,0.85));
  box-shadow: 0 0 9px var(--col, rgba(167,139,250,0.6));
  margin: calc(var(--sz, 7px) / -2) 0 0 calc(var(--sz, 7px) / -2);
}
@keyframes mn-node-orbit {
  from { transform: rotate(0deg) translateX(var(--r, 132px)) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(var(--r, 132px)) rotate(-360deg); }
}
.mn-eclipse-label {
  position: absolute;
  bottom: 18px; left: 50%;
  transform: translateX(-50%);
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: rgba(212,168,67,0.35);
  white-space: nowrap;
}

/* ── PILLARS ── */
.mn-pillars {
  background: linear-gradient(90deg, rgba(20,8,55,0.98) 0%, rgba(14,5,40,1) 100%);
  border-top: 1px solid rgba(212,168,67,0.12);
  border-bottom: 1px solid rgba(124,58,237,0.18);
}
.mn-pillars-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.mn-pillar {
  padding: 1.5rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(124,58,237,0.12);
  transition: background 0.25s;
}
.mn-pillar:last-child { border-right: none; }
.mn-pillar:hover { background: rgba(124,58,237,0.05); }
.mn-pillar-icon { font-size: 1.7rem; margin-bottom: 0.45rem; display: block; }
.mn-pillar-title {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem; font-weight: 600;
  color: var(--gold-light); margin-bottom: 0.18rem;
}
.mn-pillar-sub { font-size: 0.7rem; color: var(--text-muted); }

/* ── SANCTUM ── */
.mn-sanctum {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.mn-sanctum-bg-text {
  position: absolute;
  font-family: 'Cinzel', serif;
  font-size: 26vw;
  font-weight: 700;
  color: rgba(124,58,237,0.022);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  line-height: 1;
}
.mn-temple-scene {
  position: relative;
  width: 320px; height: 380px;
  margin: 0 auto;
  z-index: 1;
}
.mn-ts-halo {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 290px; height: 290px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,67,0.07) 0%, transparent 65%);
  animation: mn-halo-pulse 5s ease-in-out infinite;
}
@keyframes mn-halo-pulse {
  0%, 100% { transform: translate(-50%,-50%) scale(0.94); opacity: 0.55; }
  50%       { transform: translate(-50%,-50%) scale(1.06); opacity: 1; }
}
.mn-ts-ring {
  position: absolute; top: 50%; left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(212,168,67,0.12);
}
.mn-tsr1 { width: 195px; height: 195px; transform: translate(-50%,-50%); animation: mn-ring-spin 28s linear infinite; }
.mn-tsr2 { width: 275px; height: 275px; transform: translate(-50%,-50%); animation: mn-ring-spin 44s linear infinite reverse; border-style: dashed; }
.mn-ts-temple {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: mn-float 4.5s ease-in-out infinite;
}
@keyframes mn-float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-11px); }
}
.mn-ts-particle {
  position: absolute;
  border-radius: 50%;
  width: var(--sz, 3px); height: var(--sz, 3px);
  background: rgba(212,168,67,0.6);
  left: var(--x, 50%); top: var(--y, 70%);
  animation: mn-p-rise var(--dur, 4s) ease-in-out infinite var(--delay, 0s);
}
@keyframes mn-p-rise {
  0%   { opacity: 0; transform: translateY(0) scale(0); }
  25%  { opacity: 1; }
  100% { opacity: 0; transform: translateY(-90px) scale(0.6); }
}

.mn-sanctum-content { position: relative; z-index: 1; }
.mn-sanctum-content h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  font-weight: 700; line-height: 1.15;
  color: var(--text-main); margin-bottom: 1.1rem;
}
.mn-sanctum-content h2 span { color: var(--gold-light); }
.mn-prose {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.9; margin-bottom: 1rem;
}
.mn-prose strong { color: var(--text-main); }
.mn-sanctum-features { display: flex; flex-direction: column; gap: 0.8rem; margin-top: 1.75rem; }
.mn-sf {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 0.95rem 1.1rem;
  background: rgba(45,16,96,0.32);
  border: 1px solid rgba(124,58,237,0.16);
  border-radius: 10px;
  transition: border-color 0.2s, background 0.2s;
}
.mn-sf:hover { border-color: rgba(212,168,67,0.28); background: rgba(45,16,96,0.5); }
.mn-sf-icon { font-size: 1.25rem; flex-shrink: 0; }
.mn-sf h5 { font-size: 0.83rem; font-weight: 600; color: var(--gold-light); margin-bottom: 0.18rem; }
.mn-sf p { font-size: 0.76rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ── ECLIPSE POWER ── */
.mn-eclipse-section {
  padding: 6rem 0;
  background: radial-gradient(ellipse 80% 100% at 50% 50%, rgba(8,2,24,0.97) 0%, rgba(3,1,10,1) 75%);
  position: relative;
  overflow: hidden;
}
.mn-eclipse-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 45% 65% at 50% 40%, rgba(90,12,12,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.mn-ec-anim {
  position: relative;
  width: 180px; height: 180px;
  margin: 0 auto 2.25rem;
}
.mn-ec-sun {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 110px; height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 38%, rgba(255,245,160,0.92), rgba(212,168,67,0.5), transparent 72%);
  box-shadow: 0 0 40px rgba(212,168,67,0.55), 0 0 80px rgba(212,168,67,0.2);
  animation: mn-sun-pulse 4s ease-in-out infinite;
}
.mn-ec-shadow {
  position: absolute; top: 50%; left: 50%;
  width: 108px; height: 108px;
  border-radius: 50%;
  background: #000;
  z-index: 2;
  animation: mn-ec-cross 9s ease-in-out infinite;
}
@keyframes mn-ec-cross {
  0%, 100% { transform: translate(-50%,-50%) translateX(-55px); box-shadow: none; }
  42%, 58%  { transform: translate(-50%,-50%) translateX(0); box-shadow: -18px -5px 28px rgba(212,168,67,0.28); }
}
.mn-ec-ring {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 162px; height: 162px;
  border-radius: 50%;
  border: 1px solid rgba(212,168,67,0.1);
  animation: mn-corona-glow 9s ease-in-out infinite;
}
.mn-eclipse-title {
  text-align: center;
  font-family: 'Cinzel', serif;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.7rem;
  line-height: 1.3;
}
.mn-eclipse-title span { color: var(--gold-light); }
.mn-eclipse-body {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2.75rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.82;
}
.mn-date-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 780px;
  margin: 0 auto;
}
.mn-date-card {
  background: rgba(8,3,24,0.95);
  border: 1px solid rgba(124,58,237,0.18);
  border-radius: 14px;
  padding: 1.4rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}
.mn-date-card:hover { border-color: rgba(212,168,67,0.38); transform: translateY(-4px); }
.mn-date-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212,168,67,0.45), transparent);
}
.mn-dc-type {
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.5rem;
}
.mn-dc-date {
  font-family: 'Cinzel', serif;
  font-size: 1rem; font-weight: 600;
  color: var(--text-main); margin-bottom: 0.3rem;
}
.mn-dc-desc { font-size: 0.7rem; color: var(--text-muted); line-height: 1.5; }
.mn-dc-badge {
  display: inline-flex; align-items: center; gap: 0.28rem;
  background: rgba(212,168,67,0.07);
  border: 1px solid rgba(212,168,67,0.18);
  border-radius: 20px;
  padding: 0.18rem 0.6rem;
  font-size: 0.62rem;
  color: var(--gold);
  margin-top: 0.7rem;
}

/* ── RITUAL DOORS ── */
.mn-doors { padding: 6rem 0; }
.mn-door-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.mn-door-card {
  position: relative;
  background: rgba(14,5,40,0.9);
  border: 1px solid rgba(124,58,237,0.16);
  border-radius: 18px;
  padding: 2rem 1.75rem;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.mn-door-card:hover {
  border-color: rgba(212,168,67,0.32);
  transform: translateY(-5px);
  box-shadow: 0 22px 60px rgba(0,0,0,0.5);
}
.mn-door-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--dc, rgba(124,58,237,0.5)), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.mn-door-card:hover::after { opacity: 1; }
.mn-door-header { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1rem; }
.mn-door-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s;
}
.mn-door-card:hover .mn-door-icon { background: rgba(212,168,67,0.08); border-color: rgba(212,168,67,0.22); }
.mn-door-meta h3 {
  font-family: 'Cinzel', serif;
  font-size: 1rem; font-weight: 600;
  color: var(--gold-light); margin-bottom: 0.18rem; line-height: 1.3;
}
.mn-door-when { font-size: 0.7rem; color: var(--gold); letter-spacing: 0.07em; }
.mn-door-card p {
  font-size: 0.82rem; color: var(--text-muted);
  line-height: 1.78; margin-bottom: 1rem;
}
.mn-door-perks { display: flex; flex-direction: column; gap: 0.32rem; }
.mn-door-perk {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.74rem; color: var(--text-muted);
}
.mn-door-perk::before { content: '✦'; color: var(--gold); font-size: 0.52rem; flex-shrink: 0; }
.mn-door-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 1.25rem;
  font-size: 0.77rem; font-weight: 600;
  color: rgba(167,139,250,0.65);
  text-decoration: none; letter-spacing: 0.04em;
  transition: color 0.2s;
}
.mn-door-link:hover { color: var(--gold); }

/* ── SACRED OFFERINGS ── */
.mn-offerings {
  padding: 6rem 0;
  background: linear-gradient(180deg, rgba(26,10,60,0.12) 0%, rgba(10,4,30,0.45) 50%, rgba(26,10,60,0.12) 100%);
}
.mn-offering-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 880px;
  margin: 0 auto 1.75rem;
}
.mn-oi {
  background: rgba(14,5,40,0.75);
  border: 1px solid rgba(124,58,237,0.14);
  border-radius: 14px;
  padding: 1.4rem 0.9rem;
  text-align: center;
  transition: border-color 0.25s, transform 0.25s, background 0.25s;
}
.mn-oi:hover { border-color: rgba(212,168,67,0.32); transform: translateY(-4px); background: rgba(14,5,40,0.95); }
.mn-oi-sym { font-size: 2rem; margin-bottom: 0.55rem; display: block; }
.mn-oi-name {
  font-family: 'Cinzel', serif;
  font-size: 0.77rem; font-weight: 600;
  color: var(--gold-light); margin-bottom: 0.28rem;
}
.mn-oi-desc { font-size: 0.68rem; color: var(--text-muted); line-height: 1.5; }
.mn-oi-dev { font-size: 0.88rem; color: rgba(212,168,67,0.35); font-family: serif; display: block; margin-top: 0.38rem; }

.mn-offering-note {
  display: flex; align-items: flex-start; gap: 0.8rem;
  max-width: 580px; margin: 0 auto;
  padding: 1rem 1.2rem;
  background: rgba(212,168,67,0.045);
  border: 1px solid rgba(212,168,67,0.16);
  border-radius: 10px;
  font-size: 0.79rem; color: var(--text-muted); line-height: 1.65;
}
.mn-offering-note span:first-child { font-size: 1.05rem; flex-shrink: 0; }

/* ── PILGRIM VOICES ── */
.mn-voices { padding: 6rem 0; }
.mn-voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.mn-vc {
  background: rgba(14,5,40,0.75);
  border: 1px solid rgba(124,58,237,0.14);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  position: relative;
  transition: border-color 0.25s, transform 0.25s;
}
.mn-vc:hover { border-color: rgba(212,168,67,0.22); transform: translateY(-4px); }
.mn-vc-qm {
  font-family: 'Cinzel', serif; font-size: 4.5rem;
  color: rgba(212,168,67,0.1); line-height: 1;
  position: absolute; top: 0.3rem; left: 1rem;
  pointer-events: none;
}
.mn-vc-stars { color: var(--gold); font-size: 0.78rem; letter-spacing: 0.1em; margin-bottom: 0.7rem; position: relative; }
.mn-vc-tag {
  display: inline-block;
  background: rgba(212,168,67,0.07);
  border: 1px solid rgba(212,168,67,0.16);
  border-radius: 20px;
  padding: 0.16rem 0.62rem;
  font-size: 0.62rem; color: var(--gold);
  letter-spacing: 0.06em; margin-bottom: 0.85rem;
}
.mn-vc-text {
  font-size: 0.84rem; color: var(--text-muted);
  line-height: 1.78; margin-bottom: 1.25rem;
  position: relative; font-style: italic;
}
.mn-vc-footer { display: flex; align-items: center; gap: 0.75rem; }
.mn-vc-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid rgba(124,58,237,0.28);
  overflow: hidden; flex-shrink: 0;
}
.mn-vc-avatar img { width: 100%; height: 100%; object-fit: cover; }
.mn-vc-name { font-size: 0.82rem; font-weight: 600; color: var(--text-main); }
.mn-vc-loc { font-size: 0.7rem; color: var(--text-muted); }

/* ── PLAN YOUR DARSHAN ── */
.mn-darshan {
  padding: 6rem 0;
  background:
    radial-gradient(ellipse 55% 80% at 15% 50%, rgba(45,16,96,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 85% 50%, rgba(80,40,10,0.1) 0%, transparent 60%);
}
.mn-timing-list { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.5rem; }
.mn-timing-row {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.85rem 1rem;
  background: rgba(14,5,40,0.65);
  border: 1px solid rgba(124,58,237,0.1);
  border-radius: 10px;
  transition: border-color 0.2s;
}
.mn-timing-row:hover { border-color: rgba(212,168,67,0.22); }
.mn-tr-ico { font-size: 1.05rem; flex-shrink: 0; }
.mn-tr-day {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); min-width: 88px;
}
.mn-tr-time { font-size: 0.85rem; color: var(--text-main); font-family: 'Cinzel', serif; }
.mn-tr-note { font-size: 0.7rem; color: var(--text-muted); margin-left: auto; }

.mn-darshan-card {
  background: rgba(8,3,24,0.88);
  border: 1px solid rgba(124,58,237,0.18);
  border-radius: 20px;
  padding: 2.25rem;
  position: relative; overflow: hidden;
}
.mn-darshan-card::before {
  content: '';
  position: absolute; top: -55px; right: -55px;
  width: 175px; height: 175px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,67,0.055) 0%, transparent 65%);
  pointer-events: none;
}
.mn-darshan-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.18rem; color: var(--gold-light);
  margin-bottom: 0.55rem; line-height: 1.3;
}
.mn-darshan-card p {
  font-size: 0.84rem; color: var(--text-muted);
  line-height: 1.72; margin-bottom: 1.5rem;
}
.mn-darshan-btns { display: flex; flex-direction: column; gap: 0.75rem; }

/* ── RESPONSIVE ── */
@media (max-width: 991.98px) {
  .mn-eclipse-wrap { width: 280px; height: 280px; }
  .mn-sun { width: 115px; height: 115px; }
  .mn-rahu-shadow { width: 118px; height: 118px; }
  .mn-corona { width: 160px; height: 160px; }
  .mn-or1 { width: 190px; height: 190px; }
  .mn-or2 { width: 268px; height: 268px; }
  .mn-door-grid { grid-template-columns: 1fr; }
  .mn-voice-grid { grid-template-columns: 1fr 1fr; }
  .mn-date-grid { grid-template-columns: 1fr; max-width: 320px; }
}
@media (max-width: 767px) {
  .mn-hero { min-height: auto; padding: 5rem 0 3rem; }
  .mn-pillars-row { grid-template-columns: 1fr 1fr; }
  .mn-pillar { border-bottom: 1px solid rgba(124,58,237,0.1); }
  .mn-pillar:nth-child(2), .mn-pillar:nth-child(4) { border-right: none; }
  .mn-offering-grid { grid-template-columns: 1fr 1fr; }
  .mn-eclipse-wrap { display: none; }
  .mn-voice-grid { grid-template-columns: 1fr; }
  .mn-date-grid { grid-template-columns: 1fr 1fr; max-width: 100%; }
}
@media (max-width: 480px) {
  .mn-hero h1 { font-size: 1.9rem; }
  .mn-offering-grid { grid-template-columns: 1fr 1fr; }
  .mn-date-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   PAGE: RAHU POOJA (rahu-pooja.html)
   18000 Mool Mantra Jaap & Rahu Shanti Maha Hawan
═══════════════════════════════════════════════════════ */

/* ── KEYFRAME ANIMATIONS ── */
@keyframes rp-spin  { to { transform: rotate(360deg); } }
@keyframes rp-spin-r{ to { transform: rotate(-360deg); } }
@keyframes rp-float { 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-14px); } }
@keyframes rp-glow-pulse { 0%,100%{ box-shadow:0 0 30px rgba(212,168,67,0.2),0 0 60px rgba(212,168,67,0.08); } 50%{ box-shadow:0 0 50px rgba(212,168,67,0.38),0 0 90px rgba(212,168,67,0.16); } }
@keyframes rp-marquee { from{ transform:translateX(0); } to{ transform:translateX(-50%); } }
@keyframes rp-cd-blink { 0%,100%{ opacity:1; } 50%{ opacity:0.3; } }
@keyframes rp-reveal-in { from{ opacity:0; transform:translateY(28px); } to{ opacity:1; transform:translateY(0); } }

/* ── REVEAL ON SCROLL ── */
.rp-reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.rp-reveal.rp-revealed { opacity: 1; transform: translateY(0); }

/* ── HERO ── */
.rp-hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 8rem 0 5rem;
  background:
    radial-gradient(ellipse 80% 60% at 68% 40%, rgba(91,47,201,0.22) 0%, transparent 65%),
    linear-gradient(155deg, #020410 0%, #08021c 55%, #0e0228 100%);
}

/* Spinning yantra mandala */
.rp-yantra-wrap {
  position: absolute; inset: 0; display: flex;
  align-items: center; justify-content: center;
  pointer-events: none; z-index: 0;
}
.rp-yantra {
  width: min(700px, 110vw); height: min(700px, 110vw);
  animation: rp-spin 90s linear infinite;
  transform-origin: center;
}

/* Split layout */
.rp-hero-layout {
  display: flex; align-items: center; gap: 3rem;
  position: relative; z-index: 2;
}
.rp-hero-text { flex: 1; max-width: 620px; }
.rp-hero-visual-col {
  flex: 0 0 400px; display: flex;
  align-items: center; justify-content: center;
  position: relative; overflow: visible;
}

/* Badges */
.rp-hero-badges { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-bottom: 1.3rem; }
.rp-badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.28rem 0.85rem; border-radius: 20px;
  font-size: 0.73rem; font-weight: 600; letter-spacing: 0.04em;
}
.rp-badge-loc {
  background: rgba(91,47,201,0.2); border: 1px solid rgba(124,58,237,0.38);
  color: rgba(167,139,250,0.9);
}
.rp-badge-day {
  background: rgba(212,168,67,0.1); border: 1px solid rgba(212,168,67,0.32);
  color: var(--gold-light);
}

/* Hero title */
.rp-hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700; line-height: 1.15;
  color: #fff; margin-bottom: 0.4rem;
}
.rp-hero-title-accent {
  display: block;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--gold); font-weight: 600;
  margin-top: 0.25rem;
}
.rp-hero-sub {
  font-size: 0.97rem; color: rgba(255,255,255,0.68);
  line-height: 1.8; margin-bottom: 1.8rem;
}

/* Countdown */
.rp-countdown {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,168,67,0.22);
  border-radius: 12px; padding: 0.9rem 1.2rem;
  display: inline-flex; flex-direction: column; gap: 0.55rem;
  margin-bottom: 1.8rem;
}
.rp-cd-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(212,168,67,0.75);
  display: flex; align-items: center; gap: 0.45rem;
}
.rp-cd-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #f87171; display: inline-block;
  animation: rp-cd-blink 1.4s ease-in-out infinite;
}
.rp-cd-boxes {
  display: flex; align-items: center; gap: 0.4rem;
}
.rp-cd-box {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(0,0,0,0.3); border: 1px solid rgba(212,168,67,0.18);
  border-radius: 8px; padding: 0.55rem 0.7rem; min-width: 52px;
}
.rp-cd-box span {
  font-family: 'Cinzel', serif; font-size: 1.5rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.rp-cd-box small {
  font-size: 0.58rem; color: rgba(255,255,255,0.45);
  text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.2rem;
}
.rp-cd-sep {
  font-size: 1.4rem; font-weight: 700; color: rgba(212,168,67,0.5);
  margin-top: -8px;
}

/* CTAs */
.rp-hero-ctas {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  margin-bottom: 1.6rem;
}

/* Trust row */
.rp-hero-trust {
  display: flex; align-items: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; padding: 0.8rem 1.2rem;
  width: fit-content; gap: 0;
}
.rp-trust-item { display: flex; flex-direction: column; align-items: center; padding: 0 1.1rem; }
.rp-trust-val {
  font-family: 'Cinzel', serif; font-size: 1.1rem; font-weight: 700; color: var(--gold);
}
.rp-trust-lbl { font-size: 0.65rem; color: rgba(255,255,255,0.5); margin-top: 0.1rem; white-space: nowrap; }
.rp-trust-sep { width: 1px; height: 32px; background: rgba(255,255,255,0.1); }

/* ── HERO ECLIPSE VISUAL ── */
/* Twinkling stars */
.rp-star {
  position: absolute;
  width: 2px; height: 2px; border-radius: 50%;
  background: rgba(212,168,67,0.75);
  animation: rp-twinkle var(--dur, 3s) ease-in-out infinite var(--delay, 0s);
  pointer-events: none;
}
@keyframes rp-twinkle {
  0%, 100% { opacity: 0.12; transform: scale(0.7); }
  50%       { opacity: 1;    transform: scale(1.5); }
}

/* Eclipse container */
.rp-eclipse-wrap {
  position: relative;
  width: 380px; height: 380px;
  flex-shrink: 0;
}

/* Orbit rings */
.rp-el-ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1px dashed rgba(124,58,237,0.22);
  transform: translate(-50%, -50%);
}
.rp-el-r1 { width: 265px; height: 265px; animation: rp-el-ring-spin 22s linear infinite; }
.rp-el-r2 { width: 360px; height: 360px; animation: rp-el-ring-spin 40s linear infinite reverse; border-color: rgba(212,168,67,0.1); }
@keyframes rp-el-ring-spin { to { transform: translate(-50%,-50%) rotate(360deg); } }

/* Orbit nodes */
.rp-el-node {
  position: absolute;
  top: 50%; left: 50%;
  animation: rp-el-node-orbit var(--dur, 22s) linear infinite var(--delay, 0s);
}
.rp-el-node::before {
  content: '';
  display: block;
  width: var(--sz, 7px); height: var(--sz, 7px);
  border-radius: 50%;
  background: var(--col, rgba(167,139,250,0.85));
  box-shadow: 0 0 9px var(--col, rgba(167,139,250,0.6));
  margin: calc(var(--sz, 7px) / -2) 0 0 calc(var(--sz, 7px) / -2);
}
@keyframes rp-el-node-orbit {
  from { transform: rotate(0deg)   translateX(var(--r, 130px)) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(var(--r, 130px)) rotate(-360deg); }
}

/* Rahu's shadow planet — deep purple, pulsing */
.rp-el-rahu {
  position: absolute;
  top: 50%; left: 50%;
  width: 150px; height: 150px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle at 36% 32%, rgba(91,47,201,0.5) 0%, rgba(14,5,38,0.98) 55%, #000 100%);
  border: 1.5px solid rgba(212,168,67,0.38);
  box-shadow: 0 0 55px rgba(91,47,201,0.55), 0 0 110px rgba(91,47,201,0.28), 0 0 200px rgba(91,47,201,0.1);
  animation: rp-el-rahu-pulse 5s ease-in-out infinite;
  z-index: 3;
}
@keyframes rp-el-rahu-pulse {
  0%, 100% { box-shadow: 0 0 45px rgba(91,47,201,0.5),  0 0 90px  rgba(91,47,201,0.22); }
  50%       { box-shadow: 0 0 70px rgba(91,47,201,0.78), 0 0 145px rgba(91,47,201,0.42), 0 0 250px rgba(212,168,67,0.07); }
}

/* Corona glow around Rahu */
.rp-el-corona {
  position: absolute;
  top: 50%; left: 50%;
  width: 205px; height: 205px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(212,168,67,0.1), 0 0 35px rgba(212,168,67,0.07);
  animation: rp-el-corona-glow 5s ease-in-out infinite;
  z-index: 2;
}
@keyframes rp-el-corona-glow {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; box-shadow: 0 0 0 3px rgba(212,168,67,0.42), 0 0 65px rgba(212,168,67,0.2); }
}

/* Shadow crossing — Grahan eclipse effect */
.rp-el-shadow {
  position: absolute;
  top: 50%; left: 50%;
  width: 152px; height: 152px;
  border-radius: 50%;
  background: radial-gradient(circle at 42% 42%, #0d0228, #04010e, #000);
  box-shadow: inset -20px -20px 40px rgba(0,0,0,0.95), -6px -6px 22px rgba(0,0,0,0.6);
  animation: rp-el-cross 11s ease-in-out infinite;
  z-index: 4;
}
@keyframes rp-el-cross {
  0%   { transform: translate(-50%,-50%) translate(-95px, 12px); }
  38%  { transform: translate(-50%,-50%) translate(-6px, 0px); }
  62%  { transform: translate(-50%,-50%) translate(6px, 0px); }
  100% { transform: translate(-50%,-50%) translate(95px, -12px); }
}

/* OM over the shadow */
.rp-el-om {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem; font-family: serif;
  color: rgba(212,168,67,0.85);
  z-index: 5;
  animation: rp-el-om-glow 5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes rp-el-om-glow {
  0%, 100% { opacity: 0.55; text-shadow: 0 0 12px rgba(212,168,67,0.3); }
  50%       { opacity: 1;    text-shadow: 0 0 28px rgba(212,168,67,0.7), 0 0 55px rgba(212,168,67,0.3); }
}

/* Label */
.rp-eclipse-label {
  position: absolute;
  bottom: 14px; left: 50%;
  transform: translateX(-50%);
  font-family: 'Cinzel', serif;
  font-size: 0.68rem; letter-spacing: 0.22em;
  color: rgba(212,168,67,0.38);
  white-space: nowrap;
}

/* Price badge */
.rp-price-badge {
  position: absolute; bottom: 24px; right: -14px;
  background: linear-gradient(135deg, rgba(212,168,67,0.18) 0%, rgba(91,47,201,0.32) 100%);
  border: 1px solid rgba(212,168,67,0.42);
  border-radius: 12px; padding: 0.65rem 1rem;
  text-align: center; backdrop-filter: blur(10px);
  z-index: 6;
}
.rp-pb-from { font-size: 0.62rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.1em; }
.rp-pb-price { font-family: 'Cinzel', serif; font-size: 1.4rem; font-weight: 700; color: var(--gold); }
.rp-pb-tier  { font-size: 0.68rem; color: rgba(255,255,255,0.5); margin-top: 0.1rem; }

/* ── MANTRA TICKER ── */
.rp-ticker {
  background: linear-gradient(90deg, rgba(91,47,201,0.35) 0%, rgba(26,10,60,0.7) 50%, rgba(91,47,201,0.35) 100%);
  border-top: 1px solid rgba(212,168,67,0.15);
  border-bottom: 1px solid rgba(212,168,67,0.15);
  padding: 0.75rem 0; overflow: hidden;
}
.rp-ticker-track {
  display: flex;
  width: max-content;
  animation: rp-marquee 22s linear infinite;
}
.rp-ticker-inner {
  display: flex; align-items: center; gap: 2rem;
  padding-right: 2rem;
  white-space: nowrap;
  font-family: 'Cinzel', serif; font-size: 0.88rem;
  color: rgba(212,168,67,0.75); letter-spacing: 0.06em;
}
.rp-tick-sep { color: rgba(212,168,67,0.4); font-size: 0.7rem; }

/* ── RAHU DOSH SECTION ── */
.rp-section { padding: 5rem 0; }
.rp-dosh-section {
  background:
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(60,5,20,0.28) 0%, transparent 70%),
    rgba(12,2,28,0.7);
  border-top: 1px solid rgba(248,113,113,0.1);
  border-bottom: 1px solid rgba(248,113,113,0.06);
}
.rp-dosh-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.rp-dosh-item {
  display: flex; align-items: flex-start; gap: 0.8rem;
  background: rgba(20,5,40,0.6);
  border: 1px solid rgba(248,113,113,0.18);
  border-radius: 10px; padding: 0.85rem 1rem;
  transition: border-color 0.2s, transform 0.2s;
}
.rp-dosh-item:hover {
  border-color: rgba(248,113,113,0.38);
  transform: translateX(4px);
}
.rp-dosh-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 0.05rem; }
.rp-dosh-item strong { font-size: 0.82rem; font-weight: 700; color: var(--text-main); display: block; margin-bottom: 0.2rem; }
.rp-dosh-item p { font-size: 0.75rem; color: var(--text-muted); line-height: 1.5; margin: 0; }

/* ── WHAT YOU RECEIVE — FLOW LAYOUT ── */
.rp-includes-section { background: rgba(15,3,40,0.5); }
.rp-inc-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 2rem;
  position: relative;
}
.rp-inc-flow::before {
  content: '';
  position: absolute; top: 2.5rem; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,168,67,0.2), transparent);
}
.rp-inc-item {
  position: relative;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  padding: 1.8rem 1.2rem 1.4rem;
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 16px;
  transition: border-color 0.22s, transform 0.22s, box-shadow 0.22s;
}
.rp-inc-item:hover {
  border-color: rgba(124,58,237,0.45); transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(10,4,28,0.45);
}
.rp-inc-highlight {
  border-color: rgba(212,168,67,0.3) !important;
  background: linear-gradient(160deg, rgba(212,168,67,0.06) 0%, var(--card-bg) 60%);
}
.rp-inc-num {
  position: absolute; top: -1px; left: -1px;
  background: rgba(124,58,237,0.2); border: 1px solid rgba(124,58,237,0.35);
  color: rgba(167,139,250,0.8); font-size: 0.65rem; font-weight: 800;
  letter-spacing: 0.1em; padding: 0.18rem 0.6rem;
  border-radius: 14px 0 10px 0;
}
.rp-inc-icon-lg { font-size: 2.4rem; margin-bottom: 0.8rem; }
.rp-inc-body h4 {
  font-family: 'Cinzel', serif; font-size: 0.95rem; font-weight: 700;
  color: var(--text-main); margin-bottom: 0.45rem;
}
.rp-inc-body p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; margin: 0; }
.rp-inc-tag {
  display: inline-block; margin-top: 0.75rem;
  background: rgba(212,168,67,0.12); border: 1px solid rgba(212,168,67,0.3);
  color: var(--gold-light); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.08em; padding: 0.18rem 0.65rem; border-radius: 20px;
}

/* ── PRICING PACKAGES ── */
.rp-pkg-section {
  background: #030610; position: relative;
}
.rp-pkg-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(91,47,201,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.rp-pkg-section .container { position: relative; z-index: 1; }

.rp-pkg-card {
  background: linear-gradient(160deg, rgba(18,6,52,0.97) 0%, rgba(4,2,14,0.99) 100%);
  border: 1px solid rgba(124,58,237,0.22); border-radius: 18px;
  overflow: hidden; height: 100%; position: relative;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.rp-pkg-card:hover {
  transform: translateY(-6px); border-color: rgba(124,58,237,0.5);
  box-shadow: 0 20px 55px rgba(10,4,28,0.6);
}
.rp-pkg-featured {
  border-color: rgba(212,168,67,0.45) !important;
  box-shadow: 0 0 0 1px rgba(212,168,67,0.15), 0 8px 32px rgba(10,4,28,0.5);
  animation: rp-glow-pulse 3s ease-in-out infinite;
}
.rp-pkg-ribbon {
  position: absolute; top: 15px; right: -28px;
  background: var(--gold); color: #0a0318;
  font-size: 0.65rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.28rem 2.6rem; transform: rotate(40deg); z-index: 5;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.rp-ribbon-violet { background: var(--violet); color: #fff; }

.rp-pkg-top {
  padding: 1.8rem 1.4rem 1.2rem; text-align: center;
  background: linear-gradient(160deg, rgba(91,47,201,0.22) 0%, rgba(26,10,60,0.12) 100%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.rp-pkg-top-gold {
  background: linear-gradient(160deg, rgba(212,168,67,0.16) 0%, rgba(124,58,237,0.16) 100%);
}
.rp-pkg-icon { font-size: 2.4rem; display: block; margin-bottom: 0.6rem; }
.rp-pkg-tier {
  font-family: 'Cinzel', serif; font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: 0.3rem;
}
.rp-pkg-devotees { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.rp-pkg-body { padding: 1.4rem; display: flex; flex-direction: column; }
.rp-pkg-price {
  font-family: 'Cinzel', serif; font-size: 2rem; font-weight: 700;
  color: var(--gold); margin-bottom: 1.1rem; text-align: center;
}
.rp-pkg-features { list-style: none; padding: 0; margin: 0 0 1.4rem; flex: 1; }
.rp-pkg-features li {
  font-size: 0.81rem; color: var(--text-muted);
  padding: 0.4rem 0; border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex; align-items: flex-start; gap: 0.5rem;
}
.rp-pkg-features li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 0.05rem; }
.rp-feat-highlight { color: var(--gold-light) !important; }
.rp-feat-highlight::before { content: '' !important; }
.rp-pkg-btn {
  display: block; text-align: center;
  padding: 0.72rem 1.2rem; border-radius: 8px;
  background: rgba(124,58,237,0.18); border: 1px solid rgba(124,58,237,0.42);
  color: rgba(167,139,250,0.9); font-weight: 600; font-size: 0.88rem;
  text-decoration: none; transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.rp-pkg-btn:hover { background: rgba(124,58,237,0.38); border-color: rgba(167,139,250,0.6); color: #fff; }
.rp-pkg-btn-gold {
  background: linear-gradient(135deg, rgba(212,168,67,0.2) 0%, rgba(212,168,67,0.1) 100%);
  border-color: rgba(212,168,67,0.48); color: var(--gold-light);
}
.rp-pkg-btn-gold:hover {
  background: linear-gradient(135deg, rgba(212,168,67,0.36) 0%, rgba(212,168,67,0.2) 100%);
  border-color: var(--gold); color: #fff;
}
.rp-pkg-note { font-size: 0.82rem; color: var(--text-muted); }

/* ── PROCESS TIMELINE ── */
.rp-timeline-section { background: rgba(10,2,28,0.6); }
.rp-timeline {
  position: relative; max-width: 880px; margin: 0 auto;
  padding: 0.5rem 0 2rem;
}
/* Vertical center line — drawn through the axis column center */
.rp-timeline::before {
  content: '';
  position: absolute;
  left: 50%; transform: translateX(-50%);
  top: 30px; bottom: 30px;
  width: 2px;
  background: linear-gradient(to bottom, rgba(212,168,67,0.7), rgba(124,58,237,0.55));
  pointer-events: none;
}
/* 3-column grid: left-half | 56px axis | right-half */
.rp-tl-row {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  align-items: start;
  margin-bottom: 2rem;
}
.rp-tl-row:last-child { margin-bottom: 0; }
/* Axis column — dot always perfectly centered over the line */
.rp-tl-axis {
  display: flex; justify-content: center;
  padding-top: 1.5rem;
  position: relative; z-index: 2;
}
.rp-tl-dot {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(212,168,67,0.15);
  border: 2px solid rgba(212,168,67,0.6);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 16px rgba(212,168,67,0.3);
}
.rp-tl-dot-inner {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
}
.rp-tl-half { padding: 0 1rem; }
.rp-tl-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px; padding: 1.5rem;
  transition: border-color 0.22s, transform 0.22s;
}
.rp-tl-card:hover { border-color: rgba(124,58,237,0.45); transform: translateY(-3px); }
.rp-tl-step {
  font-size: 0.65rem; font-weight: 800; letter-spacing: 0.14em;
  color: var(--gold); margin-bottom: 0.5rem; text-transform: uppercase;
}
.rp-tl-icon { font-size: 1.8rem; display: block; margin-bottom: 0.6rem; }
.rp-tl-card h4 {
  font-family: 'Cinzel', serif; font-size: 0.95rem; font-weight: 700;
  color: var(--text-main); margin-bottom: 0.5rem;
}
.rp-tl-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.72; margin: 0; }

/* ── BENEFITS ── */
.rp-benefits-section { background: #030610; }
.rp-benefit {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 12px; padding: 1.3rem; height: 100%;
  transition: border-color 0.2s, transform 0.2s;
}
.rp-benefit:hover { border-color: rgba(124,58,237,0.4); transform: translateY(-2px); }
.rp-benefit-wealth:hover { border-color: rgba(212,168,67,0.4); }
.rp-benefit-fame:hover   { border-color: rgba(167,139,250,0.4); }
.rp-benefit-power:hover  { border-color: rgba(251,191,36,0.4); }
.rp-benefit-peace:hover  { border-color: rgba(110,231,183,0.4); }
.rp-benefit-love:hover   { border-color: rgba(248,113,113,0.4); }
.rp-benefit-travel:hover { border-color: rgba(56,189,248,0.4); }
.rp-benefit-icon { font-size: 1.9rem; flex-shrink: 0; }
.rp-benefit h5 {
  font-family: 'Cinzel', serif; font-size: 0.9rem; font-weight: 700;
  color: var(--text-main); margin-bottom: 0.4rem;
}
.rp-benefit p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ── MINI TESTIMONIALS ── */
.rp-mini-tc-section { background: rgba(15,3,40,0.5); }
.rp-mini-tc {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 14px; padding: 1.4rem; height: 100%;
  transition: border-color 0.22s, transform 0.22s;
}
.rp-mini-tc:hover { border-color: rgba(124,58,237,0.42); transform: translateY(-3px); }
.rp-mini-tc-featured {
  border-color: rgba(212,168,67,0.3);
  background: linear-gradient(160deg, rgba(212,168,67,0.05) 0%, var(--card-bg) 60%);
}
.rp-mini-stars { color: var(--gold); font-size: 0.88rem; margin-bottom: 0.8rem; }
.rp-mini-quote {
  font-size: 0.86rem; color: rgba(255,255,255,0.75);
  line-height: 1.75; font-style: italic; margin-bottom: 1.1rem;
}
.rp-mini-author {
  display: flex; align-items: center; gap: 0.65rem;
}
.rp-mini-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  object-fit: cover; border: 2px solid rgba(212,168,67,0.3);
  flex-shrink: 0;
}
.rp-mini-author strong { font-size: 0.85rem; font-weight: 700; color: var(--text-main); display: block; }
.rp-mini-author span  { font-size: 0.72rem; color: var(--text-muted); }

/* ── TRUST STRIP ── */
.rp-trust-strip {
  background: linear-gradient(135deg, rgba(91,47,201,0.22) 0%, rgba(26,10,60,0.6) 100%);
  border-top: 1px solid var(--card-border); border-bottom: 1px solid var(--card-border);
  padding: 1.2rem 0;
}
.rp-trust-strip-inner {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 1.2rem 2.2rem; align-items: center;
}
.rp-ts-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.72); }
.rp-ts-icon { font-size: 1rem; }

/* ── STICKY MOBILE CTA ── */
.rp-sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: linear-gradient(135deg, rgba(14,4,42,0.97) 0%, rgba(4,1,12,0.99) 100%);
  border-top: 1px solid rgba(212,168,67,0.3);
  padding: 0.75rem 1rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  backdrop-filter: blur(12px);
}
.rp-sticky-cta.rp-sticky-visible { transform: translateY(0); }
.rp-sticky-left { display: flex; flex-direction: column; }
.rp-sticky-name { font-size: 0.78rem; font-weight: 700; color: var(--text-main); }
.rp-sticky-price { font-size: 0.7rem; color: var(--gold-light); }
.rp-sticky-btn {
  background: linear-gradient(135deg, var(--gold) 0%, rgba(212,168,67,0.7) 100%);
  color: #0a0318 !important; font-weight: 800; font-size: 0.85rem;
  padding: 0.6rem 1.4rem; border-radius: 8px; text-decoration: none;
  white-space: nowrap; flex-shrink: 0;
  transition: opacity 0.2s, transform 0.2s;
}
.rp-sticky-btn:hover { opacity: 0.88; transform: scale(1.02); }

/* ── RESPONSIVE ── */
@media (max-width: 1199.98px) {
  .rp-hero { min-height: auto; padding: 7rem 0 4.5rem; }
}
@media (max-width: 991.98px) {
  .rp-hero { padding: 6rem 0 4rem; }
  .rp-hero-layout { flex-direction: column; }
  .rp-hero-text { max-width: 100%; }
  .rp-timeline::before { left: 28px; transform: none; top: 0; bottom: 0; }
  .rp-tl-row { grid-template-columns: 56px 1fr; grid-template-areas: "axis card"; margin-bottom: 1.5rem; }
  .rp-tl-axis { grid-area: axis; }
  .rp-tl-half { display: none; }
  .rp-tl-half.rp-tl-has-card { display: block; grid-area: card; padding: 0 0 0 0.5rem; }
  .rp-dosh-grid { grid-template-columns: 1fr; }
  .rp-inc-flow { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767.98px) {
  .rp-sticky-cta { display: flex; }
}
@media (min-width: 768px) {
  .rp-sticky-cta { display: none !important; }
}
@media (max-width: 575.98px) {
  .rp-hero-title { font-size: 1.75rem; }
  .rp-hero-title-accent { font-size: 1.15rem; }
  .rp-cd-box { min-width: 44px; padding: 0.45rem 0.55rem; }
  .rp-cd-box span { font-size: 1.25rem; }
  .rp-pkg-price { font-size: 1.65rem; }
  .rp-inc-flow { grid-template-columns: 1fr; }
  .rp-hero-ctas { flex-direction: column; }
  .rp-hero-trust { flex-wrap: wrap; }
  .rp-trust-item { padding: 0 0.65rem; }
}

/* ═══════════════════════════════════════════════════════
   PAGE: CHADAVA (chadava.html) — cv- prefix
═══════════════════════════════════════════════════════ */
.cv-hero { padding: 9rem 0 4rem; background: radial-gradient(ellipse 70% 60% at 50% 30%, rgba(91,47,201,0.18) 0%, transparent 70%), linear-gradient(160deg,#020410 0%,#08021c 60%,#0e0228 100%); text-align: center; }
.cv-cats-wrap { background: rgba(10,3,26,0.8); border-top: 1px solid rgba(212,168,67,0.1); border-bottom: 1px solid rgba(212,168,67,0.1); padding: 0.75rem 0; position: sticky; top: 70px; z-index: 10; }
.cv-cats { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.cv-cat { background: transparent; border: 1px solid rgba(124,58,237,0.25); color: rgba(255,255,255,0.6); padding: 0.38rem 1rem; border-radius: 20px; font-size: 0.8rem; cursor: pointer; transition: all 0.2s; }
.cv-cat:hover, .cv-cat.active { background: rgba(124,58,237,0.2); border-color: rgba(124,58,237,0.5); color: rgba(167,139,250,0.95); }
.cv-section { padding: 3rem 0 5rem; background: #030610; }
.cv-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 14px; overflow: hidden; height: 100%; display: flex; flex-direction: column; transition: border-color 0.22s, transform 0.22s; }
.cv-card:hover { border-color: rgba(124,58,237,0.4); transform: translateY(-4px); }
.cv-img-wrap { position: relative; height: 160px; background: linear-gradient(135deg, rgba(45,16,96,0.5), rgba(10,3,26,0.8)); display: flex; align-items: center; justify-content: center; }
.cv-img-ph { font-size: 3.5rem; }
.cv-badge { position: absolute; top: 10px; right: 10px; background: linear-gradient(135deg, rgba(212,168,67,0.9), rgba(180,140,50,0.9)); color: #000; font-size: 0.65rem; font-weight: 700; padding: 0.22rem 0.6rem; border-radius: 10px; letter-spacing: 0.08em; }
.cv-badge.cv-badge-purple { background: linear-gradient(135deg, rgba(124,58,237,0.9), rgba(91,47,201,0.9)); color: #fff; }
.cv-card-body { padding: 1.2rem; flex: 1; display: flex; flex-direction: column; }
.cv-category { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(167,139,250,0.7); margin-bottom: 0.4rem; }
.cv-card-body h4 { font-family: 'Cinzel', serif; font-size: 0.95rem; font-weight: 700; color: var(--text-main); margin-bottom: 0.5rem; }
.cv-card-body p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.68; flex: 1; margin: 0 0 1rem; }
.cv-footer { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; margin-top: auto; }
.cv-price { font-family: 'Cinzel', serif; font-size: 1.1rem; font-weight: 700; color: var(--gold); }
.cv-add-btn { background: linear-gradient(135deg, rgba(124,58,237,0.25), rgba(91,47,201,0.35)); border: 1px solid rgba(124,58,237,0.4); color: rgba(167,139,250,0.9); padding: 0.42rem 0.9rem; border-radius: 8px; font-size: 0.78rem; font-weight: 600; cursor: pointer; transition: all 0.2s; white-space: nowrap; }
.cv-add-btn:hover { background: rgba(124,58,237,0.4); border-color: rgba(167,139,250,0.5); }
.cv-cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 900; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.cv-cart-overlay.cv-open { opacity: 1; pointer-events: all; }
.cv-cart { position: fixed; top: 0; right: 0; width: 360px; max-width: 90vw; height: 100vh; background: #0d0226; border-left: 1px solid rgba(124,58,237,0.25); z-index: 901; display: flex; flex-direction: column; transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1); }
.cv-cart.cv-open { transform: translateX(0); }
.cv-cart-head { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; border-bottom: 1px solid rgba(124,58,237,0.18); }
.cv-cart-head h3 { font-family: 'Cinzel', serif; font-size: 1rem; color: var(--text-main); margin: 0; }
.cv-cart-close { background: none; border: none; color: rgba(255,255,255,0.6); font-size: 1.5rem; cursor: pointer; line-height: 1; }
.cv-cart-body { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }
.cv-cart-empty { text-align: center; padding: 3rem 1rem; color: var(--text-muted); }
.cv-cart-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.cv-ci-info { flex: 1; }
.cv-ci-name { font-size: 0.85rem; color: var(--text-main); }
.cv-ci-price { font-size: 0.8rem; color: var(--gold); font-weight: 600; margin-top: 0.15rem; }
.cv-ci-remove { background: none; border: none; color: rgba(248,113,113,0.7); font-size: 1.1rem; cursor: pointer; padding: 0 0.25rem; }
.cv-cart-foot { padding: 1.25rem 1.5rem; border-top: 1px solid rgba(124,58,237,0.18); }
.cv-cart-note { font-size: 0.72rem; color: rgba(212,168,67,0.6); text-align: center; margin-bottom: 0.85rem; }
.cv-cart-total { display: flex; justify-content: space-between; font-family: 'Cinzel', serif; margin-bottom: 0.35rem; }
.cv-cart-total strong { color: var(--gold); font-size: 1.1rem; }
.cv-cart-shipping { font-size: 0.72rem; color: rgba(167,139,250,0.6); margin-bottom: 1rem; }
.cv-cart-fab { position: fixed; bottom: 2rem; right: 2rem; width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--indigo), var(--deep-purple)); border: 1px solid rgba(212,168,67,0.3); color: #fff; font-size: 1.3rem; cursor: pointer; z-index: 800; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(91,47,201,0.4); }
.cv-cart-count { position: absolute; top: -4px; right: -4px; background: var(--gold); color: #000; font-size: 0.65rem; font-weight: 800; min-width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

/* ═══════════════════════════════════════════════════════
   PAGE: BLOG (blog.html) — bl- prefix
═══════════════════════════════════════════════════════ */
.bl-hero { padding: 9rem 0 4rem; background: radial-gradient(ellipse 70% 50% at 50% 30%, rgba(26,10,60,0.5) 0%, transparent 70%), linear-gradient(160deg,#020410 0%,#07021a 100%); text-align: center; }
.bl-search-wrap { display: flex; max-width: 520px; margin: 1.5rem auto 0; background: rgba(255,255,255,0.04); border: 1px solid rgba(124,58,237,0.3); border-radius: 40px; overflow: hidden; }
.bl-search { flex: 1; background: transparent; border: none; padding: 0.75rem 1.25rem; color: var(--text-main); font-size: 0.88rem; outline: none; }
.bl-search-btn { background: linear-gradient(135deg, rgba(124,58,237,0.5), rgba(91,47,201,0.6)); border: none; color: rgba(212,168,67,0.9); padding: 0.75rem 1.4rem; font-size: 0.82rem; font-weight: 600; cursor: pointer; }
.bl-section { padding: 3rem 0 4rem; background: #030610; }
.bl-featured { display: flex; gap: 0; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 16px; overflow: hidden; transition: border-color 0.22s; }
.bl-featured:hover { border-color: rgba(124,58,237,0.4); }
.bl-feat-visual { flex: 0 0 220px; background: linear-gradient(135deg, rgba(45,16,96,0.7), rgba(8,2,22,0.9)); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; padding: 2rem; }
.bl-feat-icon { font-size: 4rem; }
.bl-feat-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(212,168,67,0.6); border: 1px solid rgba(212,168,67,0.25); padding: 0.25rem 0.75rem; border-radius: 20px; }
.bl-feat-body { flex: 1; padding: 2rem; }
.bl-feat-title { font-family: 'Cinzel', serif; font-size: 1.4rem; font-weight: 700; color: var(--text-main); line-height: 1.3; margin: 0.75rem 0 1rem; }
.bl-feat-excerpt { font-size: 0.88rem; color: var(--text-muted); line-height: 1.78; margin-bottom: 1.5rem; }
.bl-feat-author { display: flex; align-items: center; gap: 0.75rem; }
.bl-author-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, rgba(124,58,237,0.5), rgba(212,168,67,0.3)); display: flex; align-items: center; justify-content: center; font-family: 'Cinzel', serif; font-size: 1rem; font-weight: 700; color: var(--gold); flex-shrink: 0; }
.bl-author-name { font-size: 0.85rem; font-weight: 600; color: var(--text-main); }
.bl-author-role { font-size: 0.72rem; color: var(--text-muted); }
.bl-cats-wrap { background: rgba(10,3,26,0.8); border-top: 1px solid rgba(124,58,237,0.12); border-bottom: 1px solid rgba(124,58,237,0.12); padding: 0.75rem 0; }
.bl-cats { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.bl-cat { background: transparent; border: 1px solid rgba(124,58,237,0.22); color: rgba(255,255,255,0.55); padding: 0.35rem 0.9rem; border-radius: 20px; font-size: 0.78rem; cursor: pointer; transition: all 0.2s; }
.bl-cat:hover, .bl-cat.active { background: rgba(124,58,237,0.18); border-color: rgba(124,58,237,0.45); color: rgba(167,139,250,0.9); }
.bl-card { display: flex; flex-direction: column; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 14px; overflow: hidden; height: 100%; color: var(--text-main); transition: border-color 0.22s, transform 0.22s; }
.bl-card:hover { border-color: rgba(124,58,237,0.35); transform: translateY(-4px); }
.bl-card-visual { height: 140px; background: linear-gradient(135deg, rgba(45,16,96,0.6), rgba(8,2,22,0.85)); display: flex; align-items: center; justify-content: center; }
.bl-card-icon { font-size: 3rem; }
.bl-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.bl-card-body h3 { font-family: 'Cinzel', serif; font-size: 0.92rem; font-weight: 700; color: var(--text-main); line-height: 1.4; margin: 0.6rem 0 0.6rem; }
.bl-card-body p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.68; flex: 1; margin: 0; }
.bl-meta { display: flex; align-items: center; gap: 0.4rem; font-size: 0.72rem; color: var(--text-muted); flex-wrap: wrap; }
.bl-meta-sep { opacity: 0.4; }
.bl-tag { display: inline-block; background: rgba(124,58,237,0.15); border: 1px solid rgba(124,58,237,0.28); color: rgba(167,139,250,0.85); font-size: 0.68rem; font-weight: 600; padding: 0.15rem 0.55rem; border-radius: 10px; letter-spacing: 0.04em; text-decoration: none; }
.bl-tag-astro { background: rgba(212,168,67,0.12); border-color: rgba(212,168,67,0.28); color: rgba(212,168,67,0.9); }
.bl-tag-kundali { background: rgba(52,211,153,0.1); border-color: rgba(52,211,153,0.25); color: rgba(52,211,153,0.85); }
.bl-tag-remedy { background: rgba(248,113,113,0.1); border-color: rgba(248,113,113,0.25); color: rgba(248,113,113,0.85); }
.bl-read-more { font-size: 0.78rem; font-weight: 600; color: var(--gold-light); margin-top: 1rem; }
.bl-pagination { display: flex; align-items: center; gap: 0.5rem; justify-content: center; margin-top: 3rem; }
.bl-page-btn { width: 38px; height: 38px; border-radius: 8px; background: rgba(255,255,255,0.04); border: 1px solid rgba(124,58,237,0.22); color: rgba(255,255,255,0.65); font-size: 0.85rem; cursor: pointer; transition: all 0.2s; }
.bl-page-btn.active, .bl-page-btn:hover { background: rgba(124,58,237,0.2); border-color: rgba(124,58,237,0.5); color: rgba(167,139,250,0.9); }
.bl-page-sep { color: var(--text-muted); }
.bl-page-next { padding: 0 1rem; height: 38px; border-radius: 8px; background: rgba(124,58,237,0.15); border: 1px solid rgba(124,58,237,0.35); color: rgba(167,139,250,0.9); font-size: 0.82rem; cursor: pointer; transition: all 0.2s; }

/* ═══════════════════════════════════════════════════════
   PAGE: BLOG DETAIL (blog-detail.html) — bd- prefix
═══════════════════════════════════════════════════════ */
.bd-hero { padding: 9rem 0 3rem; background: linear-gradient(160deg,#020410 0%,#08021c 60%,#0e0228 100%); }
.bd-meta { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1rem; }
.bd-title { font-family: 'Cinzel', serif; font-size: clamp(1.5rem,3.5vw,2.5rem); font-weight: 700; color: var(--text-main); line-height: 1.25; margin-bottom: 1.5rem; }
.bd-author-row { display: flex; align-items: center; gap: 0.85rem; flex-wrap: wrap; }
.bd-share-row { display: flex; align-items: center; gap: 0.5rem; }
.bd-share-lbl { font-size: 0.72rem; color: var(--text-muted); }
.bd-share-btn { width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.7); font-size: 0.8rem; cursor: pointer; transition: all 0.2s; }
.bd-share-btn:hover { background: rgba(124,58,237,0.2); border-color: rgba(124,58,237,0.4); }
.bd-section { padding: 3rem 0 5rem; background: #030610; }
.bd-body { color: var(--text-main); }
.bd-body h2 { font-family: 'Cinzel', serif; font-size: 1.3rem; font-weight: 700; color: var(--text-main); margin: 2rem 0 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid rgba(124,58,237,0.2); }
.bd-body p { font-size: 0.95rem; color: rgba(255,255,255,0.78); line-height: 1.85; margin-bottom: 1.25rem; }
.bd-body strong { color: var(--text-main); }
.bd-toc { background: rgba(45,16,96,0.2); border: 1px solid rgba(124,58,237,0.22); border-radius: 12px; padding: 1.25rem 1.5rem; margin-bottom: 2rem; }
.bd-toc-title { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(212,168,67,0.7); margin-bottom: 0.75rem; }
.bd-toc-list { margin: 0; padding-left: 1.25rem; }
.bd-toc-list li { margin-bottom: 0.45rem; }
.bd-toc-list a { font-size: 0.85rem; color: rgba(167,139,250,0.8); text-decoration: none; }
.bd-toc-list a:hover { color: var(--gold-light); }
.bd-callout { display: flex; gap: 0.9rem; background: rgba(45,16,96,0.25); border-left: 3px solid rgba(212,168,67,0.5); border-radius: 0 10px 10px 0; padding: 1rem 1.25rem; margin: 1.5rem 0; font-size: 0.87rem; color: rgba(255,255,255,0.78); line-height: 1.7; }
.bd-callout-purple { border-left-color: rgba(124,58,237,0.6); background: rgba(91,47,201,0.12); }
.bd-callout-icon { font-size: 1rem; flex-shrink: 0; margin-top: 0.1rem; }
.bd-table-wrap { overflow-x: auto; margin: 1.5rem 0; }
.bd-table { width: 100%; border-collapse: collapse; font-size: 0.82rem; }
.bd-table th { background: rgba(45,16,96,0.4); color: rgba(212,168,67,0.85); font-family: 'Cinzel', serif; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.7rem 1rem; text-align: left; border-bottom: 1px solid rgba(124,58,237,0.25); }
.bd-table td { padding: 0.65rem 1rem; border-bottom: 1px solid rgba(255,255,255,0.06); color: rgba(255,255,255,0.75); vertical-align: top; }
.bd-table tr:hover td { background: rgba(124,58,237,0.06); }
.bd-house-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin: 1.25rem 0; }
.bd-house { background: rgba(10,3,26,0.6); border: 1px solid rgba(124,58,237,0.2); border-radius: 10px; padding: 1rem; font-size: 0.8rem; color: rgba(255,255,255,0.72); line-height: 1.6; }
.bd-house-num { font-family: 'Cinzel', serif; font-weight: 700; color: var(--gold); font-size: 0.95rem; margin-bottom: 0.4rem; }
.bd-remedy-list { display: flex; flex-direction: column; gap: 1rem; margin: 1.25rem 0; }
.bd-remedy { display: flex; gap: 1rem; background: rgba(10,3,26,0.5); border: 1px solid rgba(124,58,237,0.18); border-radius: 10px; padding: 1rem; }
.bd-remedy-num { font-family: 'Cinzel', serif; font-size: 1.1rem; font-weight: 700; color: var(--gold); flex-shrink: 0; min-width: 28px; }
.bd-remedy h5 { font-family: 'Cinzel', serif; font-size: 0.88rem; color: var(--text-main); margin-bottom: 0.3rem; }
.bd-remedy p { font-size: 0.8rem; color: var(--text-muted); margin: 0; line-height: 1.65; }
.bd-article-cta { display: flex; gap: 1.25rem; align-items: center; background: linear-gradient(135deg, rgba(45,16,96,0.4), rgba(91,47,201,0.2)); border: 1px solid rgba(212,168,67,0.25); border-radius: 14px; padding: 1.5rem; margin: 2rem 0; }
.bd-acta-icon { font-size: 2.5rem; flex-shrink: 0; }
.bd-acta-body h4 { font-family: 'Cinzel', serif; font-size: 1rem; color: var(--gold-light); margin-bottom: 0.35rem; }
.bd-acta-body p { font-size: 0.82rem; color: var(--text-muted); margin: 0 0 0.85rem; line-height: 1.6; }
.bd-tags-row { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; margin: 2rem 0; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.07); }
.bd-tag-lbl { font-size: 0.75rem; color: var(--text-muted); }
.bd-author-card { display: flex; gap: 1.25rem; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 14px; padding: 1.5rem; margin-top: 2rem; }
.bd-author-av { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, rgba(124,58,237,0.5), rgba(212,168,67,0.3)); display: flex; align-items: center; justify-content: center; font-family: 'Cinzel', serif; font-size: 1.5rem; font-weight: 700; color: var(--gold); flex-shrink: 0; }
.bd-author-info h4 { font-family: 'Cinzel', serif; font-size: 1rem; color: var(--text-main); margin-bottom: 0.25rem; }
.bd-author-cred { font-size: 0.72rem; color: rgba(212,168,67,0.7); margin-bottom: 0.5rem; }
.bd-author-info p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.68; margin: 0; }
.bd-sidebar { display: flex; flex-direction: column; gap: 1.25rem; position: sticky; top: 90px; }
.bd-sidebar-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 14px; padding: 1.4rem; }
.bd-sidebar-cta { background: linear-gradient(135deg, rgba(45,16,96,0.5), rgba(91,47,201,0.25)); border-color: rgba(212,168,67,0.22); text-align: center; }
.bd-sc-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.bd-sidebar-cta h4 { font-family: 'Cinzel', serif; font-size: 0.95rem; color: var(--gold-light); margin-bottom: 0.5rem; }
.bd-sidebar-cta p { font-size: 0.8rem; color: var(--text-muted); margin: 0; line-height: 1.6; }
.bd-sc-head { font-family: 'Cinzel', serif; font-size: 0.85rem; font-weight: 700; color: var(--text-main); margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.bd-recent-posts { display: flex; flex-direction: column; gap: 0.75rem; }
.bd-recent-post { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; padding: 0.5rem; border-radius: 8px; transition: background 0.2s; }
.bd-recent-post:hover { background: rgba(124,58,237,0.1); }
.bd-rp-icon { font-size: 1.4rem; flex-shrink: 0; }
.bd-rp-title { font-size: 0.8rem; color: var(--text-main); line-height: 1.4; }
.bd-rp-date { font-size: 0.7rem; color: var(--text-muted); margin-top: 0.15rem; }
.bd-tag-cloud { display: flex; flex-wrap: wrap; gap: 0.5rem; }

/* ═══════════════════════════════════════════════════════
   PAGE: CHECKOUT (checkout.html) — ck- prefix
═══════════════════════════════════════════════════════ */
.ck-secure-badge { font-size: 0.78rem; color: rgba(52,211,153,0.8); font-weight: 600; display: flex; align-items: center; gap: 0.35rem; }
.ck-breadcrumb-bar { background: rgba(10,3,26,0.8); border-bottom: 1px solid rgba(124,58,237,0.15); padding: 0.75rem 0; }
.ck-steps { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; }
.ck-step { color: rgba(255,255,255,0.35); font-weight: 500; }
.ck-step.ck-done { color: rgba(52,211,153,0.8); }
.ck-step.ck-active { color: var(--gold-light); font-weight: 700; }
.ck-step-sep { color: rgba(255,255,255,0.2); }
.ck-section { padding: 2.5rem 0 5rem; min-height: 80vh; }
.ck-block { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 14px; padding: 1.75rem; margin-bottom: 1.5rem; }
.ck-block-head { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1.25rem; }
.ck-block-num { width: 30px; height: 30px; border-radius: 50%; background: linear-gradient(135deg, rgba(124,58,237,0.5), rgba(91,47,201,0.6)); display: flex; align-items: center; justify-content: center; font-family: 'Cinzel', serif; font-size: 0.8rem; font-weight: 700; color: var(--gold); flex-shrink: 0; }
.ck-block-head h3 { font-family: 'Cinzel', serif; font-size: 1rem; font-weight: 700; color: var(--text-main); margin: 0; }
.ck-label { display: block; font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.65); margin-bottom: 0.4rem; }
.ck-req { color: rgba(248,113,113,0.8); }
.ck-input { width: 100%; background: rgba(255,255,255,0.04); border: 1px solid rgba(124,58,237,0.25); border-radius: 8px; padding: 0.65rem 0.9rem; color: var(--text-main); font-size: 0.88rem; font-family: 'Inter', sans-serif; outline: none; transition: border-color 0.2s; resize: none; }
.ck-input:focus { border-color: rgba(124,58,237,0.55); }
.ck-prasad-note { background: rgba(212,168,67,0.08); border: 1px solid rgba(212,168,67,0.2); border-radius: 8px; padding: 0.65rem 1rem; font-size: 0.8rem; color: rgba(212,168,67,0.8); margin-bottom: 1rem; }
.ck-pay-methods { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 1.25rem; }
.ck-pay-opt { display: flex; align-items: center; gap: 0.75rem; background: rgba(255,255,255,0.03); border: 1px solid rgba(124,58,237,0.2); border-radius: 10px; padding: 0.85rem 1rem; cursor: pointer; transition: all 0.2s; }
.ck-pay-opt input { display: none; }
.ck-pay-opt.ck-pay-selected { background: rgba(124,58,237,0.12); border-color: rgba(124,58,237,0.45); }
.ck-pay-icon { font-size: 1.25rem; flex-shrink: 0; }
.ck-pay-label { font-size: 0.82rem; font-weight: 600; color: var(--text-main); line-height: 1.2; }
.ck-pay-label small { display: block; font-size: 0.68rem; color: var(--text-muted); font-weight: 400; }
.ck-pay-check { width: 16px; height: 16px; border-radius: 50%; border: 1.5px solid rgba(124,58,237,0.4); margin-left: auto; flex-shrink: 0; }
.ck-pay-selected .ck-pay-check { background: var(--gold); border-color: var(--gold); }
.ck-upi-wrap { margin-top: 0.75rem; }
.ck-upi-apps { display: flex; gap: 0.5rem; margin-top: 0.75rem; flex-wrap: wrap; }
.ck-upi-app { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 0.35rem 0.75rem; font-size: 0.75rem; color: rgba(255,255,255,0.6); cursor: pointer; transition: all 0.2s; }
.ck-upi-app:hover { background: rgba(124,58,237,0.15); border-color: rgba(124,58,237,0.35); }
.ck-confirm-btn { width: 100%; padding: 1rem; background: linear-gradient(135deg, rgba(212,168,67,0.9), rgba(180,140,50,0.85)); color: #000; font-family: 'Cinzel', serif; font-size: 1rem; font-weight: 700; border: none; border-radius: 12px; cursor: pointer; letter-spacing: 0.05em; transition: all 0.2s; margin-top: 1rem; display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.ck-confirm-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.ck-security-row { display: flex; justify-content: center; gap: 1.25rem; margin-top: 0.85rem; font-size: 0.72rem; color: var(--text-muted); flex-wrap: wrap; }
.ck-summary { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 14px; overflow: hidden; position: sticky; top: 90px; }
.ck-summary-head { padding: 1.25rem 1.5rem; border-bottom: 1px solid rgba(124,58,237,0.15); }
.ck-summary-head h3 { font-family: 'Cinzel', serif; font-size: 0.95rem; color: var(--text-main); margin: 0; }
.ck-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem 1.5rem; }
.ck-item-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 0.15rem; }
.ck-item-body { flex: 1; }
.ck-item-name { font-family: 'Cinzel', serif; font-size: 0.88rem; font-weight: 700; color: var(--text-main); line-height: 1.35; margin-bottom: 0.25rem; }
.ck-item-meta, .ck-item-loc { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.15rem; }
.ck-item-price { font-family: 'Cinzel', serif; font-size: 1rem; font-weight: 700; color: var(--gold); flex-shrink: 0; }
.ck-divider { height: 1px; background: rgba(255,255,255,0.06); margin: 0 1.5rem; }
.ck-line-row { display: flex; justify-content: space-between; padding: 0.65rem 1.5rem; font-size: 0.82rem; color: var(--text-muted); }
.ck-line-val { color: var(--text-main); }
.ck-coupon-row { display: flex; gap: 0.5rem; padding: 0.85rem 1.5rem; }
.ck-coupon-input { flex: 1; background: rgba(255,255,255,0.04); border: 1px solid rgba(124,58,237,0.22); border-radius: 8px; padding: 0.5rem 0.85rem; color: var(--text-main); font-size: 0.82rem; outline: none; }
.ck-coupon-btn { background: rgba(124,58,237,0.2); border: 1px solid rgba(124,58,237,0.35); color: rgba(167,139,250,0.9); padding: 0.5rem 1rem; border-radius: 8px; font-size: 0.78rem; font-weight: 600; cursor: pointer; transition: all 0.2s; }
.ck-total-row { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.5rem; }
.ck-total-val { font-family: 'Cinzel', serif; font-size: 1.3rem; font-weight: 700; color: var(--gold); }
.ck-includes { padding: 1rem 1.5rem; background: rgba(45,16,96,0.2); }
.ck-inc-title { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(212,168,67,0.65); margin-bottom: 0.65rem; }
.ck-inc-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.35rem; }
.ck-inc-list li { font-size: 0.78rem; color: rgba(255,255,255,0.65); }
.ck-trust { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border-top: 1px solid rgba(255,255,255,0.06); }
.ck-trust-item { display: flex; flex-direction: column; align-items: center; padding: 0.85rem 0.5rem; gap: 0.3rem; font-size: 1.1rem; border-right: 1px solid rgba(255,255,255,0.06); }
.ck-trust-item:last-child { border-right: none; }
.ck-trust-item small { font-size: 0.65rem; color: var(--text-muted); text-align: center; line-height: 1.3; }
.ck-success-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.8); z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.ck-success-card { background: #0d0226; border: 1px solid rgba(212,168,67,0.35); border-radius: 20px; padding: 3rem 2.5rem; text-align: center; max-width: 440px; width: 100%; }
.ck-success-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.ck-success-card h2 { font-family: 'Cinzel', serif; color: var(--gold-light); margin-bottom: 0.75rem; }
.ck-success-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.25rem; }
.ck-booking-id { font-family: 'Cinzel', serif; font-size: 0.85rem; color: rgba(212,168,67,0.8); background: rgba(212,168,67,0.08); border: 1px solid rgba(212,168,67,0.2); padding: 0.5rem 1rem; border-radius: 8px; display: inline-block; margin-bottom: 1.5rem; }
.ck-success-actions { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════
   GLOBAL: OTP LOGIN MODAL — lg- prefix
═══════════════════════════════════════════════════════ */
.lg-modal { position: fixed; inset: 0; z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 1rem; pointer-events: none; opacity: 0; transition: opacity 0.3s; }
.lg-modal.open { opacity: 1; pointer-events: all; }
.lg-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.75); }
.lg-dialog { position: relative; z-index: 1; background: linear-gradient(160deg, #0d0226 0%, #06011a 100%); border: 1px solid rgba(212,168,67,0.28); border-radius: 20px; width: 100%; max-width: 400px; padding: 2.5rem 2rem; text-align: center; transform: translateY(24px) scale(0.97); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1); box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 60px rgba(91,47,201,0.12); }
.lg-modal.open .lg-dialog { transform: translateY(0) scale(1); }
.lg-close { position: absolute; top: 1rem; right: 1rem; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; width: 32px; height: 32px; color: rgba(255,255,255,0.7); font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; line-height: 1; }
.lg-close:hover { background: rgba(248,113,113,0.15); border-color: rgba(248,113,113,0.3); }
.lg-brand { display: flex; align-items: center; justify-content: center; gap: 0.6rem; margin-bottom: 1.5rem; font-family: 'Cinzel', serif; font-size: 1rem; font-weight: 700; color: var(--gold-light); }
.lg-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.lg-dialog h2 { font-family: 'Cinzel', serif; font-size: 1.3rem; font-weight: 700; color: var(--text-main); margin-bottom: 0.5rem; }
.lg-sub { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1.5rem; }
.lg-phone-wrap { display: flex; align-items: center; background: rgba(255,255,255,0.04); border: 1px solid rgba(124,58,237,0.3); border-radius: 10px; overflow: hidden; margin-bottom: 0; }
.lg-prefix { padding: 0 0.85rem; font-size: 0.88rem; font-weight: 600; color: rgba(255,255,255,0.65); border-right: 1px solid rgba(124,58,237,0.2); white-space: nowrap; }
.lg-phone-input { flex: 1; background: transparent; border: none; padding: 0.75rem 0.85rem; color: var(--text-main); font-size: 1rem; font-family: 'Inter', sans-serif; outline: none; letter-spacing: 0.05em; }
.lg-otp-boxes { display: flex; gap: 0.6rem; justify-content: center; margin: 1rem 0; }
.lg-otp-box { width: 44px; height: 52px; background: rgba(255,255,255,0.04); border: 1.5px solid rgba(124,58,237,0.3); border-radius: 10px; text-align: center; font-size: 1.3rem; font-weight: 700; color: var(--gold); font-family: 'Cinzel', serif; outline: none; transition: border-color 0.2s; caret-color: var(--gold); }
.lg-otp-box:focus { border-color: rgba(212,168,67,0.6); background: rgba(212,168,67,0.06); }
.lg-resend-row { margin-top: 1rem; font-size: 0.8rem; color: var(--text-muted); }
.lg-resend-btn { background: none; border: none; color: rgba(167,139,250,0.8); font-size: 0.8rem; cursor: pointer; text-decoration: underline; padding: 0; }
.lg-back-btn { background: none; border: none; color: rgba(255,255,255,0.45); font-size: 0.78rem; cursor: pointer; display: block; margin: 0.85rem auto 0; text-decoration: underline; }
.lg-foot-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 1rem; }
.lg-foot-note a { color: rgba(167,139,250,0.8); text-decoration: underline; }

/* ═══════════════════════════════════════════════════════
   PAGE: DASHBOARD & BOOKING HISTORY — ud- / bh- prefix
═══════════════════════════════════════════════════════ */
.ud-layout { display: flex; min-height: calc(100vh - 70px); background: #030610; }
.ud-sidebar { width: 240px; flex-shrink: 0; background: rgba(10,3,26,0.95); border-right: 1px solid rgba(124,58,237,0.18); padding: 1.5rem 0; display: flex; flex-direction: column; position: sticky; top: 70px; height: calc(100vh - 70px); overflow-y: auto; }
.ud-user-card { display: flex; align-items: center; gap: 0.85rem; padding: 0 1.25rem 1.25rem; border-bottom: 1px solid rgba(124,58,237,0.15); margin-bottom: 1rem; }
.ud-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, rgba(124,58,237,0.6), rgba(212,168,67,0.3)); display: flex; align-items: center; justify-content: center; font-family: 'Cinzel', serif; font-size: 1.1rem; font-weight: 700; color: var(--gold); flex-shrink: 0; }
.ud-user-name { font-size: 0.88rem; font-weight: 600; color: var(--text-main); }
.ud-user-phone { font-size: 0.72rem; color: var(--text-muted); margin-top: 0.1rem; }
.ud-nav { display: flex; flex-direction: column; gap: 0.15rem; padding: 0 0.75rem; }
.ud-nav-link { display: flex; align-items: center; gap: 0.7rem; padding: 0.6rem 0.75rem; border-radius: 8px; font-size: 0.84rem; color: rgba(255,255,255,0.6); text-decoration: none; transition: all 0.2s; }
.ud-nav-link:hover { background: rgba(124,58,237,0.12); color: rgba(255,255,255,0.85); }
.ud-nav-link.active { background: rgba(124,58,237,0.2); color: rgba(167,139,250,0.95); font-weight: 600; }
.ud-nav-icon { font-size: 1rem; flex-shrink: 0; width: 20px; text-align: center; }
.ud-nav-divider { height: 1px; background: rgba(255,255,255,0.07); margin: 0.75rem 0; }
.ud-nav-logout { color: rgba(248,113,113,0.65); }
.ud-nav-logout:hover { background: rgba(248,113,113,0.08); color: rgba(248,113,113,0.9); }
.ud-main { flex: 1; padding: 2rem; overflow: hidden; }
.ud-greeting { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.75rem; }
.ud-greet-title { font-family: 'Cinzel', serif; font-size: 1.5rem; font-weight: 700; color: var(--text-main); margin: 0 0 0.25rem; }
.ud-greet-sub { font-size: 0.85rem; color: var(--text-muted); margin: 0; }
.ud-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin-bottom: 1.5rem; }
.ud-stat-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 12px; padding: 1.25rem; text-align: center; }
.ud-stat-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.ud-stat-val { font-family: 'Cinzel', serif; font-size: 1.8rem; font-weight: 700; color: var(--gold); line-height: 1; }
.ud-stat-lbl { font-size: 0.72rem; color: var(--text-muted); margin-top: 0.35rem; }
.ud-active-puja { display: flex; align-items: center; gap: 1rem; background: linear-gradient(135deg, rgba(248,113,113,0.08), rgba(91,47,201,0.12)); border: 1px solid rgba(248,113,113,0.3); border-radius: 12px; padding: 1.1rem 1.5rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.ud-ap-pulse { width: 10px; height: 10px; border-radius: 50%; background: #f87171; box-shadow: 0 0 0 0 rgba(248,113,113,0.4); animation: rp-cd-blink 1.2s ease-in-out infinite; flex-shrink: 0; }
.ud-ap-body { flex: 1; }
.ud-ap-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(248,113,113,0.8); margin-bottom: 0.25rem; }
.ud-ap-body h4 { font-family: 'Cinzel', serif; font-size: 0.92rem; color: var(--text-main); margin: 0 0 0.2rem; }
.ud-ap-meta { font-size: 0.75rem; color: var(--text-muted); }
.ud-section { margin-bottom: 2rem; }
.ud-section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.ud-section-head h3 { font-family: 'Cinzel', serif; font-size: 1rem; font-weight: 700; color: var(--text-main); margin: 0; }
.ud-see-all { font-size: 0.78rem; color: rgba(167,139,250,0.8); text-decoration: none; }
.ud-bookings { display: flex; flex-direction: column; gap: 0.75rem; }
.ud-booking-row { display: flex; align-items: center; gap: 1rem; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 10px; padding: 1rem 1.25rem; flex-wrap: wrap; }
.ud-booking-icon { font-size: 1.4rem; flex-shrink: 0; }
.ud-booking-info { flex: 1; min-width: 120px; }
.ud-booking-name { font-size: 0.88rem; font-weight: 600; color: var(--text-main); }
.ud-booking-meta { font-size: 0.72rem; color: var(--text-muted); margin-top: 0.15rem; }
.ud-booking-price { font-family: 'Cinzel', serif; font-size: 0.92rem; font-weight: 700; color: var(--gold); white-space: nowrap; }
.ud-status { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; padding: 0.25rem 0.65rem; border-radius: 20px; white-space: nowrap; }
.ud-status-live { background: rgba(248,113,113,0.12); border: 1px solid rgba(248,113,113,0.3); color: rgba(248,113,113,0.9); }
.ud-status-done { background: rgba(52,211,153,0.1); border: 1px solid rgba(52,211,153,0.25); color: rgba(52,211,153,0.85); }
.ud-status-upcoming { background: rgba(212,168,67,0.1); border: 1px solid rgba(212,168,67,0.25); color: rgba(212,168,67,0.85); }
.ud-booking-action { font-size: 0.75rem; font-weight: 600; color: rgba(167,139,250,0.8); text-decoration: none; white-space: nowrap; }
.ud-actions { display: grid; grid-template-columns: repeat(6,1fr); gap: 0.75rem; }
.ud-action-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 12px; padding: 1.25rem 0.75rem; text-align: center; transition: border-color 0.2s, transform 0.2s; }
.ud-action-card:hover { border-color: rgba(124,58,237,0.4); transform: translateY(-3px); }
.ud-action-icon { font-size: 1.6rem; margin-bottom: 0.5rem; }
.ud-action-label { font-size: 0.72rem; color: rgba(255,255,255,0.65); font-weight: 500; }
.bh-filters { display: flex; gap: 0.75rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.bh-search { flex: 1; min-width: 220px; background: rgba(255,255,255,0.04); border: 1px solid rgba(124,58,237,0.25); border-radius: 8px; padding: 0.6rem 1rem; color: var(--text-main); font-size: 0.85rem; outline: none; }
.bh-filter-sel { background: rgba(255,255,255,0.04); border: 1px solid rgba(124,58,237,0.25); border-radius: 8px; padding: 0.6rem 0.85rem; color: rgba(255,255,255,0.7); font-size: 0.82rem; cursor: pointer; outline: none; }
.bh-list { display: flex; flex-direction: column; gap: 1rem; }
.bh-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 14px; overflow: hidden; }
.bh-card-head { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.bh-id { font-family: 'Cinzel', serif; font-size: 0.8rem; font-weight: 700; color: rgba(212,168,67,0.7); letter-spacing: 0.08em; }
.bh-card-body { display: flex; align-items: center; gap: 1.25rem; padding: 1.25rem 1.5rem; flex-wrap: wrap; }
.bh-puja-icon { font-size: 1.8rem; flex-shrink: 0; }
.bh-puja-info { flex: 1; }
.bh-puja-info h4 { font-family: 'Cinzel', serif; font-size: 0.92rem; color: var(--text-main); margin-bottom: 0.35rem; }
.bh-meta-row { display: flex; gap: 1rem; flex-wrap: wrap; font-size: 0.75rem; color: var(--text-muted); }
.bh-amount { font-family: 'Cinzel', serif; font-size: 1.1rem; font-weight: 700; color: var(--gold); white-space: nowrap; }
.bh-card-actions { display: flex; align-items: center; gap: 0.75rem; padding: 0.85rem 1.5rem; border-top: 1px solid rgba(255,255,255,0.05); flex-wrap: wrap; }
.bh-video-btn { font-size: 0.78rem; font-weight: 600; color: rgba(167,139,250,0.8); background: none; border: 1px solid rgba(124,58,237,0.3); border-radius: 8px; padding: 0.42rem 1rem; cursor: pointer; transition: all 0.2s; }
.bh-video-btn:hover { background: rgba(124,58,237,0.12); }
.bh-detail-btn { font-size: 0.78rem; color: var(--text-muted); background: none; border: none; cursor: pointer; margin-left: auto; }
.bh-detail-panel { display: none; border-top: 1px solid rgba(255,255,255,0.06); padding: 1.25rem 1.5rem; background: rgba(10,3,26,0.4); }
.bh-detail-panel.bh-open { display: block; }
.bh-det-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.bh-det-lbl { display: block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(212,168,67,0.55); margin-bottom: 0.25rem; }
.bh-det-val { font-size: 0.82rem; color: var(--text-main); }

/* ═══════════════════════════════════════════════════════
   PAGE: TRACK PUJA (track-puja.html) — tp- prefix
═══════════════════════════════════════════════════════ */
.tp-hero { padding: 9rem 0 4rem; background: radial-gradient(ellipse 70% 50% at 50% 30%, rgba(91,47,201,0.18) 0%, transparent 70%), linear-gradient(160deg,#020410 0%,#08021c 100%); text-align: center; }
.tp-search-wrap { display: flex; max-width: 540px; margin: 1.75rem auto 0; background: rgba(255,255,255,0.04); border: 1px solid rgba(124,58,237,0.3); border-radius: 12px; overflow: hidden; }
.tp-search-input { flex: 1; background: transparent; border: none; padding: 0.9rem 1.25rem; color: var(--text-main); font-size: 0.9rem; font-family: 'Inter', sans-serif; outline: none; }
.tp-search-btn { background: linear-gradient(135deg, rgba(212,168,67,0.85), rgba(180,140,50,0.8)); border: none; color: #000; padding: 0.9rem 1.5rem; font-size: 0.85rem; font-weight: 700; cursor: pointer; font-family: 'Cinzel', serif; letter-spacing: 0.04em; white-space: nowrap; }
.tp-section { padding: 3rem 0 5rem; background: #030610; }
.tp-live-banner { display: flex; align-items: center; gap: 1rem; background: linear-gradient(90deg, rgba(248,113,113,0.08), rgba(91,47,201,0.08)); border: 1px solid rgba(248,113,113,0.28); border-radius: 12px; padding: 1rem 1.5rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.tp-live-pulse { width: 10px; height: 10px; border-radius: 50%; background: #f87171; box-shadow: 0 0 0 0 rgba(248,113,113,0.4); animation: rp-cd-blink 1.2s ease-in-out infinite; flex-shrink: 0; }
.tp-live-text { flex: 1; font-size: 0.9rem; color: var(--text-main); }
.tp-live-time { font-size: 0.78rem; color: var(--text-muted); }
.tp-booking-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 14px; padding: 1.5rem; margin-bottom: 2rem; }
.tp-bc-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.tp-bc-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(212,168,67,0.55); margin-bottom: 0.25rem; }
.tp-bc-val { font-size: 0.85rem; color: var(--text-main); font-weight: 500; }
.tp-timeline-head { font-family: 'Cinzel', serif; font-size: 1rem; font-weight: 700; color: var(--text-main); margin-bottom: 1.25rem; }
.tp-timeline { display: flex; flex-direction: column; gap: 0; }
.tp-step { display: grid; grid-template-columns: 44px 2px 1fr; gap: 0 1rem; }
.tp-step-dot { width: 44px; height: 44px; border-radius: 50%; background: rgba(10,3,26,0.8); border: 2px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; z-index: 1; position: relative; flex-shrink: 0; }
.tp-step-line { background: rgba(255,255,255,0.08); width: 2px; margin: 0 auto; min-height: 60px; }
.tp-step:last-child .tp-step-line { display: none; }
.tp-step-body { padding: 0.5rem 0 2rem; }
.tp-step.tp-done .tp-step-dot { background: rgba(52,211,153,0.12); border-color: rgba(52,211,153,0.4); }
.tp-step.tp-done .tp-step-line { background: rgba(52,211,153,0.2); }
.tp-step.tp-active .tp-step-dot { background: rgba(212,168,67,0.1); border-color: rgba(212,168,67,0.5); box-shadow: 0 0 16px rgba(212,168,67,0.2); }
.tp-dot-blink { animation: rp-cd-blink 1.2s ease-in-out infinite; }
.tp-step-title { font-family: 'Cinzel', serif; font-size: 0.92rem; font-weight: 700; color: var(--text-main); margin-bottom: 0.2rem; display: flex; align-items: center; gap: 0.5rem; }
.tp-live-chip { font-size: 0.62rem; font-weight: 800; letter-spacing: 0.12em; background: rgba(248,113,113,0.15); border: 1px solid rgba(248,113,113,0.35); color: rgba(248,113,113,0.9); padding: 0.12rem 0.5rem; border-radius: 10px; text-transform: uppercase; }
.tp-step-time { font-size: 0.72rem; color: rgba(212,168,67,0.65); margin-bottom: 0.5rem; }
.tp-step-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; }
.tp-step.tp-pending .tp-step-dot { border-color: rgba(255,255,255,0.1); opacity: 0.55; }
.tp-step.tp-pending .tp-step-title, .tp-step.tp-pending .tp-step-time { opacity: 0.55; }
.tp-wa-btn-wrap { margin-top: 0.75rem; }
.tp-wa-btn { display: inline-flex; align-items: center; gap: 0.4rem; background: rgba(52,211,153,0.1); border: 1px solid rgba(52,211,153,0.3); color: rgba(52,211,153,0.85); border-radius: 8px; padding: 0.45rem 1rem; font-size: 0.78rem; font-weight: 600; text-decoration: none; transition: all 0.2s; }
.tp-wa-btn:hover { background: rgba(52,211,153,0.18); }
.tp-pandit-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 14px; padding: 1.5rem; margin-bottom: 1.25rem; }
.tp-pc-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(212,168,67,0.55); margin-bottom: 0.85rem; }
.tp-pc-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.tp-pc-avatar { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, rgba(124,58,237,0.5), rgba(212,168,67,0.3)); display: flex; align-items: center; justify-content: center; font-family: 'Cinzel', serif; font-size: 1.2rem; font-weight: 700; color: var(--gold); flex-shrink: 0; }
.tp-pc-name { font-family: 'Cinzel', serif; font-size: 0.95rem; font-weight: 700; color: var(--text-main); margin-bottom: 0.2rem; }
.tp-pc-cred { font-size: 0.72rem; color: var(--text-muted); }
.tp-pc-actions { display: flex; gap: 0.75rem; }
.tp-contact-btn { flex: 1; text-align: center; padding: 0.55rem 0.75rem; border-radius: 8px; font-size: 0.8rem; font-weight: 600; text-decoration: none; transition: all 0.2s; }
.tp-call { background: rgba(52,211,153,0.1); border: 1px solid rgba(52,211,153,0.3); color: rgba(52,211,153,0.85); }
.tp-call:hover { background: rgba(52,211,153,0.18); }
.tp-whatsapp { background: rgba(52,211,153,0.08); border: 1px solid rgba(52,211,153,0.25); color: rgba(52,211,153,0.8); }
.tp-share-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 14px; padding: 1.5rem; margin-bottom: 1.25rem; }
.tp-sc-title { font-family: 'Cinzel', serif; font-size: 0.88rem; font-weight: 700; color: var(--text-main); margin-bottom: 0.5rem; }
.tp-share-link { display: flex; gap: 0.5rem; }
.tp-share-input { flex: 1; background: rgba(255,255,255,0.04); border: 1px solid rgba(124,58,237,0.22); border-radius: 8px; padding: 0.55rem 0.85rem; color: var(--text-muted); font-size: 0.78rem; outline: none; }
.tp-copy-btn { background: rgba(124,58,237,0.2); border: 1px solid rgba(124,58,237,0.35); color: rgba(167,139,250,0.9); padding: 0.55rem 1rem; border-radius: 8px; font-size: 0.78rem; font-weight: 600; cursor: pointer; white-space: nowrap; transition: all 0.2s; }
.tp-support-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 14px; padding: 1.5rem; }
.tp-support-card h5 { font-family: 'Cinzel', serif; font-size: 0.9rem; color: var(--text-main); margin-bottom: 0.5rem; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — ALL NEW PAGES
═══════════════════════════════════════════════════════ */
@media (max-width: 991.98px) {
  .ud-stats { grid-template-columns: repeat(2,1fr); }
  .ud-actions { grid-template-columns: repeat(3,1fr); }
  .bh-det-grid { grid-template-columns: repeat(2,1fr); }
  .tp-bc-row { grid-template-columns: repeat(2,1fr); }
  .bd-house-grid { grid-template-columns: 1fr; }
  .bl-feat-visual { flex: 0 0 160px; }
  .ck-pay-methods { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .ud-sidebar { display: none; }
  .ud-layout { flex-direction: column; }
  .ud-main { padding: 1rem; }
  .ud-stats { grid-template-columns: repeat(2,1fr); }
  .ud-actions { grid-template-columns: repeat(3,1fr); }
  .bl-featured { flex-direction: column; }
  .bl-feat-visual { flex: none; height: 140px; }
  .bd-author-row { flex-direction: column; align-items: flex-start; }
  .tp-bc-row { grid-template-columns: 1fr 1fr; }
  .ck-trust { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 575px) {
  .ud-stats { grid-template-columns: repeat(2,1fr); }
  .ud-actions { grid-template-columns: repeat(2,1fr); }
  .bh-det-grid { grid-template-columns: 1fr; }
  .tp-bc-row { grid-template-columns: 1fr; }
  .lg-otp-boxes { gap: 0.4rem; }
  .lg-otp-box { width: 38px; height: 46px; }
}



/* ═══════════════════════════════════════════════════════
   TRACK PUJA — REVISED UI (overrides earlier tp- classes)
═══════════════════════════════════════════════════════ */

/* Hero */
.tp-hero { padding: 9rem 0 4rem; background: radial-gradient(ellipse 70% 50% at 50% 30%, rgba(91,47,201,0.18) 0%, transparent 70%), linear-gradient(160deg,#020410 0%,#08021c 100%); text-align: center; }
.tp-search-wrap { display: flex; max-width: 560px; margin: 1.75rem auto 0; background: rgba(255,255,255,0.04); border: 1px solid rgba(124,58,237,0.35); border-radius: 12px; overflow: hidden; box-shadow: 0 0 0 0 rgba(124,58,237,0); transition: box-shadow 0.3s; }
.tp-search-wrap:focus-within { box-shadow: 0 0 0 3px rgba(124,58,237,0.18); }
.tp-search-input { flex: 1; background: transparent; border: none; padding: 0.95rem 1.25rem; color: var(--text-main); font-size: 0.9rem; font-family: 'Inter', sans-serif; outline: none; }
.tp-search-btn { background: linear-gradient(135deg, rgba(212,168,67,0.9), rgba(180,140,50,0.85)); border: none; color: #000; padding: 0.95rem 1.6rem; font-size: 0.85rem; font-weight: 700; cursor: pointer; font-family: 'Cinzel', serif; letter-spacing: 0.04em; white-space: nowrap; transition: opacity 0.2s; }
.tp-search-btn:hover { opacity: 0.9; }
.tp-hero-login { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 1.25rem; font-size: 0.82rem; color: var(--text-muted); flex-wrap: wrap; }
.tp-hero-login-btn { background: none; border: none; color: rgba(167,139,250,0.9); font-size: 0.82rem; font-weight: 600; cursor: pointer; text-decoration: underline; padding: 0; }

/* Section */
.tp-section { padding: 3rem 0 5rem; background: #030610; }

/* Live banner */
.tp-live-banner { display: flex; align-items: center; gap: 1rem; background: linear-gradient(90deg, rgba(248,113,113,0.1), rgba(91,47,201,0.1)); border: 1px solid rgba(248,113,113,0.32); border-radius: 12px; padding: 1rem 1.5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.tp-live-pulse { width: 10px; height: 10px; border-radius: 50%; background: #f87171; flex-shrink: 0; animation: tp-pulse-ring 1.4s ease-in-out infinite; }
@keyframes tp-pulse-ring { 0%,100%{box-shadow:0 0 0 0 rgba(248,113,113,0.6);} 50%{box-shadow:0 0 0 7px rgba(248,113,113,0);} }
.tp-live-text { flex: 1; font-size: 0.88rem; color: var(--text-main); }
.tp-live-time { font-size: 0.78rem; color: rgba(248,113,113,0.7); font-weight: 600; }

/* Booking summary card */
.tp-booking-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 14px; overflow: hidden; }
.tp-bc-top { display: flex; align-items: center; gap: 1rem; padding: 1.25rem 1.5rem; flex-wrap: wrap; }
.tp-bc-icon { font-size: 2rem; flex-shrink: 0; }
.tp-bc-pkg { flex: 1; }
.tp-bc-pkg-name { font-family: 'Cinzel', serif; font-size: 0.92rem; font-weight: 700; color: var(--text-main); line-height: 1.4; }
.tp-bc-pkg-sub { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.2rem; }
.tp-bc-status-badge { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; background: rgba(248,113,113,0.12); border: 1px solid rgba(248,113,113,0.3); color: rgba(248,113,113,0.9); padding: 0.28rem 0.75rem; border-radius: 20px; white-space: nowrap; }
.tp-bc-divider { height: 1px; background: rgba(255,255,255,0.06); margin: 0 1.5rem; }
.tp-bc-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.tp-bc-cell { padding: 1rem 1.5rem; border-right: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }
.tp-bc-cell:nth-child(3), .tp-bc-cell:nth-child(6) { border-right: none; }
.tp-bc-cell:nth-child(4), .tp-bc-cell:nth-child(5), .tp-bc-cell:nth-child(6) { border-bottom: none; }
.tp-bc-label { font-size: 0.67rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(212,168,67,0.55); margin-bottom: 0.3rem; }
.tp-bc-val { font-size: 0.83rem; color: var(--text-main); font-weight: 500; }

/* Progress */
.tp-tl-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; }
.tp-tl-title { font-family: 'Cinzel', serif; font-size: 1rem; font-weight: 700; color: var(--text-main); }
.tp-tl-steps { font-size: 0.75rem; color: var(--text-muted); }
.tp-progress-bar { height: 6px; background: rgba(255,255,255,0.07); border-radius: 10px; overflow: hidden; }
.tp-progress-fill { height: 100%; background: linear-gradient(90deg, rgba(52,211,153,0.7), rgba(212,168,67,0.7)); border-radius: 10px; position: relative; display: flex; align-items: center; justify-content: flex-end; }
.tp-progress-label { font-size: 0.68rem; color: rgba(212,168,67,0.85); position: absolute; right: 0; transform: translateX(calc(100% + 0.5rem)); white-space: nowrap; }

/* Timeline — rewritten with absolute-positioned dot */
.tp-timeline { position: relative; padding-left: 64px; }
.tp-timeline::before {
  content: '';
  position: absolute;
  left: 21px;
  top: 22px;
  bottom: 22px;
  width: 2px;
  background: linear-gradient(to bottom,
    rgba(52,211,153,0.5) 0%,
    rgba(52,211,153,0.4) 48%,
    rgba(212,168,67,0.6) 52%,
    rgba(255,255,255,0.08) 52%,
    rgba(255,255,255,0.06) 100%
  );
}
.tp-step { position: relative; margin-bottom: 1.25rem; }
.tp-step:last-child { margin-bottom: 0; }
.tp-step-icon {
  position: absolute;
  left: -64px;
  top: 8px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(10,3,26,0.95);
  border: 2px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 2;
}
.tp-step.tp-done .tp-step-icon { background: rgba(52,211,153,0.12); border-color: rgba(52,211,153,0.45); }
.tp-step.tp-active .tp-step-icon { background: rgba(212,168,67,0.08); border-color: rgba(212,168,67,0.55); box-shadow: 0 0 0 5px rgba(212,168,67,0.1), 0 0 20px rgba(212,168,67,0.15); animation: tp-active-pulse 2.5s ease-in-out infinite; }
@keyframes tp-active-pulse { 0%,100%{box-shadow:0 0 0 5px rgba(212,168,67,0.1),0 0 20px rgba(212,168,67,0.12);} 50%{box-shadow:0 0 0 9px rgba(212,168,67,0.05),0 0 32px rgba(212,168,67,0.22);} }
.tp-icon-live { font-size: 0.85rem; }
.tp-step.tp-pending .tp-step-icon { opacity: 0.45; border-color: rgba(255,255,255,0.1); }

/* Step content cards */
.tp-step-content { background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; padding: 1rem 1.25rem; transition: border-color 0.2s; }
.tp-step.tp-done .tp-step-content { border-color: rgba(52,211,153,0.15); background: rgba(52,211,153,0.04); }
.tp-step.tp-active .tp-step-content { border-color: rgba(212,168,67,0.3); background: linear-gradient(135deg, rgba(45,16,96,0.3), rgba(212,168,67,0.04)); box-shadow: 0 2px 20px rgba(212,168,67,0.06); }
.tp-step.tp-pending .tp-step-content { opacity: 0.5; }
.tp-step-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 0.75rem; margin-bottom: 0.45rem; flex-wrap: wrap; }
.tp-step-title { font-family: 'Cinzel', serif; font-size: 0.88rem; font-weight: 700; color: var(--text-main); display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; line-height: 1.3; }
.tp-live-chip { font-size: 0.6rem; font-weight: 800; letter-spacing: 0.1em; background: rgba(248,113,113,0.18); border: 1px solid rgba(248,113,113,0.4); color: rgba(248,113,113,0.95); padding: 0.15rem 0.55rem; border-radius: 10px; animation: tp-chip-blink 1.2s ease-in-out infinite; }
@keyframes tp-chip-blink { 0%,100%{opacity:1;} 50%{opacity:0.55;} }
.tp-step-time { font-size: 0.7rem; color: rgba(212,168,67,0.6); white-space: nowrap; margin-top: 0.15rem; }
.tp-step-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.72; margin: 0; }
.tp-wa-btn { display: inline-flex; align-items: center; gap: 0.4rem; background: rgba(52,211,153,0.1); border: 1px solid rgba(52,211,153,0.3); color: rgba(52,211,153,0.85); border-radius: 8px; padding: 0.4rem 0.9rem; font-size: 0.76rem; font-weight: 600; text-decoration: none; transition: all 0.2s; margin-top: 0.75rem; display: inline-flex; }
.tp-wa-btn:hover { background: rgba(52,211,153,0.18); color: rgba(52,211,153,0.95); }

/* Pandit card */
.tp-pandit-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 14px; padding: 1.5rem; margin-bottom: 1rem; }
.tp-pc-label { font-size: 0.67rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(212,168,67,0.55); margin-bottom: 1rem; }
.tp-pc-head { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1rem; }
.tp-pc-avatar { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, rgba(124,58,237,0.5), rgba(212,168,67,0.3)); display: flex; align-items: center; justify-content: center; font-family: 'Cinzel', serif; font-size: 1.2rem; font-weight: 700; color: var(--gold); flex-shrink: 0; border: 2px solid rgba(212,168,67,0.2); }
.tp-pc-name { font-family: 'Cinzel', serif; font-size: 0.95rem; font-weight: 700; color: var(--text-main); margin-bottom: 0.2rem; }
.tp-pc-cred { font-size: 0.72rem; color: var(--text-muted); line-height: 1.5; }
.tp-pc-actions { display: flex; gap: 0.75rem; }
.tp-contact-btn { flex: 1; text-align: center; padding: 0.6rem 0.75rem; border-radius: 8px; font-size: 0.8rem; font-weight: 600; text-decoration: none; transition: all 0.2s; }
.tp-call { background: rgba(52,211,153,0.1); border: 1px solid rgba(52,211,153,0.3); color: rgba(52,211,153,0.85); }
.tp-call:hover { background: rgba(52,211,153,0.18); }
.tp-whatsapp { background: rgba(52,211,153,0.08); border: 1px solid rgba(52,211,153,0.25); color: rgba(52,211,153,0.8); }
.tp-whatsapp:hover { background: rgba(52,211,153,0.15); }

/* Login CTA card */
.tp-login-card { background: linear-gradient(135deg, rgba(45,16,96,0.45), rgba(91,47,201,0.2)); border: 1px solid rgba(212,168,67,0.28); border-radius: 14px; padding: 1.5rem; margin-bottom: 1rem; text-align: center; }
.tp-lc-icon { font-size: 2rem; margin-bottom: 0.65rem; }
.tp-lc-title { font-family: 'Cinzel', serif; font-size: 1rem; font-weight: 700; color: var(--gold-light); margin-bottom: 0.5rem; }
.tp-lc-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1rem; }
.tp-lc-btn { width: 100%; padding: 0.75rem; background: linear-gradient(135deg, rgba(212,168,67,0.9), rgba(180,140,50,0.85)); color: #000; font-family: 'Cinzel', serif; font-size: 0.88rem; font-weight: 700; border: none; border-radius: 10px; cursor: pointer; letter-spacing: 0.04em; transition: opacity 0.2s; margin-bottom: 0.75rem; }
.tp-lc-btn:hover { opacity: 0.9; }
.tp-lc-note { font-size: 0.72rem; color: rgba(167,139,250,0.7); }

/* Share card */
.tp-share-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 14px; padding: 1.5rem; margin-bottom: 1rem; }
.tp-sc-title { font-family: 'Cinzel', serif; font-size: 0.88rem; font-weight: 700; color: var(--text-main); margin-bottom: 0.5rem; }
.tp-share-link { display: flex; gap: 0.5rem; }
.tp-share-input { flex: 1; background: rgba(255,255,255,0.04); border: 1px solid rgba(124,58,237,0.22); border-radius: 8px; padding: 0.55rem 0.85rem; color: var(--text-muted); font-size: 0.78rem; outline: none; }
.tp-copy-btn { background: rgba(124,58,237,0.2); border: 1px solid rgba(124,58,237,0.38); color: rgba(167,139,250,0.9); padding: 0.55rem 1rem; border-radius: 8px; font-size: 0.78rem; font-weight: 600; cursor: pointer; white-space: nowrap; transition: all 0.2s; }
.tp-copy-btn:hover { background: rgba(124,58,237,0.32); }

/* Support card */
.tp-support-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 14px; padding: 1.5rem; }
.tp-support-card h5 { font-family: 'Cinzel', serif; font-size: 0.9rem; color: var(--text-main); margin-bottom: 0.5rem; }

/* Responsive */
@media (max-width: 767px) {
  .tp-timeline { padding-left: 52px; }
  .tp-step-icon { left: -52px; width: 38px; height: 38px; font-size: 0.88rem; }
  .tp-timeline::before { left: 18px; }
  .tp-bc-row { grid-template-columns: 1fr 1fr; }
  .tp-bc-cell:nth-child(2), .tp-bc-cell:nth-child(4) { border-right: none; }
  .tp-bc-cell:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.05); }
  .tp-bc-cell:nth-child(4), .tp-bc-cell:nth-child(5) { border-bottom: 1px solid rgba(255,255,255,0.05); }
  .tp-bc-cell:nth-child(6) { border-bottom: none; border-right: none; }
  .tp-hero-login { display: none; }
}
@media (max-width: 575px) {
  .tp-bc-row { grid-template-columns: 1fr; }
  .tp-bc-cell { border-right: none !important; }
  .tp-bc-cell:last-child { border-bottom: none; }
}



/* ─── Track Puja: text-width squeeze fixes ─── */
.tp-bc-cell { padding: 0.75rem 0.9rem; }

@media (max-width: 1199.98px) {
  .tp-bc-row { grid-template-columns: 1fr 1fr; }
  .tp-bc-cell { border-right: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }
  .tp-bc-cell:nth-child(even) { border-right: none; }
  .tp-bc-cell:nth-child(5), .tp-bc-cell:nth-child(6) { border-bottom: none; }
  .tp-timeline { padding-left: 56px; }
  .tp-step-icon { left: -56px; width: 40px; height: 40px; font-size: 0.95rem; top: 10px; }
  .tp-timeline::before { left: 19px; }
}


/* ─── Track Puja: fix cascade — reset old grid on .tp-step ─── */
.tp-step {
  display: block;
  position: relative;
  margin-bottom: 1.25rem;
}
.tp-step:last-child { margin-bottom: 0; }


/* ═══ DASHBOARD: TRACK PUJA INLINE + LOGIN NUDGE ═══ */

/* Signout link in navbar */
.ud-signout-link {
  color: rgba(255,255,255,0.45);
  font-size: 0.78rem;
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  transition: color 0.2s;
  white-space: nowrap;
}
.ud-signout-link:hover { color: rgba(255,255,255,0.75); }

/* Login nudge banner */
.ud-login-nudge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(212,168,67,0.07);
  border: 1px solid rgba(212,168,67,0.25);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.ud-ln-left { display: flex; align-items: center; gap: 0.9rem; }
.ud-ln-icon { font-size: 1.5rem; flex-shrink: 0; }
.ud-ln-title { font-family: 'Cinzel', serif; font-size: 0.95rem; color: var(--gold); margin-bottom: 0.15rem; }
.ud-ln-sub { font-size: 0.8rem; color: var(--text-muted); line-height: 1.45; }
.ud-ln-btn {
  background: linear-gradient(135deg, var(--gold), #b8860b);
  color: #1a0a00;
  border: none;
  border-radius: 10px;
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.ud-ln-btn:hover { opacity: 0.9; }

/* Section head live dot */
.ud-live-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #34d399;
  margin-right: 0.4rem;
  animation: ud-live-pulse 2s ease-in-out infinite;
  vertical-align: middle;
  position: relative;
  top: -1px;
}
@keyframes ud-live-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(52,211,153,0.6); }
  50%      { box-shadow: 0 0 0 5px rgba(52,211,153,0); }
}

/* Track card */
.ud-track-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 1.25rem;
  overflow: hidden;
}

/* Top: booking meta + pandit */
.ud-track-top {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.ud-track-meta { flex: 1; min-width: 200px; }
.ud-track-id {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
  font-family: monospace;
}
.ud-track-name {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.35rem;
  line-height: 1.35;
}
.ud-track-detail { font-size: 0.78rem; color: var(--text-muted); }

/* Pandit mini-card */
.ud-track-pandit {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  flex-shrink: 0;
  min-width: 200px;
}
.ud-tp-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
  flex-shrink: 0;
}
.ud-tp-name { font-size: 0.85rem; color: #fff; font-weight: 600; margin-bottom: 0.15rem; }
.ud-tp-cred { font-size: 0.72rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.ud-tp-actions { display: flex; gap: 0.4rem; }
.ud-tp-btn {
  font-size: 0.72rem;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.75);
  transition: all 0.2s;
  white-space: nowrap;
}
.ud-tp-btn:hover { color: #fff; border-color: rgba(255,255,255,0.3); }
.ud-tp-wa { border-color: rgba(52,211,153,0.3); color: rgba(52,211,153,0.85); }
.ud-tp-wa:hover { border-color: rgba(52,211,153,0.6); color: #34d399; }

/* Progress bar */
.ud-track-progress { margin-bottom: 1.25rem; }
.ud-progress-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.45rem;
}
.ud-progress-pct { font-size: 0.75rem; color: var(--gold); font-weight: 500; }
.ud-progress-bar-wrap {
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  height: 6px;
  overflow: hidden;
}
.ud-progress-bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(52,211,153,0.8), var(--gold));
  transition: width 0.6s ease;
}

/* Horizontal stepper */
.ud-stepper {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 1.25rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.1) transparent;
}
.ud-ts-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 90px;
  position: relative;
}
.ud-ts-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  border: 2px solid rgba(255,255,255,0.12);
  background: rgba(10,3,26,0.8);
  color: rgba(255,255,255,0.3);
  z-index: 2;
  position: relative;
  flex-shrink: 0;
  margin-bottom: 0.4rem;
}
.ud-ts-line {
  position: absolute;
  top: 18px;
  left: 50%;
  right: -50%;
  height: 2px;
  background: rgba(255,255,255,0.08);
  z-index: 1;
}
.ud-ts-last .ud-ts-line { display: none; }
.ud-ts-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.3;
  padding: 0 0.25rem;
  margin-bottom: 0.2rem;
}
.ud-ts-time { font-size: 0.65rem; color: rgba(255,255,255,0.3); line-height: 1.2; }
.ud-ts-chip {
  display: inline-block;
  background: rgba(52,211,153,0.15);
  border: 1px solid rgba(52,211,153,0.35);
  color: #34d399;
  font-size: 0.58rem;
  font-weight: 700;
  padding: 0.05rem 0.3rem;
  border-radius: 4px;
  letter-spacing: 0.04em;
  vertical-align: middle;
  margin-left: 0.2rem;
}

/* Done state */
.ud-ts-done .ud-ts-dot {
  background: rgba(52,211,153,0.1);
  border-color: rgba(52,211,153,0.5);
  color: #34d399;
}
.ud-ts-done .ud-ts-line { background: rgba(52,211,153,0.3); }
.ud-ts-done .ud-ts-label { color: rgba(255,255,255,0.65); }
.ud-ts-done .ud-ts-time { color: rgba(255,255,255,0.4); }

/* Active state */
.ud-ts-active .ud-ts-dot {
  background: rgba(212,168,67,0.08);
  border-color: rgba(212,168,67,0.6);
  color: var(--gold);
  box-shadow: 0 0 0 5px rgba(212,168,67,0.1);
}
.ud-ts-live-dot { animation: ud-ts-pulse 2s ease-in-out infinite; }
@keyframes ud-ts-pulse {
  0%,100% { box-shadow: 0 0 0 5px rgba(212,168,67,0.1); }
  50%      { box-shadow: 0 0 0 9px rgba(212,168,67,0.04); }
}
.ud-ts-active .ud-ts-label { color: var(--gold); font-weight: 600; }
.ud-ts-active .ud-ts-time { color: rgba(212,168,67,0.55); }

/* Track footer */
.ud-track-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 0.9rem;
}
.ud-track-wa, .ud-track-full {
  font-size: 0.8rem;
  text-decoration: none;
  transition: opacity 0.2s;
}
.ud-track-wa { color: #34d399; }
.ud-track-wa:hover { opacity: 0.8; }
.ud-track-full { color: var(--gold); }
.ud-track-full:hover { opacity: 0.8; }

/* ─── Responsive ─── */
@media (max-width: 767.98px) {
  .ud-track-top { flex-direction: column; }
  .ud-track-pandit { width: 100%; }
  .ud-ts-item { min-width: 72px; }
  .ud-ts-dot { width: 30px; height: 30px; font-size: 0.75rem; }
  .ud-ts-line { top: 15px; }
  .ud-ts-label { font-size: 0.65rem; }
  .ud-ts-time { font-size: 0.6rem; }
  .ud-login-nudge { flex-direction: column; align-items: flex-start; }
  .ud-ln-btn { width: 100%; text-align: center; }
}

@media (max-width: 575.98px) {
  .ud-ts-item { min-width: 60px; }
  .ud-ts-dot { width: 26px; height: 26px; font-size: 0.7rem; }
  .ud-ts-line { top: 13px; }
  .ud-ts-chip { display: none; }
  .ud-track-footer { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}



/* ═══ DASHBOARD: SECTION SWITCHER + EMBEDDED TRACK ═══ */

/* Section panels – switched by JS */
.ud-section-panel { display: block; }

/* Title bar at top of track / bookings sections */
.ud-section-titlebar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.ud-page-title {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 0.25rem 0 0;
}
.ud-tbar-actions { display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; }
.ud-copy-id-btn {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.78rem;
  font-family: monospace;
  padding: 0.4rem 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}
.ud-copy-id-btn:hover { border-color: rgba(212,168,67,0.4); color: var(--gold); }

/* Info cards (right column of track section) */
.ud-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 1rem 1.25rem;
}
.ud-ic-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 0.1rem; }
.ud-ic-title { font-size: 0.88rem; font-weight: 600; color: var(--text-main); margin-bottom: 0.2rem; }
.ud-ic-sub { font-size: 0.76rem; color: var(--text-muted); margin-bottom: 0.5rem; line-height: 1.4; }
.ud-ic-link {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.2s;
  display: inline-block;
}
.ud-ic-link:hover { opacity: 0.75; }

/* Timeline heading */
.tp-timeline-heading {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

/* Booking card (tp-bc-card) – outer container, used in dashboard embedded track */
.tp-bc-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  overflow: hidden;
}
.tp-bc-top { display: flex; align-items: center; gap: 1rem; padding: 1.25rem 1.5rem; flex-wrap: wrap; }
.tp-bc-badge { font-size: 1.6rem; flex-shrink: 0; }
.tp-bc-head { flex: 1; }
.tp-bc-pkg { font-family: 'Cinzel', serif; font-size: 0.95rem; font-weight: 700; color: var(--text-main); line-height: 1.35; margin-bottom: 0.25rem; }
.tp-bc-sub { font-size: 0.76rem; color: var(--text-muted); }

/* Live status badge variant */
.tp-bc-status-badge.tp-live {
  background: rgba(248,113,113,0.12);
  border-color: rgba(248,113,113,0.35);
  color: rgba(248,113,113,0.9);
}



/* ═══ DASHBOARD: PRASAD DELIVERIES — pr- prefix ═══ */

.pr-list { display: flex; flex-direction: column; gap: 1rem; }

.pr-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  overflow: hidden;
}
.pr-active {
  border-color: rgba(212,168,67,0.25);
  background: rgba(212,168,67,0.03);
}

.pr-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
}
.pr-head-left { flex: 1; }
.pr-order-id {
  font-family: monospace;
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}
.pr-puja-name { font-size: 0.92rem; font-weight: 600; color: var(--text-main); line-height: 1.35; }

.pr-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  padding: 0.28rem 0.75rem;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}
.pr-transit {
  background: rgba(251,191,36,0.1);
  border: 1px solid rgba(251,191,36,0.3);
  color: rgba(251,191,36,0.9);
}
.pr-delivered {
  background: rgba(52,211,153,0.1);
  border: 1px solid rgba(52,211,153,0.25);
  color: rgba(52,211,153,0.85);
}

/* Tracking details grid */
.pr-tracking-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.pr-track-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.85rem 1.1rem;
  border-right: 1px solid rgba(255,255,255,0.05);
}
.pr-track-item:last-child { border-right: none; }
.pr-addr-item { grid-column: span 2; }
.pr-tk-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(212,168,67,0.55);
}
.pr-tk-val { font-size: 0.8rem; color: var(--text-main); line-height: 1.4; }
.pr-eta { color: rgba(52,211,153,0.85); font-weight: 600; }
.pr-awb { display: flex; align-items: center; gap: 0.4rem; }
.pr-copy-btn {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 5px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  padding: 0.1rem 0.35rem;
  cursor: pointer;
  line-height: 1;
  transition: all 0.2s;
}
.pr-copy-btn:hover { border-color: rgba(212,168,67,0.4); color: var(--gold); }

/* Mini delivery stepper (horizontal) */
.pr-timeline {
  display: flex;
  align-items: flex-start;
  padding: 1.1rem 1.4rem 0.75rem;
  gap: 0;
}
.pr-tl-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
}
.pr-tl-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  border: 2px solid rgba(255,255,255,0.1);
  background: rgba(10,3,26,0.8);
  color: rgba(255,255,255,0.25);
  z-index: 2;
  flex-shrink: 0;
  margin-bottom: 0.4rem;
  position: relative;
}
.pr-tl-line {
  position: absolute;
  top: 15px;
  left: 50%;
  right: -50%;
  height: 2px;
  background: rgba(255,255,255,0.07);
  z-index: 1;
}
.pr-tl-last .pr-tl-line { display: none; }
.pr-tl-label { font-size: 0.68rem; color: rgba(255,255,255,0.4); line-height: 1.3; padding: 0 0.2rem; margin-bottom: 0.15rem; }
.pr-tl-time { font-size: 0.62rem; color: rgba(255,255,255,0.28); }

/* Done */
.pr-tl-done .pr-tl-dot { background: rgba(52,211,153,0.1); border-color: rgba(52,211,153,0.5); color: #34d399; }
.pr-tl-done .pr-tl-line { background: rgba(52,211,153,0.25); }
.pr-tl-done .pr-tl-label { color: rgba(255,255,255,0.6); }
/* Active */
.pr-tl-active .pr-tl-dot { background: rgba(251,191,36,0.08); border-color: rgba(251,191,36,0.55); color: #fbbf24; box-shadow: 0 0 0 4px rgba(251,191,36,0.08); }
.pr-tl-active .pr-tl-label { color: #fbbf24; font-weight: 600; }

/* Card footer */
.pr-card-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1.4rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  flex-wrap: wrap;
}
.pr-track-link { font-size: 0.8rem; font-weight: 600; color: rgba(167,139,250,0.85); text-decoration: none; }
.pr-track-link:hover { color: rgba(167,139,250,1); }
.pr-wa-btn { font-size: 0.8rem; font-weight: 600; color: #34d399; text-decoration: none; }
.pr-wa-btn:hover { opacity: 0.8; }

/* Delivered note */
.pr-delivered-note {
  margin: 0;
  padding: 0.75rem 1.4rem;
  font-size: 0.78rem;
  color: rgba(52,211,153,0.7);
  border-top: 1px solid rgba(255,255,255,0.05);
  background: rgba(52,211,153,0.03);
}

/* Responsive */
@media (max-width: 991.98px) {
  .pr-tracking-strip { grid-template-columns: repeat(2,1fr); }
  .pr-addr-item { grid-column: span 2; }
  .pr-track-item:nth-child(even) { border-right: none; }
}
@media (max-width: 575.98px) {
  .pr-tracking-strip { grid-template-columns: 1fr 1fr; }
  .pr-tl-label { font-size: 0.62rem; }
  .pr-tl-dot { width: 26px; height: 26px; font-size: 0.72rem; }
  .pr-tl-line { top: 13px; }
}



/* ═══════════════════════════════════════════════════════
   PAGE: PUJA DETAIL (puja-detail.html) — pd- prefix
═══════════════════════════════════════════════════════ */

/* ── Breadcrumb ── */
.pd-breadcrumb {
  background: rgba(10,3,26,0.6);
  border-bottom: 1px solid rgba(124,58,237,0.12);
  padding: 0.6rem 0;
}
.pd-bc-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.78rem;
}
.pd-bc-list li { display: flex; align-items: center; gap: 0.35rem; }
.pd-bc-list li:not(:last-child)::after { content: '›'; color: rgba(255,255,255,0.25); }
.pd-bc-list a { color: rgba(167,139,250,0.7); text-decoration: none; transition: color 0.2s; }
.pd-bc-list a:hover { color: rgba(167,139,250,1); }
.pd-bc-active { color: rgba(255,255,255,0.5); }

/* ── Hero ── */
.pd-hero {
  padding: 4rem 0 3rem;
  background: radial-gradient(ellipse 80% 60% at 30% 40%, rgba(91,47,201,0.15) 0%, transparent 60%),
              linear-gradient(160deg, #020410 0%, #08021c 100%);
}

/* Status badges */
.pd-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
.pd-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.28rem 0.75rem;
  border-radius: 20px;
}
.pd-badge-live {
  background: rgba(52,211,153,0.1);
  border: 1px solid rgba(52,211,153,0.3);
  color: rgba(52,211,153,0.9);
}
.pd-live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #34d399;
  animation: pd-live-pulse 2s ease-in-out infinite;
}
@keyframes pd-live-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(52,211,153,0.5); }
  50%      { box-shadow: 0 0 0 4px rgba(52,211,153,0); }
}
.pd-badge-popular {
  background: rgba(248,113,113,0.08);
  border: 1px solid rgba(248,113,113,0.25);
  color: rgba(248,113,113,0.85);
}
.pd-badge-assured {
  background: rgba(212,168,67,0.08);
  border: 1px solid rgba(212,168,67,0.25);
  color: rgba(212,168,67,0.85);
}

/* Title */
.pd-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.pd-title-accent { color: var(--gold); }

/* Rating */
.pd-rating-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
}
.pd-stars { color: var(--gold); font-size: 1rem; letter-spacing: 0.05em; }
.pd-rating-val { font-weight: 700; color: var(--gold); }
.pd-rating-count { color: var(--text-muted); }
.pd-divider { color: rgba(255,255,255,0.2); }
.pd-devotees { color: rgba(167,139,250,0.8); font-size: 0.8rem; }

/* Hero visual art */
.pd-hero-visual {
  position: relative;
  background: rgba(10,3,26,0.7);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 20px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  margin-bottom: 1.75rem;
  overflow: hidden;
}
.pd-visual-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(124,58,237,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.pd-visual-symbol {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  letter-spacing: 0.3em;
  color: rgba(212,168,67,0.6);
  margin-bottom: 0.75rem;
}
.pd-visual-mantra {
  font-size: clamp(0.95rem, 2.2vw, 1.25rem);
  font-family: 'Cinzel', serif;
  color: rgba(167,139,250,0.8);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.pd-visual-tag {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.pd-visual-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.pd-visual-chips span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 0.25rem 0.75rem;
}

/* Description */
.pd-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.pd-desc strong { color: var(--text-main); }

/* Highlights */
.pd-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.pd-hl-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
}
.pd-hl-icon { font-size: 1.2rem; flex-shrink: 0; }
.pd-hl-text { display: flex; flex-direction: column; gap: 0.1rem; }
.pd-hl-text strong { font-size: 0.82rem; color: var(--text-main); }
.pd-hl-text span { font-size: 0.72rem; color: var(--text-muted); }

/* ── Booking Card ── */
.pd-book-card {
  background: rgba(10,3,26,0.95);
  border: 1px solid rgba(124,58,237,0.35);
  border-radius: 20px;
  padding: 1.5rem;
  position: sticky;
  top: 80px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(212,168,67,0.1);
}
.pd-bc-price-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.pd-bc-price {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.pd-bc-price-note { font-size: 0.72rem; color: var(--text-muted); margin-top: 0.2rem; }
.pd-bc-emi {
  font-size: 0.72rem;
  background: rgba(52,211,153,0.08);
  border: 1px solid rgba(52,211,153,0.2);
  color: rgba(52,211,153,0.8);
  padding: 0.25rem 0.65rem;
  border-radius: 8px;
  align-self: flex-start;
}
.pd-bc-section { margin-bottom: 1.1rem; }
.pd-bc-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(212,168,67,0.6);
  margin-bottom: 0.6rem;
}
.pd-slot-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0.4rem; }
.pd-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  padding: 0.5rem 0.25rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text-muted);
}
.pd-slot:hover { border-color: rgba(124,58,237,0.4); }
.pd-slot-active { border-color: rgba(212,168,67,0.5); background: rgba(212,168,67,0.06); }
.pd-slot-active .pd-slot-day,
.pd-slot-active .pd-slot-date { color: var(--gold); }
.pd-slot-day { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.05em; }
.pd-slot-date { font-size: 0.82rem; font-weight: 600; color: var(--text-main); }
.pd-slot-seats { font-size: 0.58rem; color: rgba(248,113,113,0.75); }
.pd-slot-active .pd-slot-seats { color: rgba(248,113,113,0.85); }

.pd-bc-incl {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.pd-bc-incl li { font-size: 0.8rem; color: rgba(255,255,255,0.7); }

.pd-bc-cta {
  width: 100%;
  background: linear-gradient(135deg, var(--gold), #b8860b);
  color: #1a0a00;
  border: none;
  border-radius: 12px;
  padding: 0.9rem;
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  margin-bottom: 0.6rem;
}
.pd-bc-cta:hover { opacity: 0.92; transform: translateY(-1px); }
.pd-bc-secure { font-size: 0.7rem; color: rgba(255,255,255,0.35); text-align: center; margin-bottom: 0.85rem; }
.pd-bc-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
  margin-bottom: 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pd-bc-trust span { font-size: 0.68rem; color: rgba(52,211,153,0.7); }
.pd-bc-share { display: flex; align-items: center; gap: 0.6rem; font-size: 0.72rem; color: var(--text-muted); }
.pd-share-btn {
  font-size: 0.72rem;
  color: rgba(167,139,250,0.8);
  text-decoration: none;
  padding: 0.2rem 0.5rem;
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: 6px;
  transition: all 0.2s;
}
.pd-share-btn:hover { border-color: rgba(124,58,237,0.5); color: rgba(167,139,250,1); }

/* ── Tab Nav ── */
.pd-tab-nav {
  background: rgba(10,3,26,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(124,58,237,0.18);
  position: sticky;
  top: 62px;
  z-index: 500;
}
.pd-tabs {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.pd-tabs::-webkit-scrollbar { display: none; }
.pd-tab {
  padding: 0.85rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}
.pd-tab:hover { color: rgba(255,255,255,0.8); }
.pd-tab.active { color: var(--gold); border-bottom-color: var(--gold); }

/* ── Shared section styles ── */
.pd-section { padding: 4.5rem 0; }
.pd-section-alt { background: rgba(10,3,26,0.5); }
.pd-section-head { text-align: center; margin-bottom: 3rem; }
.pd-sub-heading {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}
.pd-body-text {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.pd-body-text strong { color: var(--text-main); }

/* ── Who should book ── */
.pd-who-card {
  background: rgba(124,58,237,0.06);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
}
.pd-who-title { font-family: 'Cinzel', serif; font-size: 0.92rem; font-weight: 700; color: var(--text-main); margin-bottom: 0.9rem; }
.pd-who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.pd-who-item { font-size: 0.8rem; color: rgba(255,255,255,0.65); }

/* ── Benefits ── */
.pd-benefits-list { display: flex; flex-direction: column; gap: 0.7rem; }
.pd-benefit-row { display: flex; gap: 0.75rem; align-items: flex-start; }
.pd-br-icon { color: var(--gold); font-size: 0.8rem; flex-shrink: 0; margin-top: 0.15rem; }
.pd-br-text { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }
.pd-br-text strong { color: var(--text-main); }

/* ── Inclusions ── */
.pd-incl-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 1.5rem;
  height: 100%;
  transition: border-color 0.2s, transform 0.2s;
}
.pd-incl-card:hover { border-color: rgba(124,58,237,0.5); transform: translateY(-3px); }
.pd-incl-highlight { border-color: rgba(212,168,67,0.3); background: rgba(212,168,67,0.04); }
.pd-incl-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.pd-incl-card h4 { font-family: 'Cinzel', serif; font-size: 0.92rem; font-weight: 700; color: var(--text-main); margin-bottom: 0.5rem; }
.pd-incl-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* ── Process steps ── */
.pd-process-steps { display: flex; flex-direction: column; gap: 0; }
.pd-ps-item {
  display: flex;
  gap: 1.5rem;
  position: relative;
  padding-bottom: 2rem;
}
.pd-ps-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 24px;
  top: 54px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, rgba(124,58,237,0.3), rgba(124,58,237,0.05));
}
.pd-ps-num {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(124,58,237,0.12);
  border: 2px solid rgba(124,58,237,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(167,139,250,0.9);
  flex-shrink: 0;
  z-index: 1;
}
.pd-ps-content { flex: 1; padding-top: 0.6rem; }
.pd-ps-content h4 { font-family: 'Cinzel', serif; font-size: 0.95rem; font-weight: 700; color: var(--text-main); margin-bottom: 0.5rem; }
.pd-ps-content p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 0.4rem; }
.pd-ps-time { font-size: 0.72rem; color: rgba(212,168,67,0.65); font-weight: 600; }

/* ── Package cards ── */
.pd-pkg-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 2rem 1.5rem;
  height: 100%;
  position: relative;
  transition: transform 0.2s;
}
.pd-pkg-card:hover { transform: translateY(-4px); }
.pd-pkg-featured {
  border-color: rgba(212,168,67,0.4);
  background: rgba(212,168,67,0.04);
  box-shadow: 0 0 40px rgba(212,168,67,0.08);
}
.pd-pkg-best {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), #b8860b);
  color: #1a0a00;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}
.pd-pkg-eyebrow { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(167,139,250,0.7); margin-bottom: 0.5rem; }
.pd-pkg-name { font-family: 'Cinzel', serif; font-size: 1rem; font-weight: 700; color: var(--text-main); margin-bottom: 0.75rem; line-height: 1.35; }
.pd-pkg-price { font-family: 'Cinzel', serif; font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 0.2rem; }
.pd-pkg-sub { font-size: 0.72rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.pd-pkg-features { list-style: none; padding: 0; margin: 0 0 1.5rem; display: flex; flex-direction: column; gap: 0.45rem; }
.pd-pkg-features li { font-size: 0.8rem; padding-left: 1.4rem; position: relative; line-height: 1.4; }
.pd-pkg-features li.inc { color: rgba(255,255,255,0.7); }
.pd-pkg-features li.inc::before { content: '✓'; position: absolute; left: 0; color: #34d399; font-weight: 700; }
.pd-pkg-features li.exc { color: rgba(255,255,255,0.25); text-decoration: line-through; }
.pd-pkg-features li.exc::before { content: '×'; position: absolute; left: 0; color: rgba(255,255,255,0.2); }
.pd-pkg-btn {
  width: 100%;
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.35);
  border-radius: 10px;
  color: rgba(167,139,250,0.9);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.7rem;
  cursor: pointer;
  transition: all 0.2s;
}
.pd-pkg-btn:hover { background: rgba(124,58,237,0.2); border-color: rgba(124,58,237,0.6); }
.pd-pkg-btn-gold {
  background: linear-gradient(135deg, var(--gold), #b8860b);
  border: none;
  color: #1a0a00;
  font-family: 'Cinzel', serif;
}
.pd-pkg-btn-gold:hover { opacity: 0.9; border: none; }

/* ── Pandit card ── */
.pd-pandit-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 2rem;
  text-align: center;
}
.pd-pp-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(124,58,237,0.6), rgba(212,168,67,0.4));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 1.8rem; font-weight: 700; color: #fff;
  margin: 0 auto 1rem;
  border: 3px solid rgba(212,168,67,0.3);
}
.pd-pp-name { font-family: 'Cinzel', serif; font-size: 1.1rem; font-weight: 700; color: var(--text-main); margin-bottom: 0.25rem; }
.pd-pp-title { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.pd-pp-stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; }
.pd-pp-stars span { font-size: 0.78rem; color: var(--text-muted); }
.pd-pp-stats { display: flex; justify-content: center; gap: 1.5rem; padding: 1rem 0; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 1rem; }
.pd-pp-sv { font-family: 'Cinzel', serif; font-size: 1.1rem; font-weight: 700; color: var(--gold); }
.pd-pp-sl { font-size: 0.65rem; color: var(--text-muted); margin-top: 0.1rem; }
.pd-pp-langs { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.35rem; margin-bottom: 1rem; }
.pd-pp-lang { font-size: 0.68rem; color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); padding: 0.2rem 0.5rem; border-radius: 5px; }
.pd-pp-actions { display: flex; gap: 0.6rem; }
.pd-pp-btn {
  flex: 1; padding: 0.65rem; border-radius: 10px; font-size: 0.8rem; font-weight: 600;
  text-decoration: none; text-align: center; border: 1px solid;
  transition: all 0.2s;
}
.pd-pp-call { border-color: rgba(167,139,250,0.35); color: rgba(167,139,250,0.85); background: rgba(124,58,237,0.08); }
.pd-pp-call:hover { background: rgba(124,58,237,0.18); }
.pd-pp-wa { border-color: rgba(52,211,153,0.3); color: rgba(52,211,153,0.85); background: rgba(52,211,153,0.05); }
.pd-pp-wa:hover { background: rgba(52,211,153,0.1); }
.pd-pandit-expertise { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; margin-top: 1rem; }
.pd-pe-item { font-size: 0.8rem; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 0.5rem; }

/* ── Review summary ── */
.pd-review-summary {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 1.5rem 2rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.pd-rs-score { text-align: center; flex-shrink: 0; }
.pd-rs-val { font-family: 'Cinzel', serif; font-size: 3rem; font-weight: 700; color: var(--gold); line-height: 1; }
.pd-rs-stars { color: var(--gold); font-size: 1.1rem; }
.pd-rs-total { font-size: 0.72rem; color: var(--text-muted); margin-top: 0.25rem; }
.pd-rs-bars { flex: 1; min-width: 200px; display: flex; flex-direction: column; gap: 0.45rem; }
.pd-rs-bar-row { display: flex; align-items: center; gap: 0.6rem; font-size: 0.75rem; color: var(--text-muted); }
.pd-rs-bar-row span:first-child { width: 28px; text-align: right; flex-shrink: 0; }
.pd-rs-bar-row span:last-child { width: 30px; flex-shrink: 0; }
.pd-rs-track { flex: 1; height: 6px; background: rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden; }
.pd-rs-fill { height: 100%; background: var(--gold); border-radius: 3px; }

/* Review cards */
.pd-review-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 1.5rem;
  height: 100%;
}
.pd-rv-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.4rem; }
.pd-rv-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(124,58,237,0.5), rgba(212,168,67,0.3));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif; font-size: 0.95rem; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.pd-rv-name { font-size: 0.88rem; font-weight: 600; color: var(--text-main); }
.pd-rv-loc { font-size: 0.7rem; color: var(--text-muted); }
.pd-rv-stars { margin-left: auto; color: var(--gold); font-size: 0.85rem; flex-shrink: 0; }
.pd-rv-tag { font-size: 0.68rem; color: rgba(52,211,153,0.65); margin-bottom: 0.75rem; }
.pd-rv-text { font-size: 0.8rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 0.75rem; font-style: italic; }
.pd-rv-helpful { font-size: 0.68rem; color: rgba(255,255,255,0.3); }

/* ── FAQ ── */
.pd-faq-list { display: flex; flex-direction: column; gap: 0; }
.pd-faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.pd-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 1.1rem 0;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  transition: color 0.2s;
}
.pd-faq-q::after {
  content: '+';
  font-size: 1.3rem;
  color: rgba(212,168,67,0.5);
  flex-shrink: 0;
  transition: transform 0.25s;
}
.pd-faq-item.pd-faq-open .pd-faq-q { color: var(--gold); }
.pd-faq-item.pd-faq-open .pd-faq-q::after { content: '−'; }
.pd-faq-a {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding-bottom: 0;
}
.pd-faq-item.pd-faq-open .pd-faq-a { max-height: 300px; padding-bottom: 1.1rem; }

/* ── Final CTA section ── */
.pd-cta-section {
  padding: 5rem 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(124,58,237,0.12) 0%, transparent 70%);
}
.pd-cta-actions { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 1rem; margin: 2rem 0 1.25rem; }
.pd-cta-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; font-size: 0.78rem; color: rgba(255,255,255,0.45); }

/* ── Sticky bottom bar ── */
.pd-sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(10,3,26,0.97);
  border-top: 1px solid rgba(124,58,237,0.3);
  backdrop-filter: blur(12px);
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 900;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.pd-sticky-bar.pd-sb-visible { transform: translateY(0); }
.pd-sb-left { flex: 1; min-width: 0; }
.pd-sb-name { font-size: 0.78rem; color: rgba(255,255,255,0.55); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pd-sb-price { font-family: 'Cinzel', serif; font-size: 1.1rem; font-weight: 700; color: var(--gold); }
.pd-sb-price span { font-size: 0.65rem; color: var(--text-muted); font-family: 'Inter', sans-serif; font-weight: 400; }
.pd-sb-btn {
  background: linear-gradient(135deg, var(--gold), #b8860b);
  color: #1a0a00;
  border: none;
  border-radius: 10px;
  padding: 0.65rem 1.5rem;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
  .pd-book-card { position: static; margin-top: 1.5rem; }
  .pd-highlights { grid-template-columns: 1fr 1fr; }
  .pd-pandit-expertise { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767.98px) {
  .pd-hero { padding: 2.5rem 0 2rem; }
  .pd-highlights { grid-template-columns: 1fr; }
  .pd-slot-grid { grid-template-columns: repeat(2,1fr); }
  .pd-who-grid { grid-template-columns: 1fr; }
  .pd-review-summary { flex-direction: column; gap: 1.25rem; padding: 1.25rem; }
  .pd-rs-score { display: flex; align-items: center; gap: 0.75rem; }
  .pd-rs-val { font-size: 2.2rem; }
  .pd-pandit-expertise { grid-template-columns: 1fr; }
  .pd-process-steps { padding-left: 0; }
}
@media (max-width: 575.98px) {
  .pd-pkg-card { padding: 1.5rem 1.1rem; }
  .pd-pp-stats { gap: 1rem; }
}



/* ═══ PUJA DETAIL: COUNTDOWN TIMER ═══ */

/* ── Main hero countdown ── */
.pd-countdown-wrap {
  background: rgba(10,3,26,0.75);
  border: 1px solid rgba(212,168,67,0.22);
  border-radius: 16px;
  padding: 1.25rem 1.5rem 1rem;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}
.pd-countdown-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212,168,67,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.pd-cd-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(212,168,67,0.65);
  margin-bottom: 0.9rem;
}
.pd-countdown {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}
.pd-cd-unit {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.pd-cd-val {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  background: rgba(212,168,67,0.06);
  border: 1px solid rgba(212,168,67,0.18);
  border-radius: 10px;
  width: 100%;
  text-align: center;
  padding: 0.45rem 0.1rem;
  transition: color 0.1s;
  min-width: 60px;
}
.pd-cd-val.pd-cd-tick {
  animation: pd-tick-flash 0.18s ease;
}
@keyframes pd-tick-flash {
  0%   { color: rgba(255,255,255,0.9); background: rgba(212,168,67,0.12); }
  100% { color: var(--gold); background: rgba(212,168,67,0.06); }
}
.pd-cd-sub {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.pd-cd-sep {
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: rgba(212,168,67,0.35);
  align-self: flex-start;
  padding-top: 0.3rem;
  flex-shrink: 0;
}
.pd-cd-meta {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
}
.pd-cd-seats {
  color: rgba(248,113,113,0.8);
  font-weight: 600;
}
.pd-cd-live {
  text-align: center;
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(52,211,153,0.9);
  padding: 0.75rem;
}
.pd-cd-live a { color: var(--gold); }

/* ── Compact card timer ── */
.pd-bc-timer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  background: rgba(248,113,113,0.05);
  border: 1px solid rgba(248,113,113,0.18);
  border-radius: 10px;
  padding: 0.65rem 0.9rem;
  margin-bottom: 1.1rem;
  flex-wrap: wrap;
}
.pd-bct-left {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}
.pd-bct-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(248,113,113,0.85);
  animation: pd-live-pulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
.pd-bct-label {
  font-size: 0.7rem;
  color: rgba(248,113,113,0.75);
  font-weight: 600;
  white-space: nowrap;
}
.pd-bct-clock {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  font-family: 'Cinzel', serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold);
}
.pd-bct-val { min-width: 1.4em; text-align: center; }
.pd-bct-u {
  font-size: 0.58rem;
  font-weight: 400;
  color: rgba(255,255,255,0.3);
  font-family: 'Inter', sans-serif;
  align-self: flex-end;
  margin-bottom: 0.05rem;
  margin-right: 0.15rem;
}
.pd-bct-sep { color: rgba(212,168,67,0.4); margin: 0 0.1rem; }

/* Responsive */
@media (max-width: 575.98px) {
  .pd-cd-val { font-size: 1.5rem; padding: 0.35rem 0.1rem; min-width: 44px; }
  .pd-cd-sep { font-size: 1.2rem; }
  .pd-countdown-wrap { padding: 1rem; }
  .pd-bc-timer { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
}


/* ═══ GOOGLE TRANSLATE ═══ */
#google_translate_element .goog-te-gadget { margin: 0 !important; color: transparent !important; font-size: 0 !important; }
#google_translate_element .goog-te-gadget span { display: none !important; }
/* Style the <select> rendered by HORIZONTAL layout */
#google_translate_element select.goog-te-combo {
  background: rgba(26,10,60,0.92) !important;
  border: 1px solid rgba(212,168,67,0.4) !important;
  border-radius: 6px !important;
  color: rgba(255,255,255,0.85) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.75rem !important;
  padding: 4px 8px !important;
  cursor: pointer !important;
  outline: none !important;
  min-width: 90px;
}
#google_translate_element select.goog-te-combo:focus {
  border-color: rgba(212,168,67,0.75) !important;
}
/* Kill the sticky Google banner */
.goog-te-banner-frame,
iframe.goog-te-banner-frame,
iframe.VIpgJd-ZVi9od-ORHb-OEVmcd,
iframe.skiptranslate,
body > .skiptranslate { display: none !important; }
body { top: 0 !important; }
@media (max-width: 991.98px) {
  #google_translate_element { margin-top: 1.25rem; width: 100%; }
  #google_translate_element select.goog-te-combo { width: 100%; }
}
