:root {
  --red-950: #450a0a;
  --red-900: #7f1d1d;
  --red-800: #991b1b;
  --red-700: #b91c1c;
  --red-600: #dc2626;
  --amber-600: #d97706;
  --amber-500: #f59e0b;
  --amber-100: #fef3c7;
  --red-50: #fef2f2;
  --amber-50: #fffbeb;
  --green: #22c55e;
  --ink: #1f2937;
  --muted: #6b7280;
  --line: #fecaca;
  --white: #ffffff;
  --shadow: 0 20px 55px rgba(127, 29, 29, 0.16);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, var(--red-50), var(--white));
  font-family: "Noto Sans Devanagari", system-ui, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1152px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(185, 28, 28, 0.14);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--red-800);
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red-800), var(--amber-500));
  box-shadow: 0 12px 26px rgba(185, 28, 28, 0.28);
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #4b5563;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav a:hover,
.header-call:hover {
  color: var(--red-700);
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  color: var(--red-700);
  background: var(--red-50);
  border: 1px solid var(--line);
  font-family: Poppins, sans-serif;
  font-weight: 800;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(127, 29, 29, 0.96), rgba(220, 38, 38, 0.9) 52%, rgba(245, 158, 11, 0.88)),
    url("https://commons.wikimedia.org/wiki/Special:Redirect/file/Palitana%2C%20Shatrunjaya%2C%20dholis%2C%20pilgrims%2C%20and%20steps%20%289825131513%29.jpg") center/cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    radial-gradient(circle at 20px 20px, rgba(255, 255, 255, 0.45) 0 4px, transparent 5px),
    radial-gradient(circle at 50px 50px, rgba(255, 255, 255, 0.28) 0 3px, transparent 4px);
  background-size: 72px 72px;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 96px;
  background: var(--white);
  clip-path: polygon(0 58%, 8% 51%, 17% 43%, 26% 34%, 37% 28%, 49% 30%, 61% 36%, 74% 43%, 87% 45%, 100% 40%, 100% 100%, 0 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(69, 10, 10, 0.2) 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: block;
  min-height: 720px;
  padding: 88px 0 142px;
  text-align: center;
}

.hero-content {
  max-width: 980px;
  margin: 0 auto;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--amber-100);
  font-family: Poppins, "Noto Sans Devanagari", sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 1050px;
  margin: 0 auto 24px;
  font-size: clamp(2.6rem, 6.5vw, 5.4rem);
  line-height: 1.05;
  font-weight: 800;
}

.hero-meta {
  display: grid;
  gap: 8px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 800;
}

.hero-copy,
.hero-badge {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 40px rgba(69, 10, 10, 0.22);
  backdrop-filter: blur(10px);
}

.hero-copy {
  margin-top: 0;
  margin-bottom: 16px;
  padding: 26px 30px;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(1.05rem, 2vw, 1.66rem);
}

.hero-badge {
  display: block;
  margin-bottom: 0;
  padding: 18px 22px;
  color: #fff7d6;
  font-size: clamp(1rem, 2.2vw, 1.45rem);
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 28px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-family: Poppins, "Noto Sans Devanagari", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--red-800);
  background: var(--white);
  box-shadow: 0 18px 38px rgba(69, 10, 10, 0.2);
}

.btn-whatsapp {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 18px 38px rgba(34, 197, 94, 0.24);
}

.btn-outline {
  color: var(--white);
  background: var(--red-900);
  box-shadow: 0 18px 38px rgba(69, 10, 10, 0.2);
}

.hero-card {
  max-width: 760px;
  margin: 38px auto 0;
  padding: 20px 24px;
  border: 2px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.lamp-glow {
  display: none;
}

.hero-card p,
.hero-card span {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

.hero-card strong {
  display: block;
  color: var(--white);
  font-family: Poppins, sans-serif;
  font-size: 2.4rem;
  line-height: 1.1;
}

.video-section {
  background: var(--white);
}

.video-frame {
  position: relative;
  overflow: hidden;
  width: min(920px, 100%);
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  background: #111827;
  box-shadow: var(--shadow);
}

.video-frame iframe,
.short-video-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-frame.small {
  width: 100%;
  margin: 0;
}

.section {
  padding: 72px 0;
}

.intro {
  background: var(--white);
}

.two-column,
.split-showcase,
.venue-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.section-heading,
.two-column > div:first-child,
.benefits .split-showcase > div:nth-child(2) {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

h2 {
  margin: 0;
  color: var(--red-700);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.18;
  font-weight: 800;
}

h3 {
  margin: 0 0 12px;
  color: var(--red-700);
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  line-height: 1.25;
  font-weight: 800;
}

.rich-text,
.venue-card,
.registration-form,
.showcase-panel {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--red-50), var(--amber-50));
  box-shadow: var(--shadow);
}

.rich-text {
  padding: clamp(26px, 4vw, 48px);
}

.rich-text p,
.registration-form p,
.venue-card p {
  margin: 0 0 18px;
  color: #4b5563;
  font-size: 1.1rem;
}

.warm-band,
.benefits,
.booking-section,
.gallery-section,
.testimonials {
  background: linear-gradient(180deg, var(--white), var(--red-50));
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading .section-kicker,
.intro .section-kicker,
.benefits .section-kicker,
.venue-card .section-kicker,
.registration-form .section-kicker {
  color: var(--amber-600);
}

.feature-grid,
.benefit-list,
.participation-grid,
.testimonial-grid,
.booking-grid {
  display: grid;
  gap: 22px;
}

.feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-grid article,
.benefit-list span,
.participation-grid article,
.timeline article,
.booking-card,
.testimonial-grid blockquote {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 36px rgba(127, 29, 29, 0.1);
}

.feature-grid article,
.benefit-list span {
  min-height: 92px;
  padding: 22px;
  color: #374151;
  font-size: 1.05rem;
  font-weight: 800;
}

.feature-grid article::before,
.benefit-list span::before,
.booking-card li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-family: Poppins, sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
}

.split-showcase {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
}

.short-video-card {
  position: relative;
  overflow: hidden;
  width: min(360px, 100%);
  min-height: 620px;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  border: 10px solid var(--white);
  border-radius: 28px;
  background: #111827;
  box-shadow: var(--shadow);
}

.showcase-panel {
  min-height: 410px;
  display: grid;
  place-content: center;
  padding: 34px;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(153, 27, 27, 0.86), rgba(245, 158, 11, 0.7)),
    url("https://commons.wikimedia.org/wiki/Special:Redirect/file/Jain%20temple%2C%20Ahmedabad.JPG") center/cover;
}

.showcase-panel span {
  font-family: Poppins, sans-serif;
  font-size: 6.5rem;
  font-weight: 800;
  line-height: 1;
}

.showcase-panel p {
  margin: 10px 0 0;
  font-size: 1.5rem;
  font-weight: 800;
}

.benefit-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
  text-align: left;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.timeline article {
  padding: 24px;
}

.timeline b {
  display: block;
  color: var(--red-700);
  font-size: 1.2rem;
  font-weight: 800;
}

.timeline time {
  display: block;
  margin: 14px 0 10px;
  color: var(--amber-600);
  font-weight: 800;
}

.timeline span {
  color: #4b5563;
}

.participation-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.participation-grid article {
  display: flex;
  flex-direction: column;
  padding: 26px;
}

.participation-grid p {
  margin: 0 0 24px;
  color: #4b5563;
}

.participation-grid .btn {
  width: 100%;
  margin-top: auto;
  color: var(--white);
  background: linear-gradient(90deg, var(--red-700), var(--red-800));
  border-radius: 10px;
}

.booking-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.booking-card {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 30px;
}

.booking-icon {
  display: inline-grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin-bottom: 22px;
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red-700), var(--amber-500));
  box-shadow: 0 14px 30px rgba(185, 28, 28, 0.24);
  font-family: Poppins, "Noto Sans Devanagari", sans-serif;
  font-weight: 800;
}

.youtube-card {
  background: linear-gradient(135deg, var(--red-50), var(--amber-50));
}

.anusthan-card {
  background: linear-gradient(135deg, #faf5ff, #eef2ff);
  border-color: #ddd6fe;
}

.booking-card p {
  margin: 0 0 22px;
  color: #4b5563;
  font-size: 1.05rem;
}

.booking-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.booking-card li {
  color: #374151;
  font-weight: 700;
}

.booking-card li::before {
  width: 22px;
  height: 22px;
}

.booking-card .btn {
  width: 100%;
  margin-top: auto;
  color: var(--white);
  background: linear-gradient(90deg, var(--red-700), var(--red-800));
  border-radius: 10px;
}

.venue-register {
  background: var(--white);
}

.venue-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.venue-only {
  display: block;
}

.venue-only .venue-card {
  max-width: 880px;
  margin: 0 auto;
}

.venue-card,
.registration-form {
  width: 100%;
  max-width: none;
  padding: clamp(28px, 4vw, 48px);
  background: var(--white);
}

.venue-card {
  border-width: 2px;
  border-color: #fca5a5;
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  color: var(--red-700);
  font-family: Poppins, sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
}

.registration-form {
  display: grid;
  gap: 10px;
}

label {
  display: grid;
  gap: 8px;
  color: #374151;
  font-size: 1.02rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  padding: 14px 16px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--red-600);
  outline: none;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}

.registration-form .btn {
  width: 100%;
  color: var(--white);
  background: linear-gradient(90deg, var(--red-700), var(--red-900));
  border-radius: 10px;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: #15803d;
  font-weight: 800;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.gallery-grid figure {
  position: relative;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  background: var(--red-50);
  box-shadow: 0 16px 36px rgba(127, 29, 29, 0.12);
}

.gallery-large {
  grid-row: auto;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.1);
}

.gallery-grid figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 34px 16px 14px;
  color: var(--white);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent);
  font-weight: 800;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.gallery-grid figure:hover figcaption {
  opacity: 1;
}

.youtube-gallery-section {
  background: linear-gradient(180deg, var(--white), var(--red-50));
}

.youtube-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.testimonial-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

blockquote {
  margin: 0;
  padding: 30px;
  border-left: 5px solid var(--red-600);
  color: #4b5563;
  font-size: 1.18rem;
  font-style: italic;
}

cite {
  display: block;
  margin-top: 20px;
  color: var(--red-700);
  font-style: normal;
  font-weight: 800;
}

.final-cta {
  padding: 74px 0;
  color: var(--white);
  text-align: center;
  background: linear-gradient(135deg, var(--red-900), var(--red-600), var(--amber-500));
}

.final-cta p {
  margin: 0 0 14px;
  color: #fff7d6;
  font-size: clamp(1.7rem, 4vw, 3.2rem);
  font-weight: 800;
}

.final-cta h2 {
  max-width: 900px;
  margin: 0 auto;
  color: var(--white);
  font-size: clamp(1.3rem, 3vw, 2rem);
}

.final-cta .hero-actions {
  justify-content: center;
}

.footer {
  padding: 48px 0;
  color: #d1d5db;
  background: #111827;
  text-align: center;
}

.footer-grid {
  display: grid;
  gap: 24px;
}

.footer h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.footer p {
  margin: 10px 0;
}

.footer a,
.footer span {
  display: block;
  margin-top: 8px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.72);
  backdrop-filter: blur(8px);
}

.modal-panel {
  position: relative;
  width: min(620px, 100%);
  max-height: min(88vh, 760px);
  overflow: auto;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  color: var(--red-800);
  background: var(--red-50);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

.modal .registration-form {
  margin: 0;
  border: 0;
  box-shadow: none;
}

.thank-you-panel {
  padding: clamp(32px, 5vw, 52px);
  text-align: center;
}

.thank-you-panel p {
  color: #4b5563;
  font-size: 1.1rem;
}

.thank-you-panel .btn {
  margin: 18px auto 12px;
}

.community-note {
  margin-bottom: 0;
  font-weight: 800;
}

body.modal-open {
  overflow: hidden;
}

.thank-you-page {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(127, 29, 29, 0.94), rgba(220, 38, 38, 0.88), rgba(245, 158, 11, 0.86)),
    url("https://commons.wikimedia.org/wiki/Special:Redirect/file/Palitana%2C%20Shatrunjaya%2C%20dholis%2C%20pilgrims%2C%20and%20steps%20%289825131513%29.jpg") center/cover;
}

.thank-you-hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 56px 0;
}

.thank-you-card {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(32px, 6vw, 60px);
  border: 2px solid rgba(255, 255, 255, 0.26);
  border-radius: 24px;
  color: var(--white);
  text-align: center;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 28px 90px rgba(69, 10, 10, 0.3);
  backdrop-filter: blur(14px);
}

.thank-you-card h1 {
  margin: 0 0 18px;
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  line-height: 1.1;
}

.thank-you-card p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.2rem;
}

.thank-you-card .btn {
  margin: 26px auto 10px;
}

.back-home {
  display: inline-block;
  margin-top: 18px;
  color: #fff7d6;
  font-weight: 800;
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero-grid {
    min-height: auto;
    padding: 72px 0 136px;
  }

  .feature-grid,
  .split-showcase,
  .timeline,
  .participation-grid,
  .booking-grid,
  .venue-grid,
  .gallery-grid,
  .youtube-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .split-showcase {
    align-items: stretch;
  }

  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .venue-grid {
    grid-template-columns: 1fr;
  }

  .short-video-card {
    min-height: 560px;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 12px;
  }

  .brand span:last-child {
    display: none;
  }

  .header-call {
    padding: 9px 12px;
    font-size: 0.9rem;
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .hero-copy,
  .hero-badge {
    border-radius: 14px;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .section {
    padding: 58px 0;
  }

  .feature-grid,
  .benefit-list,
  .timeline,
  .participation-grid,
  .booking-grid,
  .testimonial-grid,
  .gallery-grid,
  .youtube-gallery {
    grid-template-columns: 1fr;
  }

  .showcase-panel {
    min-height: 300px;
  }

  .short-video-card {
    min-height: auto;
    width: min(320px, 100%);
	        display: none;
  }

  .booking-card {
    min-height: auto;
  }
  
  .two-column,
.split-showcase,
.venue-grid {
  display: inherit;
  grid-template-columns: 1fr;
  gap: 30px;
}

}


.booking-grid img {
    width: 100%;
}