/* ══════════════════════════════════════════
   SWARA VIGYAN — OM SRI DIVINES
   style.css
   ══════════════════════════════════════════ */

/* ── CSS VARIABLES ── */
:root {
  --gold:        #c9a84c;
  --gold-light:  #e8c96d;
  --gold-dim:    rgba(201, 168, 76, 0.25);
  --cream:       #f0ece4;
  --deep:        #080b12;   /* midnight blue-black */
  --dark:        #0d1120;   /* deep navy */
  --brown:       #0a0f1e;   /* rich dark navy */
  --green-logo:  #1a6e8a;   /* teal accent */
  --green-mid:   #1e8aaa;   /* bright teal */
  --moon:        #b8d4f0;
  --sun:         #f4a235;
  --green:       #25d366;   /* WhatsApp green */
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--deep);
  color: var(--cream);
  font-family: 'EB Garamond', serif;
  overflow-x: hidden;
}

/* ── NOISE OVERLAY ── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

/* ══════════════════════════════════════════
   HERO
   ══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 35%, rgba(26,110,138,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 45% 45% at 50% 40%, rgba(201,168,76,0.1) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(80,40,180,0.1) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 90% 20%, rgba(244,162,53,0.07) 0%, transparent 55%),
    linear-gradient(160deg, #080b12 0%, #0a0e1c 50%, #06080f 100%);
  z-index: -1;
}

/* Mandala rings */
.mandala-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(26,110,138,0.3);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: rotateSlow linear infinite;
}
.mandala-ring:nth-child(1) { width: 500px; height: 500px; animation-duration: 60s; }
.mandala-ring:nth-child(2) { width: 700px; height: 700px; border-style: dashed; animation-duration: 90s; animation-direction: reverse; }
.mandala-ring:nth-child(3) { width: 900px; height: 900px; animation-duration: 120s; }

@keyframes rotateSlow {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.brand {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 6px;
  color: var(--gold);
  opacity: 0.8;
  margin-bottom: 32px;
  animation: fadeUp 1s ease both;
}

.hero-corner-logo {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e8c96d;
  box-shadow: 0 0 16px #e8c96d, 0 0 32px rgba(232,201,109,0.5);
  animation: fadeUp 1s ease 0.1s both;
  z-index: 10;
}

.hero-symbol-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 36px;
  width: fit-content;
  gap: 0;
}

.hero-corner-mentor {
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  width: 220px;
  height: 280px;
  border-radius: 16px;
  object-fit: cover;
  object-position: top center;
  border: 3px solid transparent;
  background-clip: padding-box;
  outline: none;
  animation: fadeUp 1.2s ease 0.25s both, mentorGlow 3s ease-in-out infinite;
  z-index: 10;
  box-shadow:
    0 0 0 3px #e8c96d,
    0 0 0 6px rgba(232,94,30,0.6),
    0 0 30px #e8c96d,
    0 0 60px rgba(232,94,30,0.5),
    0 0 100px rgba(201,168,76,0.3),
    0 24px 60px rgba(0,0,0,0.6);
}

@keyframes mentorGlow {
  0%, 100% {
    box-shadow:
      0 0 0 3px #e8c96d,
      0 0 0 6px rgba(232,94,30,0.6),
      0 0 30px #e8c96d,
      0 0 60px rgba(232,94,30,0.5),
      0 0 100px rgba(201,168,76,0.3),
      0 24px 60px rgba(0,0,0,0.6);
  }
  50% {
    box-shadow:
      0 0 0 3px #f5d97a,
      0 0 0 8px rgba(255,120,40,0.7),
      0 0 50px #f5d97a,
      0 0 90px rgba(255,120,40,0.6),
      0 0 140px rgba(232,201,109,0.4),
      0 24px 60px rgba(0,0,0,0.6);
  }
}

.hero-symbol-wrap .hero-symbol {
  width: 220px; height: 220px;
  position: relative;
  animation: fadeUp 1.2s ease 0.2s both;
  flex-shrink: 0;
  z-index: 1;
}
.hero-symbol svg,
.hero-symbol img { width: 100%; height: 100%; }



.hero-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(2.4rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 2px;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, #8a6320 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  animation: fadeUp 1s ease 0.4s both;
}

.hero-subtitle {
  font-family: 'Cinzel', serif;
  font-size: clamp(0.85rem, 2.5vw, 1.1rem);
  letter-spacing: 4px;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 28px;
  animation: fadeUp 1s ease 0.6s both;
}

.hero-desc {
  max-width: 560px;
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(245,237,224,0.75);
  font-style: italic;
  margin-bottom: 48px;
  animation: fadeUp 1s ease 0.8s both;
}

.hero-cta {
  display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
  animation: fadeUp 1s ease 1s both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════ */
.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--deep);
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  border: none; cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 0 30px rgba(201,168,76,0.3);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 0 50px rgba(201,168,76,0.5); }

.btn-wa {
  background: var(--green);
  color: #fff;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  display: flex; align-items: center; gap: 10px;
  transition: all 0.3s;
  box-shadow: 0 0 20px rgba(37,211,102,0.25);
}
.btn-wa:hover { transform: translateY(-3px); box-shadow: 0 0 40px rgba(37,211,102,0.45); }

.btn-wa-full {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  background: #25d366;
  color: #fff;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  padding: 16px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 0 20px rgba(37,211,102,0.25);
}
.btn-wa-full:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(37,211,102,0.45); }

/* ══════════════════════════════════════════
   SECTIONS — COMMON
   ══════════════════════════════════════════ */
section { position: relative; padding: 90px 24px; }

.section-tag {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 6px;
  color: var(--gold);
  opacity: 0.6;
  text-align: center;
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  text-align: center;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.section-sub {
  text-align: center;
  font-style: italic;
  color: rgba(245,237,224,0.6);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 60px;
}

/* ══════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════ */
.about { background: linear-gradient(180deg, #080b12 0%, #0d1120 100%); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: rgba(245,237,224,0.78);
  margin-bottom: 20px;
}
.about-text strong { color: var(--gold); }

.nadi-cards { display: flex; flex-direction: column; gap: 20px; }

.nadi-card {
  border: 1px solid var(--gold-dim);
  border-radius: 16px;
  padding: 24px 28px;
  background: rgba(201,168,76,0.04);
  display: flex; gap: 20px; align-items: flex-start;
  transition: all 0.4s;
}
.nadi-card:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.5);
  transform: translateX(6px);
}

.nadi-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; flex-shrink: 0;
}
.nadi-icon.moon { background: rgba(184,212,240,0.12); color: var(--moon); }
.nadi-icon.sun  { background: rgba(244,162,53,0.12);  color: var(--sun); }

.nadi-card h4 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 6px;
}
.nadi-card p { font-size: 0.95rem; color: rgba(245,237,224,0.65); line-height: 1.6; }

/* ══════════════════════════════════════════
   BENEFITS
   ══════════════════════════════════════════ */
.benefits { background: linear-gradient(180deg, #0d1120 0%, #0a0e1c 100%); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.benefit-card {
  background: rgba(201,168,76,0.04);
  border: 1px solid var(--gold-dim);
  border-radius: 20px;
  padding: 32px 28px;
  transition: all 0.4s;
  position: relative; overflow: hidden;
}
.benefit-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.06), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.benefit-card:hover { transform: translateY(-6px); border-color: rgba(201,168,76,0.5); }
.benefit-card:hover::before { opacity: 1; }

.benefit-num {
  font-family: 'Cinzel Decorative', serif;
  font-size: 2.5rem;
  color: var(--gold-dim);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}
.benefit-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 10px;
}
.benefit-card p { font-size: 0.95rem; color: rgba(245,237,224,0.65); line-height: 1.7; }

/* ══════════════════════════════════════════
   MENTOR
   ══════════════════════════════════════════ */
.mentor { background: linear-gradient(180deg, #0a0e1c 0%, #080b12 100%); }

.mentor-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.mentor-avatar {
  width: 110px; height: 110px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: rgba(201,168,76,0.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
  font-size: 3rem;
  box-shadow: 0 0 40px rgba(201,168,76,0.2);
}

.mentor-inner h2 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.mentor-tags {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin: 20px 0 28px;
}

.mentor-tag {
  border: 1px solid var(--gold-dim);
  border-radius: 50px;
  padding: 6px 18px;
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  color: var(--gold);
  opacity: 0.8;
}

.mentor-inner p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(245,237,224,0.7);
  font-style: italic;
}

/* ══════════════════════════════════════════
   JOIN / CTA SECTION
   ══════════════════════════════════════════ */
.join-section {
  background: #080b12;
  text-align: center;
  padding: 100px 24px;
  position: relative; overflow: hidden;
}
.join-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(26,110,138,0.12) 0%, transparent 70%);
}
.join-section p { font-style: italic; color: rgba(245,237,224,0.6); font-size: 1.1rem; margin-bottom: 20px; }

.join-quote {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  letter-spacing: 1px;
  color: var(--gold);
  margin: 0 auto 50px;
  max-width: 500px;
}

/* ══════════════════════════════════════════
   FORM
   ══════════════════════════════════════════ */
.form-wrap {
  background: rgba(26,110,138,0.07);
  border: 1px solid rgba(201,168,76,0.3);
  border-top: 2px solid rgba(201,168,76,0.5);
  border-radius: 24px;
  padding: 44px 40px;
  max-width: 560px;
  margin: 0 auto 40px;
  position: relative; z-index: 1;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4), inset 0 1px 0 rgba(201,168,76,0.1);
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }

.form-field label {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 3px;
  color: rgba(180,210,240,0.85);
  opacity: 1;
}

.form-field input,
.form-field select {
  background: rgba(26,110,138,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--cream);
  font-family: 'EB Garamond', serif;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  width: 100%;
}
.form-field select option { background: #0d1120; color: var(--cream); }
.form-field input:focus,
.form-field select:focus { border-color: rgba(201,168,76,0.6); background: rgba(26,110,138,0.15); }
.form-field input::placeholder { color: rgba(240,236,228,0.3); }

.form-submit {
  grid-column: 1 / -1;
  width: 100%;
  background: linear-gradient(135deg, #1a6e8a, #c9a84c);
  color: #fff;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 2px;
  padding: 16px;
  border: none; border-radius: 50px;
  cursor: pointer; margin-top: 8px;
  transition: all 0.3s;
  box-shadow: 0 0 30px rgba(26,110,138,0.35);
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 0 50px rgba(26,110,138,0.55); background: linear-gradient(135deg, #1e8aaa, #e8c96d); }

.form-or {
  display: flex; align-items: center; gap: 14px;
  margin: 28px 0;
}
.form-or span.line { flex: 1; height: 1px; background: var(--gold-dim); }
.form-or span.txt {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: rgba(201,168,76,0.7);
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
footer {
  background: #060810;
  border-top: 1px solid var(--gold-dim);
  padding: 40px 24px;
  text-align: center;
}
.footer-om { font-size: 2rem; color: var(--gold); opacity: 0.5; margin-bottom: 12px; }
footer p { font-family: 'Cinzel', serif; font-size: 0.75rem; letter-spacing: 2px; color: rgba(245,237,224,0.35); }
footer a { color: var(--gold); opacity: 0.6; text-decoration: none; }
footer a:hover { opacity: 1; }

/* ══════════════════════════════════════════
   FLOATING ACTION CLUSTER
   ══════════════════════════════════════════ */
.float-cluster {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  z-index: 999;
}

/* Quick Book button */
.float-quickbook {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #c9a84c, #a8832a);
  color: #080b12;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 1px;
  padding: 11px 20px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(201,168,76,0.45);
  transition: all 0.3s;
  white-space: nowrap;
}
.float-quickbook:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.6);
  background: linear-gradient(135deg, #e8c96d, #c9a84c);
}

/* Circular WA button */
.wa-float {
  background: var(--green);
  color: #fff;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  text-decoration: none;
  animation: pulse 2.5s infinite;
  align-self: flex-end;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 4px 40px rgba(37,211,102,0.7); }
}

/* ── Mobile: collapse pills, show only icons ── */
@media (max-width: 600px) {
  .float-cluster { bottom: 16px; right: 14px; gap: 8px; }
  .float-quickbook { font-size: 0.75rem; padding: 9px 14px; }
  .float-wa-pill { font-size: 0.75rem; padding: 9px 14px; }
  .wa-float { width: 50px; height: 50px; }
}

/* ══════════════════════════════════════════
   SCROLL REVEAL
   ══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 768px) {
  .about-grid      { grid-template-columns: 1fr; }
  .form-grid       { grid-template-columns: 1fr; }
  .form-wrap       { padding: 28px 20px; }
  .hero-symbol-wrap .hero-symbol { width: 160px; height: 160px; }
  .hero-corner-mentor { width: 110px; height: 140px; right: 10px; border-radius: 10px; }
  .hero-corner-logo   { width: 44px; height: 44px; top: 16px; left: 16px; }
}