/* ============================================================
   SHRI AADI DEV THEME - MAIN STYLESHEET (main.css)
   Design System: Spiritual + Premium + NGO Trust + Modern Donation
   ============================================================ */

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

:root {
  /* Spiritual Indian NGO Palette */
  --primary: #D35400;         /* Deep Saffron / Bhagwa */
  --primary-light: #E67E22;   /* Warm Saffron */
  --primary-dark: #A04000;    /* Dark Saffron */
  --gold: #D4AF37;            /* Temple Gold */
  --gold-light: #F39C12;      /* Bright Gold */
  --gold-subtle: #FCF3CF;     /* Soft Gold Tint */
  --maroon: #800000;          /* Sacred Maroon */
  --maroon-dark: #4A0E17;     /* Deep Divine Maroon */
  --dark: #1E1B18;            /* Charcoal / Rich Temple Earth */
  --dark-brown: #2D1E12;      /* Rich Indian Wood / Temple Pattern */
  --bg-ivory: #FDFBF7;        /* Warm Ivory / Ganga Sand */
  --bg-cream: #FAF4EB;        /* Sacred Cream */
  --bg-white: #FFFFFF;
  --text-main: #2C2825;       /* Main readable text */
  --text-muted: #6B635B;      /* Secondary text */
  --border-color: #E8DFD1;    /* Subtle Gold Border */
  --border-gold: rgba(212, 175, 55, 0.4);
  
  /* Typography */
  --font-heading: 'Cinzel', 'Noto Sans Devanagari', serif;
  --font-hindi: 'Noto Sans Devanagari', sans-serif;
  --font-body: 'Poppins', 'Noto Sans Devanagari', sans-serif;

  /* Elevations */
  --shadow-sm: 0 2px 8px rgba(44, 30, 18, 0.06);
  --shadow-md: 0 6px 20px rgba(44, 30, 18, 0.09);
  --shadow-lg: 0 14px 35px rgba(44, 30, 18, 0.14);
  --shadow-gold: 0 6px 25px rgba(211, 84, 0, 0.25);
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.hindi-heading, .section-title h2, .hero-title, .page-hero h1 {
  font-family: var(--font-hindi), var(--font-heading);
  font-weight: 700;
}

p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

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

a:hover {
  color: var(--maroon);
}

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   BUTTONS & UI COMPONENTS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-hindi), var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  box-shadow: var(--shadow-sm);
  line-height: 1.4;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff !important;
  border-color: var(--primary);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(211, 84, 0, 0.35);
  color: #fff !important;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--dark) !important;
  font-weight: 700;
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary) !important;
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff !important;
  transform: translateY(-2px);
}

.btn-white-outline {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #FFFFFF;
  color: #FFFFFF !important;
  backdrop-filter: blur(4px);
}

.btn-white-outline:hover {
  background: #FFFFFF;
  color: var(--primary-dark) !important;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-full {
  width: 100%;
}

.btn-whatsapp {
  background: #25D366;
  color: #fff !important;
  font-weight: 600;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
}

.btn-whatsapp:hover {
  background: #1EBE5D;
  transform: translateY(-2px);
}

/* ============================================================
   HEADER & STICKY NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #FFFFFF;
  border-bottom: 2px solid var(--border-gold);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.site-header.scrolled {
  padding: 8px 0;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.site-branding {
  display: flex;
  align-items: center;
}

.site-logo-text {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  font-size: 2.2rem;
  line-height: 1;
  color: var(--primary);
  filter: drop-shadow(0 2px 4px rgba(211, 84, 0, 0.3));
}

.logo-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.logo-title span {
  color: var(--primary);
}

.logo-tagline {
  display: block;
  font-family: var(--font-hindi);
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 1px;
}

.main-navigation ul {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
}

.main-navigation a {
  font-family: var(--font-hindi), var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  position: relative;
  padding: 6px 0;
}

.main-navigation a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.main-navigation a:hover,
.main-navigation li.current-menu-item a {
  color: var(--primary);
}

.main-navigation a:hover::after,
.main-navigation li.current-menu-item a::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-donate-btn {
  padding: 10px 24px;
  font-size: 0.95rem;
  animation: pulse-glow 2.5s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(211, 84, 0, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(211, 84, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(211, 84, 0, 0); }
}

/* Mobile Hamburger */
.hamburger-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.hamburger-btn .bar {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--dark);
  border-radius: 3px;
  transition: var(--transition);
}

/* Mobile Nav Drawer */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: var(--bg-cream);
  z-index: 1100;
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
  transition: right 0.35s ease;
  overflow-y: auto;
}

.mobile-nav-drawer.active {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--border-color);
}

.mobile-nav-close {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav-link {
  font-family: var(--font-hindi);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
}

.mobile-nav-link:hover {
  background: var(--gold-subtle);
  color: var(--primary);
}

/* ============================================================
   PAGE HERO BANNER (Global Sub-pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, #2D1E12 0%, #1A0F08 100%);
  color: #FFFFFF;
  padding: 60px 0;
  text-align: center;
  position: relative;
  border-bottom: 3px solid var(--gold);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--gold) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.08;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: 2.6rem;
  color: var(--gold);
  margin-bottom: 8px;
  font-family: var(--font-hindi);
}

.page-hero p {
  color: #E0D6C8;
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto;
}

.breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 15px;
  color: var(--gold-light);
}

.breadcrumb a {
  color: #FFFFFF;
}

.breadcrumb a:hover {
  color: var(--gold);
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section-padding {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 50px;
}

.section-title.left-align {
  text-align: left;
  margin: 0 0 30px;
}

.section-subtitle-tag {
  display: inline-block;
  font-family: var(--font-hindi);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(211, 84, 0, 0.1);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.section-title h2 {
  font-size: 2.3rem;
  color: var(--dark);
  position: relative;
  padding-bottom: 15px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  border-radius: 3px;
}

.section-title.left-align h2::after {
  left: 0;
  transform: none;
}

.section-title p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-top: 10px;
}

/* Dark Pattern Background */
.dark-pattern-bg {
  background: linear-gradient(135deg, #2D1E12 0%, #1B0F07 100%);
  color: #FFFFFF;
  position: relative;
}

.dark-pattern-bg h1, 
.dark-pattern-bg h2, 
.dark-pattern-bg h3 {
  color: var(--gold);
}

.dark-pattern-bg p {
  color: #D6CCC0;
}

/* ============================================================
   HERO SECTION (HOME)
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(26, 15, 8, 0.72), rgba(45, 30, 18, 0.78)), 
              url('https://images.unsplash.com/photo-1542304910-410a8d799042?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  text-align: center;
  color: #FFFFFF;
  padding: 80px 20px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(20, 10, 5, 0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.hero-emblem {
  font-size: 3.5rem;
  color: var(--gold);
  margin-bottom: 15px;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
}

.hero-title {
  font-size: 3.2rem;
  color: var(--gold);
  margin-bottom: 15px;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6);
  font-family: var(--font-hindi);
}

.hero-title span {
  display: block;
  color: #FFFFFF;
  font-size: 2.5rem;
  margin-top: 5px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #F0E6D8;
  max-width: 750px;
  margin: 0 auto 35px;
  line-height: 1.6;
  font-family: var(--font-hindi);
}

.hero-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   TRUST BAR / STATISTICS
   ============================================================ */
.trust-bar {
  background: #FFFFFF;
  padding: 35px 0;
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 10;
  margin-top: -30px;
  border-radius: var(--radius-md);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item {
  padding: 10px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border-color);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat-label {
  font-family: var(--font-hindi);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
}

/* ============================================================
   ABOUT SECTION (2-Column)
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 420px;
  object-fit: cover;
  border: 4px solid #FFFFFF;
}

.about-image-wrap::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 2px dashed var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--maroon) 100%);
  color: #FFFFFF;
  padding: 18px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.about-badge-num {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.about-badge-text {
  font-family: var(--font-hindi);
  font-size: 0.85rem;
}

.about-content h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--dark);
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 25px 0;
}

.point-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-hindi);
  font-weight: 600;
  color: var(--dark);
}

.point-icon {
  color: var(--primary);
  font-size: 1.2rem;
}

/* ============================================================
   FOCUS AREAS (6 Cards Grid)
   ============================================================ */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.focus-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 35px 25px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.focus-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  opacity: 0;
  transition: var(--transition);
}

.focus-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold);
}

.focus-card:hover::before {
  opacity: 1;
}

.focus-icon-circle {
  width: 75px;
  height: 75px;
  background: var(--bg-cream);
  color: var(--primary);
  font-size: 2.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 2px solid var(--border-gold);
  transition: var(--transition);
}

.focus-card:hover .focus-icon-circle {
  background: var(--primary);
  color: #FFFFFF;
  transform: rotate(10deg);
}

.focus-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.focus-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ============================================================
   PROGRAMS & PROJECTS CARDS
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.sad-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.sad-card-media {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.sad-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.sad-card:hover .sad-card-media img {
  transform: scale(1.06);
}

.status-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-hindi);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.badge-completed {
  background: #27AE60;
  color: #fff;
}

.badge-ongoing {
  background: var(--primary);
  color: #fff;
}

.badge-upcoming {
  background: #2980B9;
  color: #fff;
}

.sad-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.sad-card-category {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.sad-card-title {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.sad-card-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  flex-grow: 1;
  margin-bottom: 18px;
}

.sad-card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-color);
  padding-top: 12px;
  margin-bottom: 15px;
}

/* ============================================================
   TABS SYSTEM (Projects / Filter)
   ============================================================ */
.filter-tabs-wrapper {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn, .filter-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  font-family: var(--font-hindi);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn:hover, .filter-btn:hover,
.tab-btn.active, .filter-btn.active {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   DONATION CTA BAR (Home / Single)
   ============================================================ */
.donation-cta-bar {
  background: linear-gradient(135deg, #2D1E12 0%, #1A0F08 100%);
  padding: 60px 0;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}

.donation-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.donation-cta-text h2 {
  color: var(--gold);
  font-size: 2rem;
  margin-bottom: 8px;
}

.donation-cta-text p {
  color: #E0D6C8;
  font-size: 1.05rem;
  margin: 0;
}

.quick-donation-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.pill-amount {
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--gold);
  color: #FFFFFF;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: var(--transition);
}

.pill-amount:hover, .pill-amount.active {
  background: var(--gold);
  color: var(--dark);
}

/* ============================================================
   DONATION PAGE & CHECKOUT
   ============================================================ */
.donation-page-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 40px;
  margin-top: 40px;
}

.donation-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border-top: 5px solid var(--primary);
}

.donation-step-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border-color);
}

.step-num {
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
}

.amount-selector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 25px;
}

.amount-btn {
  padding: 16px;
  text-align: center;
  background: var(--bg-ivory);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--dark);
  transition: var(--transition);
}

.amount-btn:hover, .amount-btn.active {
  border-color: var(--primary);
  background: rgba(211, 84, 0, 0.08);
  color: var(--primary);
}

.donation-type-toggle {
  display: flex;
  background: var(--bg-cream);
  border-radius: var(--radius-full);
  padding: 5px;
  margin-bottom: 25px;
}

.toggle-option {
  flex: 1;
  text-align: center;
  padding: 10px;
  border-radius: var(--radius-full);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-hindi);
}

.toggle-option.active {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

/* Forms */
.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

label {
  display: block;
  font-family: var(--font-hindi);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 6px;
  color: var(--dark);
}

.required {
  color: var(--maroon);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="url"],
select,
textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: #FFFFFF;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--dark);
  transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(211, 84, 0, 0.15);
}

.trust-sidebar {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.trust-box {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.trust-feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.trust-feature:last-child {
  margin-bottom: 0;
}

.trust-feature-icon {
  font-size: 1.8rem;
  color: var(--primary);
  line-height: 1;
}

.trust-feature h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.trust-feature p {
  font-size: 0.9rem;
  margin: 0;
}

/* ============================================================
   MEMBERS / TEAM SECTION
   ============================================================ */
.members-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.member-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 35px 25px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

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

.member-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  border: 4px solid var(--gold);
  box-shadow: var(--shadow-md);
}

.member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-name {
  font-size: 1.35rem;
  margin-bottom: 4px;
}

.member-role {
  font-family: var(--font-hindi);
  font-size: 0.95rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 15px;
}

.member-bio {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.member-social {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.member-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-cream);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}

.member-social a:hover {
  background: var(--primary);
  color: #FFFFFF;
}

/* ============================================================
   GALLERY & LIGHTBOX
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  height: 260px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.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.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-caption {
  color: #FFFFFF;
  font-family: var(--font-hindi);
  font-weight: 600;
  font-size: 1rem;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  max-width: 900px;
  max-height: 85vh;
  position: relative;
}

.lightbox-content img {
  max-height: 80vh;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  color: #fff;
  font-size: 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
}

/* ============================================================
   ABOUT PAGE TIMELINE
   ============================================================ */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 40px auto;
  padding: 20px 0;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background: var(--gold);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
}

.timeline-item.left {
  left: 0;
  text-align: right;
}

.timeline-item.right {
  left: 50%;
  text-align: left;
}

.timeline-dot {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--primary);
  border: 4px solid #FFFFFF;
  border-radius: 50%;
  top: 25px;
  z-index: 1;
  box-shadow: var(--shadow-sm);
}

.timeline-item.left .timeline-dot {
  right: -10px;
}

.timeline-item.right .timeline-dot {
  left: -10px;
}

.timeline-card {
  padding: 24px;
  background: #FFFFFF;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
}

.contact-info-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 35px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.contact-detail-row {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-detail-icon {
  font-size: 1.6rem;
  color: var(--primary);
  line-height: 1;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #1C1008;
  color: #FFFFFF;
  border-top: 4px solid var(--gold);
}

.footer-top {
  padding: 70px 0 40px;
}

.footer-widgets {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 50px;
}

.footer-logo-text {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 15px;
}

.footer-tagline {
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.footer-desc {
  color: #C2B8AD;
  font-size: 0.92rem;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
}

.footer-social-link:hover {
  background: var(--primary);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.footer-widget-title {
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
}

.footer-widget-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--primary);
}

.footer-nav {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.footer-nav a {
  color: #C2B8AD;
  font-size: 0.92rem;
  transition: var(--transition);
}

.footer-nav a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.92rem;
  color: #C2B8AD;
}

.contact-item a {
  color: #C2B8AD;
}

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

.contact-icon {
  color: var(--gold);
  font-size: 1.1rem;
}

.footer-newsletter {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-newsletter h4 {
  color: #FFFFFF;
  font-size: 1rem;
  margin-bottom: 10px;
}

.subscribe-row {
  display: flex;
  gap: 8px;
}

.subscribe-row input {
  padding: 10px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.9rem;
}

.subscribe-row input::placeholder {
  color: #9E9285;
}

.footer-bottom {
  background: #120904;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.88rem;
  color: #8C8072;
}

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

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: #8C8072;
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  color: #FFFFFF !important;
  border-radius: var(--radius-full);
  padding: 12px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-float:hover {
  background: #1EBE5D;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

/* ============================================================
   RESPONSIVE DESIGN (MOBILE & TABLET)
   ============================================================ */
@media (max-width: 992px) {
  .main-navigation {
    display: none;
  }
  .hamburger-btn {
    display: flex;
  }
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .focus-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .members-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .donation-page-layout {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-widgets {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-title span {
    font-size: 1.8rem;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .focus-grid {
    grid-template-columns: 1fr;
  }
  .members-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .timeline::after {
    left: 20px;
  }
  .timeline-item {
    width: 100%;
    padding-left: 50px;
    padding-right: 15px;
    text-align: left !important;
  }
  .timeline-item.left, .timeline-item.right {
    left: 0;
  }
  .timeline-item.left .timeline-dot, .timeline-item.right .timeline-dot {
    left: 10px;
    right: auto;
  }
  .footer-widgets {
    grid-template-columns: 1fr;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}
