/* ============ ROOT TOKENS ============ */
:root {
  --saffron: #ff8c00;
  --deep-orange: #e65100;
  --sacred-red: #b71c1c;
  --divine-gold: #ffd700;
  --cream: #fff5e1;
  --maroon: #4b0d0d;
  --dark-brown: #2e1505;
  --charcoal: #1a1a1a;
  --shadow-divine: 0 20px 60px rgba(255, 140, 0, 0.25);
  --shadow-gold: 0 8px 32px rgba(255, 215, 0, 0.35);
  --shadow-deep: 0 25px 70px rgba(0, 0, 0, 0.5);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

.text-gradient-gold {
  background: linear-gradient(135deg, #ffe89c 0%, #d4af37 50%, #a37c1e 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.border-gold-gradient {
  border-image: linear-gradient(to right, #a37c1e, #ffe89c, #a37c1e) 1;
}

.overflow-hidden {
  overflow: hidden;
}

.hindi {
  font-family: "Tiro Devanagari Hindi", serif;
}

.hindi-display {
  font-family: "Tiro Devanagari Hindi", serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container.narrow {
  max-width: 840px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  letter-spacing: 0.05em;
  border-radius: 999px;
  font-weight: 500;
  font-family: "Mukta", sans-serif;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  font-size: 14px;
}

.btn-lg {
  padding: 15px 28px;
  font-size: 16px;
}

@media (max-width: 768px) {
  .btn-lg {
    padding: 8px 18px;
    font-size: 15px;
  }
}

.btn-sm {
  padding: 8px 18px;
  font-size: 14px;
}

.btn-full {
  width: 100%;
  margin-top: 24px;
}

.btn-gold {
  background: linear-gradient(135deg, #ffd700 0%, #ff8c00 50%, #e65100 100%);
  color: var(--dark-brown);
  box-shadow: var(--shadow-divine);
  position: relative;
  overflow: hidden;
}

.btn-gold::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}

.btn.btn-gold:hover {
  transform: none;
}

.btn-outline {
  border: 1.5px solid var(--divine-gold);
  color: var(--divine-gold);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(255, 215, 0, 0.1);
}

.btn-maroon {
  background: var(--maroon);
  color: var(--divine-gold);
  box-shadow: var(--shadow-deep);
}

.btn-maroon:hover {
  background: var(--dark-brown);
}

.btn:hover {
  transform: translateY(-2px);
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes float {
  0% {
    transform: translateY(0);
    opacity: 0;
  }

  10% {
    opacity: 0.6;
  }

  90% {
    opacity: 0.4;
  }

  100% {
    transform: translateY(-100vh);
    opacity: 0;
  }
}

@keyframes Glow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.6);
  }

  50% {
    box-shadow: 0 0 0 18px rgba(255, 215, 0, 0);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

.flourish svg {
  margin: 18px auto;
}

.flourish-dark svg path {
  stroke: var(--sacred-red);
}

.flourish-dark svg circle {
  fill: var(--sacred-red);
}

/* ============ NAVIGATION ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.5s;
  padding: 10px 0;
}

.nav.scrolled {
  background: rgba(75, 13, 13, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.4);
  box-shadow: var(--shadow-deep);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--divine-gold);
  box-shadow: var(--shadow-gold);
  background: url("../images/Shri-Kamlesh-Ji-Maharaj.png") center/cover;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-tag {
  color: var(--divine-gold);
  font-size: 12px;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 4px;
}

.nav-logo-name {
  color: var(--divine-gold);
  font-family: "Mukta";
  font-weight: 700;
  font-size: 18px;
}

.nav-links {
  display: none;
  gap: 28px;
}

.nav-links a {
  color: var(--cream);
  font-family: "Mukta";
  font-size: 15px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--divine-gold);
}

.nav-cta {
  display: none;
  animation: Glow 2.4s ease-out infinite;
}

.nav-toggle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--divine-gold);
  color: var(--divine-gold);
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.nav-drawer {
  position: fixed;
  top: 81px;
  right: -100%;
  width: min(320px, 85vw);
  height: calc(100vh - 76px);
  background: rgb(62 12 12);
  backdrop-filter: blur(14px);
  z-index: 100;
  display: flex;
  flex-direction: column;
  padding: 28px 22px;
  gap: 10px;
  transition: right 0.35s ease;
  border-left: 1px solid rgba(255, 215, 0, 0.25);
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.45);
}

.nav-drawer.open {
  right: 0;
}

.nav-drawer a {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 16px 18px;
  color: var(--divine-gold);
  font-family: "Mukta";
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 14px;
  background: rgba(255, 215, 0, 0.04);
  border: 1px solid transparent;
  transition: all 0.25s ease;
}

.nav-drawer a:hover {
  background: rgba(255, 215, 0, 0.08);
  border-color: rgba(255, 215, 0, 0.25);
  transform: translateX(-4px);
}

.nav-drawer .btn {
  margin-top: 18px;
  justify-content: center;
  font-size: 18px;
  padding: 16px;
}

@media (min-width: 768px) {
  .nav-drawer {
    display: none;
  }
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }

  .nav-cta {
    display: inline-flex;
  }

  .nav-toggle {
    display: none;
  }
}

@media (min-width: 768px) {
  .nav {
    background-color: transparent;
  }

  .nav-cta {
    display: inline-flex;
  }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background:linear-gradient(135deg, #4a1017 0%, #4a1017 50%, var(--charcoal) 100%);
  color: var(--cream);
}


.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-particles span {
  position: absolute;
  bottom: -10px;
  width: 3px;
  height: 3px;
  background: radial-gradient(circle, var(--divine-gold) 0%, transparent 70%);
  border-radius: 50%;
  animation: float linear infinite;
}

.hero-glow {
  position: absolute;
  right: -150px;
  top: 80px;
  width: 720px;
  height: 720px;
  background: radial-gradient(
    circle,
    rgba(255, 140, 0, 0.4) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 50px 24px;
  align-items: center;
}

.hero-left {
  position: relative;
  z-index: 10;
}

.pill-tag {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 14px;
  color: var(--divine-gold);
  border: 1px solid rgba(255, 215, 0, 0.6);
  margin-bottom: 18px;
}

.hero-divine {
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 14px;
}

.hero-title {
  font-family: "Mukta";
  font-weight: 800;
  font-size: 64px;
  padding-top: 8px;
  line-height: 1.05;
  background: linear-gradient(135deg, #b71c1c 0%, #e65100 50%, #ffd700 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 28px;
  color: var(--cream);
  margin-top: 18px;
}

.hero-tagline {
  color: var(--divine-gold);
  font-size: 18px;
  font-style: italic;
  margin-top: 6px;
  max-width: 640px;
  line-height: 1.7;
}

.hero-tagline-en {
  font-family: "Cormorant Garamond";
  font-style: italic;
  color: rgba(255, 245, 225, 0.7);
  font-size: 20px;
  margin-top: 6px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.4);
  font-size: 13px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-right {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  min-height: auto;
}

.hero-mandala {
  position: absolute;
  min-width: 330px;
  min-height: 330px;
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 50%;
  animation: spin 60s linear infinite;
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(255, 215, 0, 0.14) 30deg,
    transparent 60deg,
    rgba(255, 215, 0, 0.1) 90deg,
    transparent 120deg,
    rgba(255, 215, 0, 0.14) 180deg,
    transparent 240deg,
    rgba(255, 215, 0, 0.1) 300deg,
    transparent
  );
}

.hero-portrait {
  position: relative;
  max-width: 400px;
  height: 400px;
  padding: 20px;
  filter: drop-shadow(0 18px 40px rgba(255, 140, 0, 0.35));
}

.hero-quote {
  display: none;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--maroon);
  border: 1px solid var(--divine-gold);
  color: var(--divine-gold);
  box-shadow: var(--shadow-gold);
  white-space: nowrap;
  font-size: 15px;
}

.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--divine-gold);
  font-family: "Mukta";
  font-size: 12px;
  letter-spacing: 0.2em;
  animation: bounce 2s infinite;
}

@media (min-width: 768px) {
  .hero {
    height: 100%;
  }

  .hero-title {
    font-size: 80px;
  }

  .hero-grid {
    grid-template-columns: 50% 50%;
    padding: 80px 24px;
  }

  .hero-mandala {
    width: 380px;
    height: 380px;
  }

  .hero-portrait {
    max-width: 400px;
    height: 400px;
    padding: 0;
  }

  .hero-quote {
    display: block;
    bottom: 30px;
  }

  .hero-right {
    min-height: 520px;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 88px;
  }

  .hero-grid {
    grid-template-columns: 60% 40%;
    padding: 100px 24px 80px;
  }

  .hero-mandala {
    width: 520px;
    height: 520px;
  }

  .hero-portrait {
    max-width: 540px;
    height: 540px;
    padding: 0;
  }

  .hero-quote {
    display: block;
    bottom: -30px;
  }

  .hero-right {
    min-height: 520px;
  }
}

/* ============ COUNTDOWN ============ */
.countdown-bar {
  background: var(--maroon);
  border-top: 2px solid rgba(255, 215, 0, 0.7);
  border-bottom: 2px solid rgba(255, 215, 0, 0.7);
  padding: 28px 0;
  text-align: center;
}

.cd-label {
  color: var(--cream);
  letter-spacing: 0.1em;
  font-family: "Mukta";
  margin-bottom: 18px;
}

.cd-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
}

.cd-block {
  background: rgba(46, 21, 5, 0.7);
  border: 1px solid rgba(255, 215, 0, 0.6);
  border-radius: 14px;
  padding: 18px;
  box-shadow: var(--shadow-deep);
}

.cd-num {
  font-family: "Mukta";
  font-weight: 800;
  color: var(--divine-gold);
  font-size: 42px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.cd-text {
  color: rgba(255, 245, 225, 0.8);
  font-size: 12px;
  font-family: "Mukta";
  margin-top: 8px;
  letter-spacing: 0.1em;
}

@media (min-width: 768px) {
  .cd-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .cd-num {
    font-size: 52px;
  }
}

/* ============ SECTIONS ============ */
.section {
  padding: 50px 0;
  overflow: hidden;
}

.section-cream {
  background: var(--cream);
}

.section-dark {
  background: linear-gradient(
    135deg,
    var(--maroon) 0%,
    var(--dark-brown) 50%,
    var(--charcoal) 100%
  );
  color: var(--cream);
}

.section-maroon {
  background: var(--maroon);
  color: var(--cream);
}

.mandala-bg {
  background-image: radial-gradient(
    circle,
    rgba(255, 140, 0, 0.06) 1px,
    transparent 1px
  );
  background-size: 50px 50px;
  background-color: var(--cream);
}

.grain {
  position: relative;
}

.grain::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 .8 0 0 0 0 .4 0 0 0 .18 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-title,
.section-title-left,
.section-title-gold {
  font-family: "Mukta";
  font-weight: 800;
  font-size: 32px;
  line-height: 1.15;
}

.section-title {
  color: var(--sacred-red);
}

.section-title-left {
  color: var(--sacred-red);
  text-align: left;
}

.section-title-gold {
  color: var(--divine-gold);
}

.section-sub,
.section-sub-light {
  font-family: "Tiro Devanagari Hindi", serif;
  letter-spacing: 0.15em;
  font-size: 12px;
  margin-top: 8px;
  font-weight: 600;
}

.section-sub {
  color: var(--dark-brown);
}

.section-sub-light {
  color: rgba(255, 245, 225, 0.7);
}

@media (min-width: 768px) {
  .section {
    padding: 70px 0;
  }

  .section-title,
  .section-title-left,
  .section-title-gold {
    font-size: 44px;
  }
}

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.about-frame {
  position: relative;
  padding: 12px;
  background: linear-gradient(135deg, #ffd700, #e65100);
  border-radius: 20px;
  box-shadow: var(--shadow-divine);
}

.about-frame img {
  border-radius: 14px;
  border: 4px solid var(--divine-gold);
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top;
}

.about-text p {
  color: var(--dark-brown);
  font-size: 17px;
  line-height: 1.85;
  margin-bottom: 18px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}

.chip {
  font-family: "Mukta";
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(255, 215, 0, 0.15);
  border: 1px solid rgba(255, 215, 0, 0.6);
  color: var(--sacred-red);
  font-weight: 600;
  font-size: 14px;
}

.about-text blockquote {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-size: 20px;
  color: var(--maroon);
  border-left: 4px solid var(--divine-gold);
  padding-left: 20px;
  margin-top: 24px;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 40% 1fr;
    gap: 48px;
  }
}

/* ============ VISION ============ */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.vm-card {
  background: rgba(75, 13, 13, 0.6);
  border: 1px solid rgba(255, 215, 0, 0.6);
  border-radius: 18px;
  padding: 32px;
  backdrop-filter: blur(4px);
  transition: box-shadow 0.5s;
}

.vm-card:hover {
  box-shadow: var(--shadow-divine);
}

.vm-label {
  color: var(--divine-gold);
  font-family: "Mukta";
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  margin-bottom: 14px;
}

.vm-text {
  color: var(--cream);
  font-size: 22px;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .vm-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============ HIGHLIGHTS ============ */

.highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

.medallion {
  background: var(--cream);
  border: 2px solid var(--divine-gold);
  border-radius: 24px;
  overflow: hidden;
  text-align: center;
  transition: all 0.35s ease;
}

.medallion:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.medallion-circle {
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  overflow: hidden;
}

.medallion-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.6s ease;
}

.medallion:hover .medallion-circle img {
  transform: scale(1.05);
}

.medallion-content {
  padding: 18px 24px 16px;
}

.med-hi {
  font-family: "Mukta";
  font-size: 22px;
  font-weight: 800;
  color: var(--sacred-red);
  line-height: 1.2;
}

.med-divider {
  width: 80px;
  height: 2px;
  margin: 16px auto;
  background: linear-gradient(
    to right,
    transparent,
    var(--divine-gold),
    transparent
  );
}

.med-en {
  font-family: "Tiro Devanagari Hindi";
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 700;
  color: var(--dark-brown);
}

.medallion p {
  max-width: 320px;
  margin: 10px auto 0;
  color: rgba(46, 21, 5, 0.8);
  line-height: 1.8;
}

@media (min-width: 600px) {
  .highlights-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .highlights-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============ EVENT DETAILS ============ */
.event-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--cream);
  border: 4px solid var(--divine-gold);
  border-radius: 24px;
  padding: 15px;
  box-shadow: var(--shadow-divine);
  color: var(--charcoal);
  text-align: center;
}

.event-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 32px;
}

.event-col {
  text-align: center;
  padding: 12px;
}

.event-lbl {
  font-family: "Tiro Devanagari Hindi";
  letter-spacing: 0.1em;
  color: var(--deep-orange);
  font-size: 12px;
  font-weight: 600;
}

.event-big {
  font-family: "Mukta";
  font-weight: 800;
  font-size: 88px;
  line-height: 1;
  background: linear-gradient(135deg, #b71c1c 0%, #e65100 50%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 8px;
}

.event-en {
  font-family: "Tiro Devanagari Hindi";
  letter-spacing: 0.1em;
  color: rgba(75, 13, 13, 0.7);
  font-size: 11px;
  font-weight: 700;
}

.event-time {
  font-family: "Mukta";
  font-weight: 800;
  color: var(--sacred-red);
  font-size: 24px;
  margin-top: 14px;
}

.event-schedule {
  margin-top: 14px;
  color: var(--dark-brown);
  list-style: none;
  font-size: 14px;
  line-height: 1.8;
}

.event-venue {
  color: var(--sacred-red);
  font-weight: 700;
  font-size: 18px;
}

.event-col-item {
  margin-top: 12px;
}

.map-embed {
  margin-top: 24px;
  border: 2px solid var(--divine-gold);
  border-radius: 14px;
  overflow: hidden;
  height: 280px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.event-footer-pill {
  display: inline-block;
  background: linear-gradient(135deg, #ffd700, #ff8c00, #e65100);
  color: var(--dark-brown);
  padding: 12px 24px;
  border-radius: 999px;
  font-family: "Mukta";
  font-weight: 700;
  margin-top: 24px;
}

@media (min-width: 768px) {
  .event-card {
    padding: 35px;
  }

  .event-grid {
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
  }

  .event-col-center {
    border-left: 1px solid rgba(255, 215, 0, 0.6);
    border-right: 1px solid rgba(255, 215, 0, 0.6);
  }
}

/* ============ REGISTRATION ============ */
section#register {
  padding-bottom: 50px;
}

.reg-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
}

.reg-left,
.reg-left .section-title-left {
  text-align: center;
}

.reg-sub {
  color: var(--dark-brown);
  font-size: 17px;
  margin-top: 10px;
}

.reg-bullets {
  list-style: none;
  margin-top: 20px;
  color: var(--dark-brown);
  line-height: 2.2;
}

.reg-quote {
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.5);
  border-radius: 14px;
  padding: 18px;
  font-style: italic;
  color: var(--maroon);
  margin-top: 28px;
}

.reg-form {
  background: white;
  border: 4px solid var(--divine-gold);
  border-radius: 24px;
  padding: 16px;
  box-shadow: var(--shadow-divine);
  max-width: 850px;
  margin: 0 auto;
}

.reg-form h3 {
  font-family: "Mukta";
  text-align: center;
  font-weight: 800;
  color: var(--sacred-red);
  font-size: 26px;
  margin-bottom: 6px;
}

.form-sub {
  color: rgba(46, 21, 5, 0.7);
  text-align: center;
  font-size: 14px;
  margin-bottom: 24px;
}

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

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: "Mukta";
  font-weight: 600;
  color: var(--dark-brown);
  font-size: 14px;
}

.form-grid label.full {
  grid-column: 1/-1;
}

.form-grid label.checkbox {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.4);
  border-radius: 10px;
  cursor: pointer;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 215, 0, 0.5);
  background: white;
  color: var(--dark-brown);
  font-family: "Mukta";
  outline: none;
  transition: border-color 0.3s;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--divine-gold);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
}

.form-grid .mobile-wrap {
  display: flex;
}

.form-grid .mobile-prefix {
  padding: 8px 12px;
  background: var(--cream);
  border: 1px solid rgba(255, 215, 0, 0.5);
  border-right: 0;
  border-radius: 10px 0 0 10px;
  font-family: "Mukta";
}

.form-grid .mobile-wrap input {
  border-radius: 0 10px 10px 0;
  flex: 1;
}

.tier-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tier-btn {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 215, 0, 0.6);
  background: white;
  color: var(--dark-brown);
  font-family: "Mukta";
  font-size: 13px;
  transition: all 0.3s;
}

.tier-btn.active,
.tier-btn:hover {
  background: var(--deep-orange);
  color: white;
  border-color: var(--deep-orange);
}

@media (min-width: 600px) {
  .reg-form {
    padding: 32px;
  }

  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .reg-grid {
    grid-template-columns: 40% 1fr;
    gap: 48px;
  }
}

/* ============ SEVA ============ */
#seva {
  display: none;
}

.seva-note {
  font-style: italic;
  color: rgba(255, 245, 225, 0.85);
  text-align: center;
  line-height: 1.8;
}

.seva-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

.seva-card {
  background: rgba(46, 21, 5, 0.6);
  border: 1px solid rgba(255, 215, 0, 0.6);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: all 0.5s;
}

.seva-card:hover {
  transform: translateY(-4px);
  border-color: var(--divine-gold);
  box-shadow: var(--shadow-divine);
}

.seva-amt {
  font-family: "Mukta";
  font-weight: 800;
  color: var(--divine-gold);
  font-size: 36px;
}

.seva-card .hindi {
  color: rgba(255, 245, 225, 0.9);
  margin: 12px 0 16px;
}

.seva-foot {
  text-align: center;
  color: rgba(255, 215, 0, 0.85);
  font-size: 14px;
  margin-top: 32px;
}

@media (min-width: 600px) {
  .seva-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .seva-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

#testimonial {
  padding-top: 50px;
  border-top: 1px solid;
  border-image: linear-gradient(
      to right,
      transparent,
      rgb(199 43 51 / 50%),
      transparent
    )
    1;
}

.testimonial-swiper {
  max-width: 900px;
  padding-bottom: 50px !important;
}

.testimonial-swiper video {
  width: 100%;
  height: 520px;
  pointer-events: auto;
  object-fit: cover;
  border-radius: 24px;
  border: 2px solid var(--divine-gold);
  box-shadow: var(--shadow-divine);
  background: #000;
}

.video-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.video-card video {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  border: 2px solid var(--divine-gold);
  border-radius: 24px;
  background: #000;
}

.video-play-btn {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border: 2px solid var(--divine-gold);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: var(--divine-gold);
  font-size: 24px;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 5;
  transition: 0.3s;
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.82);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.video-modal.open {
  display: flex;
}

.video-modal-box {
  width: 100%;
  max-width: 960px;
  margin: auto;
  max-height: 550px;
  height: 100%;
}

iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-modal-content {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.video-modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  color: #ffffff;
  font-size: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.video-modal-close:hover {
  color: #ff6b6b;
}

.video-modal-player {
  width: 100%;
  max-height: 85vh;
  border-radius: 24px;
  background: #000;
  display: block;
}

.swiper-button-prev,
.swiper-button-next {
  display: none !important;
}

@media (max-width: 768px) {
  .testimonial-swiper video {
    height: 380px;
    border-radius: 16px;
  }

  .video-card video {
    height: 500px;
  }
}

/* ============ LIVE BROADCAST ============ */
.video-slider {
  margin-top: 30px;
  padding-bottom: 50px !important;
}

.video-slider .swiper-slide {
  height: auto;
}

.small-video {
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid #f4c400;
  background: rgba(0, 0, 0, 0.4);
}

.video-frame {
  position: relative;
}

.video-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.live-play-button {
  position: absolute;
  inset: auto 16px 16px auto;
  right: 16px;
  bottom: 16px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--divine-gold);
  background: rgba(0, 0, 0, 0.7);
  color: var(--divine-gold);
  display: grid;
  place-items: center;
  font-size: 28px;
  cursor: pointer;
  z-index: 2;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.live-play-button:hover {
  transform: scale(1.05);
  background: rgba(0, 0, 0, 0.85);
}

.small-video .video-frame iframe {
  width: 100%;
  height: 240px;
  border-radius: 18px;
}

.video-slider .swiper-pagination-bullet {
  background-color: #f4c400 !important;
}

.live-card .video-frame iframe {
  width: 100%;
  height: 420px;
  border-radius: 20px;
}

.youtube-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.82);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.youtube-modal.open {
  display: flex;
}

.youtube-modal[hidden] {
  display: none !important;
}

.youtube-modal-content {
  position: relative;
  width: min(100%, 960px);
  aspect-ratio: 16 / 9;
}

.youtube-modal-player {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
}

.youtube-modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  color: #ffffff;
  font-size: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.youtube-modal-close:hover {
  color: #ff6b6b;
}

/* ============ GALLERY ============ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.stat-card {
  background: var(--cream);
  border: 2px solid rgba(255, 215, 0, 0.6);
  border-radius: 16px;
  padding: 22px;
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.stat-num {
  font-family: "Mukta";
  font-weight: 800;
  font-size: 32px;
  background: linear-gradient(135deg, #b71c1c, #e65100, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-note {
  text-align: center;
  font-style: italic;
  color: rgba(46, 21, 5, 0.6);
  font-size: 12px;
  margin-top: 14px;
}

.gallery-slider {
  width: 100%;
  padding-bottom: 50px !important;
}

.gallery-slider .swiper-slide {
  border-radius: 20px;
  overflow: hidden;
  height: 330px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.gallery-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-slider .swiper-button-next,
.gallery-slider .swiper-button-prev {
  color: #b22222;
  display: none;
}

.swiper-pagination-bullet {
  background: #b22222 !important;
  opacity: 0.2;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

@media (max-width: 768px) {
  .gallery-slider {
    padding: 15px 20px 50px;
  }
}

@media (max-width: 768px) {
  /* .gallery-row,
  .gallery-row.reverse {
    flex-direction: column;
  }

  .gallery-big img {
    min-height: 260px;
  } */
}

@media (min-width: 600px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============ LOGISTICS ============ */
.logi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.logi-map {
  border: 2px solid var(--divine-gold);
  border-radius: 18px;
  overflow: hidden;
  height: 420px;
}

.logi-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.logi-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.logi-card {
  display: flex;
  gap: 14px;
  padding: 18px;
  background: rgba(46, 21, 5, 0.6);
  border: 1px solid rgba(255, 215, 0, 0.4);
  border-radius: 14px;
  transition: border-color 0.3s;
}

.logi-card:hover {
  border-color: var(--divine-gold);
}

.logi-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.15);
  border: 1px solid var(--divine-gold);
  display: grid;
  place-items: center;
  font-size: 20px;
  flex-shrink: 0;
}

.logi-card b {
  color: var(--divine-gold);
  font-family: "Mukta";
  display: block;
  margin-bottom: 4px;
}

.logi-card p {
  color: rgba(255, 245, 225, 0.85);
  font-size: 14px;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .logi-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============ FAQ ============ */
.faq {
  background: white;
  border: 2px solid rgba(255, 215, 0, 0.5);
  border-radius: 18px;
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  text-align: left;
  font-family: "Mukta";
  font-weight: 700;
  color: var(--dark-brown);
  font-size: 16px;
  transition: background 0.3s;
}

.faq-q:hover {
  background: rgba(255, 215, 0, 0.05);
}

.faq-q span {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.15);
  border: 1px solid var(--divine-gold);
  display: grid;
  place-items: center;
  color: var(--deep-orange);
  font-size: 18px;
  transition: transform 0.4s;
}

.faq-item.open .faq-q span {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.5s,
    padding 0.3s;
  padding: 0 24px;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-a p {
  color: rgba(46, 21, 5, 0.85);
  line-height: 1.8;
}

/* ============ STAY CONNECTED ============ */
.sc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.sc-card {
  background: rgba(46, 21, 5, 0.6);
  border: 1px solid rgba(255, 215, 0, 0.4);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: border-color 0.3s;
}

.sc-card:hover {
  border-color: var(--divine-gold);
}

.sc-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: grid;
  place-items: center;
  font-size: 26px;
  margin: 0 auto;
  transition: 0.3s ease;
}

.sc-card:hover .sc-icon {
  color: #e5c013;
}

.sc-name {
  font-family: "Mukta";
  font-weight: 700;
  color: var(--divine-gold);
  margin-top: 14px;
}

.sc-card p {
  color: rgba(255, 245, 225, 0.85);
  font-size: 14px;
  font-weight: 500;
  margin: 8px 0 16px;
}

.qr-card {
  max-width: 600px;
  margin: 40px auto 0;
  background: var(--cream);
  color: var(--dark-brown);
  padding: 24px;
  border-radius: 24px;
  border: 2px solid var(--divine-gold);
  box-shadow: var(--shadow-divine);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  justify-content: center;
}

.qr-box {
  width: 128px;
  height: 128px;
  border-radius: 14px;
  border: 2px solid var(--divine-gold);
}

.qr-box img {
  border-radius: 12px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.qr-card h4 {
  font-family: "Mukta";
  font-weight: 700;
  color: var(--sacred-red);
  font-size: 22px;
}

.qr-card p {
  margin-top: 8px;
}

.qr-url {
  font-family: "Mukta";
  letter-spacing: 0.15em;
  color: var(--deep-orange);
  font-size: 14px;
  font-weight: 600;
  margin-top: 8px;
}

@media (min-width: 600px) {
  .sc-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .qr-card {
    flex-direction: row;
    text-align: left;
  }
}

/* ============ CLOSING CTA ============ */
.closing-cta {
  background: linear-gradient(135deg, #ffd700 0%, #ff8c00 50%, #e65100 100%);
  color: var(--dark-brown);
  padding: 40px 0;
  text-align: center;
}

.closing-cta h2 {
  font-family: "Mukta";
  font-weight: 800;
  font-size: 36px;
  line-height: 1.2;
}

.closing-cta p {
  color: rgba(46, 21, 5, 0.85);
  font-size: 18px;
  margin-top: 12px;
}

.closing-sub {
  font-size: 13px;
  margin-top: 18px;
  color: rgba(46, 21, 5, 0.8);
}

.closing-cta .btn {
  margin-top: 28px;
}

@media (min-width: 768px) {
  .closing-cta {
    padding: 70px 0;
  }
  .closing-cta h2 {
    font-size: 56px;
  }
}

/* ============ FOOTER ============ */
.footer {
  background: var(--charcoal);
  color: var(--cream);
  border-top: 1px solid var(--divine-gold);
  padding: 56px 20px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.footer h4 {
  font-family: "Mukta";
  font-weight: 700;
  color: var(--divine-gold);
  margin-bottom: 14px;
  font-size: 15px;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 6px;
  font-size: 14px;
}

.footer a:hover {
  color: var(--divine-gold);
}

.footer p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 245, 225, 0.8);
  margin-bottom: 6px;
}

.footer-logo-img {
  display: inline-block;
}

.footer-logo-img img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 14px;
}

.footer-brand {
  font-family: "Mukta";
  margin-top: 15px;
  font-weight: 700;
  color: var(--divine-gold);
  font-size: 18px;
  margin-bottom: 6px;
}

.footer-om {
  color: var(--divine-gold);
  font-size: 24px;
  margin-top: 14px;
  font-family: "Tiro Devanagari Hindi";
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 14px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 215, 0, 0.6);
  display: grid;
  place-items: center;
  color: var(--divine-gold);
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--divine-gold);
  color: var(--dark-brown);
}

.footer-news {
  display: flex;
}

.footer-news input {
  flex: 1;
  padding: 9px 12px;
  background: var(--dark-brown);
  border: 1px solid rgba(255, 215, 0, 0.4);
  border-radius: 8px 0 0 8px;
  color: var(--cream);
  outline: none;
  font-family: "Mukta";
  font-size: 14px;
}

.footer-news input::placeholder {
  color: #a9a9a9;
}

.footer-news button {
  border-radius: 0 8px 8px 0;
}

.footer-bottom {
  max-width: 1200px;
  margin: 32px auto 0;
  padding: 20px 24px 0;
  border-top: 1px solid rgba(255, 215, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 245, 225, 0.65);
}

.shubham {
  font-family: "Cormorant Garamond";
  font-style: italic;
  color: var(--divine-gold);
}

.footer-credit {
  text-align: center;
  font-size: 11px;
  font-style: italic;
  color: rgba(255, 245, 225, 0.4);
  margin-top: 14px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ============ FLOATING ============ */
.float-wa {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 50;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: grid;
  place-items: center;
  font-size: 24px;
  box-shadow: var(--shadow-divine);
  border: 2px solid var(--divine-gold);
  animation: Glow 2.4s ease-out infinite;
  transition: transform 0.3s;
}

.float-wa:hover {
  transform: scale(1.1);
}

.scroll-top {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 50;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--divine-gold);
  color: var(--dark-brown);
  font-size: 20px;
  display: none;
  place-items: center;
  box-shadow: var(--shadow-gold);
  transition: transform 0.3s;
}

.scroll-top.show {
  display: grid;
}

.scroll-top:hover {
  transform: scale(1.1);
}

/* ============ MODAL ============ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(26, 26, 26, 0.85);
  display: grid;
  place-items: center;
  padding: 16px;
}

.modal[hidden] {
  display: none;
}

.modal-card {
  background: var(--cream);
  border: 4px solid var(--divine-gold);
  border-radius: 24px;
  padding: 36px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-divine);
}

.modal-om {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.2);
  border: 2px solid var(--divine-gold);
  display: grid;
  place-items: center;
  color: var(--deep-orange);
  font-size: 32px;
  font-family: "Tiro Devanagari Hindi";
}

.modal-card h4 {
  font-family: "Mukta";
  font-weight: 700;
  color: var(--sacred-red);
  font-size: 24px;
}

.modal-card p {
  color: var(--dark-brown);
  margin: 14px 0 22px;
  line-height: 1.7;
}

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--dark-brown);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--divine-gold), var(--deep-orange));
  border-radius: 8px;
}
