/* ============================================================
   JGBST - Jai Ganesha Bhakthi Samithi Telangana
   Main Stylesheet
============================================================ */

/* ---- CSS Variables ---- */
:root {
  --saffron: #FF6B00;
  --saffron-light: #FF8C33;
  --saffron-dark: #CC5500;
  --gold: #FFB800;
  --gold-light: #FFD700;
  --green: #2D7D32;
  --green-light: #4CAF50;
  --green-pale: #E8F5E9;
  --dark: #1A1A2E;
  --dark-2: #16213E;
  --text: #333344;
  --text-light: #666688;
  --white: #FFFFFF;
  --off-white: #FAFAF7;
  --border: #E0E0E8;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.18);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.3s ease;
  --font-body: 'Poppins', sans-serif;
  --font-heading: 'Cinzel', serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--off-white);
  overflow-x: hidden;
  line-height: 1.7;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.inline-icon {
  width: 1.25em;
  height: 1.25em;
  vertical-align: text-bottom;
  display: inline-block;
}

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

.mt-20 {
  margin-top: 20px;
}

.hidden {
  display: none !important;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255, 107, 0, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--saffron-dark), var(--saffron));
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 107, 0, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}

.btn-white-orange {
  background: var(--white);
  color: var(--saffron);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-white-orange:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline-green {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline-green:hover {
  background: var(--green);
  color: var(--white);
}

.btn-outline-green-sm {
  background: transparent;
  color: var(--green-light);
  border: 1.5px solid var(--green-light);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
  transition: var(--transition);
  margin-top: 12px;
}

.btn-outline-green-sm:hover {
  background: var(--green-light);
  color: var(--white);
}

.full-width {
  width: 100%;
  justify-content: center;
}

/* ============================================================
   HEADER / NAVIGATION
============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  padding: 0;
}

.site-header.scrolled {
  background: rgba(26, 26, 46, 0.97);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1300px;
  margin: 0 auto;
}

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

.brand-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.brand-logo-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04) translateX(-1%);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 1px;
}

.brand-tagline {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
  max-width: 200px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.08);
}

.btn-join {
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
  box-shadow: 0 4px 16px rgba(255, 107, 0, 0.3);
}

.btn-join:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.45);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(26, 26, 46, 0.98);
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav.open {
  display: flex;
}

.mobile-link {
  color: rgba(255, 255, 255, 0.85);
  padding: 12px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 1rem;
  font-weight: 500;
}

.mobile-link:hover {
  color: var(--gold-light);
}

.fb-link {
  color: #4267B2 !important;
  font-weight: 700;
  border-bottom: none;
  margin-top: 8px;
}

/* ============================================================
   PARTICLES (shared across sections)
============================================================ */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.15;
  }

  50% {
    opacity: 0.3;
  }

  100% {
    transform: translateY(-120vh) rotate(360deg);
    opacity: 0;
  }
}

/* ============================================================
   HERO SECTION
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(160deg, #0D1B2A 0%, #1B2838 30%, #2D1B00 70%, #1A0A00 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255, 107, 0, 0.12) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 0 24px;
  padding-top: 100px;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--green-light);
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(255, 107, 0, 0.3);
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  backdrop-filter: blur(4px);
}

.hero-scroll-down {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll-down a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.4rem;
  animation: bounce 2s infinite;
  display: block;
}

@keyframes bounce {

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

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

/* ============================================================
   ANNOUNCEMENT / TICKER
============================================================ */
.announcement-bar {
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-wrap {
  overflow: hidden;
}

.ticker {
  display: inline-flex;
  gap: 60px;
  animation: ticker 30s linear infinite;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
}

.ticker span {
  flex-shrink: 0;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ============================================================
   STATS SECTION
============================================================ */
.stats-section {
  background: var(--dark);
  padding: 60px 0;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.stat-card {
  flex: 0 1 calc(25% - 18px);
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: var(--transition);
}

.stat-card:hover {
  background: rgba(255, 107, 0, 0.1);
  border-color: rgba(255, 107, 0, 0.3);
  transform: translateY(-4px);
}

.stat-icon {
  font-size: 2rem;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  margin-top: 8px;
  font-weight: 400;
}

/* ============================================================
   SECTION HEADER (shared)
============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-chip {
  display: inline-block;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: var(--white);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.light-chip {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.25;
}

.section-header.light .section-title {
  color: var(--white);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.light-desc {
  color: rgba(255, 255, 255, 0.75);
}

/* ============================================================
   ABOUT SECTION
============================================================ */
.about-section {
  padding: 100px 0;
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
}

.about-img {
  width: 100%;
  height: 480px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: var(--white);
  padding: 14px 22px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 20px rgba(45, 125, 50, 0.4);
}

.about-content h3 {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.8;
}

.about-highlights {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}

.highlight i {
  color: var(--green-light);
  font-size: 1rem;
}

/* ============================================================
   MISSION SECTION
============================================================ */
.mission-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(160deg, #0D1B2A 0%, #1A2B1A 100%);
  overflow: hidden;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.mission-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.mission-card:hover {
  background: rgba(255, 107, 0, 0.1);
  border-color: rgba(255, 107, 0, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(255, 107, 0, 0.15);
}

.mission-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
  display: block;
}

.mission-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.mission-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ============================================================
   WHY CLAY SECTION
============================================================ */
.why-clay-section {
  padding: 100px 0;
  background: var(--white);
}

.comparison-wrap {
  display: flex;
  gap: 32px;
  align-items: stretch;
  overflow: visible;
  margin-bottom: 60px;
}

.compare-card {
  flex: 1;
  padding: 40px 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.compare-card.clay {
  background: linear-gradient(160deg, #E8F5E9, #F1FBF1);
  border: 2px solid var(--green-light);
}

.compare-card.pop {
  background: linear-gradient(160deg, #FFF8F0, #FFF0E8);
  border: 2px solid #FF7043;
}

.compare-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5%;
  padding: 0;
  position: relative;
  z-index: 2;
}

.vs-circle {
  width: 60px;
  height: 60px;
  background: var(--dark);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.compare-header {
  text-align: center;
  margin-bottom: 28px;
}

.compare-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
  display: block;
}

.compare-header h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.compare-badge {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
}

.compare-badge.good {
  background: var(--green-light);
  color: var(--white);
}

.compare-badge.bad {
  background: #FF7043;
  color: var(--white);
}

.compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.5;
}

.compare-card.clay .compare-list li i {
  color: var(--green-light);
  margin-top: 3px;
}

.compare-card.pop .compare-list li i {
  color: #FF5722;
  margin-top: 3px;
}

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

.impact-card {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}

.impact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.impact-card i {
  font-size: 2.2rem;
  color: var(--saffron-light);
  margin-bottom: 16px;
  display: block;
}

.impact-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 10px;
}

.impact-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============================================================
   ACTIVITIES SECTION
============================================================ */
.activities-section {
  padding: 100px 0;
  background: var(--off-white);
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.activity-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.activity-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.activity-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.activity-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.activity-card:hover .activity-img-wrap img {
  transform: scale(1.08);
}

.activity-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: var(--white);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.activity-body {
  padding: 24px;
}

.activity-body h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.activity-body p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============================================================
   GALLERY SECTION
============================================================ */
.gallery-section {
  padding: 100px 0;
  background: var(--dark);
}

.gallery-section .section-title {
  color: var(--white);
}

.gallery-section .section-desc {
  color: rgba(255, 255, 255, 0.65);
}

.gallery-section .section-chip {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.gallery-slider {
  padding-bottom: 60px;
  width: 100%;
}

.gallery-slider .swiper-slide {
  height: 450px;
}

@media (max-width: 768px) {
  .gallery-slider .swiper-slide {
    height: 350px;
  }
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  height: 100%;
}

.gallery-slider .swiper-button-next,
.gallery-slider .swiper-button-prev {
  color: var(--white);
  background: rgba(255, 107, 0, 0.7);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: var(--transition);
}

.gallery-slider .swiper-button-next:after,
.gallery-slider .swiper-button-prev:after {
  font-size: 1.4rem;
  font-weight: bold;
}

.gallery-slider .swiper-button-next:hover,
.gallery-slider .swiper-button-prev:hover {
  background: var(--saffron);
  transform: scale(1.1);
}

.gallery-slider .swiper-pagination-bullet-active {
  background: var(--gold);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
}

/* ============================================================
   CTA SECTION
============================================================ */
.cta-section {
  position: relative;
  padding: 50px 0;
  background: linear-gradient(160deg, #CC5500 0%, #FF6B00 40%, #FFB800 100%);
  overflow: hidden;
  text-align: center;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-icon {
  margin-bottom: 20px;
  display: block;
  animation: sway 3s ease-in-out infinite;
}

.cta-icon-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto;
}

@keyframes sway {

  0%,
  100% {
    transform: rotate(-5deg);
  }

  50% {
    transform: rotate(5deg);
  }
}

.cta-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  margin-bottom: 40px;
  line-height: 1.8;
}

.cta-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.cta-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.step-num {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
}

.cta-step p {
  font-size: 0.82rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  max-width: 90px;
  text-align: center;
  line-height: 1.3;
}

.cta-arrow {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
}

/* ============================================================
   PLEDGE SECTION
============================================================ */
.pledge-section {
  padding: 80px 0;
  background: var(--green-pale);
}

.pledge-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 56px 60px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(76, 175, 80, 0.2);
  max-width: 760px;
  margin: 0 auto;
}

.pledge-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}

.pledge-card h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 20px;
}

.pledge-text {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.9;
  font-style: italic;
  margin-bottom: 32px;
  border-left: 4px solid var(--green-light);
  padding: 16px 20px;
  background: var(--green-pale);
  border-radius: var(--radius-sm);
  text-align: left;
}

.pledge-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 460px;
  margin: 0 auto 24px;
}

.pledge-form input {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid var(--border);
  border-radius: 50px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  outline: none;
  transition: var(--transition);
}

.pledge-form input:focus {
  border-color: var(--green-light);
}

.pledge-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--green);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 16px;
}

.pledge-success i {
  font-size: 2.5rem;
  color: var(--green-light);
}

.pledgers-count {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 16px;
}

.pledgers-count i {
  color: var(--saffron);
}

/* ============================================================
   CONTACT SECTION
============================================================ */
.contact-section {
  display: flex;
  padding: 100px 0;
  background: var(--white);
}

.contact-grid {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
}

.contact-item a:hover {
  color: var(--saffron);
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-btn.facebook {
  background: #1877F2;
  color: var(--white);
}

.social-btn.facebook:hover {
  background: #0D65D9;
  transform: translateX(4px);
}

.contact-form-wrap h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 24px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--off-white);
  outline: none;
  transition: var(--transition);
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--saffron);
  background: var(--white);
}

.form-group select {
  cursor: pointer;
}

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--green);
  text-align: center;
  padding: 32px;
  background: var(--green-pale);
  border-radius: var(--radius);
  border: 2px solid var(--green-light);
}

.form-success i {
  font-size: 2.5rem;
}

.form-success p {
  font-weight: 600;
  font-size: 1rem;
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: var(--dark-2);
}

.footer-top {
  padding: 80px 0 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo .om-symbol {
  font-size: 2rem;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--gold-light);
}

.footer-logo span {
  display: block;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 160px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 10px;
}

.footer-motto {
  color: var(--green-light) !important;
  font-weight: 600 !important;
}

.footer-links-col h5 {
  font-family: var(--font-heading);
  color: var(--gold-light);
  font-size: 1rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links-col a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  margin-bottom: 10px;
  transition: var(--transition);
}

.footer-links-col a:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.footer-links-col p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  line-height: 1.7;
}

.footer-pledge-text {
  font-style: italic;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom-inner p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.82rem;
}

/* ============================================================
   SCROLL TO TOP BUTTON
============================================================ */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  box-shadow: 0 4px 20px rgba(255, 107, 0, 0.4);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
}

.scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(255, 107, 0, 0.5);
}

/* ============================================================
   RESPONSIVE – TABLET (≤ 1024px)
============================================================ */
@media (max-width: 1024px) {

  .stat-card {
    flex: 0 1 calc(50% - 12px);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-img {
    height: 340px;
  }

  .mission-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .activities-grid {
    grid-template-columns: repeat(2, 1fr);
  }


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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pledge-card {
    padding: 40px 32px;
  }

  .comparison-wrap {
    flex-direction: column;
  }

  .compare-vs {
    width: 100%;
    height: 0;
    padding: 0;
  }

  .impact-cards {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   RESPONSIVE – MOBILE (≤ 768px)
============================================================ */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .brand-tagline {
    display: none;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-badges {
    gap: 8px;
  }

  .badge {
    font-size: 0.78rem;
    padding: 6px 12px;
  }

  .stats-grid {
    gap: 16px;
  }

  .stat-card {
    flex: 0 1 calc(50% - 8px);
  }

  .stat-card {
    padding: 24px 16px;
  }

  .stat-number {
    font-size: 2rem;
  }

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

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }

  .gallery-item--large {
    grid-column: span 1;
  }

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

  .cta-steps {
    gap: 12px;
  }

  .cta-arrow {
    display: none;
  }

  .pledge-card {
    padding: 32px 20px;
  }

  .pledge-text {
    text-align: left;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .comparison-wrap {
    box-shadow: none;
  }

  .compare-card {
    border-radius: var(--radius);
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-desc {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.7rem;
  }



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

  .about-img {
    height: 260px;
  }
}

/* ============================================================
   AOS REVERSE ANIMATION DIRECTION
============================================================ */
/* Reverse upward fade animations when scrolling up */
html.scroll-up [data-aos="fade-up"] {
  transform: translate3d(0, -100px, 0);
}

/* Ensure the active state remains neutral */
html.scroll-up [data-aos="fade-up"].aos-animate {
  transform: translateZ(0);
}