/* ==========================================================================
   BHAKTA MAHAJANA SAMITHI - STYLESHEET
   Divyakshetra Hariharapura • Sreemath Hariharapura
   Color Palette Harmonized with Official Logo (#862413 & #D4AF37)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@500;600;700;800&family=Plus+Jakarta+Sans:wght@500;600;700;800;900&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Playfair+Display:ital,wght@0,600;0,700;0,800;0,900;1,600&family=Cinzel:wght@600;700;800;900&family=Noto+Serif+Devanagari:wght@400;600;700&display=swap');

:root {
  /* Exact Logo Maroon & Accents */
  --maroon-primary: #862413;
  --maroon-deep: #5C150B;
  --maroon-dark: #3F0C05;
  --maroon-gradient: linear-gradient(135deg, #862413 0%, #5C150B 100%);
  --maroon-soft-bg: #FAF2EE;

  /* Temple Gold */
  --gold-primary: #D4AF37;
  --gold-dark: #C5931C;
  --gold-bright: #F7E5A9;
  --gold-gradient: linear-gradient(135deg, #F9DF92 0%, #D4AF37 50%, #9A7B1C 100%);

  /* Parchment & Backgrounds */
  --bg-page: #FFFDF0;
  --bg-parchment: #FBF9F4;
  --bg-card: #FFFFFF;
  --bg-sand: #F5EFE4;

  /* Typography Colors */
  --text-dark: #271A17;
  --text-body: #4A3E3B;
  --text-muted: #736460;
  --border-gold: #EEDBBE;
  --border-subtle: #EDE4D4;

  /* Premium Font Hierarchy */
  --font-heading: 'Plus Jakarta Sans', 'Outfit', 'Poppins', sans-serif;
  --font-serif: 'Playfair Display', 'Cinzel', Georgia, serif;
  --font-body: 'Poppins', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-devanagari: 'Noto Serif Devanagari', serif;

  --shadow-sm: 0 4px 12px rgba(134, 36, 19, 0.06);
  --shadow-md: 0 8px 24px rgba(134, 36, 19, 0.10);
  --shadow-lg: 0 16px 40px rgba(134, 36, 19, 0.14);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-parchment);
  color: var(--text-body);
  line-height: 1.68;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -0.015em;
  color: var(--maroon-primary);
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s ease;
}

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

/* ==========================================================================
   1. HERO BANNER SECTION (Harmonized Divine Style with Official Logo)
   ========================================================================== */
.hero-banner-section {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.hero-banner-logo-badge {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  background: #FFFFFF;
  padding: 7px 22px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
  border: 1.5px solid var(--gold-primary);
  transition: all 0.28s ease;
}

.hero-banner-logo-badge:hover {
  background: #FFFFFF;
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.hero-banner-logo-badge img {
  height: 50px;
  width: auto;
  max-width: 480px;
  object-fit: contain;
  display: block;
}

.hero-banner-card {
  position: relative;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(134, 36, 19, 0.15);
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 3px solid var(--gold-primary);
  background: #0E0705;
}

.hero-banner-picture {
  display: block;
  width: 100%;
}

.hero-banner-img {
  width: 100%;
  height: 600px;
  min-height: 520px;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.98);
  transform: none;
  transition: transform 6s ease;
}

.hero-banner-img-blur {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 600px;
  min-height: 520px;
  object-fit: cover;
  object-position: center center;
  filter: blur(6px) brightness(0.95);
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    transparent 22%,
    rgba(0, 0, 0, 0.4) 30%,
    rgba(0, 0, 0, 0.85) 38%,
    #000000 48%,
    #000000 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    transparent 22%,
    rgba(0, 0, 0, 0.4) 30%,
    rgba(0, 0, 0, 0.85) 38%,
    #000000 48%,
    #000000 100%
  );
  pointer-events: none;
  z-index: 1;
  transition: transform 6s ease;
}

.hero-banner-card:hover .hero-banner-img,
.hero-banner-card:hover .hero-banner-img-blur {
  transform: scale(1.02);
}

.hero-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(14, 4, 2, 0.08) 0%,
    rgba(14, 4, 2, 0.22) 40%,
    rgba(14, 4, 2, 0.68) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px 20px 42px 20px;
  color: #FFFFFF;
  text-align: center;
}

.hero-banner-center-box {
  max-width: 530px;
  margin: 0 auto;
  padding: 10px 14px;
}

.hero-banner-title {
  font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.25rem);
  font-weight: 900;
  text-align: center;
  margin: 0 auto 6px auto;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #FFFFFF;
  background: linear-gradient(180deg, #FFFFFF 20%, #FFF2C6 50%, #F5CE6B 78%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.95)) drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
  -webkit-text-stroke: 0.3px rgba(255, 230, 160, 0.5);
}

.hero-banner-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 12px auto;
  max-width: 200px;
}

.hero-banner-divider::before,
.hero-banner-divider::after {
  content: '';
  flex: 1;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(244, 206, 106, 0.85), transparent);
}

.hero-banner-divider i {
  color: #F4CE6A;
  font-size: 0.9rem;
  filter: drop-shadow(0 0 8px rgba(244, 206, 106, 0.7));
}

.hero-banner-tagline-card {
  background: rgba(30, 8, 4, 0.58);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.38);
  border-radius: 14px;
  padding: 12px 18px;
  margin: 0 auto 16px auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 235, 170, 0.2);
}

.hero-banner-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.86rem, 1.05vw, 0.96rem);
  color: #FFF6E5;
  font-style: normal;
  line-height: 1.58;
  margin: 0 auto;
  font-weight: 400;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
}

.hero-banner-meta {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 10px 28px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  margin: 0 auto 20px auto;
  font-size: 0.95rem;
  color: #FFFDF9;
}

.hero-banner-meta i {
  color: var(--gold-bright);
}

.hero-banner-badge-wrap {
  margin-bottom: 22px;
  display: flex;
  justify-content: center;
}

.badge-divine-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.22);
  border: 1.5px solid #E5C365;
  border-radius: 50px;
  color: #FFF2D6;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 8px 24px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  max-width: 95%;
  text-align: center;
  line-height: 1.4;
  word-break: break-word;
  transition: all 0.28s ease;
}

.badge-divine-gold:hover {
  background: rgba(212, 175, 55, 0.32);
  border-color: #FFF2D6;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.45);
}

.hero-banner-badge-icon {
  color: var(--gold-bright);
  font-size: 0.85rem;
}

.hero-banner-cta-group {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-maroon-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--maroon-gradient);
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 32px;
  border-radius: 50px;
  border: 1.5px solid var(--gold-primary);
  box-shadow: 0 6px 20px rgba(134, 36, 19, 0.4);
  transition: all 0.28s ease;
}

.btn-maroon-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(134, 36, 19, 0.55);
  color: var(--gold-bright) !important;
}

.btn-brochure-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.16);
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 30px;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  transition: all 0.28s ease;
}

.btn-brochure-download:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: #FFFFFF;
  transform: translateY(-3px);
}

.bmjs-banner-fee-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  color: #FFF8E7;
  border: 1.5px solid var(--gold-bright);
  border-radius: 50px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

.bmjs-banner-btn-register {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gold-gradient);
  color: var(--maroon-deep) !important;
  font-weight: 900;
  font-size: 1.08rem;
  padding: 14px 38px;
  border-radius: 40px;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: all 0.25s ease;
}

.bmjs-banner-btn-register:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 36px rgba(212, 175, 55, 0.5);
}

/* ==========================================================================
   2. ABOUT & VISION SECTION
   ========================================================================== */
.bmjs-section {
  padding: 55px 0;
}

.bmjs-about-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #FAF5ED 0%, #F5ECE0 50%, #FAF5ED 100%);
  padding: 65px 0 60px 0;
  border-bottom: 1px solid #EEDBBE;
}

.bmjs-about-shape-top-left {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.85;
  transition: all 0.3s ease;
}

.bmjs-about-shape-top-left img {
  max-width: 680px;
  width: 100%;
  height: auto;
  display: block;
}

.bmjs-about-section .bmjs-container {
  position: relative;
  z-index: 1;
}

.bmjs-section-title-wrap {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}

.bmjs-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--maroon-primary);
  background: var(--maroon-soft-bg);
  border: 1px solid var(--border-gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 30px;
  margin-bottom: 12px;
}

.bmjs-section-title {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--maroon-primary);
  margin-bottom: 10px;
  line-height: 1.25;
}

.bmjs-section-subtitle {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.bmjs-about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
}

.bmjs-about-card {
  background: #ffffff;
  border: 1.5px solid var(--border-gold);
  border-radius: 18px;
  padding: 34px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all 0.3s ease;
}

.bmjs-about-card:hover {
  transform: translateY(-4px);
  border-color: #D4AF37;
  box-shadow: 0 14px 34px rgba(134, 36, 19, 0.1), 0 0 20px rgba(212, 175, 55, 0.35);
  background: linear-gradient(145deg, #FFFEEF 0%, #FFF4B8 55%, #FFE98A 100%);
}

.bmjs-about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 34px;
  right: 34px;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: 3px 3px 0 0;
}

.bmjs-about-card-title {
  color: var(--maroon-primary);
  font-size: 1.35rem;
  margin-bottom: 14px;
  font-weight: 800;
}

.bmjs-about-lead {
  margin-bottom: 14px;
  color: var(--text-dark);
  font-size: 0.98rem;
  line-height: 1.7;
}

.bmjs-about-text {
  margin-bottom: 18px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.bmjs-swamiji-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--gold-primary);
  background: var(--maroon-deep);
}

.bmjs-swamiji-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
}

.bmjs-swamiji-card:hover .bmjs-swamiji-img {
  transform: scale(1.02);
}

.bmjs-swamiji-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px;
  background: linear-gradient(to top, rgba(63, 12, 5, 0.95) 0%, rgba(63, 12, 5, 0.75) 70%, transparent 100%);
  color: #ffffff;
  text-align: center;
}

.bmjs-swamiji-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-bright);
  margin-bottom: 4px;
}

.bmjs-swamiji-desc {
  font-size: 0.82rem;
  color: #F8ECE2;
  opacity: 0.9;
}

.bmjs-vision-card {
  background: linear-gradient(135deg, #FFFDF8 0%, #FAF3E6 100%);
  border: 1.5px solid var(--gold-primary);
  border-radius: 14px;
  padding: 20px 24px;
  margin-top: 20px;
}

.bmjs-vision-card h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--maroon-primary);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.bmjs-vision-card p {
  font-size: 0.94rem;
  color: var(--text-dark);
  line-height: 1.6;
}

/* ==========================================================================
   3. OBJECTIVES SECTION (CLEAN & ELEGANT DESIGN)
   ========================================================================== */
.bmjs-objectives-section {
  padding: 65px 0 75px;
  background: linear-gradient(135deg, #822212 0%, #5E160B 50%, #440D06 100%);
  position: relative;
  overflow: hidden;
  border-top: 2.5px solid var(--gold-primary);
  border-bottom: 2.5px solid var(--gold-primary);
  box-shadow: inset 0 8px 24px rgba(0, 0, 0, 0.3), inset 0 -8px 24px rgba(0, 0, 0, 0.3);
}

.bmjs-objectives-section .bmjs-section-title {
  color: #FFFFFF;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.bmjs-objectives-shape-right {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.85;
  transition: all 0.3s ease;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
}

.bmjs-objectives-shape-right img {
  width: 155px;
  max-width: 100%;
  height: auto;
  display: block;
}

.bmjs-objectives-section .bmjs-container {
  position: relative;
  z-index: 1;
}

.bmjs-objectives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.bmjs-objective-card {
  background: #ffffff;
  border: 1.5px solid #E5C365;
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.bmjs-objective-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(145deg, #FFFEEF 0%, #FFF4B8 55%, #FFE98A 100%);
  border-color: #D4AF37;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 213, 79, 0.4);
}

.bmjs-objective-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #862413 0%, #5C150B 100%);
  border: 1.5px solid #E5C365;
  color: #FFF2C6;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 10px rgba(134, 36, 19, 0.18);
  transition: transform 0.25s ease;
}

.bmjs-objective-card:hover .bmjs-objective-icon {
  transform: scale(1.05);
}

.bmjs-objective-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--maroon-primary);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.bmjs-objective-desc {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.62;
  margin: 0;
}

/* ==========================================================================
   4. MEMBER FACILITIES & PRIVILEGES (RICH TEMPLE YELLOW THEME)
   ========================================================================== */
.bmjs-facilities-section {
  background: linear-gradient(180deg, #FFF3A8 0%, #FFE97D 50%, #FDE265 100%);
  border-top: 2.5px solid #D4AF37;
  border-bottom: 2.5px solid #D4AF37;
  box-shadow: inset 0 8px 20px rgba(134, 36, 19, 0.06), inset 0 -8px 20px rgba(134, 36, 19, 0.06);
  padding: 65px 0;
  position: relative;
}

.bmjs-facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.bmjs-facility-card {
  background: #ffffff;
  border: 1.5px solid #E5C365;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 8px 22px rgba(134, 36, 19, 0.09);
  display: flex;
  gap: 16px;
  transition: all 0.3s ease;
  position: relative;
}

.bmjs-facility-card:hover {
  transform: translateY(-5px);
  background: linear-gradient(145deg, #FFFEEF 0%, #FFF4B8 55%, #FFE98A 100%);
  border-color: #D4AF37;
  box-shadow: 0 16px 36px rgba(134, 36, 19, 0.18), 0 0 20px rgba(212, 175, 55, 0.35);
}

.bmjs-facility-badge {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #862413 0%, #5C150B 100%);
  border: 1.5px solid var(--gold-primary);
  color: #FFECA8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  box-shadow: 0 4px 12px rgba(134, 36, 19, 0.25);
}

.bmjs-facility-body h4 {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--maroon-primary);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.bmjs-facility-body p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ==========================================================================
   5. QUARTERLY SAMMELANA & SANCTITY (ROYAL TEMPLE SHOWCASE)
   ========================================================================== */
.bmjs-sammelana-card {
  background: 
    radial-gradient(ellipse at 25% 15%, rgba(150, 40, 22, 0.95) 0%, rgba(77, 14, 5, 0.98) 55%, #2B0703 100%),
    url('/static/assets/img/bg/pattern_bg_2.png');
  background-repeat: repeat;
  background-size: auto;
  color: #ffffff;
  border-radius: 24px;
  padding: 44px 40px;
  border: 2.5px solid var(--gold-primary);
  box-shadow: 0 20px 50px rgba(50, 10, 5, 0.45), inset 0 1px 0 rgba(255, 235, 170, 0.25);
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.bmjs-sammelana-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #FFE494, transparent);
}

.bmjs-sammelana-card::after {
  content: "ॐ";
  position: absolute;
  bottom: -30px;
  right: 15px;
  font-size: 210px;
  font-family: var(--font-devanagari);
  color: rgba(255, 215, 100, 0.04);
  line-height: 1;
  pointer-events: none;
}

.bmjs-sammelana-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}

.bmjs-sammelana-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, #F4CE6A 0%, #D4AF37 50%, #862413 100%);
  border: 2px solid #FFEBB0;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), 0 0 15px rgba(212, 175, 55, 0.35);
}

.bmjs-sammelana-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid #E5C365;
  border-radius: 30px;
  padding: 4px 14px;
  color: #FFE58F;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.bmjs-sammelana-title {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  margin: 0;
}

.bmjs-sammelana-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.02rem;
  color: #F8ECE2;
  line-height: 1.72;
  max-width: 960px;
  margin-bottom: 26px;
}

.bmjs-sammelana-text strong {
  color: #FFE38A;
  font-weight: 600;
}

.bmjs-sammelana-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
}

.bmjs-sammelana-item {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.38);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.94rem;
  color: #FFF6E5;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: all 0.28s ease;
}

.bmjs-sammelana-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.14);
  border-color: #F4CE6A;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4), 0 0 18px rgba(212, 175, 55, 0.35);
  color: #FFFFFF;
}

.bmjs-sammelana-item-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, #D4AF37 0%, #862413 100%);
  border: 1px solid #FFEAA0;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

/* Sanctity Card (Sacred Dharma Resolution - Rich Temple Yellow Design) */
.bmjs-sanctity-card {
  background: linear-gradient(135deg, #FFF9D2 0%, #FFF099 50%, #FDE472 100%);
  border: 2px solid #D4AF37;
  border-left: 6px solid var(--maroon-primary);
  border-radius: 18px;
  padding: 28px 32px;
  box-shadow: 0 12px 32px rgba(134, 36, 19, 0.12), 0 0 18px rgba(212, 175, 55, 0.25);
  display: flex;
  align-items: flex-start;
  gap: 22px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.bmjs-sanctity-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(134, 36, 19, 0.16), 0 0 25px rgba(212, 175, 55, 0.35);
  border-color: #B8860B;
}

.bmjs-sanctity-seal {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, #862413 0%, #5C150B 100%);
  border: 2px solid #FFEBB0;
  color: #FFF2C6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(134, 36, 19, 0.28), 0 0 12px rgba(212, 175, 55, 0.3);
}

.bmjs-sanctity-content {
  flex: 1;
}

.bmjs-sanctity-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--maroon-primary);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.bmjs-sanctity-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: #381E15;
  line-height: 1.68;
  margin: 0;
  font-weight: 500;
}

.bmjs-sanctity-desc em,
.bmjs-sanctity-desc strong {
  color: #5C150B;
  font-weight: 700;
}

@media (max-width: 768px) {
  .bmjs-sanctity-card {
    flex-direction: column;
    padding: 22px 20px;
    gap: 14px;
  }
}

/* ==========================================================================
   6. 2-COLUMN SECTION: REGISTRATION FORM (LEFT) & FAQ (RIGHT)
   ========================================================================== */
.bmjs-enrol-faq-section,
.bmjs-reg-section {
  padding: 60px 0 90px;
  background: linear-gradient(180deg, #FBF9F4 0%, #F5EFE4 100%);
  position: relative;
}

.bmjs-enrol-faq-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 36px;
  align-items: start;
}

.bmjs-faq-column {
  position: sticky;
  top: 30px;
}

.bmjs-faq-column-header {
  margin-bottom: 20px;
}

.bmjs-faq-title {
  text-align: left;
  margin-bottom: 8px;
}

.bmjs-faq-subtitle {
  color: var(--text-muted);
  font-size: 0.94rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

.bmjs-faq-help-box {
  margin-top: 24px;
  background: linear-gradient(135deg, #FFFDF8 0%, #FAF3E6 100%);
  border: 1.5px solid #ECD59B;
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 15px rgba(134, 36, 19, 0.05);
}

.bmjs-faq-help-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #862413 0%, #5C150B 100%);
  color: #FFE58F;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(134, 36, 19, 0.25);
}

.bmjs-form-wrapper-centered {
  max-width: 840px;
  margin: 0 auto;
}

.bmjs-form-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 32px 30px 28px;
  border: 1.5px solid #E5C365;
  box-shadow: 0 16px 45px rgba(134, 36, 19, 0.08), 0 2px 10px rgba(212, 175, 55, 0.12);
  position: relative;
  overflow: hidden;
}

.bmjs-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #862413 0%, #D4AF37 50%, #862413 100%);
}

.bmjs-form-header {
  text-align: center;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1.5px solid #F0E6D8;
}

.bmjs-form-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(134, 36, 19, 0.07);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 30px;
  padding: 4px 14px;
  color: var(--maroon-primary);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.bmjs-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  font-weight: 800;
  color: var(--maroon-primary);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.bmjs-contribution-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #FFFDF8 0%, #FEF1CD 100%);
  border: 1px solid #D4AF37;
  border-radius: 50px;
  padding: 5px 16px;
  font-size: 0.88rem;
  color: #5C150B;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.15);
}

.bmjs-contribution-pill strong {
  color: var(--maroon-primary);
  font-weight: 800;
  font-size: 0.98rem;
}

.bmjs-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.bmjs-form-group {
  margin-bottom: 14px;
}

.bmjs-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #5C150B;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  line-height: 1.2;
}

.bmjs-label .bmjs-field-icon,
.bmjs-label i {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #C5931C;
  font-size: 0.86rem;
  flex-shrink: 0;
  text-align: center;
}

.bmjs-label span {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.bmjs-label .required {
  color: #dc3545;
  margin-left: 2px;
  font-weight: 800;
}

.bmjs-input, .bmjs-select, .bmjs-textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #E5D7C7;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-dark);
  background: #FAF8F5;
  transition: all 0.22s ease;
}

.bmjs-input:focus, .bmjs-select:focus, .bmjs-textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  background: #ffffff;
  box-shadow: 0 0 0 3.5px rgba(212, 175, 55, 0.18);
}

.bmjs-comm-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 4px;
}

.bmjs-radio-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  background: #FAF7F2;
  border: 1.5px solid #E5D7C7;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--text-body);
  transition: all 0.2s ease;
  text-align: center;
}

.bmjs-radio-label input {
  display: none;
}

.bmjs-radio-label:has(input:checked) {
  background: #FFF1DA;
  border-color: var(--gold-dark);
  color: var(--maroon-primary);
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

.bmjs-consent-box {
  background: linear-gradient(135deg, #FFFDF9 0%, #FAF5EB 100%);
  border: 1.2px solid #ECD59B;
  border-radius: 12px;
  padding: 12px 14px;
  margin: 16px 0 16px 0;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.bmjs-consent-box input {
  margin-top: 3px;
  cursor: pointer;
  width: 16px;
  height: 16px;
  accent-color: var(--maroon-primary);
}

.bmjs-consent-text {
  font-size: 0.82rem;
  color: #3E2B27;
  line-height: 1.5;
}

.bmjs-submit-btn-wrap {
  display: flex;
  justify-content: center;
  margin: 10px 0 8px;
}

.bmjs-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #8E2514 0%, #68170D 100%);
  color: #FFFDF8;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 11px 28px;
  min-width: 240px;
  border: 1.5px solid #F3CF7A;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(134, 36, 19, 0.3), 0 0 10px rgba(212, 175, 55, 0.22);
  letter-spacing: 0.4px;
  transition: all 0.25s ease;
}

.bmjs-submit-btn:hover {
  background: linear-gradient(135deg, #A22C18 0%, #7B1B0F 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(134, 36, 19, 0.4), 0 0 18px rgba(212, 175, 55, 0.4);
  border-color: #FFE58F;
}

.bmjs-trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  text-align: center;
}

.bmjs-trust-badge i {
  color: var(--gold-dark);
}

@media (max-width: 768px) {
  .bmjs-form-card {
    padding: 28px 20px;
  }
  .bmjs-form-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .bmjs-comm-options {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   7. LIVE DIGITAL MEMBERSHIP CARD
   ========================================================================== */
.bmjs-card-preview-wrap {
  position: sticky;
  top: 40px;
}

.bmjs-card-preview-header {
  text-align: center;
  margin-bottom: 14px;
}

.bmjs-card-preview-header h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--maroon-primary);
}

.bmjs-digital-card {
  background: linear-gradient(135deg, #FFFDF8 0%, #FAF3E6 50%, #F5E8CE 100%);
  border: 3px solid var(--gold-primary);
  border-radius: 20px;
  padding: 26px 22px;
  box-shadow: 0 14px 35px rgba(134, 36, 19, 0.16);
  position: relative;
  overflow: hidden;
  text-align: center;
  color: var(--text-dark);
}

.bmjs-digital-card::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  border: 1px dashed var(--gold-dark);
  border-radius: 14px;
  pointer-events: none;
}

.bmjs-card-mantra {
  font-family: var(--font-devanagari);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--maroon-primary);
  letter-spacing: 1px;
}

.bmjs-card-logo {
  height: 42px;
  margin: 8px auto;
  object-fit: contain;
}

.bmjs-card-org {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--maroon-primary);
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.bmjs-card-kshetra {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.bmjs-card-divider {
  width: 50px;
  height: 2px;
  background: var(--gold-primary);
  margin: 12px auto;
}

.bmjs-card-holder-box {
  margin: 12px 0;
}

.bmjs-card-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 700;
}

.bmjs-card-holder-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--maroon-deep);
  margin: 4px 0 2px;
  min-height: 26px;
}

.bmjs-card-holder-location {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
  min-height: 18px;
}

.bmjs-card-id-pill {
  background: #ffffff;
  border: 1.5px solid var(--gold-primary);
  border-radius: 10px;
  padding: 8px 12px;
  margin: 14px auto;
  max-width: 230px;
}

.bmjs-card-id-val {
  font-family: monospace;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--maroon-primary);
  letter-spacing: 1.5px;
}

.bmjs-card-blessing {
  font-size: 0.76rem;
  font-style: italic;
  color: var(--maroon-primary);
  line-height: 1.4;
  margin-top: 12px;
  font-weight: 600;
}

/* ==========================================================================
   8. FAQS ACCORDION
   ========================================================================== */
.bmjs-faqs-wrap {
  max-width: 860px;
  margin: 0 auto;
}

.bmjs-faq-item {
  background: #ffffff;
  border: 1.5px solid var(--border-gold);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.25s ease;
}

.bmjs-faq-item:hover {
  border-color: #D4AF37;
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.25);
  background: linear-gradient(145deg, #FFFEEF 0%, #FFF6C6 100%);
}

.bmjs-faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 16px 22px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--maroon-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.bmjs-faq-icon {
  font-size: 0.95rem;
  color: var(--gold-dark);
  transition: transform 0.25s ease;
}

.bmjs-faq-item.active .bmjs-faq-icon {
  transform: rotate(180deg);
}

.bmjs-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 22px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.bmjs-faq-item.active .bmjs-faq-answer {
  max-height: 300px;
  padding: 0 22px 18px;
}

/* ==========================================================================
   9. MINIMAL FOOTER STRIP
   ========================================================================== */
.bmjs-minimal-footer {
  background: #271A17;
  color: #F8F3E8;
  padding: 24px 0;
  border-top: 3px solid var(--gold-primary);
  text-align: center;
}

.bmjs-minimal-footer p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.bmjs-minimal-footer .bmjs-verse {
  font-family: var(--font-devanagari);
  color: var(--gold-bright);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

/* ==========================================================================
   10. SUCCESS MODAL
   ========================================================================== */
.bmjs-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.bmjs-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.bmjs-modal-box {
  background: #ffffff;
  border-radius: 20px;
  max-width: 540px;
  width: 100%;
  border: 3px solid var(--gold-primary);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  padding: 34px 28px;
  text-align: center;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.bmjs-modal-overlay.active .bmjs-modal-box {
  transform: scale(1);
}

.bmjs-modal-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--maroon-soft-bg);
  border: 2px solid var(--gold-primary);
  color: var(--maroon-primary);
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.bmjs-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.bmjs-modal-actions .btn-maroon-gold {
  padding: 10px 24px;
  font-size: 0.92rem;
}

.bmjs-modal-close-btn {
  background: #E9ECEF;
  color: #495057;
  font-weight: 700;
  border: none;
  border-radius: 30px;
  padding: 10px 22px;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.bmjs-modal-close-btn:hover {
  background: #DEE2E6;
  color: #212529;
}

/* ==========================================================================
   9. ROYAL BANNER FOOTER DESIGN (Harmonized with Rajatha Mahotsava)
   ========================================================================== */
.banner-footer-section {
  position: relative;
  background: url('../img/rajatha_mahotsava/hariharapura_banner.jpg') center top / cover no-repeat;
  color: #FFFFFF;
  overflow: hidden;
  border-top: 4px solid var(--gold-primary);
  box-shadow: inset 0 25px 35px rgba(0, 0, 0, 0.65);
}

.banner-footer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(22, 5, 2, 0.82) 0%,
    rgba(16, 3, 1, 0.68) 45%,
    rgba(10, 2, 1, 0.90) 100%
  );
  z-index: 1;
}

.banner-footer-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 60px 24px 64px 24px;
}

.banner-footer-right {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 680px;
}

.footer-address-card {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  color: #FFFFFF;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-address-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 12px;
}

.footer-temple-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.2);
  border: 1.5px solid var(--gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.footer-address-header h4 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--gold-bright);
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.95);
  font-weight: 700;
}

.footer-sub-header {
  font-size: 0.86rem;
  color: #E0CEBA;
  letter-spacing: 0.05em;
  display: block;
  margin-top: 2px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
}

.footer-full-address {
  font-style: normal;
  font-size: 0.96rem;
  color: #F3E5D5;
  line-height: 1.75;
  margin: 8px 0 16px 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.95);
  text-align: center;
}

.footer-full-address strong {
  color: #FFFFFF;
  font-size: 1.02rem;
}

.footer-contact-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-pill-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 50px;
  padding: 7px 18px;
  color: #FFF2D6;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  backdrop-filter: blur(4px);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
}

.footer-pill-link:hover {
  background: rgba(212, 175, 55, 0.25);
  border-color: var(--gold-bright);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.footer-pill-link i {
  color: var(--gold-bright);
}

.footer-river-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.84rem;
  color: #FCE6A4;
  background: rgba(212, 175, 55, 0.2);
  padding: 6px 18px;
  border-radius: 50px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  width: fit-content;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(4px);
  margin: 0 auto;
}

.banner-footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  padding: 18px 0;
  background: rgba(8, 2, 1, 0.85);
  backdrop-filter: blur(6px);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.84rem;
  color: #D4C1AC;
}

.footer-bottom-inner p {
  margin: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.footer-blessing-quote {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  color: #ECC878;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ==========================================================================
   11. COMPREHENSIVE RESPONSIVE DESIGN (All Devices & Screen Widths)
   ========================================================================== */

/* Medium & Small Laptops / Tablets (Landscape: <= 991px) */
@media (max-width: 991px) {
  .bmjs-about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .bmjs-objectives-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .bmjs-facilities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .bmjs-enrol-faq-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .bmjs-faq-column {
    position: static;
  }

  .hero-banner-img,
  .hero-banner-img-blur {
    height: 540px;
    min-height: 480px;
  }

  .hero-banner-title {
    font-size: 2rem;
  }

  .hero-banner-center-box {
    max-width: 500px;
  }
}

/* Mobile Devices & Tablets (Portrait: <= 767px) */
@media (max-width: 767px) {
  .bmjs-container {
    padding: 0 16px;
  }

  .bmjs-section {
    padding: 44px 0;
  }

  .bmjs-section-title-wrap {
    margin-bottom: 28px;
  }

  .bmjs-section-title {
    font-size: 1.65rem;
    line-height: 1.3;
  }

  .bmjs-section-subtitle {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  /* 1. Hero Banner (Direct Image Overlay on Mobile with Centered Logo Badge) */
  .hero-banner-card {
    position: relative;
    width: 100%;
    display: block;
    background: #0E0705;
    border-bottom: 3px solid var(--gold-primary);
    overflow: hidden;
  }

  .hero-banner-logo-badge {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-width: 90%;
    background: #FFFFFF;
    padding: 6px 18px;
    border-radius: 12px;
    border: 1.5px solid var(--gold-primary);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-banner-logo-badge img {
    height: 32px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
  }

  .hero-banner-picture {
    display: block;
    width: 100%;
  }

  .hero-banner-img {
    width: 100%;
    height: 640px;
    min-height: 560px;
    object-fit: cover;
    object-position: center top;
    filter: brightness(0.96);
    display: block;
  }

  .hero-banner-img-blur {
    display: none;
  }

  .hero-banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
      180deg,
      rgba(14, 4, 2, 0.02) 0%,
      rgba(14, 4, 2, 0.10) 30%,
      rgba(14, 4, 2, 0.65) 58%,
      rgba(14, 4, 2, 0.94) 80%,
      rgba(14, 4, 2, 1) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 60px 16px 24px 16px;
    color: #FFFFFF;
    text-align: center;
  }

  .hero-banner-center-box {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
  }

  .hero-banner-title {
    font-size: clamp(1.45rem, 5.5vw, 1.85rem);
    font-weight: 900;
    line-height: 1.25;
    margin: 0 auto 6px auto;
    letter-spacing: 0.01em;
  }

  .hero-banner-divider {
    margin: 0 auto 10px auto;
    max-width: 160px;
  }

  .hero-banner-tagline-card {
    background: rgba(28, 7, 3, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.42);
    border-radius: 14px;
    padding: 12px 16px;
    margin: 0 auto 16px auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  }

  .hero-banner-tagline {
    font-size: 0.86rem;
    line-height: 1.55;
    color: #FFF6E5;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
  }

  .hero-banner-cta-group {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .btn-maroon-gold {
    width: 100%;
    max-width: 320px;
    padding: 13px 26px;
    font-size: 0.98rem;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.55), 0 0 12px rgba(212, 175, 55, 0.3);
  }

  /* 2. About & Vision */
  .bmjs-about-section {
    padding: 44px 0 40px 0;
  }

  .bmjs-about-shape-top-left {
    opacity: 0.25;
    max-width: 220px;
  }

  .bmjs-about-card {
    padding: 22px 18px;
    border-radius: 16px;
  }

  .bmjs-about-card::before {
    left: 18px;
    right: 18px;
  }

  .bmjs-about-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .bmjs-about-card p {
    font-size: 0.9rem;
    line-height: 1.62;
    margin-bottom: 12px;
  }

  .bmjs-vision-card {
    padding: 16px 16px;
    border-radius: 12px;
    margin-top: 14px;
  }

  .bmjs-vision-card h4 {
    font-size: 1rem;
    margin-bottom: 4px;
  }

  .bmjs-vision-card p {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .bmjs-swamiji-card {
    border-radius: 16px;
    border-width: 2px;
  }

  .bmjs-swamiji-img {
    height: 340px;
  }

  .bmjs-swamiji-overlay {
    padding: 16px 14px;
  }

  .bmjs-swamiji-title {
    font-size: 1rem;
    line-height: 1.35;
  }

  .bmjs-swamiji-desc {
    font-size: 0.76rem;
    line-height: 1.4;
  }

  /* 3. Objectives */
  .bmjs-objectives-section {
    padding: 44px 0 52px;
  }

  .bmjs-objectives-shape-right {
    width: 90px;
    opacity: 0.45;
  }

  .bmjs-objectives-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .bmjs-objective-card {
    padding: 20px 18px;
    border-radius: 14px;
  }

  .bmjs-objective-icon {
    width: 42px;
    height: 42px;
    font-size: 17px;
    margin-bottom: 12px;
    border-radius: 10px;
  }

  .bmjs-objective-title {
    font-size: 1.05rem;
    margin-bottom: 6px;
  }

  .bmjs-objective-desc {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  /* 4. Facilities */
  .bmjs-facilities-section {
    padding: 44px 0;
  }

  .bmjs-facilities-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .bmjs-facility-card {
    padding: 18px 16px;
    border-radius: 14px;
    gap: 14px;
  }

  .bmjs-facility-badge {
    width: 42px;
    height: 42px;
    font-size: 17px;
    border-radius: 12px;
  }

  .bmjs-facility-body h4 {
    font-size: 1rem;
    margin-bottom: 4px;
  }

  .bmjs-facility-body p {
    font-size: 0.86rem;
    line-height: 1.55;
  }

  /* 5. Sammelana & Sanctity */
  .bmjs-sammelana-card {
    padding: 24px 18px;
    border-radius: 18px;
    margin-bottom: 20px;
    border-width: 2px;
  }

  .bmjs-sammelana-card::after {
    font-size: 140px;
    bottom: -20px;
    right: 5px;
    opacity: 0.03;
  }

  .bmjs-sammelana-header {
    gap: 12px;
    margin-bottom: 14px;
  }

  .bmjs-sammelana-icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
    border-radius: 12px;
  }

  .bmjs-sammelana-title {
    font-size: 1.25rem;
    line-height: 1.3;
  }

  .bmjs-sammelana-text {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 18px;
  }

  .bmjs-sammelana-highlights {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .bmjs-sammelana-item {
    padding: 10px 14px;
    font-size: 0.86rem;
    border-radius: 10px;
    gap: 10px;
  }

  .bmjs-sammelana-item-icon {
    width: 28px;
    height: 28px;
    font-size: 12px;
    border-radius: 8px;
  }

  .bmjs-sanctity-card {
    flex-direction: column;
    padding: 20px 16px;
    border-radius: 14px;
    gap: 12px;
    border-left-width: 4px;
  }

  .bmjs-sanctity-seal {
    width: 42px;
    height: 42px;
    font-size: 18px;
    border-radius: 12px;
  }

  .bmjs-sanctity-title {
    font-size: 1.1rem;
    margin-bottom: 6px;
  }

  .bmjs-sanctity-desc {
    font-size: 0.88rem;
    line-height: 1.58;
  }

  /* 6. Enrolment Form & FAQ */
  .bmjs-enrol-faq-section {
    padding: 44px 0 60px;
  }

  .bmjs-form-card {
    padding: 22px 16px 20px;
    border-radius: 18px;
  }

  .bmjs-form-header {
    margin-bottom: 16px;
    padding-bottom: 14px;
  }

  .bmjs-form-title {
    font-size: 1.35rem;
    margin-bottom: 8px;
  }

  .bmjs-contribution-pill {
    padding: 4px 14px;
    font-size: 0.82rem;
  }

  .bmjs-contribution-pill strong {
    font-size: 0.92rem;
  }

  .bmjs-form-row {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 12px;
  }

  .bmjs-form-group {
    margin-bottom: 12px;
  }

  .bmjs-label {
    font-size: 0.78rem;
    gap: 6px;
    margin-bottom: 5px;
  }

  /* 16px font-size prevents iOS Safari automatic page zooming */
  .bmjs-input, .bmjs-select, .bmjs-textarea {
    padding: 10px 12px;
    font-size: 16px;
    border-radius: 8px;
  }

  .bmjs-consent-box {
    padding: 10px 12px;
    border-radius: 10px;
    margin: 12px 0 14px;
    gap: 8px;
  }

  .bmjs-consent-text {
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .bmjs-submit-btn-wrap {
    margin: 6px 0 8px;
  }

  .bmjs-submit-btn {
    width: 100%;
    min-width: 100%;
    padding: 12px 18px;
    font-size: 0.92rem;
    border-radius: 30px;
  }

  .bmjs-trust-badge {
    font-size: 0.72rem;
    flex-wrap: wrap;
    text-align: center;
    gap: 4px;
    line-height: 1.4;
  }

  .bmjs-faq-column-header h2 {
    font-size: 1.45rem !important;
  }

  .bmjs-faq-column-header p {
    font-size: 0.88rem !important;
    margin-bottom: 16px !important;
  }

  .bmjs-faq-item {
    border-radius: 10px;
    margin-bottom: 10px;
  }

  .bmjs-faq-question {
    padding: 13px 16px;
    font-size: 0.92rem;
  }

  .bmjs-faq-answer {
    font-size: 0.86rem;
    line-height: 1.55;
  }

  .bmjs-faq-item.active .bmjs-faq-answer {
    padding: 0 16px 14px;
  }

  .bmjs-faq-help-box {
    padding: 14px 16px;
    border-radius: 12px;
    gap: 12px;
    margin-top: 18px;
  }

  .bmjs-faq-help-icon {
    width: 38px;
    height: 38px;
    font-size: 16px;
    border-radius: 10px;
  }

  /* 7. Success Modal */
  .bmjs-modal-overlay {
    padding: 14px;
  }

  .bmjs-modal-box {
    padding: 24px 16px;
    border-radius: 18px;
    max-width: 100%;
    max-height: 92vh;
    overflow-y: auto;
  }

  .bmjs-modal-icon {
    width: 52px;
    height: 52px;
    font-size: 22px;
    margin-bottom: 12px;
  }

  .bmjs-modal-box h3 {
    font-size: 1.35rem !important;
  }

  .bmjs-modal-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .bmjs-modal-actions button {
    width: 100%;
    justify-content: center;
  }

  /* 8. Footer */
  .banner-footer-container {
    padding: 38px 16px 42px 16px;
  }

  .footer-address-header {
    flex-direction: column;
    gap: 8px;
  }

  .footer-temple-icon {
    width: 40px;
    height: 40px;
    font-size: 1.15rem;
  }

  .footer-address-header h4 {
    font-size: 1.25rem;
  }

  .footer-sub-header {
    font-size: 0.8rem;
  }

  .footer-full-address {
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 6px 0 14px 0;
  }

  .footer-contact-pills {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }

  .footer-pill-link {
    width: 100%;
    justify-content: center;
    font-size: 0.82rem;
    padding: 8px 14px;
  }

  .footer-river-tag {
    font-size: 0.78rem;
    padding: 5px 14px;
  }

  .banner-footer-bottom {
    padding: 14px 0;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    font-size: 0.78rem;
  }

  .footer-blessing-quote {
    font-size: 0.82rem;
  }
}

/* Extra Small Mobile Screens (<= 420px) */
@media (max-width: 420px) {
  .hero-banner-logo-badge {
    top: 10px;
    padding: 4px 12px;
  }

  .hero-banner-logo-badge img {
    height: 26px;
  }

  .hero-banner-img {
    height: 600px;
    min-height: 540px;
    object-position: center top;
  }

  .hero-banner-overlay {
    padding: 55px 12px 20px 12px;
  }

  .hero-banner-title {
    font-size: 1.28rem;
  }

  .hero-banner-tagline-card {
    padding: 10px 12px;
    margin-bottom: 12px;
  }

  .hero-banner-tagline {
    font-size: 0.78rem;
  }

  .btn-maroon-gold {
    font-size: 0.92rem;
    padding: 11px 20px;
  }

  .bmjs-section-title {
    font-size: 1.45rem;
  }

  .bmjs-about-card {
    padding: 18px 14px;
  }

  .bmjs-form-card {
    padding: 18px 12px;
  }

  .bmjs-form-title {
    font-size: 1.2rem;
  }

  .bmjs-contribution-pill {
    font-size: 0.76rem;
    padding: 3px 10px;
  }

  .bmjs-contribution-pill strong {
    font-size: 0.84rem;
  }

  .bmjs-swamiji-img {
    height: 290px;
  }
}

/* Quick Links Row Styling */
.footer-quick-links-row {
  margin: 16px 0 14px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 30px;
}

.footer-quick-links-row .ql-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #D4AF37;
  letter-spacing: 0.5px;
}

.footer-ql-link {
  color: #E2D5C3;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer-ql-link:hover {
  color: #FFD700;
  text-decoration: underline;
}

.ql-sep {
  color: rgba(212, 175, 55, 0.5);
  font-size: 0.8rem;
}



