/* ===================================
   KABEER JI MAHARAJ - Divine Website
   Vichar Se Vyavastha Tak
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=Cinzel:wght@400;600;700;900&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400;1,600&family=Noto+Sans+Devanagari:wght@300;400;600;700&display=swap');

:root {
  --saffron: #FF6B00;
  --saffron-light: #FF8C2A;
  --saffron-pale: #FFD599;
  --gold: #D4A017;
  --gold-bright: #F5C842;
  --gold-pale: #FFF3CC;
  --deep-red: #8B0000;
  --crimson: #C41E3A;
  --ivory: #FAF6EF;
  --warm-white: #FFFDF9;
  --charcoal: #1A1208;
  --dark-brown: #2C1810;
  --medium-brown: #5C3A1E;
  --text-body: #3D2B1F;
  --text-light: #7A5C3D;
  --mandir-bg: #0D0806;
  --glow-saffron: rgba(255, 107, 0, 0.3);
  --glow-gold: rgba(212, 160, 23, 0.4);
}

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

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

body {
  font-family: 'Cormorant Garamond', serif;
  background: var(--mandir-bg);
  color: var(--ivory);
  overflow-x: hidden;
  cursor: default;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--charcoal); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ===== CUSTOM CURSOR ===== */
.cursor {
  width: 20px; height: 20px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 99999;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease;
  mix-blend-mode: difference;
}
.cursor-dot {
  width: 5px; height: 5px;
  background: var(--saffron);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 99999;
  transform: translate(-50%, -50%);
}

/* ===== PARTICLES ===== */
#particles { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }

/* ===== WHATSAPP POPUP ===== */
.wa-overlay {
  position: fixed; inset: 0;
  background: rgba(10, 6, 2, 0.92);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
  animation: fadeIn 0.5s ease;
}
.wa-modal {
  background: linear-gradient(145deg, #1A0E05, #2C1A08);
  border: 1px solid var(--gold);
  border-radius: 20px;
  padding: 50px 40px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 0 60px var(--glow-gold), 0 0 120px rgba(255,107,0,0.15);
}
.wa-modal::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 20px;
  background: radial-gradient(ellipse at top, rgba(212,160,23,0.08) 0%, transparent 70%);
}
.wa-close {
  position: absolute; top: 15px; right: 20px;
  font-size: 24px; cursor: pointer;
  color: var(--gold); opacity: 0.7;
  transition: opacity 0.2s;
}
.wa-close:hover { opacity: 1; }
.wa-om { font-size: 52px; margin-bottom: 10px; animation: pulse-glow 2s infinite; }
.wa-modal h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.6rem; color: var(--gold);
  margin-bottom: 8px;
}
.wa-modal p {
  font-size: 1.05rem; color: var(--saffron-pale);
  margin-bottom: 25px; line-height: 1.6;
}
.wa-join-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white; padding: 14px 32px;
  border-radius: 50px; text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 1rem; font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}
.wa-join-btn:hover { transform: scale(1.05); box-shadow: 0 6px 30px rgba(37,211,102,0.6); }
.wa-skip { display: block; margin-top: 18px; color: var(--text-light); font-size: 0.9rem; cursor: pointer; }
.wa-skip:hover { color: var(--saffron-pale); }

/* ===== HEADER / NAV ===== */
header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13, 8, 6, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 160, 23, 0.2);
  transition: all 0.3s ease;
}
header.scrolled {
  background: rgba(10, 5, 2, 0.97);
  box-shadow: 0 4px 30px rgba(212,160,23,0.15);
}
nav {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 40px;
}
.logo {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none;
}
.logo-om {
  font-size: 28px;
  animation: pulse-glow 3s infinite;
  color: var(--gold);
}
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.logo-sub {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 0.65rem; color: var(--saffron-light);
  letter-spacing: 2px; text-transform: uppercase;
}
.nav-links {
  display: flex; gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--saffron-pale);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transition: transform 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: var(--charcoal) !important;
  padding: 8px 22px; border-radius: 30px;
  font-weight: 700 !important;
  box-shadow: 0 4px 15px var(--glow-saffron);
}
.nav-cta:hover { box-shadow: 0 6px 25px var(--glow-saffron) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 25px; height: 2px; background: var(--gold); transition: all 0.3s; }

/* ===== HERO SECTION ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 60% 50%, #1A0A03 0%, #0D0806 60%, #050301 100%);
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255,107,0,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(212,160,23,0.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(255,107,0,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.hero-mandala {
  position: absolute; right: -5%; top: 50%;
  transform: translateY(-50%);
  width: 700px; height: 700px;
  opacity: 0.04;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Ccircle cx='100' cy='100' r='90' fill='none' stroke='%23D4A017' stroke-width='0.5'/%3E%3Ccircle cx='100' cy='100' r='70' fill='none' stroke='%23D4A017' stroke-width='0.5'/%3E%3Ccircle cx='100' cy='100' r='50' fill='none' stroke='%23D4A017' stroke-width='0.5'/%3E%3C/svg%3E") center/contain no-repeat;
  animation: rotate-slow 60s linear infinite;
}
.hero-content {
  max-width: 1280px; margin: 0 auto;
  padding: 120px 40px 80px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 2;
  width: 100%;
}
.hero-left { animation: slideInLeft 1s ease both; }
.hero-tagline-strip {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,107,0,0.12);
  border: 1px solid rgba(255,107,0,0.3);
  border-radius: 30px;
  padding: 6px 18px;
  margin-bottom: 24px;
}
.hero-tagline-strip .om { color: var(--gold); }
.hero-tagline-strip span {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 0.8rem; color: var(--saffron-light);
  letter-spacing: 2px;
}
.hero-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--ivory) 0%, var(--gold-bright) 50%, var(--saffron-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-subtitle {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 1.3rem; color: var(--saffron);
  margin-bottom: 16px; font-weight: 300;
  letter-spacing: 1px;
}
.hero-vichar {
  font-family: 'Cinzel', serif;
  font-size: 1rem; color: var(--gold);
  letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 24px;
  border-left: 3px solid var(--saffron);
  padding-left: 16px;
}
.hero-desc {
  font-size: 1.15rem; color: var(--saffron-pale);
  line-height: 1.8; max-width: 520px;
  margin-bottom: 36px; font-weight: 300;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(135deg, var(--saffron), #FF8C00);
  color: var(--charcoal);
  padding: 14px 32px; border-radius: 50px;
  font-family: 'Cinzel', serif;
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 1.5px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 25px var(--glow-saffron);
  border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 35px var(--glow-saffron); }
.btn-secondary {
  background: transparent;
  color: var(--gold);
  padding: 14px 32px; border-radius: 50px;
  font-family: 'Cinzel', serif;
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 1.5px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(212,160,23,0.5);
}
.btn-secondary:hover {
  background: rgba(212,160,23,0.1);
  border-color: var(--gold);
  transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
  display: flex; gap: 30px; margin-top: 40px;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Cinzel Decorative', serif;
  font-size: 2rem; color: var(--gold);
  display: block; line-height: 1;
}
.stat-label {
  font-size: 0.75rem; color: var(--text-light);
  letter-spacing: 1px; text-transform: uppercase;
  font-family: 'Cinzel', serif;
}
.stat-divider { width: 1px; background: rgba(212,160,23,0.2); align-self: stretch; }

/* Hero Image */
.hero-right {
  position: relative; animation: slideInRight 1s ease both;
  display: flex; justify-content: center;
}
.hero-image-frame {
  position: relative; width: 460px; height: 580px;
  flex-shrink: 0;
}
.hero-image-frame::before {
  content: '';
  position: absolute; inset: -15px;
  border: 2px solid rgba(212,160,23,0.3);
  border-radius: 20px;
  animation: rotate-slow 20s linear infinite;
}
.hero-image-frame::after {
  content: '';
  position: absolute; inset: -30px;
  border: 1px solid rgba(255,107,0,0.15);
  border-radius: 25px;
  animation: rotate-slow 30s linear infinite reverse;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  border-radius: 16px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.6), 0 0 60px var(--glow-gold);
  position: relative; z-index: 1;
}
.hero-img-glow {
  position: absolute; inset: 0;
  border-radius: 16px;
  background: radial-gradient(ellipse at bottom, rgba(255,107,0,0.15) 0%, transparent 60%);
  z-index: 2; pointer-events: none;
}
.hero-badge {
  position: absolute; bottom: -20px; left: -20px;
  background: linear-gradient(135deg, var(--dark-brown), #3A2010);
  border: 1px solid var(--gold);
  border-radius: 16px; padding: 16px 20px;
  z-index: 3;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.hero-badge p { font-family: 'Cinzel', serif; font-size: 0.7rem; color: var(--saffron-light); }
.hero-badge strong { font-size: 1.1rem; color: var(--gold); display: block; }

/* ===== SECTION TITLES ===== */
.section-title-block { text-align: center; margin-bottom: 60px; }
.section-kicker {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 0.8rem; color: var(--saffron);
  letter-spacing: 4px; text-transform: uppercase;
  display: block; margin-bottom: 12px;
}
.section-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--gold);
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-bottom: 16px;
}
.section-divider span { width: 60px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.section-divider span:last-child { background: linear-gradient(90deg, var(--gold), transparent); }
.section-divider .lotus { font-size: 20px; color: var(--saffron); }
.section-desc { font-size: 1.15rem; color: var(--text-light); max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 100px 40px;
  background: linear-gradient(180deg, #0D0806 0%, #0F0A05 100%);
  position: relative;
}
.about-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-img-container {
  position: relative;
}
.about-img {
  width: 100%; border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border: 1px solid rgba(212,160,23,0.2);
}
.about-quote-card {
  position: absolute; bottom: -30px; right: -20px;
  background: linear-gradient(135deg, #1A0E05, #2C1A08);
  border: 1px solid var(--saffron);
  border-radius: 16px; padding: 20px 24px;
  max-width: 280px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}
.about-quote-card p { font-size: 0.9rem; color: var(--saffron-pale); font-style: italic; line-height: 1.6; }
.about-quote-card cite { display: block; margin-top: 8px; font-size: 0.75rem; color: var(--gold); font-style: normal; font-family: 'Cinzel', serif; }

.about-content .section-title-block { text-align: left; }
.about-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.about-tag {
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.25);
  color: var(--saffron-light);
  padding: 5px 14px; border-radius: 20px;
  font-family: 'Cinzel', serif;
  font-size: 0.7rem; letter-spacing: 1px;
}
.about-text { font-size: 1.1rem; color: var(--saffron-pale); line-height: 1.9; margin-bottom: 16px; }

/* ===== PILLARS ===== */
.pillars-section {
  padding: 100px 40px;
  background: var(--mandir-bg);
  position: relative;
}
.pillars-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.pillars-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.pillar-card {
  background: linear-gradient(145deg, rgba(26,14,5,0.8), rgba(44,26,8,0.5));
  border: 1px solid rgba(212,160,23,0.15);
  border-radius: 20px; padding: 40px 32px;
  position: relative; overflow: hidden;
  transition: all 0.4s ease;
}
.pillar-card:hover { transform: translateY(-8px); border-color: rgba(212,160,23,0.4); }
.pillar-card:hover .pillar-glow { opacity: 1; }
.pillar-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top, rgba(255,107,0,0.06) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.4s;
}
.pillar-num {
  font-family: 'Cinzel Decorative', serif;
  font-size: 3.5rem; color: rgba(212,160,23,0.12);
  position: absolute; top: 16px; right: 20px;
  line-height: 1;
}
.pillar-icon { font-size: 36px; margin-bottom: 16px; display: block; }
.pillar-title {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem; color: var(--gold);
  margin-bottom: 12px; font-weight: 700;
}
.pillar-text { font-size: 1rem; color: var(--text-light); line-height: 1.8; }

/* ===== TIMELINE ===== */
.timeline-section {
  padding: 100px 40px;
  background: linear-gradient(180deg, #0F0A05 0%, #0D0806 100%);
}
.timeline-container { max-width: 900px; margin: 0 auto; position: relative; }
.timeline-line {
  position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--gold), var(--saffron), var(--gold), transparent);
  transform: translateX(-50%);
}
.timeline-item {
  display: grid; grid-template-columns: 1fr 60px 1fr;
  gap: 20px; margin-bottom: 60px; align-items: start;
}
.timeline-item:nth-child(odd) .timeline-content { grid-column: 1; text-align: right; }
.timeline-item:nth-child(odd) .timeline-empty { grid-column: 3; }
.timeline-item:nth-child(even) .timeline-content { grid-column: 3; }
.timeline-item:nth-child(even) .timeline-empty { grid-column: 1; }
.timeline-dot {
  grid-column: 2;
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  box-shadow: 0 0 20px var(--glow-saffron);
  position: relative; z-index: 1;
  justify-self: center;
}
.timeline-content {
  background: rgba(26,14,5,0.8);
  border: 1px solid rgba(212,160,23,0.15);
  border-radius: 16px; padding: 24px 28px;
  transition: all 0.3s;
}
.timeline-content:hover { border-color: rgba(212,160,23,0.4); transform: scale(1.02); }
.timeline-year {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem; color: var(--saffron);
  letter-spacing: 2px; margin-bottom: 6px;
}
.timeline-era {
  font-family: 'Cinzel', serif;
  font-size: 1rem; color: var(--gold);
  font-weight: 700; margin-bottom: 8px;
}
.timeline-text { font-size: 0.95rem; color: var(--text-light); line-height: 1.7; }

/* ===== INITIATIVES ===== */
.initiatives-section {
  padding: 100px 40px;
  background: var(--mandir-bg);
}
.initiatives-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.initiative-card {
  background: linear-gradient(145deg, rgba(26,14,5,0.9), rgba(20,12,4,0.8));
  border: 1px solid rgba(212,160,23,0.15);
  border-radius: 20px; padding: 40px;
  position: relative; overflow: hidden;
  transition: all 0.4s ease;
}
.initiative-card.featured {
  grid-column: span 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.initiative-card:hover { border-color: rgba(255,107,0,0.4); transform: translateY(-5px); }
.init-icon-large { font-size: 48px; margin-bottom: 20px; }
.init-title {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem; color: var(--gold);
  margin-bottom: 12px;
}
.init-text { font-size: 1rem; color: var(--text-light); line-height: 1.8; margin-bottom: 20px; }
.init-stats { display: flex; gap: 24px; }
.init-stat { text-align: center; }
.init-stat strong { font-family: 'Cinzel Decorative', serif; font-size: 1.5rem; color: var(--saffron); display: block; }
.init-stat span { font-size: 0.75rem; color: var(--text-light); letter-spacing: 1px; text-transform: uppercase; }

/* ===== TEACHINGS ===== */
.teachings-section {
  padding: 100px 40px;
  background: linear-gradient(180deg, #0F0A05 0%, var(--mandir-bg) 100%);
}
.teachings-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.teaching-card {
  background: rgba(26,14,5,0.6);
  border: 1px solid rgba(212,160,23,0.12);
  border-radius: 20px; padding: 36px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.teaching-card:hover { border-color: rgba(255,107,0,0.35); background: rgba(40,20,8,0.7); }
.teaching-category {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 0.7rem; color: var(--saffron);
  letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 10px;
}
.teaching-title {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem; color: var(--gold);
  margin-bottom: 14px; font-weight: 700;
}
.teaching-excerpt { font-size: 1rem; color: var(--text-light); line-height: 1.8; }
.teaching-read-more {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px; color: var(--saffron);
  font-family: 'Cinzel', serif; font-size: 0.78rem;
  text-decoration: none; letter-spacing: 1px;
  transition: gap 0.2s;
}
.teaching-read-more:hover { gap: 12px; }

/* ===== VIDEOS SECTION ===== */
.videos-section {
  padding: 100px 40px;
  background: var(--mandir-bg);
  position: relative;
}
.videos-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.video-card {
  background: rgba(26,14,5,0.8);
  border: 1px solid rgba(212,160,23,0.15);
  border-radius: 16px; overflow: hidden;
  transition: all 0.3s ease;
}
.video-card:hover { transform: translateY(-6px); border-color: rgba(255,107,0,0.4); }
.video-thumb {
  position: relative; padding-top: 56.25%;
  overflow: hidden; background: #0A0500;
}
.video-thumb iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: none;
}
.video-info { padding: 20px; }
.video-title {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem; color: var(--gold);
  line-height: 1.4; margin-bottom: 8px;
}
.video-channel { font-size: 0.8rem; color: var(--saffron); }
.yt-cta-strip {
  text-align: center; margin-top: 50px;
}

/* ===== QUOTE BANNER ===== */
.quote-banner {
  padding: 80px 40px;
  background: linear-gradient(135deg, rgba(139,0,0,0.15) 0%, rgba(255,107,0,0.1) 50%, rgba(212,160,23,0.08) 100%);
  border-top: 1px solid rgba(255,107,0,0.15);
  border-bottom: 1px solid rgba(255,107,0,0.15);
  text-align: center; position: relative;
}
.quote-banner::before {
  content: '"';
  position: absolute; top: -30px; left: 50%;
  transform: translateX(-50%);
  font-size: 120px; color: var(--saffron);
  opacity: 0.08; font-family: Georgia, serif;
  line-height: 1;
}
.big-quote {
  max-width: 800px; margin: 0 auto;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-style: italic; color: var(--ivory);
  line-height: 1.7; margin-bottom: 20px;
}
.big-quote-attr {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem; color: var(--gold);
  letter-spacing: 2px;
}

/* ===== MEDIA SECTION ===== */
.media-section {
  padding: 100px 40px;
  background: linear-gradient(180deg, #0F0A05 0%, var(--mandir-bg) 100%);
}
.media-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.media-card {
  background: rgba(26,14,5,0.8);
  border: 1px solid rgba(212,160,23,0.12);
  border-radius: 16px; padding: 32px;
  transition: all 0.3s;
}
.media-card:hover { border-color: rgba(212,160,23,0.35); transform: translateY(-4px); }
.media-source {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem; color: var(--saffron);
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 8px;
}
.media-date { font-size: 0.75rem; color: var(--text-light); margin-bottom: 12px; }
.media-headline {
  font-family: 'Cinzel', serif;
  font-size: 1rem; color: var(--gold);
  margin-bottom: 12px; line-height: 1.5; font-weight: 700;
}
.media-excerpt { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

/* ===== SOCIAL SECTION ===== */
.social-section {
  padding: 80px 40px;
  background: var(--mandir-bg);
}
.social-container { max-width: 900px; margin: 0 auto; }
.social-group { margin-bottom: 50px; }
.social-group-title {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem; color: var(--saffron);
  letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 20px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,107,0,0.2);
}
.social-links-row { display: flex; gap: 16px; flex-wrap: wrap; }
.social-link {
  display: flex; align-items: center; gap: 12px;
  background: rgba(26,14,5,0.8);
  border: 1px solid rgba(212,160,23,0.2);
  border-radius: 14px; padding: 14px 22px;
  text-decoration: none;
  transition: all 0.3s ease;
  flex: 1; min-width: 180px;
}
.social-link:hover { transform: translateY(-4px); border-color: rgba(212,160,23,0.5); background: rgba(40,20,8,0.9); }
.social-link .icon { font-size: 22px; flex-shrink: 0; }
.social-link .sl-info { display: flex; flex-direction: column; }
.social-link .sl-platform { font-family: 'Cinzel', serif; font-size: 0.75rem; color: var(--saffron-light); letter-spacing: 1px; }
.social-link .sl-handle { font-size: 0.85rem; color: var(--gold); font-weight: 600; }
.social-link.yt { border-color: rgba(255,0,0,0.2); }
.social-link.yt:hover { border-color: rgba(255,0,0,0.5); background: rgba(40,5,5,0.9); }
.social-link.fb { border-color: rgba(66,103,178,0.2); }
.social-link.fb:hover { border-color: rgba(66,103,178,0.5); }
.social-link.ig { border-color: rgba(193,53,132,0.2); }
.social-link.ig:hover { border-color: rgba(193,53,132,0.5); }
.social-link.tw { border-color: rgba(255,255,255,0.1); }
.social-link.tw:hover { border-color: rgba(255,255,255,0.3); }
.social-link.web { border-color: rgba(255,107,0,0.2); }
.social-link.web:hover { border-color: rgba(255,107,0,0.5); }

/* ===== CONNECT SECTION ===== */
.connect-section {
  padding: 100px 40px;
  background: linear-gradient(180deg, var(--mandir-bg) 0%, #0A0603 100%);
}
.connect-container {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 60px; align-items: start;
}
.connect-info h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem; color: var(--gold);
  margin-bottom: 8px;
}
.connect-info p { font-size: 1rem; color: var(--text-light); margin-bottom: 24px; line-height: 1.7; }
.contact-items { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex; align-items: center; gap: 14px;
  background: rgba(26,14,5,0.6);
  border: 1px solid rgba(212,160,23,0.12);
  border-radius: 12px; padding: 16px 20px;
}
.contact-item .ci-icon { font-size: 22px; flex-shrink: 0; }
.contact-item .ci-label { font-size: 0.75rem; color: var(--saffron); font-family: 'Cinzel', serif; letter-spacing: 1px; }
.contact-item .ci-value { font-size: 0.95rem; color: var(--ivory); }
.contact-form {
  background: rgba(26,14,5,0.7);
  border: 1px solid rgba(212,160,23,0.15);
  border-radius: 20px; padding: 40px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-family: 'Cinzel', serif;
  font-size: 0.75rem; color: var(--saffron-light);
  letter-spacing: 1px; margin-bottom: 8px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  background: rgba(10,6,2,0.6);
  border: 1px solid rgba(212,160,23,0.2);
  border-radius: 10px; padding: 12px 16px;
  color: var(--ivory);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  transition: border-color 0.3s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--gold);
}
.form-group textarea { height: 120px; resize: vertical; }
.form-group select option { background: #1A0E05; }

/* ===== FOOTER ===== */
footer {
  background: #050301;
  border-top: 1px solid rgba(212,160,23,0.15);
  padding: 60px 40px 30px;
}
.footer-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px; margin-bottom: 50px;
}
.footer-brand p { font-size: 0.95rem; color: var(--text-light); line-height: 1.8; margin: 16px 0 24px; }
.footer-title {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem; color: var(--saffron);
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: var(--text-light); text-decoration: none;
  font-size: 0.95rem; transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  border-top: 1px solid rgba(212,160,23,0.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.85rem; color: var(--text-light); }
.footer-bottom .jai { font-family: 'Noto Sans Devanagari', sans-serif; color: var(--saffron); }

/* ===== ANIMATIONS ===== */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse-glow { 0%, 100% { text-shadow: 0 0 10px var(--glow-gold); } 50% { text-shadow: 0 0 25px var(--glow-gold), 0 0 50px rgba(255,107,0,0.2); } }
@keyframes rotate-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }

.reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== VICHAR TAGLINE BANNER ===== */
.vichar-banner {
  background: linear-gradient(135deg, var(--saffron) 0%, #FF8C00 50%, var(--gold) 100%);
  padding: 16px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.vichar-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  animation: shimmer 3s infinite;
  background-size: 200% 100%;
}
.vichar-text {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1rem; color: var(--charcoal);
  letter-spacing: 4px; font-weight: 900;
  position: relative; z-index: 1;
}
.vichar-hindi {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 1rem; color: var(--charcoal);
  letter-spacing: 2px; margin: 0 20px;
  font-weight: 700; position: relative; z-index: 1;
}

/* ===== SCROLLING TICKER ===== */
.ticker-wrap {
  background: rgba(10,6,2,0.8);
  border-top: 1px solid rgba(212,160,23,0.15);
  border-bottom: 1px solid rgba(212,160,23,0.15);
  padding: 12px 0; overflow: hidden;
}
.ticker {
  display: flex; gap: 60px;
  animation: ticker-scroll 30s linear infinite;
  width: max-content;
}
.ticker-item {
  display: flex; align-items: center; gap: 12px;
  white-space: nowrap; font-family: 'Cinzel', serif;
  font-size: 0.78rem; color: var(--saffron-pale);
  letter-spacing: 1.5px;
}
.ticker-dot { color: var(--gold); font-size: 1.2rem; }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 50px; }
  .hero-right { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .initiatives-grid { grid-template-columns: 1fr; }
  .initiative-card.featured { grid-column: span 1; grid-template-columns: 1fr; }
  .teachings-grid { grid-template-columns: 1fr; }
  .videos-grid { grid-template-columns: 1fr 1fr; }
  .media-grid { grid-template-columns: 1fr 1fr; }
  .connect-container { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 60px; left: 0; right: 0; background: rgba(10,5,2,0.98); padding: 20px; gap: 16px; border-bottom: 1px solid rgba(212,160,23,0.2); }
  .hamburger { display: flex; }
  .hero-content { padding: 100px 20px 60px; }
  .about-section, .pillars-section, .timeline-section, .initiatives-section, .teachings-section, .videos-section, .media-section, .social-section, .connect-section { padding: 60px 20px; }
  .videos-grid { grid-template-columns: 1fr; }
  .media-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 16px; }
  .stat-num { font-size: 1.5rem; }
  .timeline-line { display: none; }
  .timeline-item { grid-template-columns: 1fr; }
  .timeline-dot { display: none; }
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content { grid-column: 1; text-align: left; }
  .timeline-item:nth-child(odd) .timeline-empty,
  .timeline-item:nth-child(even) .timeline-empty { display: none; }
}
