/* ==========================================================================
   HELPING HAND INITIATIVE FOUNDATION - MAIN STYLESHEET
   Aesthetics: Modern Indian NGO (Saffron, Emerald, Royal Navy, Warm Cream)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Color Palette */
  --color-saffron: #E65100;
  --color-saffron-light: #FF7700;
  --color-saffron-soft: #FFF3E0;
  --color-green: #138808;
  --color-green-light: #20A712;
  --color-green-soft: #E8F5E9;
  --color-navy: #0A2540;
  --color-navy-dark: #06152B;
  --color-navy-light: #163B66;
  --color-gold: #F59E0B;
  --color-gold-light: #FEF3C7;
  --color-bg-warm: #FAF8F5;
  --color-bg-card: #FFFFFF;
  --color-text-main: #1E293B;
  --color-text-muted: #64748B;
  --color-border: #E2E8F0;
  --color-border-light: #F1F5F9;

  /* Typography */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Outfit', 'Plus Jakarta Sans', sans-serif;

  /* Shadows & Radii */
  --shadow-sm: 0 2px 6px rgba(10, 37, 64, 0.05);
  --shadow-md: 0 8px 24px rgba(10, 37, 64, 0.08);
  --shadow-lg: 0 16px 36px rgba(10, 37, 64, 0.12);
  --shadow-saffron: 0 8px 20px rgba(230, 81, 0, 0.25);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;

  /* Transitions */
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

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

.section-padding {
  padding: 80px 0;
}

/* Indian Tricolor Decorative Top Strip */
.top-tricolor-strip {
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #FF671F 0%, #FF671F 33.3%, #FFFFFF 33.3%, #FFFFFF 66.6%, #138808 66.6%, #138808 100%);
}

/* ==========================================================================
   TOP BAR
   ========================================================================== */
.topbar {
  background-color: var(--color-navy-dark);
  color: #E2E8F0;
  font-size: 0.84rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.topbar-info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #CBD5E1;
}

.topbar-item:hover {
  color: #FFB300;
}

.topbar-item svg {
  width: 15px;
  height: 15px;
  fill: var(--color-gold);
  flex-shrink: 0;
}

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

.topbar-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  transition: var(--transition);
}

.social-link svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

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

.topbar-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(19, 136, 8, 0.2);
  color: #4ADE80;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.76rem;
  font-weight: 600;
  border: 1px solid rgba(74, 222, 128, 0.3);
}

/* ==========================================================================
   MAIN HEADER
   ========================================================================== */
.main-header {
  background-color: #FFFFFF;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.circular-logo-link {
  display: block;
  flex-shrink: 0;
}

.circular-logo {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(10, 37, 64, 0.15);
  transition: transform 0.3s ease;
}

.circular-logo-link:hover .circular-logo {
  transform: scale(1.05) rotate(2deg);
}

.brand-text h1 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-navy);
  letter-spacing: -0.3px;
}

.brand-text .hindi-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-saffron);
  display: block;
  margin-top: 1px;
}

.brand-text .tagline {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.header-trust-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.trust-badge-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  background: var(--color-saffron-soft);
  border: 1px solid #FFE0B2;
  border-radius: var(--radius-md);
}

.trust-badge-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--color-saffron);
}

.trust-badge-text {
  font-size: 0.75rem;
  line-height: 1.25;
}

.trust-badge-text strong {
  display: block;
  color: var(--color-navy);
  font-weight: 700;
  font-size: 0.82rem;
}

.trust-badge-text span {
  color: var(--color-saffron);
  font-weight: 600;
}

.header-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--color-saffron) 0%, var(--color-saffron-light) 100%);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-saffron);
  transition: var(--transition);
}

.header-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(230, 81, 0, 0.35);
  color: #FFFFFF;
}

.header-cta-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.navbar {
  background-color: var(--color-navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 14px rgba(6, 21, 43, 0.15);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 16px 18px;
  color: #E2E8F0;
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  position: relative;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  background-color: var(--color-gold);
  border-radius: 2px 2px 0 0;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.nav-link:hover {
  color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.05);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.08);
}

.nav-donate-pill {
  background: var(--color-saffron);
  color: #FFFFFF !important;
  border-radius: var(--radius-full);
  padding: 8px 20px !important;
  margin-left: 10px;
  box-shadow: 0 4px 12px rgba(230, 81, 0, 0.4);
}

.nav-donate-pill::after {
  display: none !important;
}

.nav-donate-pill:hover {
  background: var(--color-saffron-light);
  transform: translateY(-1px);
}

.mobile-toggle-btn {
  display: none;
  background: transparent;
  border: none;
  color: #FFFFFF;
  cursor: pointer;
  padding: 12px;
}

.mobile-toggle-btn svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

/* ==========================================================================
   HERO SLIDER
   ========================================================================== */
.hero-slider-section {
  position: relative;
  overflow: hidden;
  background: #000;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 560px;
}

.slider-track {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 21, 43, 0.88) 0%, rgba(6, 21, 43, 0.65) 50%, rgba(6, 21, 43, 0.3) 100%);
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  color: #FFFFFF;
  padding: 40px 0;
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 119, 0, 0.2);
  border: 1px solid var(--color-saffron-light);
  color: #FFB300;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.slide-title {
  font-family: var(--font-heading);
  font-size: 2.85rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.slide-title span {
  color: #FF9933;
}

.slide-description {
  font-size: 1.12rem;
  line-height: 1.6;
  color: #E2E8F0;
  margin-bottom: 28px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.slide-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-saffron);
  color: #FFFFFF;
  padding: 13px 28px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.98rem;
  box-shadow: var(--shadow-saffron);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--color-saffron-light);
  transform: translateY(-2px);
  color: #FFFFFF;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  padding: 13px 28px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.98rem;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: var(--transition);
  cursor: pointer;
}

.btn-secondary:hover {
  background: #FFFFFF;
  color: var(--color-navy);
  transform: translateY(-2px);
}

/* Slider Controls */
.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(6, 21, 43, 0.6);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.slider-prev {
  left: 20px;
}

.slider-next {
  right: 20px;
}

.slider-prev:hover,
.slider-next:hover {
  background: var(--color-saffron);
  border-color: var(--color-saffron);
}

.slider-prev svg,
.slider-next svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.slider-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--color-gold);
  width: 28px;
  border-radius: 8px;
}

/* ==========================================================================
   IMPACT STATS STRIP
   ========================================================================== */
.impact-strip {
  margin-top: -45px;
  position: relative;
  z-index: 20;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.stat-item {
  padding: 30px 24px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

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

.stat-item:hover {
  background-color: var(--color-bg-warm);
}

.stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-saffron-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--color-saffron);
}

.stat-icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

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

.stat-label {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

/* ==========================================================================
   SECTION HEADINGS
   ========================================================================== */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-subhead {
  display: inline-block;
  color: var(--color-saffron);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 8px;
  position: relative;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.ornament-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 12px auto 0;
}

.ornament-line span {
  height: 2px;
  width: 40px;
  background-color: var(--color-gold);
}

.ornament-line svg {
  width: 16px;
  height: 16px;
  fill: var(--color-saffron);
}

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

.about-img-stack {
  position: relative;
}

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

.about-exp-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--color-navy);
  color: #FFFFFF;
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border-left: 5px solid var(--color-gold);
  max-width: 220px;
}

.about-exp-badge strong {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-gold);
  display: block;
  line-height: 1;
}

.about-exp-badge p {
  font-size: 0.85rem;
  color: #CBD5E1;
  margin-top: 4px;
  line-height: 1.3;
}

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

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

.feature-check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-green-soft);
  color: var(--color-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-check-icon svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.about-feature-item span {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--color-navy);
}

/* ==========================================================================
   PROGRAMS / SERVICES CARDS
   ========================================================================== */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

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

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

.program-thumb {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

.program-card:hover .program-thumb img {
  transform: scale(1.08);
}

.program-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(10, 37, 64, 0.85);
  color: #FFB300;
  backdrop-filter: blur(4px);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.program-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.program-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 10px;
}

.program-desc {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.program-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--color-border-light);
}

.link-arrow {
  color: var(--color-saffron);
  font-weight: 700;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.link-arrow:hover {
  color: var(--color-saffron-light);
  gap: 9px;
}

.link-arrow svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* ==========================================================================
   PHOTO GALLERY
   ========================================================================== */
.gallery-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.gallery-tab-btn {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  color: var(--color-navy);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-tab-btn:hover,
.gallery-tab-btn.active {
  background: var(--color-navy);
  color: #FFFFFF;
  border-color: var(--color-navy);
}

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

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 21, 43, 0.9) 0%, rgba(6, 21, 43, 0.2) 60%, transparent 100%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  transition: opacity 0.3s ease;
}

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

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

.gallery-caption-title {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.96rem;
  line-height: 1.3;
}

.gallery-caption-tag {
  color: var(--color-gold);
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.gallery-zoom-icon {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
}

.gallery-zoom-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

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

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

.lightbox-content {
  position: relative;
  max-width: 900px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.lightbox-caption {
  color: #FFFFFF;
  margin-top: 14px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
}

/* ==========================================================================
   DONATE SECTION / PAGE
   ========================================================================== */
.donate-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: flex-start;
}

.donate-form-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.donate-header-note {
  background: var(--color-saffron-soft);
  border-left: 4px solid var(--color-saffron);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 26px;
  font-size: 0.88rem;
  color: #9A3412;
}

.amount-selector-label {
  display: block;
  font-weight: 700;
  color: var(--color-navy);
  font-size: 0.94rem;
  margin-bottom: 12px;
}

.amount-chips {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.amount-chip-btn {
  background: var(--color-bg-warm);
  border: 2px solid var(--color-border);
  color: var(--color-navy);
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 6px;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
}

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

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

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-navy);
  margin-bottom: 6px;
}

.form-label .required {
  color: #DC2626;
  font-weight: 700;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background-color: #FFFFFF;
  color: var(--color-text-main);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-saffron);
  box-shadow: 0 0 0 3px rgba(230, 81, 0, 0.15);
}

.input-with-icon {
  position: relative;
}

.input-prefix {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
  color: var(--color-text-muted);
  font-size: 1.1rem;
}

.input-with-icon .form-control {
  padding-left: 36px;
}

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

.form-hint {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-top: 4px;
}

.form-hint.error {
  color: #DC2626;
  font-weight: 600;
}

.donate-submit-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--color-saffron) 0%, var(--color-saffron-light) 100%);
  color: #FFFFFF;
  border: none;
  border-radius: var(--radius-md);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-saffron);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.donate-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(230, 81, 0, 0.4);
}

/* Donate Sidebar Info */
.donate-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tax-badge-banner {
  background: linear-gradient(135deg, #0A2540 0%, #163B66 100%);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  border-left: 5px solid #138808;
}

.tax-badge-banner h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFB300;
  margin-bottom: 8px;
}

.tax-badge-banner p {
  font-size: 0.88rem;
  color: #E2E8F0;
  line-height: 1.5;
}

.qr-payment-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  text-align: center;
}

.qr-payment-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 12px;
}

.qr-image-wrapper {
  max-width: 220px;
  margin: 0 auto 14px;
}

.bank-details-box {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.bank-details-box h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 14px;
}

.bank-table {
  width: 100%;
  font-size: 0.86rem;
  border-collapse: collapse;
}

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

.bank-table td:first-child {
  color: var(--color-text-muted);
  font-weight: 500;
  width: 38%;
}

.bank-table td:last-child {
  font-weight: 700;
  color: var(--color-navy);
}

/* Success Receipt Card */
.receipt-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
  border-top: 6px solid var(--color-green);
  text-align: center;
}

.receipt-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-green-soft);
  color: var(--color-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.receipt-icon svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* ==========================================================================
   PAGE HERO / BANNER
   ========================================================================== */
.page-banner {
  background: linear-gradient(135deg, var(--color-navy-dark) 0%, var(--color-navy) 60%, #17375E 100%);
  color: #FFFFFF;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.page-banner::after {
  content: '';
  position: absolute;
  right: -50px;
  top: -50px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 119, 0, 0.15) 0%, transparent 70%);
}

.banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.banner-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.88rem;
  color: #CBD5E1;
}

.breadcrumb-nav a {
  color: #FFB300;
}

.breadcrumb-nav a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   POLICY & CONTENT PAGES
   ========================================================================== */
.content-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 45px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  line-height: 1.8;
}

.content-card h2 {
  font-family: var(--font-heading);
  color: var(--color-navy);
  font-size: 1.5rem;
  margin: 32px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--color-saffron-soft);
}

.content-card h2:first-child {
  margin-top: 0;
}

.content-card h3 {
  font-size: 1.15rem;
  color: var(--color-navy);
  margin: 20px 0 8px;
}

.content-card p {
  margin-bottom: 16px;
  color: #334155;
}

.content-card ul, .content-card ol {
  margin: 12px 0 20px 24px;
}

.content-card li {
  margin-bottom: 8px;
  color: #334155;
}

.policy-meta {
  background: var(--color-bg-warm);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 30px;
  border-left: 3px solid var(--color-gold);
}

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

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

.contact-card-item {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-saffron-soft);
  color: var(--color-saffron);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.contact-card-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 4px;
}

.contact-card-item p,
.contact-card-item a {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

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

/* ==========================================================================
   CALL TO ACTION BANNER
   ========================================================================== */
.cta-banner-section {
  background: linear-gradient(135deg, var(--color-navy-dark) 0%, #163B66 100%);
  color: #FFFFFF;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-banner-content {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-banner-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.cta-banner-title span {
  color: #FF9933;
}

.cta-banner-desc {
  font-size: 1.1rem;
  color: #CBD5E1;
  margin-bottom: 28px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: var(--color-navy-dark);
  color: #CBD5E1;
  padding-top: 70px;
  position: relative;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col h4 {
  font-family: var(--font-heading);
  color: #FFFFFF;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 3px;
  background-color: var(--color-saffron);
  border-radius: 2px;
}

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

.footer-about-logo img {
  width: 50px;
  height: 50px;
}

.footer-about-logo strong {
  color: #FFFFFF;
  font-size: 1.05rem;
  line-height: 1.2;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 20px;
  color: #94A3B8;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: #94A3B8;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.86rem;
  color: #94A3B8;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  fill: var(--color-saffron);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-tax-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px;
  border-radius: var(--radius-sm);
  margin-top: 14px;
  font-size: 0.78rem;
  color: #CBD5E1;
}

.footer-tax-box strong {
  color: #4ADE80;
  display: block;
  margin-bottom: 2px;
}

.footer-bottom {
  padding: 24px 0;
  background-color: #040D1A;
  font-size: 0.84rem;
  color: #64748B;
}

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

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

.footer-policy-links a {
  color: #94A3B8;
}

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

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  color: #FFFFFF;
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .topbar-wrapper {
    justify-content: center;
    text-align: center;
  }
  .topbar-right {
    display: none;
  }
  .main-header {
    padding: 12px 0;
  }
  .header-trust-info {
    display: none;
  }
  .brand-text h1 {
    font-size: 1.15rem;
  }
  .circular-logo {
    width: 60px;
    height: 60px;
  }
  
  /* Mobile Navigation Drawer */
  .mobile-toggle-btn {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--color-navy-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 30px;
    gap: 0;
    transition: right 0.35s ease;
    box-shadow: -6px 0 20px rgba(0, 0, 0, 0.4);
    z-index: 1001;
  }
  .nav-menu.open {
    right: 0;
  }
  .nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav-link {
    width: 100%;
    padding: 14px 0;
  }
  .nav-link::after {
    display: none;
  }
  .nav-donate-pill {
    margin: 20px 0 0 0;
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .slider-container {
    height: 480px;
  }
  .slide-title {
    font-size: 2rem;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item:nth-child(2)::after {
    display: none;
  }
  .about-summary-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .about-main-img {
    height: 300px;
  }
  .programs-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .donate-layout {
    grid-template-columns: 1fr;
  }
  .amount-chips {
    grid-template-columns: repeat(3, 1fr);
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat-item:not(:last-child)::after {
    display: none;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .slider-container {
    height: 440px;
  }
  .slide-title {
    font-size: 1.6rem;
  }
}
