/* ==========================================================================
   VedhamRoots — Reusable Component Stylesheet (components.css)
   Contains: Buttons, Badges, Cards, Forms, Section Headers, Shloka Boxes, UI Kits
   ========================================================================== */

@import url('chatbot.css');

/* --------------------------------------------------------------------------
   1. Section Headers & Kickers
   -------------------------------------------------------------------------- */
.section-header {
  margin-bottom: 3.5rem;
}

.section-header.text-center {
  text-align: center;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.section-header.text-center .section-subtitle,
.section-header.text-center .section-title,
.section-header.text-center .section-kicker {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--primary-terracotta);
  margin-bottom: 0.75rem;
}

.dark-section .section-kicker {
  color: var(--gold-amber);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark-primary);
  margin-bottom: 1rem;
}

.dark-section .section-title {
  color: var(--text-light-heading);
}

.section-subtitle {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-dark-body);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.dark-section .section-subtitle {
  color: rgba(253, 235, 221, 0.85);
}

/* --------------------------------------------------------------------------
   2. Buttons & Interactive Links
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-pill);
  transition: var(--transition-smooth);
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.98);
}

/* Primary Radiant Saffron CTA */
.btn-primary {
  background: linear-gradient(135deg, #D99A16 0%, #F6C878 50%, #E37A24 100%);
  color: var(--bg-dark-maroon);
  box-shadow: var(--shadow-gold-glow);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-primary:hover {
  filter: brightness(1.06);
  box-shadow: 0 6px 26px rgba(246, 200, 120, 0.5);
  transform: translateY(-2px);
}

/* Secondary Terracotta Button */
.btn-secondary {
  background-color: var(--primary-terracotta);
  color: #FFFFFF;
  box-shadow: var(--shadow-saffron-glow);
}

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

/* Outline Gold Button */
.btn-outline-gold {
  background-color: transparent;
  color: var(--text-dark-primary);
  border: 1.5px solid var(--gold-sacred);
}

.btn-outline-gold:hover {
  background-color: var(--bg-surface-card);
  border-color: var(--primary-terracotta);
  color: var(--primary-terracotta);
}

.dark-section .btn-outline-gold {
  color: var(--gold-amber);
  border-color: rgba(246, 200, 120, 0.6);
}

.dark-section .btn-outline-gold:hover {
  background-color: rgba(246, 200, 120, 0.15);
  color: #FFFFFF;
  border-color: var(--gold-amber);
}

/* Small Button Variant */
.btn-sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.82rem;
}

/* Large Button Variant */
.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

@media (max-width: 480px) {
  .btn {
    white-space: normal;
    max-width: 100%;
    box-sizing: border-box;
  }
  .btn-lg {
    padding: 0.85rem 1.25rem;
    font-size: 0.92rem;
  }
}

@media (max-width: 350px) {
  .btn-lg {
    padding: 0.72rem 0.75rem;
    font-size: 0.8rem;
    gap: 0.35rem;
  }
}

/* --------------------------------------------------------------------------
   3. Badges, Chips & Pills
   -------------------------------------------------------------------------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge-gold {
  background: rgba(246, 200, 120, 0.2);
  color: #8C5E00;
  border: 1px solid rgba(212, 175, 55, 0.5);
}

.dark-section .badge-gold {
  color: var(--gold-amber);
  background: rgba(246, 200, 120, 0.15);
}

.badge-saffron {
  background: rgba(227, 122, 36, 0.12);
  color: var(--primary-terracotta);
  border: 1px solid rgba(227, 122, 36, 0.35);
}

.badge-pulse {
  position: relative;
}

.badge-pulse::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--primary-radiant);
  animation: pulseGlow 1.5s infinite;
}

/* --------------------------------------------------------------------------
   4. Cards & Containers
   -------------------------------------------------------------------------- */
.card {
  border-radius: var(--radius-lg);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

/* Light Card */
.card-light {
  background: linear-gradient(135deg, #FFFDF9 0%, #FFF1DE 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  box-shadow: var(--shadow-warm-md);
  color: var(--text-dark-body);
}

.card-light:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-warm-lg);
  border-color: var(--gold-sacred);
}

/* Dark Cultural Card */
.card-dark {
  background: linear-gradient(180deg, var(--bg-dark-crimson) 0%, var(--bg-dark-maroon) 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.45);
  box-shadow: var(--shadow-dark-card);
  color: var(--text-light-body);
}

.card-dark:hover {
  transform: translateY(-4px);
  border-color: var(--gold-amber);
  box-shadow: 0 16px 36px rgba(10, 1, 3, 0.45);
}

/* --------------------------------------------------------------------------
   5. Form Controls
   -------------------------------------------------------------------------- */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dark-section .form-label {
  color: var(--text-light-heading);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1.15rem;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  border: 1.5px solid #EDE0CF;
  background-color: #FFFFFF;
  color: var(--text-dark-primary);
  transition: var(--transition-smooth);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold-sacred);
  box-shadow: 0 0 0 3.5px rgba(212, 175, 55, 0.18);
}

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

.form-hint {
  font-size: 0.78rem;
  color: var(--text-dark-subtle);
  margin-top: 0.25rem;
}

/* --------------------------------------------------------------------------
   6. Shloka Quote Frame
   -------------------------------------------------------------------------- */
.shloka-frame {
  position: relative;
  background: radial-gradient(circle at 50% 50%, #68192A 0%, #4E0E1B 50%, #360812 100%);
  border: 2px solid var(--gold-sacred);
  border-radius: var(--radius-xl);
  padding: 3rem 2rem;
  text-align: center;
  color: var(--text-light-body);
  box-shadow: var(--shadow-dark-card);
  overflow: hidden;
}

.shloka-om {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold-amber);
  margin-bottom: 0.5rem;
}

.shloka-devanagari {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 600;
  line-height: 1.6;
  color: var(--gold-amber);
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}

.shloka-transliteration {
  font-size: 1.05rem;
  font-style: normal;
  color: var(--text-light-body);
  margin-bottom: 1.25rem;
}

.shloka-translation {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-style: normal;
  color: #FFFFFF;
  max-width: 720px;
  margin: 0 auto 1rem auto;
  line-height: 1.5;
}

.shloka-source {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-amber);
}

.shloka-source::before,
.shloka-source::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-amber));
}

.shloka-source::after {
  background: linear-gradient(90deg, var(--gold-amber), transparent);
}

/* --------------------------------------------------------------------------
   7. Quick Search Dialog Modal
   -------------------------------------------------------------------------- */
.search-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(36, 21, 18, 0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 10vh;
  padding-left: 1rem;
  padding-right: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.search-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.search-modal-content {
  background: var(--bg-canvas);
  border: 1.5px solid var(--gold-sacred);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 620px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  overflow: hidden;
  transform: translateY(-20px);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-modal-overlay.open .search-modal-content {
  transform: translateY(0);
}

.search-input-wrapper {
  display: flex;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  gap: 0.75rem;
}

.search-input-field {
  width: 100%;
  border: none;
  background: transparent;
  font-size: 1.15rem;
  color: var(--text-dark-primary);
  outline: none;
}

.search-results-list {
  max-height: 380px;
  overflow-y: auto;
  padding: 0.75rem;
}

.search-result-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
  text-decoration: none;
}

.search-result-item:hover {
  background: var(--bg-surface-card);
}

/* --------------------------------------------------------------------------
   8. Floating Action Buttons (WhatsApp & Call)
   -------------------------------------------------------------------------- */
.floating-actions-container {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  pointer-events: none;
}

.floating-action-btn {
  pointer-events: auto;
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease, filter 0.2s ease;
  outline: none;
}

.floating-action-btn:hover {
  transform: translateY(-4px) scale(1.08);
}

.floating-action-btn:active {
  transform: translateY(-1px) scale(0.96);
}

.floating-action-btn:focus-visible {
  box-shadow: 0 0 0 3.5px var(--gold-amber), 0 8px 24px rgba(0, 0, 0, 0.35);
}

/* Call Button (Placed Just Above WhatsApp) */
.floating-call-btn {
  background: linear-gradient(135deg, #B95725 0%, #D96A27 50%, #99400D 100%);
  border: 1.5px solid var(--gold-sacred);
  box-shadow: 0 6px 20px rgba(185, 87, 37, 0.42), 0 0 0 1px rgba(212, 175, 55, 0.3);
}

.floating-call-btn:hover {
  filter: brightness(1.1);
  box-shadow: 0 8px 26px rgba(185, 87, 37, 0.6), 0 0 0 2px var(--gold-amber);
}

.floating-call-btn .floating-icon {
  font-size: 24px;
  color: #FFFDF9;
  transition: transform 0.25s ease;
}

.floating-call-btn:hover .floating-icon {
  transform: rotate(15deg) scale(1.1);
}

/* WhatsApp Button (Bottom Right) */
.floating-whatsapp-btn {
  background: linear-gradient(135deg, #25D366 0%, #1EBE5D 50%, #128C7E 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45);
  animation: waPulseGlow 3s infinite;
}

.floating-whatsapp-btn:hover {
  filter: brightness(1.08);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.65), 0 0 0 2px rgba(255, 255, 255, 0.6);
  animation: none;
}

.floating-whatsapp-btn .floating-icon-svg {
  width: 27px;
  height: 27px;
  fill: #FFFFFF;
  transition: transform 0.25s ease;
}

.floating-whatsapp-btn:hover .floating-icon-svg {
  transform: scale(1.1);
}

/* Gentle WhatsApp Pulse Effect */
@keyframes waPulseGlow {
  0% {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.45);
  }
  70% {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Tooltips */
.floating-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: var(--bg-dark-maroon);
  color: var(--gold-amber);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(212, 175, 55, 0.45);
  box-shadow: 0 4px 16px rgba(36, 21, 18, 0.35);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.2s;
}

.floating-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
  border-width: 5px 0 5px 5px;
  border-style: solid;
  border-color: transparent transparent transparent var(--bg-dark-maroon);
}

.floating-action-btn:hover .floating-tooltip,
.floating-action-btn:focus-visible .floating-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

/* Responsive adjustments for Mobile & Tablets */
@media (max-width: 768px) {
  .floating-actions-container {
    bottom: 18px;
    right: 18px;
    gap: 11px;
  }
  .floating-action-btn {
    width: 48px;
    height: 48px;
  }
  .floating-call-btn .floating-icon {
    font-size: 22px;
  }
  .floating-whatsapp-btn .floating-icon-svg {
    width: 24px;
    height: 24px;
  }
  .floating-tooltip {
    display: none;
  }
}

/* ==========================================================================
   11. Master 3-Way Alternating Background Themes (designandcolor.md)
   ========================================================================== */

/* Theme 1: Deep Royal Temple Burgundy Sanctum */
.theme-royal-sanctum {
  background-color: #3D0A14 !important;
  background-image: 
    radial-gradient(circle at 15% 20%, rgba(246, 200, 120, 0.14) 0%, transparent 55%),
    radial-gradient(circle at 85% 75%, rgba(185, 87, 37, 0.16) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, #4A121A 0%, #360812 100%) !important;
  color: #FFF8EB !important;
  position: relative;
  overflow: hidden;
}

.theme-royal-sanctum .section-kicker {
  color: var(--gold-amber, #F6C878) !important;
}

.theme-royal-sanctum .section-title {
  color: #FFFDF7 !important;
}

.theme-royal-sanctum .section-subtitle {
  color: #E2D9CE !important;
}

/* Theme 2: Warm Illuminated Cream / Sand Parchment */
.theme-warm-cream {
  background-color: #FDF9F1 !important;
  background-image: radial-gradient(circle at 50% 0%, rgba(255, 248, 238, 0.9) 0%, #FDF9F1 100%) !important;
  color: var(--text-dark-body, #56423A) !important;
  position: relative;
  overflow: hidden;
}

.theme-warm-cream.sand-tone {
  background-color: #FAF5EB !important;
}

.theme-warm-cream .section-kicker {
  color: var(--primary-terracotta, #99400D) !important;
}

.theme-warm-cream .section-title {
  color: var(--text-dark-primary, #3D0A14) !important;
}

.theme-warm-cream .section-subtitle {
  color: var(--text-dark-body, #56423A) !important;
}

/* Theme 3: Radiant Sunset Terracotta / Sacred Saffron Glow */
.theme-sunset-terracotta {
  background-color: #A73400 !important;
  background-image: 
    radial-gradient(circle at 15% 20%, rgba(255, 215, 120, 0.35) 0%, transparent 55%),
    radial-gradient(circle at 85% 65%, rgba(255, 170, 50, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 50% 100%, rgba(255, 230, 160, 0.22) 0%, transparent 60%) !important;
  color: #FFFDF7 !important;
  position: relative;
  overflow: hidden;
}

.theme-sunset-terracotta .section-kicker {
  color: #360812 !important;
  background: #FFFFFF !important;
  border-radius: var(--radius-pill) !important;
  padding: 0.42rem 1.15rem !important;
  border: 1.5px solid rgba(212, 175, 55, 0.65) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12), 0 0 12px rgba(246, 200, 120, 0.25) !important;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.theme-sunset-terracotta .section-kicker .material-symbols-outlined {
  color: var(--primary-terracotta, #99400D) !important;
}

.theme-sunset-terracotta .section-title {
  color: #FFFFFF !important;
  text-shadow: 0 2px 14px rgba(61, 10, 20, 0.45);
}

.theme-sunset-terracotta .section-subtitle {
  color: #FDEED9 !important;
  text-shadow: 0 1px 6px rgba(42, 5, 13, 0.35);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ==========================================================================
   12. Universal Background Lotus Watermarks & Ambient Glow Halos
   ========================================================================== */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(75px);
  z-index: 1;
}

.glow-top-left {
  top: -80px;
  left: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(246, 200, 120, 0.28) 0%, transparent 70%);
}

.glow-top-right {
  top: -80px;
  right: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(246, 200, 120, 0.28) 0%, transparent 70%);
}

.glow-bottom-left {
  bottom: -80px;
  left: -80px;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(185, 87, 37, 0.22) 0%, transparent 70%);
}

.glow-bottom-right {
  bottom: -80px;
  right: -80px;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(185, 87, 37, 0.22) 0%, transparent 70%);
}

.bg-lotus-svg {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.12;
  transition: opacity 0.3s ease;
}

.theme-royal-sanctum .bg-lotus-svg,
.theme-sunset-terracotta .bg-lotus-svg {
  opacity: 0.22;
  filter: drop-shadow(0 4px 16px rgba(212, 175, 55, 0.35));
}

.theme-warm-cream .bg-lotus-svg {
  opacity: 0.25;
  filter: drop-shadow(0 4px 14px rgba(185, 87, 37, 0.22)) brightness(0.72) saturate(1.6);
}

.lotus-top-left {
  top: -30px;
  left: -20px;
  width: clamp(170px, 18vw, 270px);
  height: clamp(170px, 18vw, 270px);
  transform: rotate(-15deg);
}

.lotus-top-right {
  top: -30px;
  right: -20px;
  width: clamp(170px, 18vw, 270px);
  height: clamp(170px, 18vw, 270px);
  transform: rotate(15deg);
}

.lotus-bottom-left {
  bottom: -35px;
  left: -25px;
  width: clamp(190px, 20vw, 300px);
  height: clamp(190px, 20vw, 300px);
  transform: rotate(-20deg);
}

.lotus-bottom-right {
  bottom: -35px;
  right: -25px;
  width: clamp(190px, 20vw, 300px);
  height: clamp(190px, 20vw, 300px);
  transform: rotate(20deg);
}

.relative-z {
  position: relative;
  z-index: 5;
}

/* ==========================================================================
   13. Master Final CTA Banner (designandcolor.md Section 7)
   ========================================================================== */
.cta-banner-section {
  padding: 6.5rem 0 6rem 0;
  position: relative;
  overflow: hidden;
}

.cta-ambient-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(75px);
  z-index: 1;
}

.cta-glow-top-left {
  top: -80px;
  left: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(246, 200, 120, 0.32) 0%, transparent 70%);
}

.cta-glow-bottom-right {
  bottom: -80px;
  right: -80px;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(185, 87, 37, 0.25) 0%, transparent 70%);
}

.cta-bg-lotus {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  opacity: 0.45;
  filter: drop-shadow(0 4px 16px rgba(212, 175, 55, 0.45));
}

.cta-lotus-top-left {
  top: -30px;
  left: -20px;
  width: clamp(170px, 18vw, 270px);
  height: clamp(170px, 18vw, 270px);
  transform: rotate(-15deg);
}

.cta-lotus-bottom-right {
  bottom: -35px;
  right: -25px;
  width: clamp(190px, 20vw, 300px);
  height: clamp(190px, 20vw, 300px);
  transform: rotate(20deg);
}

.cta-content-wrap {
  position: relative;
  z-index: 5;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.cta-kicker-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(246, 200, 120, 0.5);
  padding: 0.45rem 1.25rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.cta-pulse-beacon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 10px #25D366, 0 0 18px rgba(37, 211, 102, 0.7);
  animation: ctaPulseBeacon 2s infinite ease-in-out;
}

@keyframes ctaPulseBeacon {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: 0.75; }
}

.cta-kicker-text {
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #FFF6D6;
}

.cta-kicker-badge {
  background: linear-gradient(135deg, #B95725 0%, #D99A16 100%);
  color: #FFFDF7;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 9999px;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  font-weight: 700;
  line-height: 1.18;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.cta-title-highlight-gold {
  background: linear-gradient(135deg, #FFF6D6 0%, #F6C878 50%, #D4AF37 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: normal;
}

.cta-title-highlight-amber {
  background: linear-gradient(135deg, #FFFFFF 0%, #FCEBB8 50%, #FFAA33 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-hero-subtitle {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.7;
  color: #FDEED9;
  max-width: 760px;
  margin: 0 auto 2.5rem auto;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}

.cta-sub-hl {
  color: #FFE17D;
  font-weight: 700;
}

.cta-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.75rem;
  text-align: left;
}

.cta-pillar-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(246, 200, 120, 0.25);
  border-radius: 16px;
  padding: 1.35rem 1.25rem;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.cta-pillar-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(246, 200, 120, 0.55);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(246, 200, 120, 0.15);
}

.cta-pillar-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(185, 87, 37, 0.35) 0%, rgba(212, 175, 55, 0.25) 100%);
  border: 1px solid rgba(246, 200, 120, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  color: #F6C878;
}

.cta-pillar-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFDF7;
  margin-bottom: 0.35rem;
}

.cta-pillar-desc {
  font-size: 0.88rem;
  line-height: 1.55;
  color: #F3D6C6;
  margin: 0;
}

.cta-actions-hub {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.cta-btn-main {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #D99A16 0%, #F6C878 45%, #E37A24 100%);
  color: #360812 !important;
  padding: 1rem 2.25rem;
  border-radius: 9999px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 30px rgba(217, 154, 22, 0.4), 0 0 20px rgba(246, 200, 120, 0.3);
  text-decoration: none;
  font-family: var(--font-sans);
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  min-width: 270px;
}

.cta-btn-main:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 36px rgba(217, 154, 22, 0.55), 0 0 28px rgba(246, 200, 120, 0.45);
  filter: brightness(1.05);
}

.cta-btn-main-row {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: #360812;
}

.cta-btn-main-sub {
  font-size: 0.72rem;
  font-weight: 600;
  color: #4A0E1A;
  letter-spacing: 0.03em;
  margin-top: 2px;
}

.cta-btn-whatsapp {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(30, 24, 21, 0.85);
  color: #FFFDF7 !important;
  padding: 1rem 2.25rem;
  border-radius: 9999px;
  border: 1.5px solid rgba(37, 211, 102, 0.65);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  text-decoration: none;
  font-family: var(--font-sans);
  font-weight: 700;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  min-width: 270px;
}

.cta-btn-whatsapp:hover {
  transform: translateY(-3px) scale(1.02);
  background: rgba(45, 30, 25, 0.95);
  border-color: #25D366;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
}

.cta-btn-whatsapp-row {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: #FFFDF7;
}

.cta-btn-whatsapp-sub {
  font-size: 0.72rem;
  font-weight: 500;
  color: #25D366;
  letter-spacing: 0.03em;
  margin-top: 2px;
}

.cta-wa-icon {
  fill: #25D366;
}

.cta-trust-bar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(246, 200, 120, 0.2);
  padding: 0.65rem 1.5rem;
  border-radius: 9999px;
  flex-wrap: wrap;
}

.cta-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #FFF6D6;
}

.cta-trust-icon {
  font-size: 16px;
  color: #F6C878;
}

.cta-trust-divider {
  color: rgba(246, 200, 120, 0.4);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .cta-pillars-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .cta-actions-hub {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-btn-main,
  .cta-btn-whatsapp {
    width: 100%;
    min-width: unset;
  }
}

/* --------------------------------------------------------------------------
   Single Featured Card for Section 4: Agnihotra Homa & Sacred Fire Traditions
   -------------------------------------------------------------------------- */
.featured-single-card-wrap {
  max-width: 1080px;
  margin: 2.75rem auto 0 auto;
}

.featured-agnihotra-card {
  border-radius: 24px;
  background: #181210;
  border: 2px solid rgba(246, 200, 120, 0.45);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 32px rgba(234, 88, 12, 0.22);
  overflow: hidden;
}

.featured-agnihotra-card:hover {
  border-color: #F6C878;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.65), 0 0 44px rgba(234, 88, 12, 0.35);
}

.featured-card-grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 960px) {
  .featured-card-grid {
    grid-template-columns: 420px 1fr;
  }
}

.featured-visual-pane {
  display: flex;
  flex-direction: column;
  background: #110B09;
  border-bottom: 2px solid rgba(246, 200, 120, 0.2);
}

@media (min-width: 960px) {
  .featured-visual-pane {
    border-bottom: none;
    border-right: 2px solid rgba(246, 200, 120, 0.2);
  }
}

.featured-img-primary-wrap {
  position: relative;
  height: 310px;
  overflow: hidden;
  background: #200E08;
}

.featured-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-agnihotra-card:hover .featured-main-img {
  transform: scale(1.06);
}

.featured-visual-kicker {
  font-size: 0.76rem;
  font-weight: 700;
  color: #FFEAA7;
  background: rgba(0, 0, 0, 0.7);
  padding: 3px 9px;
  border-radius: 6px;
  border: 1px solid rgba(246, 200, 120, 0.3);
}

.featured-img-secondary-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  border-top: 1.5px solid rgba(246, 200, 120, 0.25);
  background: #170A06;
}

.featured-sub-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-agnihotra-card:hover .featured-sub-img {
  transform: scale(1.05);
}

.featured-sub-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 12px;
  background: linear-gradient(180deg, transparent 0%, rgba(17, 11, 9, 0.95) 100%);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #FFFDF7;
}

.featured-content-pane {
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (max-width: 600px) {
  .featured-content-pane {
    padding: 1.5rem 1.25rem;
  }
}

.agnihotra-learnings-box {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(246, 200, 120, 0.25);
  border-radius: 14px;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
  width: 100%;
  text-align: center;
}

.agnihotra-box-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #FFEAA7;
  margin-bottom: 0.85rem;
  text-align: center;
}

.agnihotra-learnings-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem 1rem;
}

@media (min-width: 640px) {
  .agnihotra-learnings-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.learning-item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: #F5EFEB;
  line-height: 1.45;
  text-align: left;
}

.learning-emoji {
  font-size: 1.1rem;
  line-height: 1.35;
  width: 24px;
  min-width: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.agnihotra-curriculum-strip {
  background: rgba(234, 88, 12, 0.08);
  border: 1px solid rgba(234, 88, 12, 0.3);
  border-radius: 14px;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
  width: 100%;
  text-align: center;
}

.curriculum-levels-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: center;
}

.curr-level-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: #F5EFEB;
  line-height: 1.45;
  text-align: center;
}

.level-badge-pill {
  background: #EA580C;
  color: #FFFDF7;
  font-weight: 800;
  font-size: 0.72rem;
  padding: 2px 8px;
  border-radius: 6px;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

.curr-level-text strong {
  color: #FFEAA7;
}

.agnihotra-safety-alert {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: rgba(220, 38, 38, 0.15);
  border: 1.5px solid rgba(239, 68, 68, 0.4);
  border-radius: 12px;
  padding: 0.85rem 1.1rem;
  color: #FECACA;
  font-size: 0.86rem;
  line-height: 1.5;
  text-align: center;
  width: 100%;
}

.safety-alert-icon {
  color: #F87171;
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

.safety-alert-content strong {
  color: #FFFFFF;
}




