/*
Theme Name: Narayan Seva Ashram
Theme URI: https://narayansevaashram.org
Author: Narayan Seva Ashram Deoghar
Author URI: https://narayansevaashram.org
Description: A warm, spiritual, emotional NGO theme for Narayan Seva Ashram Deoghar — supporting underprivileged girls with food, shelter, education, healthcare, and cultural values. Full-featured donation website with Razorpay, UPI, WhatsApp integration, multi-language support (Hindi + English), and celebration packages.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: narayan-seva-ashram
Tags: ngo, donation, charity, responsive, hindi, multilingual, blog, custom-colors, custom-menu, featured-images, full-width-template, theme-options, threaded-comments, translation-ready
*/

/* ============================================
   CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================ */
:root {
  --color-saffron: #E8600A;
  --color-saffron-light: #F4853A;
  --color-saffron-dark: #C04E08;
  --color-gold: #D4A017;
  --color-gold-light: #F0C040;
  --color-maroon: #8B1A1A;
  --color-warm-cream: #FFF8F0;
  --color-warm-white: #FFFDF9;
  --color-earth: #6B4C2A;
  --color-earth-light: #9B7040;
  --color-green: #2E7D32;
  --color-green-light: #4CAF50;
  --color-text-dark: #1A1A1A;
  --color-text-medium: #444444;
  --color-text-light: #777777;
  --color-border: #E8D5C4;
  --color-bg-light: #FFF5EC;
  --color-bg-section: #FEF3E8;
  --color-white: #FFFFFF;

  --font-heading: 'Poppins', 'Noto Sans Devanagari', sans-serif;
  --font-body: 'Open Sans', 'Noto Sans Devanagari', sans-serif;
  --font-hindi: 'Noto Sans Devanagari', sans-serif;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --shadow-card: 0 4px 24px rgba(232, 96, 10, 0.12);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-pill: 9999px;

  --transition: all 0.3s ease;
  --transition-slow: all 0.5s ease;

  --container-width: 1200px;
  --section-padding: 80px 0;
}

/* ============================================
   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);
  color: var(--color-text-dark);
  background-color: var(--color-warm-white);
  line-height: 1.7;
  overflow-x: hidden;
}

body.lang-hindi {
  font-family: var(--font-hindi);
}

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

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

a:hover {
  color: var(--color-saffron-dark);
}

ul { list-style: none; }

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

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: var(--section-padding);
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.gap-4 { gap: 32px; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 40px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 40px; }

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

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

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--color-text-dark);
  margin-bottom: 16px;
  line-height: 1.25;
}

.section-title span {
  color: var(--color-saffron);
}

.section-subtitle {
  font-size: 17px;
  color: var(--color-text-medium);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-saffron), var(--color-gold));
  border-radius: var(--radius-pill);
  margin: 20px auto;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-saffron-dark), var(--color-maroon));
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232, 96, 10, 0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--color-saffron);
  border-color: var(--color-saffron);
}

.btn-secondary:hover {
  background: var(--color-saffron);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  color: var(--color-text-dark);
  font-weight: 700;
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  color: var(--color-text-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212, 160, 23, 0.4);
}

.btn-white {
  background: var(--color-white);
  color: var(--color-saffron);
  border-color: var(--color-white);
}

.btn-white:hover {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn-green {
  background: linear-gradient(135deg, var(--color-green), var(--color-green-light));
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(46, 125, 50, 0.3);
}

.btn-green:hover {
  background: linear-gradient(135deg, #1B5E20, var(--color-green));
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 44px;
  font-size: 17px;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 13px;
}

.btn-pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(232, 96, 10, 0.35); }
  50% { box-shadow: 0 4px 36px rgba(232, 96, 10, 0.65), 0 0 0 8px rgba(232, 96, 10, 0.1); }
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--color-border);
}

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

.card-image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.card-body {
  padding: 24px;
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 10px;
}

.card-text {
  color: var(--color-text-medium);
  font-size: 14px;
  line-height: 1.65;
}

/* ============================================
   NAVIGATION / HEADER
   ============================================ */
#masthead {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

#masthead.scrolled {
  box-shadow: var(--shadow-md);
}

/* Top Bar */
.topbar {
  background: linear-gradient(135deg, var(--color-saffron-dark), var(--color-maroon));
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  padding: 7px 0;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.topbar-contact a {
  color: rgba(255,255,255,0.9);
  margin-right: 20px;
}

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

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

.lang-switcher {
  display: flex;
  gap: 4px;
}

.lang-btn {
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--color-white);
  background: transparent;
  transition: var(--transition);
}

.lang-btn.active, .lang-btn:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-text-dark);
}

/* Main Nav */
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 24px;
}

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

.site-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-saffron);
}

.site-logo-placeholder {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-saffron), var(--color-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--color-white);
  font-weight: 700;
  border: 3px solid var(--color-saffron-dark);
  flex-shrink: 0;
}

.site-name {
  display: flex;
  flex-direction: column;
}

.site-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-saffron-dark);
  line-height: 1.2;
  font-family: var(--font-heading);
}

.site-tagline {
  font-size: 11px;
  color: var(--color-earth);
  font-weight: 500;
  line-height: 1.3;
}

.main-navigation ul {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.main-navigation ul li {
  position: relative;
}

.main-navigation ul li a {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-medium);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item > a {
  color: var(--color-saffron);
  background: var(--color-bg-light);
}

/* Dropdown */
.main-navigation ul li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  padding: 8px;
  z-index: 100;
  border: 1px solid var(--color-border);
  flex-direction: column;
}

.main-navigation ul li:hover > ul {
  display: flex;
}

.main-navigation ul li ul li a {
  padding: 10px 16px;
  font-size: 13px;
  width: 100%;
  border-radius: var(--radius-sm);
}

.nav-donate-btn {
  background: linear-gradient(135deg, var(--color-saffron), var(--color-saffron-dark)) !important;
  color: var(--color-white) !important;
  padding: 10px 22px !important;
  border-radius: var(--radius-pill) !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 16px rgba(232, 96, 10, 0.35);
}

.nav-donate-btn:hover {
  background: linear-gradient(135deg, var(--color-saffron-dark), var(--color-maroon)) !important;
  color: var(--color-white) !important;
  transform: translateY(-1px);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--color-saffron);
  font-size: 24px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(160deg, #FFF0E0 0%, #FFE4C8 40%, #FFF5EC 100%);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,96,10,0.08) 0%, rgba(212,160,23,0.05) 100%);
  z-index: 0;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(232,96,10,0.06) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(212,160,23,0.08) 0%, transparent 40%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  padding: 80px 20px;
  max-width: var(--container-width);
  margin: 0 auto;
}

.hero-text-side {}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--color-saffron-light);
  color: var(--color-saffron-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-saffron);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.18;
  color: var(--color-text-dark);
  margin-bottom: 20px;
}

.hero-title .highlight {
  color: var(--color-saffron);
  position: relative;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-saffron), var(--color-gold));
  border-radius: var(--radius-pill);
}

.hero-subtitle {
  font-size: 17px;
  color: var(--color-text-medium);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--color-saffron);
  font-family: var(--font-heading);
  line-height: 1;
}

.hero-stat-label {
  font-size: 12px;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.hero-image-side {
  position: relative;
}

.hero-main-image {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
}

.hero-image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, #FFE0C0 0%, #FDBF8A 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-shadow: var(--shadow-lg);
  border: 3px dashed var(--color-saffron-light);
}

.hero-image-placeholder-icon {
  font-size: 60px;
}

.hero-image-placeholder-text {
  color: var(--color-earth);
  font-size: 14px;
  text-align: center;
  font-weight: 500;
}

.hero-floating-card {
  position: absolute;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 3s ease-in-out infinite;
  border: 1px solid var(--color-border);
}

.hero-floating-card-1 {
  bottom: 32px;
  left: -24px;
  animation-delay: 0s;
}

.hero-floating-card-2 {
  top: 24px;
  right: -24px;
  animation-delay: 1.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.floating-card-icon {
  font-size: 28px;
}

.floating-card-text strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: var(--color-saffron);
}

.floating-card-text span {
  font-size: 11px;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================
   IMPACT COUNTER SECTION
   ============================================ */
.impact-counter-section {
  background: linear-gradient(135deg, var(--color-saffron-dark) 0%, var(--color-maroon) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.impact-counter-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 50%);
}

.impact-counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.impact-counter-item {
  padding: 24px;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.impact-counter-item:last-child {
  border-right: none;
}

.impact-counter-number {
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 900;
  color: var(--color-gold-light);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}

.impact-counter-label {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

.impact-counter-icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}

/* ============================================
   ABOUT SECTION (HOME)
   ============================================ */
.about-section {
  background: var(--color-warm-white);
  padding: var(--section-padding);
}

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

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

.about-main-image {
  border-radius: var(--radius-xl);
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, #FFE5CC 0%, #FECFA0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  border: 3px dashed var(--color-saffron-light);
}

.about-badge-overlay {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-badge-number {
  display: block;
  font-size: 36px;
  font-weight: 900;
  color: var(--color-text-dark);
  line-height: 1;
}

.about-badge-text {
  font-size: 12px;
  color: var(--color-earth);
  font-weight: 600;
}

.about-text h2 {
  font-size: clamp(24px, 3.5vw, 38px);
  margin-bottom: 20px;
}

.about-text p {
  color: var(--color-text-medium);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  background: var(--color-bg-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  border: 1px solid var(--color-border);
}

.about-feature-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 2px;
}

.about-feature-text span {
  font-size: 13px;
  color: var(--color-text-light);
}

/* ============================================
   MISSION / CAUSES
   ============================================ */
.causes-section {
  background: var(--color-bg-section);
  padding: var(--section-padding);
}

.cause-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--color-border);
}

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

.cause-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.cause-card-image-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(160deg, #FFE0C0, #FDBF8A);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.cause-card-body {
  padding: 24px;
}

.cause-tag {
  display: inline-block;
  background: var(--color-bg-light);
  color: var(--color-saffron);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

.cause-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-text-dark);
}

.cause-desc {
  font-size: 14px;
  color: var(--color-text-medium);
  line-height: 1.65;
  margin-bottom: 20px;
}

.cause-progress-wrap {
  margin-bottom: 16px;
}

.cause-progress-bar-bg {
  width: 100%;
  height: 8px;
  background: var(--color-bg-light);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.cause-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--color-saffron), var(--color-gold));
  border-radius: var(--radius-pill);
  transition: width 1s ease;
}

.cause-progress-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--color-text-light);
  margin-top: 6px;
}

.cause-progress-meta strong {
  color: var(--color-saffron);
}

/* ============================================
   CELEBRATE SECTION
   ============================================ */
.celebrate-section {
  background: linear-gradient(160deg, #FFF8F0 0%, #FEF0E0 100%);
  padding: var(--section-padding);
}

.celebrate-occasions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.occasion-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  border: 2px solid transparent;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.occasion-card:hover {
  border-color: var(--color-saffron-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.occasion-icon {
  font-size: 40px;
  margin-bottom: 12px;
  display: block;
}

.occasion-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 6px;
}

.occasion-price {
  font-size: 13px;
  color: var(--color-saffron);
  font-weight: 600;
}

/* Packages */
.donation-packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.package-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 2px solid var(--color-border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

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

.package-card:hover,
.package-card.featured {
  border-color: var(--color-saffron-light);
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
}

.package-card.featured {
  background: linear-gradient(160deg, #FFF5EC, #FFF0E0);
}

.package-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--color-saffron);
  color: var(--color-white);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.package-icon {
  font-size: 44px;
  margin-bottom: 16px;
  display: block;
}

.package-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 8px;
}

.package-price {
  font-size: 32px;
  font-weight: 900;
  color: var(--color-saffron);
  font-family: var(--font-heading);
  margin-bottom: 16px;
  line-height: 1;
}

.package-price span {
  font-size: 18px;
  font-weight: 600;
}

.package-features {
  text-align: left;
  margin-bottom: 24px;
}

.package-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--color-text-medium);
  padding: 6px 0;
  border-bottom: 1px solid var(--color-border);
}

.package-feature-item:last-child { border-bottom: none; }

.package-check {
  color: var(--color-green);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================
   SPONSOR A GIRL
   ============================================ */
.sponsor-section {
  background: var(--color-warm-white);
  padding: var(--section-padding);
}

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

.sponsor-profile-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

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

.sponsor-profile-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.sponsor-profile-placeholder {
  width: 100%;
  height: 240px;
  background: linear-gradient(160deg, #FFE8D0, #FFCFAB);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.sponsor-profile-placeholder-icon {
  font-size: 56px;
}

.sponsor-profile-placeholder-text {
  font-size: 13px;
  color: var(--color-earth);
  font-weight: 500;
}

.sponsor-profile-body {
  padding: 20px;
}

.sponsor-profile-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 4px;
}

.sponsor-profile-age {
  font-size: 12px;
  color: var(--color-text-light);
  margin-bottom: 10px;
}

.sponsor-profile-story {
  font-size: 13px;
  color: var(--color-text-medium);
  line-height: 1.65;
  margin-bottom: 16px;
}

.sponsor-profile-need {
  background: var(--color-bg-light);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 13px;
  color: var(--color-earth);
  margin-bottom: 16px;
}

.sponsor-profile-need strong {
  color: var(--color-saffron);
}

/* ============================================
   DONATE NOW SECTION
   ============================================ */
.donate-section {
  background: var(--color-bg-section);
  padding: var(--section-padding);
}

.donate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: flex-start;
}

.donate-form-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.donate-form-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 8px;
}

.donate-form-subtitle {
  font-size: 14px;
  color: var(--color-text-medium);
  margin-bottom: 28px;
}

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

.amount-btn {
  padding: 12px 8px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text-medium);
  background: var(--color-white);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.amount-btn:hover,
.amount-btn.active {
  border-color: var(--color-saffron);
  color: var(--color-saffron);
  background: var(--color-bg-light);
}

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

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-medium);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--color-text-dark);
  background: var(--color-white);
  transition: var(--transition);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-saffron);
  box-shadow: 0 0 0 3px rgba(232, 96, 10, 0.12);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.payment-methods-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.payment-tab {
  flex: 1;
  padding: 10px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  color: var(--color-text-medium);
  background: var(--color-white);
}

.payment-tab.active,
.payment-tab:hover {
  border-color: var(--color-saffron);
  color: var(--color-saffron);
  background: var(--color-bg-light);
}

.donate-info-side {}

.donate-method-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.donate-method-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.donate-method-title .icon {
  font-size: 22px;
}

.upi-details {
  background: var(--color-bg-light);
  border-radius: var(--radius-md);
  padding: 16px;
}

.upi-id {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-saffron-dark);
  letter-spacing: 1px;
}

.bank-details-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.bank-details-table td {
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
}

.bank-details-table td:first-child {
  color: var(--color-text-light);
  width: 40%;
}

.bank-details-table td:last-child {
  font-weight: 600;
  color: var(--color-text-dark);
}

.bank-details-table tr:last-child td {
  border-bottom: none;
}

.qr-code-placeholder {
  width: 140px;
  height: 140px;
  background: var(--color-bg-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--color-border);
  font-size: 48px;
  margin: 0 auto;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-section {
  background: var(--color-warm-white);
  padding: var(--section-padding);
}

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

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

.gallery-item:nth-child(3n+1) {
  grid-row: span 2;
}

.gallery-item-image {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery-item-placeholder {
  width: 100%;
  min-height: 200px;
  background: linear-gradient(160deg, #FFE8D0, #FFCFAB);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  transition: var(--transition-slow);
}

.gallery-item:hover .gallery-item-image,
.gallery-item:hover .gallery-item-placeholder {
  transform: scale(1.08);
}

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

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

.gallery-caption {
  color: var(--color-white);
  font-size: 14px;
  font-weight: 600;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  background: linear-gradient(160deg, #FFF8F0, #FEF0E0);
  padding: var(--section-padding);
}

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

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.testimonial-quote {
  font-size: 56px;
  color: var(--color-saffron-light);
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.5;
}

.testimonial-text {
  font-size: 15px;
  color: var(--color-text-medium);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-saffron-light);
}

.testimonial-avatar-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-saffron-light), var(--color-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border: 2px solid var(--color-saffron-light);
  flex-shrink: 0;
}

.testimonial-author-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text-dark);
}

.testimonial-author-role {
  font-size: 12px;
  color: var(--color-text-light);
}

.testimonial-stars {
  color: var(--color-gold);
  font-size: 14px;
  margin-bottom: 4px;
}

/* ============================================
   BLOG/NEWS
   ============================================ */
.blog-section {
  background: var(--color-warm-white);
  padding: var(--section-padding);
}

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

.blog-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

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

.blog-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-image-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(160deg, #FFE0C0, #FDBF8A);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.blog-card-body {
  padding: 24px;
}

.blog-card-category {
  display: inline-block;
  background: var(--color-bg-light);
  color: var(--color-saffron);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
}

.blog-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card-title a {
  color: inherit;
}

.blog-card-title a:hover {
  color: var(--color-saffron);
}

.blog-card-excerpt {
  font-size: 13px;
  color: var(--color-text-medium);
  line-height: 1.65;
  margin-bottom: 16px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--color-text-light);
}

/* ============================================
   VOLUNTEER SECTION
   ============================================ */
.volunteer-section {
  background: var(--color-bg-section);
  padding: var(--section-padding);
}

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

.volunteer-form {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  background: var(--color-warm-white);
  padding: var(--section-padding);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--color-bg-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  border: 1px solid var(--color-border);
}

.contact-info-label {
  font-size: 12px;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-dark);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: linear-gradient(160deg, #1A0F08 0%, #2D1A0E 100%);
  color: rgba(255,255,255,0.8);
}

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

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

.footer-brand {
  max-width: 320px;
}

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

.footer-logo-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-saffron), var(--color-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--color-white);
  font-weight: 700;
  flex-shrink: 0;
}

.footer-brand-name {
  font-size: 17px;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.2;
}

.footer-brand-tag {
  font-size: 11px;
  color: var(--color-gold-light);
}

.footer-brand-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 24px;
}

.footer-social-links {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.12);
  text-decoration: none;
}

.footer-social-link:hover {
  background: var(--color-saffron);
  color: var(--color-white);
  border-color: var(--color-saffron);
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--color-gold-light);
  padding-left: 4px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

.footer-contact-icon {
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

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

.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

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

/* ============================================
   FLOATING ELEMENTS (STICKY DONATE + WHATSAPP)
   ============================================ */
.floating-cta-wrap {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.floating-whatsapp {
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 26px;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
  text-decoration: none;
  animation: float 3s ease-in-out infinite;
}

.floating-whatsapp:hover {
  background: #128C7E;
  color: var(--color-white);
  transform: scale(1.12);
}

.floating-donate {
  background: linear-gradient(135deg, var(--color-saffron), var(--color-saffron-dark));
  color: var(--color-white);
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 24px rgba(232, 96, 10, 0.5);
  transition: var(--transition);
  text-decoration: none;
  animation: pulse 2s infinite;
}

.floating-donate:hover {
  background: linear-gradient(135deg, var(--color-saffron-dark), var(--color-maroon));
  color: var(--color-white);
  transform: scale(1.05);
}

/* ============================================
   PAGE HERO BANNER
   ============================================ */
.page-hero-banner {
  background: linear-gradient(135deg, var(--color-saffron-dark) 0%, var(--color-maroon) 100%);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.05) 0%, transparent 70%);
}

.page-hero-banner-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  color: var(--color-white);
  position: relative;
  z-index: 1;
}

.page-hero-banner-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin-top: 12px;
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

.breadcrumb a {
  color: rgba(255,255,255,0.65);
}

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

/* ============================================
   SUCCESS STORIES
   ============================================ */
.success-story-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.success-story-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.success-story-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-saffron-light);
  flex-shrink: 0;
}

.success-story-avatar-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFE0C0, #FDBF8A);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  border: 3px solid var(--color-saffron-light);
  flex-shrink: 0;
}

.success-story-content {}

.success-story-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 4px;
}

.success-story-achievement {
  font-size: 13px;
  color: var(--color-saffron);
  font-weight: 600;
  margin-bottom: 12px;
}

.success-story-text {
  font-size: 14px;
  color: var(--color-text-medium);
  line-height: 1.7;
}

/* ============================================
   SINGLE POST / PAGE CONTENT
   ============================================ */
.entry-content {
  max-width: 820px;
  margin: 0 auto;
}

.entry-content h2 { font-size: 28px; margin: 32px 0 16px; }
.entry-content h3 { font-size: 22px; margin: 28px 0 12px; }
.entry-content p { margin-bottom: 20px; color: var(--color-text-medium); line-height: 1.8; }
.entry-content ul, .entry-content ol { margin: 0 0 20px 24px; }
.entry-content li { margin-bottom: 8px; color: var(--color-text-medium); line-height: 1.7; }
.entry-content blockquote {
  border-left: 4px solid var(--color-saffron);
  padding: 16px 24px;
  background: var(--color-bg-light);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 24px 0;
  font-style: italic;
  color: var(--color-earth);
}
.entry-content img { border-radius: var(--radius-md); margin: 24px 0; }
.entry-content a { color: var(--color-saffron); text-decoration: underline; }

/* ============================================
   CALL TO ACTION BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--color-saffron) 0%, var(--color-saffron-dark) 50%, var(--color-maroon) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
}

.cta-banner-title {
  font-size: clamp(28px, 4.5vw, 46px);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 16px;
  line-height: 1.25;
}

.cta-banner-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

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

/* ============================================
   ALERT/NOTICE
   ============================================ */
.notice-bar {
  background: var(--color-gold);
  padding: 12px 0;
  text-align: center;
}

.notice-bar-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-dark);
}

.notice-bar-text a {
  color: var(--color-maroon);
  text-decoration: underline;
}

/* ============================================
   HINDI LANGUAGE OVERRIDES
   ============================================ */
.lang-hindi .section-title,
.lang-hindi .hero-title,
.lang-hindi .card-title,
.lang-hindi .package-name {
  font-family: var(--font-hindi);
  line-height: 1.5;
}

.lang-hindi p,
.lang-hindi li,
.lang-hindi label {
  font-family: var(--font-hindi);
  line-height: 1.9;
}

/* ============================================
   ADMIN BAR ADJUSTMENT
   ============================================ */
.admin-bar #masthead {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar #masthead {
    top: 46px;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .donation-packages-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-counter-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --section-padding: 60px 0; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-image-side { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .donate-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .volunteer-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .celebrate-occasions-grid { grid-template-columns: repeat(2, 1fr); }
  .sponsor-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-slider { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(3n+1) { grid-row: span 1; }
}

@media (max-width: 768px) {
  .topbar-right .lang-switcher { display: none; }
  .main-navigation { display: none; }
  .main-navigation.open { display: block; }
  .main-navigation.open ul {
    flex-direction: column;
    padding: 16px 0;
    gap: 0;
  }
  .main-navigation.open ul li a { padding: 12px 16px; }
  .main-navigation.open ul li ul {
    position: static;
    box-shadow: none;
    border: none;
    background: var(--color-bg-light);
    display: none !important;
  }
  .mobile-nav-toggle { display: block; }
  .grid-2 { grid-template-columns: 1fr; }
  .donation-packages-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 576px) {
  :root { --section-padding: 48px 0; }
  .hero-title { font-size: 30px; }
  .hero-cta-group { flex-direction: column; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .celebrate-occasions-grid { grid-template-columns: 1fr 1fr; }
  .sponsor-grid { grid-template-columns: 1fr; }
  .testimonial-slider { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .donation-packages-grid { grid-template-columns: 1fr; }
  .donate-amount-grid { grid-template-columns: repeat(3, 1fr); }
  .donate-form-card { padding: 24px 20px; }
  .floating-cta-wrap { right: 16px; bottom: 16px; }
  .impact-counter-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-counter-item { border-right: none; }
  .cta-banner-btns { flex-direction: column; align-items: center; }
  .payment-methods-tabs { flex-wrap: wrap; }
}

/* Print */
@media print {
  .floating-cta-wrap, .topbar, #masthead, .site-footer { display: none; }
}
