/* Global Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #fff7ed;
  background-image: url("https://cdn.wallpapersafari.com/95/8/F0dmoK.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #111827;
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

:root {
  --sb-primary: #f97316;
  --sb-primary-soft: rgba(249, 115, 22, 0.08);
  --sb-accent: #ea580c;
  --sb-bg: #f3f4f6;
  --sb-bg-elevated: #ffffff;
  --sb-surface: #ffffff;
  --sb-border: #e5e7eb;
  --sb-radius-xl: 18px;
  --sb-radius-full: 999px;
  --sb-shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.12);
  --sb-text-muted: #6b7280;
}

.page-root {
  position: relative;
  min-height: 100vh;
  background: #fff7ed;
}

.page-root::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(255, 247, 237, 0.7);
  pointer-events: none;
  z-index: -1;
}

.page-root::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(148, 163, 184, 0.12) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(148, 163, 184, 0.1) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at top, black 0, transparent 65%);
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}

.sb-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (max-width: 640px) {
  .sb-container {
    padding: 0 1rem;
  }
}

.sb-section {
  padding: 5rem 0;
}

.sb-section--tight {
  padding: 3.5rem 0;
}

@media (max-width: 640px) {
  .sb-section {
    padding: 3rem 0;
  }
  
  .sb-section--tight {
    padding: 2.5rem 0;
  }
}

.sb-section__eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sb-accent);
  margin-bottom: 0.75rem;
}

.sb-section__title-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 640px) {
  .sb-section__title-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  
  .sb-section__subtitle {
    max-width: 100%;
  }
}

.sb-section__title {
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #111827;
}

/* Sections with faded orange backgrounds */
#initiatives {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(249, 115, 22, 0.12) 100%);
  color: #111827;
}

#donate {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(249, 115, 22, 0.12) 100%);
  color: #111827;
}

#initiatives .sb-section__title,
#donate .sb-section__title {
  color: #111827;
}

#initiatives .sb-section__subtitle,
#donate .sb-section__subtitle {
  color: #374151;
}

#initiatives .sb-section__eyebrow,
#donate .sb-section__eyebrow {
  color: #ea580c;
}

.sb-section__subtitle {
  max-width: 460px;
  font-size: 0.98rem;
  color: var(--sb-text-muted);
}

/* Header */
.sb-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(to bottom, #fef3c7, #ffffff);
  border-bottom: 2px solid #f97316;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.08);
}

.sb-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.6rem 0;
}

.sb-header__brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.sb-header__logo {
  width: 110px; /* Increased by ~15% */
  height: 110px; /* Increased by ~15% */
  border-radius: 999px;
  padding: 6px;
  background: radial-gradient(circle at 20% 0%, rgba(251, 191, 36, 0.7), transparent 55%),
    radial-gradient(circle at 80% 100%, rgba(249, 115, 22, 0.6), transparent 55%),
    #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px rgba(180, 83, 9, 0.45);
}

.sb-header__logo img {
  width: 90px; /* Increased by ~15% */
  height: 90px; /* Increased by ~15% */
  object-fit: contain;
  border-radius: 999px;
}

.sb-header__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sb-header__line1 {
  font-size: 0.82rem;
  font-weight: 600;
  color: #b45309;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.sb-header__line2 {
  font-size: 0.9rem;
  color: #1f2933;
}

.sb-header__nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.sb-header__nav a {
  font-size: 0.9rem;
  color: #4b5563;
  position: relative;
  padding-bottom: 0.15rem;
}

.sb-header__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sb-primary), var(--sb-accent));
  transition: width 0.22s ease;
}

.sb-header__nav a:hover::after {
  width: 100%;
}

.sb-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(249, 115, 22, 0.6);
  background-image: radial-gradient(circle at 0 0, rgba(251, 191, 36, 0.2), transparent 70%),
    radial-gradient(circle at 100% 100%, rgba(249, 115, 22, 0.2), transparent 70%),
    linear-gradient(135deg, #f97316, #ea580c);
  color: #111827;
  font-size: 0.86rem;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(248, 113, 22, 0.55);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.sb-header__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 48px rgba(234, 88, 12, 0.8);
}

.sb-header__cta span {
  font-size: 1rem;
}

.sb-header__toggle {
  display: none;
  background: transparent;
  border: 0;
  color: #1f2937;
  cursor: pointer;
  padding: 0.5rem;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.sb-header__toggle:hover {
  color: #f97316;
}

.sb-header__toggle svg {
  width: 24px;
  height: 24px;
}

.sb-header__nav--mobile {
  display: none;
  background: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 880px) {
  .sb-header__nav {
    display: none;
  }
  .sb-header__toggle {
    display: inline-flex;
    color: #1f2937;
  }
  .sb-header__nav--mobile {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem 0 1.25rem;
    border-top: 1px solid rgba(249, 115, 22, 0.2);
    margin-top: 0.5rem;
    background: #ffffff;
  }
  
  .sb-header__nav--mobile[hidden] {
    display: none !important;
  }
  .sb-header__nav--mobile a {
    font-size: 0.95rem;
    color: #374151;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
  }
  .sb-header__nav--mobile a:hover {
    color: #f97316;
  }
  .sb-header__nav--mobile .sb-header__cta {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
    padding: 0.65rem 1.5rem;
  }
}

/* Hero */
.sb-hero {
  padding: 3rem 0 4rem;
}

.sb-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 3vw, 3rem);
  align-items: center;
}

.sb-hero__pretitle {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.18rem 0.7rem 0.18rem 0.2rem;
  border-radius: 999px;
  border: 1px solid rgba(251, 191, 36, 0.4);
  background: radial-gradient(circle at 0 0, rgba(251, 191, 36, 0.24), transparent 65%),
    rgba(15, 23, 42, 0.85);
  color: #fef9c3;
  font-size: 0.78rem;
  margin-bottom: 1rem;
}

.sb-hero__pretitle-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #f97316, #e11d48);
  box-shadow: 0 12px 30px rgba(248, 113, 113, 0.65);
  font-weight: 700;
  font-size: 0.72rem;
}

.sb-hero__title {
  font-size: clamp(2.1rem, 3vw, 2.8rem);
  letter-spacing: 0.02em;
  color: #1f2937;
  margin-bottom: 0.9rem;
}

.sb-hero__title span {
  background: linear-gradient(120deg, #fbbf24, #f97316, #fb7185, #38bdf8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sb-hero__subtitle {
  max-width: 520px;
  font-size: 0.99rem;
  color: var(--sb-text-muted);
  margin-bottom: 1.6rem;
}

.sb-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 2.2rem;
}

.sb-hero__meta-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.86rem;
  color: #374151;
}

.sb-hero__meta-icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(74, 222, 128, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #bbf7d0;
  box-shadow: 0 0 0 1px rgba(22, 163, 74, 0.65);
}

.sb-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.sb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.78rem 1.5rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.sb-btn--primary {
  background-image: radial-gradient(circle at 0 0, rgba(251, 191, 36, 0.25), transparent 60%),
    linear-gradient(120deg, #f97316, #fb7185, #22d3ee);
  color: #111827;
  box-shadow: 0 18px 40px rgba(248, 113, 113, 0.7);
}

.sb-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 60px rgba(248, 113, 113, 0.9);
}

.sb-btn--ghost {
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.55);
  color: #e5e7eb;
}

.sb-btn--ghost:hover {
  background: rgba(15, 23, 42, 0.95);
}

.sb-btn__label-sub {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(248, 250, 252, 0.9);
}

.sb-hero__right {
  position: relative;
}

.sb-hero__card {
  border-radius: 26px;
  background: #ffffff;
  background-image: url("https://cdn.wallpapersafari.com/95/8/F0dmoK.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  padding: 1.35rem 1.5rem;
  overflow: hidden;
}

.sb-hero__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  z-index: 0;
  border-radius: 26px;
}

.sb-hero__card > * {
  position: relative;
  z-index: 1;
}

.sb-hero__card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.3rem;
}

.sb-hero__mandir {
  font-size: 0.8rem;
  color: #374151;
  font-weight: 600;
}

.sb-hero__mandir span {
  display: block;
  font-size: 0.72rem;
  color: #4b5563;
  font-weight: 500;
}

.sb-hero__badge {
  padding: 0.32rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(52, 211, 153, 0.75);
  font-size: 0.72rem;
  color: #bbf7d0;
  background: radial-gradient(circle at 0 0, rgba(34, 197, 94, 0.25), transparent 60%),
    rgba(15, 23, 42, 0.95);
}

.sb-hero__darshan {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(209, 213, 219, 0.9);
  margin-bottom: 1rem;
  background: #ffffff;
  padding-bottom: 0;
}

.sb-hero__darshan-img {
  height: 220px;
  background-image: url("https://cdn.wallpapersafari.com/95/8/F0dmoK.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: saturate(1.1);
  border-radius: 18px 18px 0 0;
}

.sb-hero__darshan-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.88), transparent 46%);
}

.sb-hero__darshan-caption {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #f9fafb;
}

.sb-hero__darshan-caption span:first-child {
  font-weight: 600;
}

.sb-hero__darshan-caption span:last-child {
  opacity: 0.8;
}

.sb-hero__darshan-video {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio for full video display */
  margin: 0;
  border-radius: 0 0 18px 18px;
  overflow: hidden;
  border: none;
  border-top: 1px solid rgba(209, 213, 219, 0.9);
  background: #000;
}

.sb-hero__darshan-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 1;
}

.sb-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  font-size: 0.8rem;
}

.sb-chip {
  padding: 0.38rem 0.8rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: #e5e7eb;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.sb-chip svg {
  width: 14px;
  height: 14px;
  color: #a5b4fc;
}

.sb-hero__orb {
  position: absolute;
  inset: auto;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  right: -40px;
  top: -30px;
  background:
    radial-gradient(circle at 0 0, rgba(248, 250, 252, 0.12), transparent 60%),
    radial-gradient(circle at 50% 30%, rgba(248, 113, 113, 0.65), transparent 80%),
    radial-gradient(circle at 90% 90%, rgba(59, 130, 246, 0.8), transparent 80%);
  opacity: 0.18;
  pointer-events: none;
}

@media (max-width: 880px) {
  .sb-hero {
    padding: 2.6rem 0 3.5rem;
  }
  .sb-hero__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Cards & Layout Blocks */
.sb-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.sb-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

@media (max-width: 900px) {
  .sb-grid-3,
  .sb-grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }
}

.sb-card {
  background: #ffffff;
  border-radius: var(--sb-radius-xl);
  border: 1px solid #e5e7eb;
  box-shadow: var(--sb-shadow-soft);
  padding: 1.5rem 1.6rem;
  position: relative;
  overflow: hidden;
}

.sb-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 10% 0, rgba(249, 115, 22, 0.16), transparent 60%),
    radial-gradient(circle at 90% 100%, rgba(34, 197, 94, 0.16), transparent 60%);
  opacity: 0.75;
  pointer-events: none;
}

.sb-card__inner {
  position: relative;
}

.sb-card__icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 20% 0, rgba(248, 250, 252, 0.5), transparent 60%),
    rgba(15, 23, 42, 0.8);
  margin-bottom: 0.9rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.8);
}

.sb-card__title {
  font-size: 1.02rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
  color: #111827;
}

.sb-card__text {
  font-size: 0.9rem;
  color: var(--sb-text-muted);
}

.sb-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.24rem 0.9rem 0.26rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.9);
  font-size: 0.76rem;
  color: #e5e7eb;
}

/* Mission & About */
.sb-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: 1.8rem;
  align-items: start;
}

@media (max-width: 900px) {
  .sb-about-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.sb-about__text {
  font-size: 0.95rem;
  color: var(--sb-text-muted);
}

.sb-about__text p + p {
  margin-top: 0.8rem;
}

.sb-about__list {
  margin-top: 1.15rem;
  list-style: none;
  padding: 0;
}

.sb-about__list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: #374151;
  margin-bottom: 0.55rem;
}

.sb-about__list-icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.75);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.76rem;
  color: #bbf7d0;
  margin-top: 0.1rem;
}

.sb-about__highlight {
  margin-top: 1.4rem;
  padding: 0.8rem 1rem;
  border-radius: 14px;
  background: radial-gradient(circle at 0 0, rgba(251, 191, 36, 0.18), transparent 60%),
    rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(251, 191, 36, 0.4);
  font-size: 0.85rem;
  color: #fef9c3;
}

.sb-about__side-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  padding: 1.4rem 1.5rem;
  box-shadow: var(--sb-shadow-soft);
}

.sb-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.sb-badge-soft {
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.45);
  font-size: 0.78rem;
  color: #e5e7eb;
}

/* Donation Section */
.sb-donation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 1.6rem;
  align-items: start;
}

@media (max-width: 900px) {
  .sb-donation-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

.sb-donation-bank {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  padding: 1.6rem 1.5rem;
  box-shadow: var(--sb-shadow-soft);
}

.sb-donation-bank__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.65rem;
}

.sb-donation-bank__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.8rem 1.25rem;
  font-size: 0.9rem;
}

@media (max-width: 640px) {
  .sb-donation-bank__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.sb-donation-bank__label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--sb-text-muted);
}

.sb-donation-bank__value {
  color: #111827;
  font-weight: 500;
}

.sb-donation-bank__note {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--sb-text-muted);
}

.sb-donation-options {
  background: radial-gradient(circle at 0 0, rgba(252, 211, 77, 0.2), transparent 70%),
    #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(249, 115, 22, 0.4);
  padding: 1.6rem 1.5rem;
  box-shadow: 0 16px 40px rgba(248, 163, 63, 0.35);
}

.sb-donation-options__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.sb-donation-options__text {
  font-size: 0.86rem;
  color: var(--sb-text-muted);
  margin-bottom: 1.2rem;
}

.sb-donation-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.sb-donation-preset {
  flex: 0 0 auto;
  min-width: 80px;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.9);
  font-size: 0.86rem;
  color: #e5e7eb;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  transition: all 0.18s ease;
}

.sb-donation-preset--active {
  border-color: rgba(249, 115, 22, 0.9);
  background: radial-gradient(circle at 0 0, rgba(251, 191, 36, 0.35), transparent 70%),
    linear-gradient(120deg, #f97316, #fb7185);
  color: #111827;
  box-shadow: 0 15px 35px rgba(248, 113, 113, 0.7);
}

.sb-donation-custom {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.sb-donation-custom label {
  font-size: 0.8rem;
  color: var(--sb-text-muted);
}

.sb-donation-custom-input {
  display: flex;
  align-items: center;
  background: rgba(15, 23, 42, 0.96);
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 0.4rem 0.75rem;
  gap: 0.45rem;
}

.sb-donation-custom-input span {
  font-size: 0.9rem;
  color: #9ca3af;
}

.sb-donation-custom-input input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #f9fafb;
  font-size: 0.9rem;
}

.sb-donation-note {
  font-size: 0.78rem;
  color: var(--sb-text-muted);
  margin-bottom: 0.9rem;
}

.sb-donation-paypal-button {
  margin-top: 0.45rem;
}

/* Trustees, Gallery, Devotees */
.sb-trustees-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

@media (max-width: 900px) {
  .sb-trustees-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .sb-trustees-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.sb-trustee-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  padding: 1.2rem 1.3rem;
}

.sb-trustee-name {
  font-size: 0.98rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.18rem;
}

.sb-trustee-role {
  font-size: 0.8rem;
  color: var(--sb-text-muted);
  margin-bottom: 0.5rem;
}

.sb-trustee-note {
  font-size: 0.82rem;
  color: var(--sb-text-muted);
}

.sb-gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1.1fr;
  gap: 1rem;
}

@media (max-width: 900px) {
  .sb-gallery-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.sb-gallery-main,
.sb-gallery-side {
  display: grid;
  gap: 0.9rem;
}

.sb-gallery-main {
  grid-template-rows: 1.6fr 1fr;
}

.sb-gallery-side {
  grid-template-rows: repeat(2, 1fr);
}

.sb-gallery-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.55);
  min-height: 140px;
  background-position: center;
  background-size: cover;
}

.sb-gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.8), transparent 60%);
}

.sb-gallery-caption {
  position: absolute;
  left: 0.9rem;
  bottom: 0.7rem;
  right: 0.9rem;
  font-size: 0.8rem;
  color: #e5e7eb;
  z-index: 1;
}

.sb-gallery-item--1 {
  background-image: url("https://i0.wp.com/saiuniverse.sathyasai.org/cms/wp-content/uploads/2021/04/IMG_20210114_182657-copy.jpg?fit=800%2C600");
}

.sb-gallery-item--2 {
  background-image: url("https://i.ytimg.com/vi/zgJs9yK-b-8/maxresdefault.jpg");
}

.sb-gallery-item--3 {
  background-image: url("https://staging.chinmayamission.com/_next/image?url=https%3A%2F%2Fdr806xi6wxj9.cloudfront.net%2Fuploads%2F3_bv_kids_with_Guruji_a579cc4bb5.JPG&w=2048&q=75");
}

.sb-gallery-item--4 {
  background-image: url("https://shirdibabaglobalmauritius.org/wp-content/uploads/2025/09/470193851_122135044760385601_2268778550933343751_n-1024x576.jpg");
}

/* Lightbox styles for gallery zoom */
.sb-lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 80;
}

.sb-lightbox-overlay--visible {
  display: flex;
}

.sb-lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}

.sb-lightbox-image {
  display: block;
  max-width: 100%;
  max-height: 90vh;
}

@keyframes sb-bg-slideshow {
  0% {
    background-position: center center;
  }
  50% {
    background-position: center 60%;
  }
  100% {
    background-position: center center;
  }
}

/* Sai Baba Images Section */
.sb-section--sai-images {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.08) 0%, rgba(249, 115, 22, 0.05) 100%);
}

.sb-sai-images-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.sb-sai-image-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid rgba(249, 115, 22, 0.2);
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.sb-sai-image-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(249, 115, 22, 0.2);
}

.sb-sai-image-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

@media (max-width: 640px) {
  .sb-sai-images-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .sb-sai-image-item img {
    height: 200px;
  }
}

/* Lightbox for Sai Baba Images */
.sb-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 2rem;
  cursor: pointer;
}

.sb-lightbox__content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  cursor: default;
}

.sb-lightbox__content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.sb-lightbox__close {
  position: absolute;
  top: -40px;
  right: 0;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background 0.2s ease;
}

.sb-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Walkthrough Section */
.sb-section--walkthrough {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.08) 0%, rgba(249, 115, 22, 0.05) 100%);
}

.sb-walkthrough-container {
  margin-top: 2rem;
}

.sb-walkthrough-preview {
  max-width: 800px;
  margin: 0 auto;
}

.sb-walkthrough-thumbnail {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid rgba(249, 115, 22, 0.2);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sb-walkthrough-thumbnail:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(249, 115, 22, 0.25);
}

.sb-walkthrough-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.sb-walkthrough-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: transform 0.3s ease;
}

.sb-walkthrough-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.sb-walkthrough-play-btn svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.sb-walkthrough-description {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.95rem;
  color: var(--sb-text-muted);
}

/* Video Modal */
.sb-video-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 70;
  padding: 1rem;
}

.sb-video-modal-backdrop--visible {
  display: flex;
}

.sb-video-modal {
  width: min(90vw, 1000px);
  max-height: 90vh;
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.sb-video-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.95);
  color: #111827;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  z-index: 10;
  transition: background 0.2s ease, transform 0.2s ease;
}

.sb-video-modal__close:hover {
  background: #ffffff;
  transform: scale(1.1);
}

.sb-video-modal__content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.sb-video-modal__title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #111827;
  text-align: center;
}

.sb-video-modal__video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}

.sb-video-modal__video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 640px) {
  .sb-video-modal {
    width: 95vw;
    max-height: 85vh;
  }
  
  .sb-video-modal__content {
    padding: 1.5rem 1rem;
  }
  
  .sb-video-modal__title {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  .sb-walkthrough-play-btn {
    width: 60px;
    height: 60px;
  }
}

.sb-devotee-grid {
  display: grid;
  grid-template-columns: 1.3fr 1.1fr;
  gap: 1.6rem;
}

@media (max-width: 900px) {
  .sb-devotee-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.sb-testimonials {
  display: grid;
  gap: 1rem;
}

.sb-testimonial {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  padding: 1.2rem 1.3rem;
}

.sb-testimonial__quote {
  font-size: 0.88rem;
  color: #374151;
  margin-bottom: 0.7rem;
}

.sb-testimonial__name {
  font-size: 0.82rem;
  color: var(--sb-text-muted);
}

.sb-devotee-cta {
  background: radial-gradient(circle at 0 0, rgba(251, 191, 36, 0.2), transparent 70%),
    #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(249, 115, 22, 0.4);
  padding: 1.4rem 1.5rem;
}

.sb-devotee-cta p {
  font-size: 0.9rem;
  color: #374151;
  margin-bottom: 0.8rem;
}

.sb-devotee-cta small {
  font-size: 0.78rem;
  color: var(--sb-text-muted);
}

/* Contact */
.sb-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 1.7rem;
}

@media (max-width: 900px) {
  .sb-contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.sb-contact-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  padding: 1.4rem 1.5rem;
}

.sb-contact-row {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.9rem;
}

.sb-contact-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--sb-text-muted);
}

.sb-contact-value {
  color: #111827;
}

.sb-contact-form {
  display: grid;
  gap: 0.75rem;
}

.sb-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.sb-field label {
  font-size: 0.8rem;
  color: #111827;
}

.sb-input,
.sb-textarea {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  padding: 0.55rem 0.75rem;
  color: #111827;
  font-size: 0.9rem;
  outline: none;
}

.sb-input:focus,
.sb-textarea:focus {
  border-color: rgba(96, 165, 250, 0.8);
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.7);
}

.sb-textarea {
  min-height: 120px;
  resize: vertical;
}

.sb-footer {
  border-top: 1px solid #e5e7eb;
  padding: 1.3rem 0 1.6rem;
  margin-top: 2rem;
  font-size: 0.8rem;
  color: var(--sb-text-muted);
}

.sb-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.sb-footer__links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.sb-footer__links a {
  color: var(--sb-text-muted);
}

/* Overlay / Modals */
.sb-modal-backdrop {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.2), rgba(15, 23, 42, 0.4));
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 60;
}

.sb-modal-backdrop--visible {
  display: flex;
}

.sb-modal {
  width: min(440px, 100% - 2.5rem);
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.28);
  padding: 1.6rem 1.7rem 1.4rem;
  position: relative;
}

.sb-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.9rem;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  color: #6b7280;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.86rem;
}

.sb-modal__title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.sb-modal__subtitle {
  font-size: 0.86rem;
  color: var(--sb-text-muted);
  margin-bottom: 1rem;
}

.sb-modal__footer {
  margin-top: 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: var(--sb-text-muted);
}

.sb-modal__status {
  font-size: 0.8rem;
}

.sb-modal__status--success {
  color: #bbf7d0;
}

.sb-modal__status--error {
  color: #fecaca;
}

.sb-modal__thankyou {
  text-align: center;
  padding: 1rem 0.5rem 0.5rem;
}

.sb-modal__thankyou-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.sb-modal__thankyou-amount {
  font-size: 1.05rem;
  color: #fbbf24;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.sb-modal__thankyou-text {
  font-size: 0.9rem;
  color: var(--sb-text-muted);
  margin-bottom: 1rem;
}

.sb-modal__thankyou-close {
  margin-top: 0.3rem;
}

@media (max-width: 480px) {
  .sb-modal {
    padding: 1.25rem 1.2rem 1.1rem;
  }
}

/* Additional Mobile Responsive Styles */
@media (max-width: 640px) {
  .sb-hero__darshan-video {
    width: 100%;
    margin: 0;
    padding-top: 56.25%;
  }
  
  .sb-hero__darshan-caption {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    font-size: 0.75rem;
    bottom: 0.6rem;
  }
  
  .sb-header__inner {
    padding: 0.75rem 0;
  }
  
  .sb-header__logo {
    width: 83px; /* Increased by ~15% */
    height: 83px; /* Increased by ~15% */
  }
  
  .sb-header__logo img {
    width: 67px; /* Increased by ~15% */
    height: 67px; /* Increased by ~15% */
  }
  
  .sb-header__line1 {
    font-size: 0.72rem;
  }
  
  .sb-header__line2 {
    font-size: 0.82rem;
  }
  
  .sb-header__cta {
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem;
  }
  
  .sb-hero__meta {
    flex-direction: column;
    gap: 0.9rem;
    margin-bottom: 1.8rem;
  }
  
  .sb-hero__meta-item {
    font-size: 0.8rem;
  }
  
  .sb-hero__actions {
    flex-direction: column;
    width: 100%;
  }
  
  .sb-hero__actions .sb-btn {
    width: 100%;
    justify-content: center;
  }
  
  .sb-header__nav--mobile a {
    color: #4b5563;
  }
  
  .sb-donation-presets {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .sb-donation-custom-input {
    width: 100%;
  }
  
  .sb-card {
    padding: 1.2rem;
  }
  
  .sb-card__title {
    font-size: 0.95rem;
  }
  
  .sb-card__text {
    font-size: 0.85rem;
  }
}


