/* ================================================================
   Anjanaye Swami Seva Trust — Main Stylesheet
   Brand Guide: Saffron, Temple Maroon, Divine Gold, Ivory
   Fonts: Cinzel (headings), Quicksand (body)
================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;900&family=Cinzel+Decorative:wght@400;700&family=Quicksand:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap');

/* ── CSS Custom Properties ───────────────────────────── */
:root {
  --saffron:       #E67E22;
  --saffron-dark:  #C96A10;
  --saffron-light: #F39C12;
  --maroon:        #7B1E1E;
  --maroon-dark:   #5A1212;
  --maroon-light:  #9B2C2C;
  --gold:          #C89B3C;
  --gold-light:    #D4AF37;
  --gold-pale:     #F4D03F;
  --ivory:         #FFF8EE;
  --sandstone:     #F2E7D5;
  --brown:         #5A3E2B;
  --charcoal:      #2D2D2D;
  --kumkum:        #B22222;
  --leaf-green:    #4C7A34;
  --sky-blue:      #4A90E2;
  --white:         #FFFFFF;
  --text-dark:     #2D2D2D;
  --text-mid:      #5A3E2B;
  --text-light:    #7A6A5A;

  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-full: 9999px;

  --shadow-sm:  0 2px 8px rgba(122,30,30,0.08);
  --shadow-md:  0 6px 24px rgba(122,30,30,0.12);
  --shadow-lg:  0 16px 48px rgba(122,30,30,0.18);
  --shadow-gold:0 4px 20px rgba(200,155,60,0.3);

  --transition-fast: 0.25s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-med:  0.45s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-slow: 0.8s cubic-bezier(0.25, 1, 0.5, 1);

  --nav-height: 90px;
  --nav-shrunk: 68px;
}

/* ── Reset & Base ────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Quicksand', sans-serif;
  background-color: var(--ivory);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Scroll Progress Bar ─────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--saffron), var(--gold-light));
  z-index: 10000;
  transition: width 0.1s linear;
}

/* ── Loading Screen ──────────────────────────────────── */
#loading-screen {
  position: fixed;
  inset: 0;
  background: linear-gradient(160deg, var(--maroon-dark) 0%, var(--maroon) 40%, #3D0E0E 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#loading-screen.hidden { opacity: 0; visibility: hidden; }
.loading-om {
  font-size: 5rem;
  color: var(--gold-light);
  animation: omGlow 2s ease-in-out infinite, fadeInDown 0.8s ease forwards;
  text-shadow: 0 0 30px rgba(212,175,55,0.8), 0 0 60px rgba(212,175,55,0.4);
  margin-bottom: 1rem;
}
.loading-title {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  color: var(--gold-pale);
  letter-spacing: 0.15em;
  text-align: center;
  animation: fadeInUp 0.8s 0.4s ease both;
  padding: 0 1rem;
}
.loading-subtitle {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,248,238,0.6);
  margin-top: 0.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: fadeInUp 0.8s 0.7s ease both;
}
.loading-bar {
  width: 220px;
  height: 3px;
  background: rgba(255,255,255,0.12);
  border-radius: 9999px;
  margin-top: 3rem;
  overflow: visible;
  position: relative;
  animation: fadeInUp 0.8s 0.9s ease both;
}
.loading-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--saffron), var(--gold-light));
  border-radius: 9999px;
  animation: loadingProgress 2.3s ease forwards;
  position: relative;
  width: 0%;
  box-shadow: 0 0 10px rgba(212,175,55,0.7);
}
.loading-runner {
  position: absolute;
  right: -22px;
  bottom: -4px;
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
  pointer-events: none;
}
@keyframes loadingProgress {
  from { width: 0%; }
  to   { width: 100%; }
}
@keyframes omGlow {
  0%, 100% { text-shadow: 0 0 30px rgba(212,175,55,0.8); transform: scale(1); }
  50%       { text-shadow: 0 0 60px rgba(212,175,55,1), 0 0 90px rgba(230,126,34,0.6); transform: scale(1.05); }
}

/* ── Typography ──────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Cinzel', serif;
  line-height: 1.25;
  color: var(--maroon);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 500; }
h5 { font-size: 1rem; }
p  { color: var(--text-mid); font-size: 1rem; }

.section-label {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--saffron);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}
.section-label::before, .section-label::after {
  content: '';
  height: 1px;
  width: 30px;
  background: var(--saffron);
  opacity: 0.5;
}
.section-title { margin-bottom: 1rem; }
.section-desc  { max-width: 600px; color: var(--text-light); font-size: 1.05rem; margin-bottom: 2.5rem; }

/* ── Navigation ──────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: linear-gradient(180deg, rgba(123,30,30,0.98) 0%, rgba(123,30,30,0.95) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  z-index: 9000;
  transition: height var(--transition-med), box-shadow var(--transition-med), background var(--transition-med);
  border-bottom: 1px solid rgba(200,155,60,0.2);
}
#navbar.scrolled {
  height: var(--nav-shrunk);
  background: rgba(90,18,18,0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-logo-icon {
  font-size: 2rem;
  line-height: 1;
  filter: drop-shadow(0 0 8px rgba(212,175,55,0.6));
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
}
.nav-logo-main {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.nav-logo-sub {
  font-size: 0.68rem;
  color: rgba(255,248,238,0.6);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-item {
  position: relative;
}
.nav-link {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,248,238,0.85);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--gold-light);
  background: rgba(212,175,55,0.1);
}
.nav-link .chevron {
  font-size: 0.65rem;
  transition: transform var(--transition-fast);
}
.nav-item:hover .chevron { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(90,18,18,0.98);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(200,155,60,0.2);
  padding: 0.6rem 0;
  min-width: 180px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: all var(--transition-fast);
  z-index: 9100;
}
.nav-item:hover .dropdown,
.nav-item.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: block;
  padding: 0.55rem 1.2rem;
  font-size: 0.85rem;
  color: #fff8ee;
  transition: all var(--transition-fast);
}
.dropdown a:hover {
  color: var(--gold-light);
  background: rgba(212,175,55,0.08);
  padding-left: 1.5rem;
}

.nav-cta {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: white !important;
  padding: 0.55rem 1.25rem !important;
  border-radius: var(--radius-full) !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 15px rgba(230,126,34,0.4);
  transition: all var(--transition-fast) !important;
}
.nav-cta:hover {
  background: linear-gradient(135deg, var(--saffron-light), var(--saffron)) !important;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(230,126,34,0.5) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold-light);
  border-radius: 9999px;
  transition: all var(--transition-fast);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-full);
  font-family: 'Quicksand', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all var(--transition-fast);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-dark) 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(230,126,34,0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--saffron-light) 0%, var(--saffron) 100%);
  transform: scale(1.03);
  box-shadow: 0 6px 22px rgba(230,126,34,0.5);
}
.btn-secondary {
  background: transparent;
  color: var(--maroon);
  border: 2px solid var(--maroon);
}
.btn-secondary:hover {
  background: var(--maroon);
  color: white;
  transform: scale(1.03);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--maroon-dark);
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 28px rgba(200,155,60,0.5);
}
.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: white;
  transform: scale(1.03);
}
.btn-sm {
  padding: 0.55rem 1.2rem;
  font-size: 0.82rem;
}
.btn-lg {
  padding: 1rem 2.4rem;
  font-size: 1rem;
}

/* ── Layout Utilities ────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.container-sm {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section {
  padding: 5rem 0;
}
.section-alt {
  background: var(--sandstone);
}
.section-dark {
  background: var(--maroon);
  color: white;
}
.section-dark h2, .section-dark h3 { color: var(--gold-light); }
.section-dark p { color: rgba(255,248,238,0.8); }
.section-dark .section-label { color: var(--gold-pale); }
.section-dark .section-label::before, .section-dark .section-label::after { background: var(--gold-pale); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.text-center { text-align: center; }
.text-center .section-label { justify-content: center; }
.text-center .section-label::before, .text-center .section-label::after { display: none; }
.text-center .section-desc { margin-left: auto; margin-right: auto; }

/* ── Cards ───────────────────────────────────────────── */
.card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition-med), box-shadow var(--transition-med);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.card-body { padding: 1.5rem; }
.card-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }

.card-seva {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border-left: 4px solid var(--saffron);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-med);
}
.card-seva:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--gold);
}

.card-festival {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-med);
}
.card-festival:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.card-festival:hover .card-festival-body {
  box-shadow: inset 0 0 0 2px var(--gold);
}

/* ── Hero Section ────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/temple_hero.png');
  background-size: cover;
  background-position: center 10%;
  background-attachment: fixed;
  transform: scale(1.05);
  transition: transform 0.1s linear;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(90,18,18,0.85) 0%,
    rgba(45,10,10,0.75) 40%,
    rgba(90,18,18,0.5) 100%
  );
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(212,175,55,0.6);
  border-radius: 50%;
  animation: floatParticle var(--dur, 10s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes floatParticle {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.8; }
  100% { transform: translateY(-20px) scale(1); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 2rem;
  max-width: 800px;
}
.hero-mantra {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--gold-light);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInDown 0.8s 0.3s ease forwards;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: white;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeInDown 0.8s 0.5s ease forwards;
  text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}
.hero-title span { color: var(--gold-light); }
.hero-desc {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,248,238,0.85);
  max-width: 560px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s 0.7s ease forwards;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  animation: fadeInUp 0.8s 0.9s ease forwards;
}
.hero-timings {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  opacity: 0;
  animation: fadeInUp 0.8s 1.1s ease forwards;
}
.timing-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.timing-label {
  font-size: 0.75rem;
  color: rgba(255,248,238,0.55);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.timing-value {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: var(--gold-light);
  font-weight: 600;
}

/* ── Stats Bar ───────────────────────────────────────── */
.stats-bar {
  background: var(--maroon);
  padding: 2rem 0;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item {}
.stat-number {
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,248,238,0.65);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

/* ── Om Divider ──────────────────────────────────────── */
.om-divider {
  text-align: center;
  font-size: 2rem;
  color: var(--gold);
  margin: 1.5rem 0;
  animation: omGlow 4s ease-in-out infinite;
  opacity: 0.7;
}

/* ── Event Cards ─────────────────────────────────────── */
.event-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  transition: all var(--transition-med);
}
.event-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.event-date-box {
  background: var(--maroon);
  color: white;
  width: 80px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.event-date-day {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.event-date-month {
  font-size: 0.72rem;
  color: rgba(255,248,238,0.65);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.event-content {
  padding: 1.25rem 1.5rem;
  flex: 1;
}
.event-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--saffron);
  background: rgba(230,126,34,0.1);
  border-radius: var(--radius-full);
  padding: 0.2rem 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* ── Gallery Grid ────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-med);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(123,30,30,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-med);
}
.gallery-overlay span {
  font-size: 2rem;
  color: white;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ── Donation Section ────────────────────────────────── */
.donation-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(200,155,60,0.15);
}
.progress-bar-wrap {
  margin: 1rem 0;
}
.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}
.progress-track {
  background: var(--sandstone);
  border-radius: 9999px;
  height: 10px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  border-radius: 9999px;
  background: linear-gradient(90deg, var(--saffron), var(--gold-light));
  transition: width 1.5s ease;
}

/* ── Seva Table ──────────────────────────────────────── */
.seva-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.seva-table thead {
  background: var(--maroon);
  color: var(--gold-light);
  font-family: 'Cinzel', serif;
}
.seva-table th {
  padding: 1rem 1.5rem;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.seva-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(200,155,60,0.1);
  color: var(--text-mid);
  font-size: 0.95rem;
}
.seva-table tbody tr:nth-child(even) { background: rgba(242,231,213,0.4); }
.seva-table tbody tr:hover { background: rgba(230,126,34,0.05); }
.seva-table tbody tr:last-child td { border-bottom: none; }
.seva-price {
  color: var(--saffron);
  font-weight: 700;
  font-family: 'Cinzel', serif;
}

/* ── Timeline ────────────────────────────────────────── */
.timeline {
  position: relative;
  padding-left: 3rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--saffron), var(--gold), var(--maroon));
  height: 0%;
  transition: height 2s ease;
}
.timeline.animated::before { height: 100%; }
.timeline-item {
  position: relative;
  padding-bottom: 3rem;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.6s ease;
}
.timeline-item.visible {
  opacity: 1;
  transform: translateX(0);
}
.timeline-dot {
  position: absolute;
  left: -2.5rem;
  top: 0.2rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--saffron);
  border: 3px solid white;
  box-shadow: 0 0 0 3px var(--saffron);
}
.timeline-year {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  color: var(--maroon);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.timeline-desc {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ── FAQ Accordion ───────────────────────────────────── */
.faq-item {
  background: white;
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(200,155,60,0.1);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--maroon);
  font-size: 0.95rem;
  transition: background var(--transition-fast);
}
.faq-question:hover { background: rgba(230,126,34,0.04); }
.faq-arrow {
  font-size: 1rem;
  color: var(--saffron);
  transition: transform var(--transition-med);
  flex-shrink: 0;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-med);
}
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-light);
  font-size: 0.93rem;
  line-height: 1.75;
}

/* ── Testimonials ────────────────────────────────────── */
.testimonial-slider {
  position: relative;
  overflow: hidden;
}
.testimonial-track {
  display: flex;
  transition: transform 0.7s ease;
}
.testimonial-slide {
  min-width: 100%;
  padding: 0 1rem;
}
.testimonial-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: 'Cinzel', serif;
  font-size: 6rem;
  color: var(--saffron);
  opacity: 0.15;
  position: absolute;
  top: -0.5rem;
  left: 1.5rem;
  line-height: 1;
}
.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-mid);
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  color: var(--maroon);
  font-size: 0.95rem;
}
.testimonial-city {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.2rem;
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(123,30,30,0.2);
  transition: all var(--transition-fast);
  cursor: pointer;
}
.t-dot.active {
  background: var(--saffron);
  transform: scale(1.4);
}

/* ── Form Styles ─────────────────────────────────────── */
.form-group {
  margin-bottom: 1.4rem;
}
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--maroon);
  margin-bottom: 0.45rem;
  letter-spacing: 0.03em;
}
.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 2px solid rgba(200,155,60,0.2);
  border-radius: var(--radius-md);
  font-family: 'Quicksand', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: white;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}
.form-control:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(230,126,34,0.12);
}
.form-control::placeholder { color: rgba(90,62,43,0.45); }
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237B1E1E' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  cursor: pointer;
}
.form-check input[type="checkbox"],
.form-check input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--saffron);
  margin-top: 0.1rem;
  flex-shrink: 0;
}
.form-check-label { font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; }

.upload-area {
  border: 2px dashed rgba(200,155,60,0.4);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-med);
  background: rgba(242,231,213,0.3);
}
.upload-area:hover {
  border-color: var(--saffron);
  background: rgba(230,126,34,0.04);
}
.upload-icon { font-size: 2.5rem; margin-bottom: 0.5rem; }
.upload-text { font-size: 0.9rem; color: var(--text-light); }

/* ── Payment Tabs ────────────────────────────────────── */
.payment-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.payment-tab {
  flex: 1;
  min-width: 140px;
  padding: 1.25rem 1rem;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(200,155,60,0.2);
  background: white;
  cursor: pointer;
  text-align: center;
  transition: all var(--transition-med);
  box-shadow: var(--shadow-sm);
}
.payment-tab:hover {
  border-color: var(--saffron);
  transform: translateY(-2px);
}
.payment-tab.active {
  border-color: var(--saffron);
  background: rgba(230,126,34,0.06);
  box-shadow: 0 0 0 1px var(--saffron), var(--shadow-sm);
}
.payment-tab-icon { font-size: 2rem; margin-bottom: 0.4rem; }
.payment-tab-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--maroon);
}
.payment-panel { display: none; }
.payment-panel.active { display: block; }

.qr-box {
  width: 200px;
  height: 200px;
  border: 3px solid var(--gold);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  padding: 1rem;
  background: white;
  box-shadow: var(--shadow-gold);
  position: relative;
}
.qr-box img { width: 100%; height: 100%; object-fit: contain; }
.qr-placeholder {
  display: grid;
  grid-template-columns: repeat(8,1fr);
  grid-template-rows: repeat(8,1fr);
  gap: 2px;
  width: 100%;
  height: 100%;
}
.qr-cell {
  border-radius: 1px;
  background: var(--maroon);
}

/* ── Back to Top ─────────────────────────────────────── */
#back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  color: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(123,30,30,0.4);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-med);
  z-index: 8000;
}
#back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#back-to-top:hover {
  background: var(--saffron);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(230,126,34,0.5);
}

/* ── Diya Animation ──────────────────────────────────── */
.diya-icon {
  display: inline-block;
  animation: diyaFlicker 1.8s ease-in-out infinite;
}
@keyframes diyaFlicker {
  0%, 100% { transform: scale(1);    filter: brightness(1); }
  30%       { transform: scale(1.03); filter: brightness(1.15); }
  60%       { transform: scale(0.98); filter: brightness(0.92); }
  80%       { transform: scale(1.02); filter: brightness(1.1); }
}

/* ── Bell Animation ──────────────────────────────────── */
.bell-icon {
  display: inline-block;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.bell-icon.ringing {
  animation: bellRing 0.6s ease-in-out;
}
@keyframes bellRing {
  0%   { transform: rotate(0deg); }
  20%  { transform: rotate(12deg); }
  40%  { transform: rotate(-8deg); }
  60%  { transform: rotate(6deg); }
  80%  { transform: rotate(-3deg); }
  100% { transform: rotate(0deg); }
}

/* ── Scroll Reveal ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── Page Hero (inner pages) ─────────────────────────── */
.page-hero {
  background: linear-gradient(160deg, var(--maroon-dark) 0%, var(--maroon) 60%, #6B1A1A 100%);
  padding: 9rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '🕉';
  position: absolute;
  font-size: 20rem;
  right: -3rem;
  top: -4rem;
  opacity: 0.04;
  pointer-events: none;
  line-height: 1;
}
.page-hero-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(212,175,55,0.6);
  margin-bottom: 0.75rem;
}
.page-hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: white;
  font-weight: 700;
  margin-bottom: 1rem;
}
.page-hero-desc {
  color: rgba(255,248,238,0.75);
  font-size: 1.05rem;
  max-width: 580px;
  line-height: 1.75;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.83rem;
  color: rgba(255,248,238,0.5);
}
.breadcrumb a { color: var(--gold-light); transition: color var(--transition-fast); }
.breadcrumb a:hover { color: white; }
.breadcrumb span { color: rgba(255,248,238,0.3); }

/* ── Footer ──────────────────────────────────────────── */
footer {
  background: linear-gradient(180deg, var(--maroon-dark) 0%, #1A0808 100%);
  padding: 4rem 0 0;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--gold), var(--saffron));
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand-name {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.footer-brand-sub {
  font-size: 0.75rem;
  color: rgba(255,248,238,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-desc {
  font-size: 0.88rem;
  color: rgba(255,248,238,0.55);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(255,248,238,0.6);
  margin-bottom: 0.6rem;
  line-height: 1.5;
}
.footer-contact-item span:first-child { flex-shrink: 0; }
.footer-heading {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(200,155,60,0.2);
}
.footer-links a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,248,238,0.55);
  padding: 0.3rem 0;
  transition: all var(--transition-fast);
}
.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 0.4rem;
}
.footer-timings-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,248,238,0.55);
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.footer-timings-row span:last-child { color: var(--gold-light); font-weight: 500; }
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200,155,60,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255,248,238,0.6);
  transition: all var(--transition-fast);
  cursor: pointer;
}
.social-btn:hover {
  background: var(--saffron);
  color: white;
  border-color: var(--saffron);
  transform: translateY(-2px);
}
.footer-bottom {
  text-align: center;
  padding: 1.5rem;
  font-size: 0.8rem;
  color: rgba(255,248,238,0.3);
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-diyas {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-diya {
  font-size: 1.5rem;
  animation: diyaFlicker 1.8s ease-in-out infinite;
}
.footer-diya:nth-child(2) { animation-delay: 0.3s; }
.footer-diya:nth-child(3) { animation-delay: 0.6s; }
.footer-diya:nth-child(4) { animation-delay: 0.9s; }
.footer-diya:nth-child(5) { animation-delay: 1.2s; }

/* ── Live Badge ──────────────────────────────────────── */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #dc2626;
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-full);
  animation: livePulse 2s ease-in-out infinite;
}
.live-dot {
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
}
@keyframes livePulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(220,38,38,0.4); }
  50%       { transform: scale(1.05); box-shadow: 0 0 0 6px rgba(220,38,38,0); }
}

/* ── Notice Banner ───────────────────────────────────── */
.notice-banner {
  background: linear-gradient(90deg, var(--maroon) 0%, #9B2C2C 100%);
  padding: 0.6rem 0;
  overflow: hidden;
}
.notice-scroll {
  display: flex;
  white-space: nowrap;
  animation: scrollText 30s linear infinite;
}
.notice-scroll span {
  font-size: 0.82rem;
  color: rgba(255,248,238,0.85);
  padding: 0 3rem;
}
.notice-scroll span::before {
  content: '🔔 ';
}
@keyframes scrollText {
  from { transform: translateX(100vw); }
  to   { transform: translateX(-100%); }
}

/* ── Tag Badge ───────────────────────────────────────── */
.badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.75rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.badge-saffron { background: rgba(230,126,34,0.12); color: var(--saffron-dark); }
.badge-maroon  { background: rgba(123,30,30,0.1);  color: var(--maroon); }
.badge-gold    { background: rgba(200,155,60,0.15); color: var(--brown); }
.badge-green   { background: rgba(76,122,52,0.12);  color: var(--leaf-green); }

/* ── Animations ──────────────────────────────────────── */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes petalFall {
  0%   { transform: translateY(-20px) rotate(0deg); opacity: 1; }
  100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

/* ── Whatsapp Floating Button ────────────────────────── */
#whatsapp-btn {
  position: fixed;
  bottom: 5.5rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  cursor: pointer;
  z-index: 8000;
  transition: all var(--transition-fast);
  text-decoration: none;
}
#whatsapp-btn:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}

/* ── Info Highlight Box ──────────────────────────────── */
.highlight-box {
  background: linear-gradient(135deg, rgba(230,126,34,0.08), rgba(200,155,60,0.08));
  border: 1px solid rgba(200,155,60,0.25);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  position: relative;
}
.highlight-box::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--saffron), var(--gold));
  border-radius: 4px 0 0 4px;
}

/* ── Bank Details Card ───────────────────────────────── */
.bank-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(200,155,60,0.1);
  font-size: 0.9rem;
}
.bank-row:last-child { border-bottom: none; }
.bank-key { color: var(--text-light); font-weight: 500; }
.bank-val {
  color: var(--maroon);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.copy-btn {
  font-size: 0.75rem;
  color: var(--saffron);
  cursor: pointer;
  background: rgba(230,126,34,0.08);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  transition: all var(--transition-fast);
}
.copy-btn:hover { background: var(--saffron); color: white; }

/* ── Mission/Vision Cards ────────────────────────────── */
.mission-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--saffron);
  height: 100%;
}
.mission-card.vision { border-top-color: var(--gold); }
.mission-card h3 { margin-bottom: 1rem; }

/* ── Activity Grid ───────────────────────────────────── */
.activity-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-med);
  border-bottom: 3px solid transparent;
}
.activity-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--saffron);
}
.activity-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}
.activity-card h4 { margin-bottom: 0.5rem; }
.activity-card p { font-size: 0.88rem; color: var(--text-light); }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4  { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .notice-banner { display: none !important; }

  :root { --nav-height: 70px; --nav-shrunk: 60px; }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(80,10,10,0.98);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0.2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    border-bottom: 2px solid rgba(200,155,60,0.2);
  }
  .nav-menu.open { max-height: 90vh; overflow-y: auto; }
  .nav-toggle { display: flex; }
  .nav-link { padding: 0.8rem 1rem; border-radius: var(--radius-sm); font-size: 0.9rem; white-space: normal !important; text-align: left; }
  .dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .nav-item.open .dropdown,
  .nav-item:hover .dropdown {
    display: block !important;
    position: static !important;
    transform: none !important;
    max-height: 300px; /* height sufficient to fit all links */
    opacity: 1 !important;
    visibility: visible !important;
  }
  .dropdown a {
    display: block !important;
    color: rgba(255, 248, 238, 0.9) !important;
    padding: 0.55rem 1rem 0.55rem 2.2rem !important;
    font-size: 0.88rem !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-timings { flex-direction: column; gap: 1rem; }
  .payment-tabs { flex-direction: column; }
  .section { padding: 3.5rem 0; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .container { padding: 0 1.25rem; }
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.5rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

/* ── Utility ─────────────────────────────────────────── */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.w-full { width: 100%; }
.hidden { display: none !important; }
