/* ==========================================================================
   SHRI MOKSHAM — Luxury Glassmorphism & Crystal Spiritual Aesthetics
   Features: 1-Liner Grand Pathways, Crystal Chakra Gems, Lotus Breath, Heritage Review
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Glassmorphic Core Tokens & Panels
   -------------------------------------------------------------------------- */
.glass-panel {
  background: rgba(255, 255, 255, 0.76) !important;
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.9) !important;
  box-shadow: 
    0 24px 64px rgba(24, 34, 47, 0.08),
    0 4px 20px rgba(197, 158, 63, 0.08),
    inset 0 1px 1px rgba(255, 255, 255, 0.95) !important;
  border-radius: 28px;
  transition: all var(--transition-smooth);
}

.glass-panel:hover {
  background: rgba(255, 255, 255, 0.88) !important;
  border-color: var(--gold-primary) !important;
  box-shadow: 
    0 32px 80px rgba(24, 34, 47, 0.12),
    0 8px 28px rgba(197, 158, 63, 0.2),
    inset 0 1px 1px rgba(255, 255, 255, 1) !important;
}

/* --------------------------------------------------------------------------
   2. GRAND 4-WAY PATHWAYS (1-LINER TEXT & MAXIMUM VISUAL IMPACT)
   -------------------------------------------------------------------------- */
.grand-pathways-container {
  width: 96%;
  max-width: 96vw;
  margin: 0 auto;
}

.grand-pathways-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.2rem;
  width: 100%;
}

.grand-pathway-card {
  position: relative;
  height: 480px;
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 28px 70px rgba(24, 34, 47, 0.1), inset 0 1px 2px rgba(255, 255, 255, 0.95);
  transition: all var(--transition-smooth);
}

.grand-pathway-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-6px);
  box-shadow: 0 36px 90px rgba(197, 158, 63, 0.25), inset 0 1px 2px #FFFFFF;
}

.grand-pathway-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.grand-pathway-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.96) contrast(1.04);
}

.grand-pathway-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(234, 225, 210, 0.1) 0%,
    rgba(234, 225, 210, 0.3) 40%,
    rgba(255, 255, 255, 0.85) 75%,
    rgba(255, 255, 255, 0.96) 100%
  );
  pointer-events: none;
}

.grand-pathway-top-badge {
  position: absolute;
  top: 1.6rem;
  left: 1.6rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold);
  padding: 0.45rem 1.1rem;
  border-radius: 40px;
  font-family: var(--font-display);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(24, 34, 47, 0.08);
}

.grand-pathway-content {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 22px;
  padding: 1.5rem 1.8rem;
  box-shadow: 0 12px 36px rgba(24, 34, 47, 0.06);
}

.grand-pathway-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  color: var(--text-dark);
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.grand-pathway-desc-oneliner {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.grand-pathway-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

/* --------------------------------------------------------------------------
   3. EXTRAORDINARY GORGEOUS GLASSMORPHIC SPIRITUAL SUITE (2-COLUMN DIVIDED SPACE)
   -------------------------------------------------------------------------- */
.spiritual-duo-grid,
.cymatic-sanctuary-grid,
.spiritual-triad-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  width: 96%;
  max-width: 96vw;
  margin: 0 auto;
  align-items: stretch;
}

.cymatic-glass-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1.5px solid rgba(212, 175, 55, 0.38);
  border-radius: 22px;
  padding: 1.3rem 1.4rem;
  box-shadow: 0 16px 50px rgba(24, 34, 47, 0.06), inset 0 1px 2px #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.cymatic-glass-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.7);
  box-shadow: 0 24px 65px rgba(212, 175, 55, 0.18), inset 0 1px 2px #FFFFFF;
}

/* Glowing Sacred Lotus Breath Visualizer (Used in Floating Pod) */
.sacred-lotus-wrap {
  position: relative;
  width: 130px;
  height: 130px;
  margin: 0.6rem auto 0.7rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sacred-lotus-aurora {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.38) 0%, rgba(212, 175, 55, 0.05) 60%, transparent 80%);
  filter: blur(10px);
  animation: pulseAurora 4s ease-in-out infinite alternate;
}

@keyframes pulseAurora {
  0% { transform: scale(0.9); opacity: 0.5; }
  100% { transform: scale(1.2); opacity: 1; }
}

.sacred-lotus-sphere {
  position: relative;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #FFFFFF 0%, #F5ECCE 55%, #D4AF37 100%);
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.4), inset 0 -4px 12px rgba(184, 134, 11, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

/* --------------------------------------------------------------------------
   3. 7 CRYSTAL CHAKRA SEED MANTRAS (BĪJA DHWANI) - COMPACT & PROMINENT
   -------------------------------------------------------------------------- */
.crystal-chakra-track,
.grand-chakra-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin: 0.4rem 0 0.55rem 0;
  flex-wrap: wrap;
}

.crystal-gem-btn {
  min-width: 44px;
  height: 48px;
  padding: 0.2rem 0.35rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  border: 1.5px solid rgba(197, 158, 63, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(24, 34, 47, 0.04), inset 0 1px 1px #FFFFFF;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
}

.crystal-gem-btn .gem-num {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--text-muted);
  line-height: 1;
  margin-bottom: 2px;
}

.crystal-gem-btn .gem-mantra {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: 0.04em;
  line-height: 1;
}

.crystal-gem-btn:hover {
  transform: translateY(-2px) scale(1.06);
  border-color: var(--gold-primary);
  box-shadow: 0 8px 20px rgba(197, 158, 63, 0.3);
}

.crystal-gem-btn.is-active {
  transform: translateY(-2px) scale(1.1);
  color: #FFFFFF;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16), inset 0 1px 2px rgba(255, 255, 255, 0.6);
}

.crystal-gem-btn.is-active .gem-num {
  color: rgba(255, 255, 255, 0.9);
}

.crystal-gem-btn.is-active .gem-mantra {
  color: #FFFFFF;
}

/* Specific Chakra Glowing Gradients */
.crystal-gem-btn[data-chakra="root"].is-active {
  background: linear-gradient(135deg, #E11D48, #BE123C);
  border-color: #FDA4AF;
  box-shadow: 0 0 18px rgba(225, 29, 72, 0.45);
}
.crystal-gem-btn[data-chakra="sacral"].is-active {
  background: linear-gradient(135deg, #EA580C, #C2410C);
  border-color: #FDBA74;
  box-shadow: 0 0 18px rgba(234, 88, 12, 0.45);
}
.crystal-gem-btn[data-chakra="solar"].is-active {
  background: linear-gradient(135deg, #D97706, #B45309);
  border-color: #FDE68A;
  box-shadow: 0 0 18px rgba(217, 119, 6, 0.45);
}
.crystal-gem-btn[data-chakra="heart"].is-active {
  background: linear-gradient(135deg, #059669, #047857);
  border-color: #A7F3D0;
  box-shadow: 0 0 18px rgba(5, 150, 105, 0.45);
}
.crystal-gem-btn[data-chakra="throat"].is-active {
  background: linear-gradient(135deg, #0284C7, #0369A1);
  border-color: #BAE6FD;
  box-shadow: 0 0 18px rgba(2, 132, 199, 0.45);
}
.crystal-gem-btn[data-chakra="thirdeye"].is-active {
  background: linear-gradient(135deg, #4F46E5, #3730A3);
  border-color: #C7D2FE;
  box-shadow: 0 0 18px rgba(79, 70, 229, 0.45);
}
.crystal-gem-btn[data-chakra="crown"].is-active {
  background: linear-gradient(135deg, #9333EA, #7E22CE);
  border-color: #E9D5FF;
  box-shadow: 0 0 18px rgba(147, 51, 234, 0.45);
}

/* Compact Chakra Mantra Detail Box */
.chakra-mantra-detail-box,
.grand-chakra-detail-box {
  background: rgba(255, 255, 255, 0.94);
  border: 1.5px solid rgba(212, 175, 55, 0.35);
  border-radius: 14px;
  padding: 0.75rem 1rem;
  width: 100%;
  box-shadow: 0 8px 24px rgba(24, 34, 47, 0.04), inset 0 1px 2px #FFFFFF;
  text-align: left;
  transition: all 0.3s ease;
  margin-bottom: 0.55rem;
}

.chakra-detail-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.4rem;
  flex-wrap: wrap;
}

.chakra-mantra-callout,
.grand-mantra-callout {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3rem;
  padding: 0.25rem 0.7rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.16), rgba(184, 134, 11, 0.06));
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  border-radius: 10px;
}

.chakra-devanagari,
.grand-devanagari {
  font-family: 'Plus Jakarta Sans', var(--font-display), serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--gold-dark);
  line-height: 1;
}

.chakra-mantra-name,
.grand-mantra-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: 0.06em;
}

.chakra-detail-meta {
  flex: 1;
  min-width: 160px;
}

.chakra-meta-title,
.grand-meta-title {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.15rem;
}

.chakra-meta-badges {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.chakra-badge-hz,
.chakra-badge-element,
.grand-badge-hz,
.grand-badge-element {
  font-size: 0.66rem;
  font-weight: 700;
  padding: 0.12rem 0.5rem;
  border-radius: 999px;
  background: rgba(24, 34, 47, 0.04);
  color: var(--text-muted);
  border: 1px solid rgba(24, 34, 47, 0.08);
}

.chakra-badge-hz,
.grand-badge-hz {
  color: var(--gold-dark);
  background: rgba(197, 158, 63, 0.1);
  border-color: rgba(197, 158, 63, 0.3);
}

.chakra-detail-desc,
.grand-detail-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 0;
}

.chakra-voice-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.btn-chakra-voice,
.grand-voice-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: linear-gradient(135deg, rgba(197, 158, 63, 0.18), rgba(184, 134, 11, 0.08));
  border: 1.5px solid var(--gold-primary);
  border-radius: 999px;
  padding: 0.55rem 1.2rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-chakra-voice:hover,
.grand-voice-btn:hover {
  background: var(--gold-primary);
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(197, 158, 63, 0.35);
}

.voice-sound-icon {
  flex-shrink: 0;
}

.voice-wave-bars {
  display: inline-flex;
  align-items: flex-end;
  gap: 2.5px;
  height: 14px;
}

.voice-wave-bars span {
  width: 3px;
  height: 4px;
  background: currentColor;
  border-radius: 1px;
  transition: height 0.2s ease;
}

.btn-chakra-voice.is-chanting .voice-wave-bars span:nth-child(1) {
  animation: voiceWaveBounce 0.6s infinite ease-in-out;
}
.btn-chakra-voice.is-chanting .voice-wave-bars span:nth-child(2) {
  animation: voiceWaveBounce 0.6s infinite ease-in-out 0.15s;
}
.btn-chakra-voice.is-chanting .voice-wave-bars span:nth-child(3) {
  animation: voiceWaveBounce 0.6s infinite ease-in-out 0.3s;
}
.btn-chakra-voice.is-chanting .voice-wave-bars span:nth-child(4) {
  animation: voiceWaveBounce 0.6s infinite ease-in-out 0.45s;
}

@keyframes voiceWaveBounce {
  0%, 100% { height: 4px; }
  50% { height: 16px; }
}

/* ==========================================================================
   HEADER JOIN 4-5 MONTH COURSE BUTTON
   ========================================================================== */
.btn-header-course {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-serif-heading, 'Cinzel', serif);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #07111E;
  background: linear-gradient(135deg, #F5D061 0%, #D4AF37 50%, #B38F26 100%);
  border: 1px solid #FFE082;
  border-radius: 30px;
  padding: 0.5rem 1.15rem;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.38), inset 0 1px 2px #FFFFFF;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  white-space: nowrap;
}

.btn-header-course:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #FFFFFF 0%, #F5D061 50%, #D4AF37 100%);
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.55), inset 0 1px 2px #FFFFFF;
}

.btn-header-course .header-btn-icon {
  font-size: 0.85rem;
}

/* ==========================================================================
   FLOATING SACRED 432Hz OMM CHANTS CIRCULAR WIDGET (ABOVE SOHAM)
   ========================================================================== */
.floating-omm-container {
  position: fixed;
  bottom: 7.2rem;
  left: 2rem;
  z-index: 9998;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

body.soham-pod-active .floating-omm-container {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.85);
}

.floating-omm-only {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #1D2B3A 0%, #0F1722 75%, #070D14 100%);
  border: 2px solid var(--gold-primary, #D4AF37);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(212, 175, 55, 0.45), 0 0 16px rgba(212, 175, 55, 0.25), inset 0 1px 2px #FFFFFF;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.35s ease,
              border-color 0.35s ease;
  animation: floatOmmWidget 4.2s ease-in-out infinite alternate;
  user-select: none;
  outline: none;
  padding: 0;
}

@keyframes floatOmmWidget {
  0% { transform: translateY(0); box-shadow: 0 8px 28px rgba(212, 175, 55, 0.45); }
  100% { transform: translateY(-4px); box-shadow: 0 14px 38px rgba(212, 175, 55, 0.65), 0 0 24px rgba(212, 175, 55, 0.35); }
}

.floating-omm-only:hover {
  transform: translateY(-4px) scale(1.08);
  border-color: #FFF3C4;
  box-shadow: 0 16px 45px rgba(212, 175, 55, 0.75), 0 0 32px rgba(212, 175, 55, 0.5);
}

.omm-aura-pulse {
  position: absolute;
  inset: -9px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, rgba(212, 175, 55, 0.05) 65%, transparent 80%);
  filter: blur(8px);
  animation: pulseOmmAurora 3.2s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes pulseOmmAurora {
  0% { transform: scale(0.9); opacity: 0.4; }
  100% { transform: scale(1.22); opacity: 0.85; }
}

/* Continuously Rounding / Rotating Circle Ring */
.omm-spinning-circle {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px dashed rgba(212, 175, 55, 0.85);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.45);
  animation: spinOmmContinuousRing 7s linear infinite;
  pointer-events: none;
  will-change: transform;
}

.omm-spinning-circle::after {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FFF3C4;
  box-shadow: 0 0 8px #FFF, 0 0 14px #D4AF37;
  transform: translateX(-50%);
}

@keyframes spinOmmContinuousRing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.omm-avatar-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.omm-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.4s ease;
  pointer-events: none;
}

.floating-omm-only:hover .omm-avatar-img {
  transform: scale(1.08);
}

.omm-badge-tag {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  background: rgba(7, 17, 30, 0.92);
  border: 1px solid rgba(212, 175, 55, 0.6);
  border-radius: 12px;
  padding: 1px 7px;
  font-family: var(--font-display);
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #F5D061;
  text-shadow: 0 0 6px rgba(212, 175, 55, 0.6);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
}

.omm-equalizer-bars {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  gap: 2px;
  align-items: flex-end;
  height: 12px;
  z-index: 5;
}

.omm-equalizer-bars span {
  width: 2.5px;
  background: #FFF3C4;
  border-radius: 1px;
  box-shadow: 0 0 6px #D4AF37;
  animation: ommEqualizerPulse 0.8s ease-in-out infinite alternate;
}

.omm-equalizer-bars span:nth-child(1) { height: 5px; animation-delay: 0.1s; }
.omm-equalizer-bars span:nth-child(2) { height: 11px; animation-delay: 0.3s; }
.omm-equalizer-bars span:nth-child(3) { height: 7px; animation-delay: 0.2s; }
.omm-equalizer-bars span:nth-child(4) { height: 10px; animation-delay: 0.4s; }

@keyframes ommEqualizerPulse {
  0% { transform: scaleY(0.3); }
  100% { transform: scaleY(1); }
}

/* Active / Playing state */
.floating-omm-only.is-playing {
  border-color: #FFF3C4;
  box-shadow: 0 0 35px rgba(212, 175, 55, 0.85), 0 0 50px rgba(212, 175, 55, 0.4), inset 0 0 12px rgba(212, 175, 55, 0.5);
  animation: floatOmmPlaying 1.8s ease-in-out infinite alternate;
}

.floating-omm-only.is-playing .omm-spinning-circle {
  border-color: #FFF3C4;
  border-style: solid;
  border-top-color: transparent;
  border-bottom-color: transparent;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.85);
  animation-duration: 3.5s;
}

@keyframes floatOmmPlaying {
  0% { transform: scale(1.02); }
  100% { transform: scale(1.08); box-shadow: 0 0 45px rgba(212, 175, 55, 1), 0 0 60px rgba(212, 175, 55, 0.6); }
}

.floating-omm-only.is-playing .omm-equalizer-bars {
  display: flex;
}

.floating-omm-only.is-playing .omm-badge-tag {
  opacity: 0;
}

.omm-launcher-tooltip {
  position: absolute;
  left: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(-6px);
  background: rgba(7, 17, 30, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(212, 175, 55, 0.45);
  color: #F5ECCE;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: all 0.25s ease;
  z-index: 10;
}

.floating-omm-only:hover .omm-launcher-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ==========================================================================
   FLOATING SOHAM (SOHUM) AJAPA JAPA MEDITATION CIRCULAR WIDGET
   ========================================================================== */
.floating-soham-container {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 9999;
}

.floating-soham-only {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #243447 0%, #121A24 75%, #0B1017 100%);
  border: 2px solid #D4AF37;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.45), 0 0 15px rgba(212, 175, 55, 0.25), inset 0 1px 2px #FFFFFF;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s ease,
              border-color 0.3s ease;
  animation: floatSohamWidget 4s ease-in-out infinite alternate;
  user-select: none;
  outline: none;
  padding: 0;
}

@keyframes floatSohamWidget {
  0% { transform: translateY(0); box-shadow: 0 8px 30px rgba(212, 175, 55, 0.45); }
  100% { transform: translateY(-5px); box-shadow: 0 14px 40px rgba(212, 175, 55, 0.65), 0 0 25px rgba(212, 175, 55, 0.4); }
}

.floating-soham-only:hover {
  transform: translateY(-4px) scale(1.08);
  border-color: #F5ECCE;
  box-shadow: 0 16px 45px rgba(212, 175, 55, 0.75), 0 0 30px rgba(212, 175, 55, 0.5);
}

.soham-aura-pulse {
  position: absolute;
  inset: -9px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, rgba(212, 175, 55, 0.05) 65%, transparent 80%);
  filter: blur(8px);
  animation: pulseSohamAurora 3s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes pulseSohamAurora {
  0% { transform: scale(0.85); opacity: 0.4; }
  100% { transform: scale(1.25); opacity: 0.9; }
}

.soham-avatar-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.soham-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.4s ease;
  pointer-events: none;
}

.floating-soham-only:hover .soham-avatar-img {
  transform: scale(1.08);
}

.soham-badge-tag {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  background: rgba(11, 16, 23, 0.92);
  border: 1px solid rgba(212, 175, 55, 0.6);
  border-radius: 12px;
  padding: 1px 7px;
  font-family: var(--font-display);
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #F5ECCE;
  text-shadow: 0 0 6px rgba(212, 175, 55, 0.5);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
}

.soham-launcher-tooltip {
  position: absolute;
  left: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(-6px);
  background: rgba(18, 26, 36, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 20px;
  padding: 0.35rem 0.8rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #F5ECCE;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.floating-soham-only:hover .soham-launcher-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Floating Soham Sanctuary Modal Pod */
.floating-soham-pod {
  position: absolute;
  bottom: calc(100% + 16px);
  left: 0;
  width: 330px;
  max-width: calc(100vw - 32px);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(32px) saturate(190%);
  -webkit-backdrop-filter: blur(32px) saturate(190%);
  border: 1.5px solid rgba(212, 175, 55, 0.6);
  border-radius: 28px;
  padding: 1.5rem 1.3rem;
  box-shadow: 0 24px 70px rgba(18, 26, 36, 0.25), 0 0 50px rgba(212, 175, 55, 0.25), inset 0 1px 2px #FFFFFF;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.92);
  transform-origin: bottom left;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.floating-soham-pod.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

@media (max-width: 768px) {
  .floating-soham-container {
    bottom: 1.2rem;
    left: 1.2rem;
  }
  .floating-soham-only {
    width: 48px;
    height: 48px;
  }
  .soham-icon-symbol {
    font-size: 1.05rem;
  }
  .soham-icon-text {
    font-size: 0.46rem;
  }
  .floating-soham-pod {
    position: fixed;
    left: 50%;
    bottom: 4.8rem;
    transform: translateX(-50%) translateY(20px) scale(0.92);
    transform-origin: center bottom;
    width: calc(100vw - 32px);
    max-width: 340px;
  }
  .floating-soham-pod.is-open {
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

.soham-pod-close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(24, 34, 47, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
}

.soham-pod-close-btn:hover {
  background: #E11D48;
  color: #FFFFFF;
  border-color: #FDA4AF;
  transform: scale(1.1);
}

@keyframes voiceWaveBounce {
  0%, 100% {
    height: 4px;
  }
  50% {
    height: 14px;
  }
}

/* --------------------------------------------------------------------------
   4. SHRI MOKSHAM INSTITUTIONAL HERITAGE REVIEW CARD
   -------------------------------------------------------------------------- */
.heritage-review-card {
  width: 96%;
  max-width: 96vw;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  border: 1.5px solid rgba(212, 175, 55, 0.45);
  border-radius: 32px;
  padding: 3rem 2.8rem;
  box-shadow: 0 28px 70px rgba(24, 34, 47, 0.08), inset 0 1px 2px #FFFFFF;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 2.8rem;
  align-items: center;
}

.heritage-content-col {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.heritage-brand-display {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.2rem;
}

.heritage-logo-frame {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 2px solid var(--gold-primary);
  overflow: hidden;
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.35);
  background: #FFFFFF;
  flex-shrink: 0;
}

.heritage-logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.heritage-title-group {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.heritage-main-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  color: var(--text-dark);
  line-height: 1.2;
  margin: 0.2rem 0 0 0;
}

.heritage-lead-text {
  font-size: 0.96rem;
  color: var(--text-dark);
  line-height: 1.75;
  margin-bottom: 0.85rem;
  font-weight: 500;
  text-wrap: pretty;
}

.heritage-sub-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.15rem;
  text-wrap: pretty;
}

/* Sacred Triad Banner */
.heritage-triad-banner {
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 14px;
  padding: 0.85rem 1.2rem;
  margin-bottom: 1.2rem;
}

.heritage-triad-title {
  font-family: var(--font-display);
  font-size: 0.84rem;
  color: var(--gold-dark);
  letter-spacing: 0.1em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.heritage-triad-quote {
  font-size: 0.88rem;
  color: var(--text-dark);
  margin: 0;
  font-style: italic;
  line-height: 1.55;
  text-wrap: pretty;
}

/* Feature Chips */
.heritage-feature-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.3rem;
}

.heritage-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.28);
  padding: 0.35rem 0.8rem;
  border-radius: 24px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
}

.heritage-chip:hover {
  background: rgba(212, 175, 55, 0.16);
  border-color: var(--gold-primary);
}

/* 3 Stat Boxes */
.heritage-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  margin: 1.4rem 0 1.6rem 0;
}

.heritage-stat-box {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border-gold-subtle);
  border-radius: 16px;
  padding: 0.9rem 0.6rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(24, 34, 47, 0.04);
}

.heritage-stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-dark);
  display: block;
  line-height: 1.1;
}

.heritage-stat-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  display: block;
  margin-top: 0.3rem;
}

.heritage-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.btn-heritage-course-mobile,
.btn-heritage-whatsapp-mobile {
  display: none;
}

.btn-heritage-treatise {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  padding: 0.75rem 1.4rem;
  border-radius: 30px;
  text-decoration: none;
  background: var(--gold-primary);
  color: #07111E;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
  transition: all 0.3s ease;
}

.btn-heritage-treatise:hover {
  background: var(--gold-dark);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.45);
}

/* Right Action Card */
.heritage-action-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1.5px solid var(--border-gold);
  border-radius: 24px;
  padding: 2.2rem 1.8rem;
  text-align: center;
  box-shadow: 0 16px 40px rgba(212, 175, 55, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.heritage-action-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.heritage-action-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 0.35rem;
  line-height: 1.25;
}

.heritage-action-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.4rem;
  text-wrap: pretty;
}

.heritage-action-btns {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.heritage-action-btns .btn {
  width: 100%;
  justify-content: center;
  padding: 0.75rem 1rem;
  font-size: 0.86rem;
}

/* --------------------------------------------------------------------------
   UPCOMING SEVA DROPS (LUXURY HORIZONTAL SWIPE CAROUSEL)
   -------------------------------------------------------------------------- */
.seva-container {
  width: 96%;
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
}

.seva-swipe-nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  padding: 0 0.5rem;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.seva-swipe-hint {
  font-family: var(--font-display);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  user-select: none;
}

.seva-swipe-hint .seva-swipe-icon {
  font-size: 1.1rem;
  display: inline-block;
  animation: sevaSwipeHandPulse 1.8s ease-in-out infinite;
}

@keyframes sevaSwipeHandPulse {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}

.seva-nav-controls-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.seva-swipe-pagination {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid var(--border-gold-subtle);
  padding: 0.35rem 0.85rem;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(24, 34, 47, 0.05);
}

.seva-pagination-dots {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.seva-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.28);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

.seva-dot:hover {
  background: var(--gold-primary);
  transform: scale(1.25);
}

.seva-dot.active {
  width: 22px;
  border-radius: 10px;
  background: linear-gradient(90deg, #D4AF37, #F5D061);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.seva-counter-pill {
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.08em;
  padding-left: 0.45rem;
  border-left: 1px solid rgba(212, 175, 55, 0.35);
  user-select: none;
}

.seva-swipe-buttons {
  display: flex;
  gap: 0.5rem;
}

.seva-carousel-wrapper {
  position: relative;
  width: 100%;
  margin-top: 0.8rem;
}

.seva-swipe-track {
  display: flex;
  gap: 1.4rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding: 0.8rem 0.4rem 1.6rem 0.4rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(212, 175, 55, 0.45) rgba(24, 34, 47, 0.04);
  overscroll-behavior-x: contain;
  cursor: grab;
}

.seva-swipe-track:focus-visible {
  outline: 2px solid var(--gold-primary);
  outline-offset: 4px;
  border-radius: 20px;
}

.seva-swipe-track::-webkit-scrollbar {
  height: 6px;
}

.seva-swipe-track::-webkit-scrollbar-track {
  background: rgba(24, 34, 47, 0.04);
  border-radius: 10px;
}

.seva-swipe-track::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #D4AF37, #F5D061, #8C6615);
  border-radius: 10px;
}

.seva-drop-card {
  flex: 0 0 350px;
  width: 350px;
  max-width: 360px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1.5px solid var(--border-gold-subtle);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 14px 40px rgba(24, 34, 47, 0.06), inset 0 1px 2px #FFFFFF;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.35s ease,
              box-shadow 0.35s ease;
  user-select: none;
}

.seva-drop-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-primary);
  box-shadow: 0 22px 55px rgba(212, 175, 55, 0.22);
}

.seva-card-media {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: #0D1622;
}

.seva-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.seva-drop-card:hover .seva-card-media img {
  transform: scale(1.06);
}

.seva-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 17, 30, 0.55) 0%, transparent 55%);
  pointer-events: none;
}

.seva-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: rgba(7, 17, 30, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #F5ECCE;
  border: 1px solid rgba(212, 175, 55, 0.45);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 30px;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.seva-card-num {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  background: rgba(7, 17, 30, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #F5D061;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.seva-card-body {
  padding: 1.4rem 1.35rem 1.3rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.seva-card-category {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.seva-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 0.45rem 0;
  line-height: 1.3;
}

.seva-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
  flex: 1;
  text-wrap: pretty;
}

.seva-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  font-size: 0.78rem;
}

.seva-meta-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--text-muted);
  font-weight: 500;
}

.seva-meta-status {
  color: #1b8146;
  font-weight: 700;
  background: rgba(39, 174, 96, 0.08);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  border: 1px solid rgba(39, 174, 96, 0.2);
}

.seva-live-indicator {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #27ae60;
  display: inline-block;
  box-shadow: 0 0 6px #27ae60;
  animation: sevaLivePulse 2s infinite ease-in-out;
}

@keyframes sevaLivePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.seva-carousel-progress {
  position: relative;
  width: 100%;
  max-width: 280px;
  height: 4px;
  background: rgba(24, 34, 47, 0.06);
  border-radius: 4px;
  margin: 0.6rem auto 0 auto;
  overflow: hidden;
}

.seva-carousel-progress-bar {
  height: 100%;
  width: 20%;
  background: linear-gradient(90deg, #D4AF37, #F5D061, #8C6615);
  border-radius: 4px;
  transition: width 0.25s ease-out;
}

/* --------------------------------------------------------------------------
   5. Minimal Three-Dot Header Menu Button
   -------------------------------------------------------------------------- */
.three-dot-menu-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border: 1.5px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--text-dark);
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(24, 34, 47, 0.06);
  transition: all var(--transition-fast);
}

.three-dot-menu-btn:hover {
  background: var(--gold-primary);
  color: #FFFFFF;
  border-color: #FFFFFF;
  transform: scale(1.08);
}

/* Responsive */
@media (max-width: 1024px) {
  .grand-pathways-grid,
  .spiritual-duo-grid,
  .cymatic-sanctuary-grid,
  .spiritual-triad-grid,
  .heritage-review-card {
    grid-template-columns: 1fr;
  }
  .grand-pathway-card {
    height: 400px;
    padding: 1.6rem;
  }
  .grand-pathway-desc-oneliner {
    white-space: normal;
  }
}
