/* ===== CSS Custom Properties ===== */
:root {
  --primary: #2e7d32;
  --primary-dark: #1b5e20;
  --primary-light: #66bb6a;
  --primary-pastel: #e8f5e9;
  --green: #43a047;
  --green-light: #81c784;
  --green-pastel: #f1f8e9;
  --accent: #f9a825;
  --accent-dark: #f57f17;
  --accent-light: #fffde7;
  --dark: #1a2e1a;
  --text: #37474f;
  --text-light: #78909c;
  --light: #f9fdf9;
  --white: #ffffff;
  --border: #e0e0e0;
  --gradient-hero: linear-gradient(135deg, #2e7d32 0%, #388e3c 40%, #43a047 100%);
  --gradient-green: linear-gradient(135deg, #2e7d32, #43a047);
  --gradient-card: linear-gradient(135deg, #ffffff 0%, #fafff9 100%);
  --gradient-accent: linear-gradient(135deg, #f9a825, #f57f17);
  --gradient-cta: linear-gradient(135deg, #1b5e20 0%, #2e7d32 50%, #388e3c 100%);
  --shadow: 0 4px 24px rgba(0,0,0,0.05);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.07);
  --shadow-colored: 0 8px 32px rgba(46, 125, 50, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

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

/* ===== Typography ===== */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--dark);
  line-height: 1.3;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--gradient-accent);
  border-radius: 4px;
}

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

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.btn-primary {
  background: linear-gradient(135deg, #2e7d32, #43a047);
  color: var(--white);
  background-size: 200% 200%;
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.2), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(46, 125, 50, 0.35), inset 0 1px 0 rgba(255,255,255,0.2);
  background-position: right center;
}

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

.btn-accent {
  background: var(--gradient-accent);
  color: var(--dark);
  background-size: 200% 200%;
}
.btn-accent:hover {
  background-position: right center;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(255, 202, 40, 0.4);
}

/* ===== Header / Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 4px 30px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding: 10px 0;
}

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

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

.navbar-brand .logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #2e7d32, #66bb6a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
}

.navbar-brand .brand-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  transition: var(--transition);
}

.navbar.scrolled .navbar-brand .brand-text {
  color: var(--primary-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.9);
  position: relative;
  padding: 5px 0;
}

.navbar.scrolled .nav-links a {
  color: var(--text);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-cta {
  padding: 10px 24px !important;
  background: linear-gradient(135deg, #2e7d32, #43a047);
  color: var(--white) !important;
  border-radius: 50px;
  font-weight: 600 !important;
  box-shadow: 0 3px 12px rgba(46, 125, 50, 0.2);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 125, 50, 0.3);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .hamburger span {
  background: var(--dark);
}

/* ===== Hero Section ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  background-attachment: fixed;
  background-size: cover;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -30px) scale(1.05); }
}

.hero-content {
  max-width: 700px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 22px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 24px;
  font-weight: 500;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.2);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

.hero h1 span {
  color: var(--accent);
}

.hero p {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 35px;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-stat h3 {
  color: #c8e6c9;
  font-size: 2rem;
  font-family: 'Inter', sans-serif;
}
.hero-stat p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin: 0;
}

/* ===== Page Header (Inner pages) ===== */
.page-header {
  padding: 160px 0 80px;
  background: var(--gradient-hero);
  background-attachment: fixed;
  background-size: cover;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 12px;
}

.page-header p {
  opacity: 0.85;
  font-size: 1.1rem;
  max-width: 550px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.9rem;
  opacity: 0.7;
}

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

/* ===== Sections ===== */
section {
  padding: 90px 0;
}

.section-light {
  background: linear-gradient(180deg, #f9fdf9 0%, #f1f8e9 50%, #f9fdf9 100%);
  position: relative;
}

/* ===== Cards ===== */
.card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-radius: var(--radius);
  padding: 35px 30px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.04), inset 0 1px 0 rgba(255,255,255,0.8);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2e7d32, #66bb6a);
  opacity: 0;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.9);
  border-color: rgba(255, 255, 255, 0.7);
}

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

.card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  background: var(--primary-pastel);
  color: var(--primary);
  transition: var(--transition);
}

.card:hover .card-icon {
  background: linear-gradient(135deg, #2e7d32, #66bb6a);
  color: var(--white);
  transform: scale(1.08);
}

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

.card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

.card ul {
  margin-top: 12px;
}
.card ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: var(--text-light);
  font-size: 0.93rem;
}
.card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* ===== Grid Layouts ===== */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

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

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

/* ===== About / Content Blocks ===== */
.content-block {
  display: flex;
  align-items: center;
  gap: 60px;
}

.content-block.reverse {
  flex-direction: row-reverse;
}

.content-block .content-text {
  flex: 1;
}

.content-block .content-image {
  flex: 1;
  position: relative;
}

.content-image .image-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #2e7d32 0%, #43a047 50%, #66bb6a 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.content-image .image-placeholder::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(67, 160, 71, 0.1);
}

.content-image .image-placeholder::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.content-text h2 {
  margin-bottom: 20px;
}

.content-text p {
  color: var(--text-light);
  margin-bottom: 15px;
  font-size: 1.02rem;
}

.highlight-list {
  margin: 25px 0;
}

.highlight-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.98rem;
}

.highlight-list li .icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--green-pastel);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== Stats Bar ===== */
.stats-bar {
  background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 50%, #388e3c 100%);
  background-attachment: fixed;
  padding: 70px 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

.stat-item {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 25px 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.stat-item h3 {
  color: #c8e6c9;
  font-size: 2.8rem;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.stat-item p {
  margin-top: 8px;
  opacity: 0.9;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ===== SDG Section ===== */
.sdg-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.sdg-tag {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--primary-dark);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255,255,255,0.8);
  transition: var(--transition);
}

.sdg-tag:hover {
  background: var(--primary-pastel);
  border-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.1);
}

/* ===== Vision Mission ===== */
.vm-card {
  text-align: center;
  padding: 50px 40px;
}

.vm-card .card-icon {
  margin: 0 auto 20px;
  width: 80px;
  height: 80px;
  font-size: 2rem;
}

/* ===== Programs / Flagship ===== */
.program-card {
  position: relative;
  overflow: hidden;
}

.program-card .program-number {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(180deg, rgba(67, 160, 71, 0.08), transparent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

/* ===== Budget Table ===== */
.budget-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 30px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.04), inset 0 1px 0 rgba(255,255,255,0.7);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.budget-table th,
.budget-table td {
  padding: 16px 24px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.budget-table th {
  background: linear-gradient(135deg, #2e7d32, #43a047);
  color: var(--white);
  font-weight: 600;
  font-size: 0.93rem;
  letter-spacing: 0.3px;
}

.budget-table tr:hover td {
  background: rgba(46, 125, 50, 0.03);
}

.budget-table .amount {
  font-weight: 700;
  color: var(--green);
}

/* ===== Timeline / Roadmap ===== */
.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: var(--border);
}

.timeline-item {
  display: flex;
  margin-bottom: 40px;
  position: relative;
}

.timeline-item:nth-child(odd) {
  justify-content: flex-start;
  padding-right: calc(50% + 30px);
  text-align: right;
}

.timeline-item:nth-child(even) {
  justify-content: flex-end;
  padding-left: calc(50% + 30px);
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, #2e7d32, #66bb6a);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px #2e7d32, 0 0 16px rgba(46, 125, 50, 0.25);
  z-index: 1;
}

.timeline-content {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  padding: 25px;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.04), inset 0 1px 0 rgba(255,255,255,0.8);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.timeline-content h4 {
  color: var(--primary);
  margin-bottom: 8px;
}

/* ===== Contact Section ===== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}

.contact-info-card {
  background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 50%, #388e3c 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 45px 35px;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -30%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(67, 160, 71, 0.08);
}

.contact-info-card::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -15%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.contact-info-card h3 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.contact-info-card p {
  opacity: 0.85;
  margin-bottom: 30px;
  line-height: 1.7;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 22px;
}

.contact-detail .icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.15);
}

.contact-detail .detail-text h5 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
  opacity: 0.7;
}
.contact-detail .detail-text p {
  margin: 0;
  opacity: 1;
  font-size: 0.95rem;
}

.contact-form {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-radius: var(--radius);
  padding: 45px 35px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.05), inset 0 1px 0 rgba(255,255,255,0.8);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.contact-form h3 {
  margin-bottom: 25px;
}

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

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  transition: var(--transition);
  background: var(--light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.08);
  background: var(--white);
}

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

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

/* ===== Footer ===== */
.footer {
  background: linear-gradient(180deg, #0f172a 0%, #0a0f1a 100%);
  color: rgba(255,255,255,0.8);
  padding: 70px 0 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2e7d32, #66bb6a, #2e7d32);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-about .brand-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 15px;
}

.footer-about p {
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer h4 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: 3px;
}

.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  font-size: 0.92rem;
  opacity: 0.75;
}
.footer-links a:hover {
  opacity: 1;
  color: var(--accent);
  padding-left: 5px;
}

.footer-bottom {
  padding: 25px 0;
  text-align: center;
  font-size: 0.88rem;
  opacity: 0.6;
}

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

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: linear-gradient(135deg, #2e7d32, #66bb6a);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(46, 125, 50, 0.25);
}

/* ===== Fundraising Targets ===== */
.target-bar {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
}

.target-bar .year {
  min-width: 60px;
  font-weight: 600;
  font-size: 0.92rem;
}

.target-bar .bar-track {
  flex: 1;
  height: 28px;
  background: var(--light);
  border-radius: 50px;
  overflow: hidden;
}

.target-bar .bar-fill {
  height: 100%;
  border-radius: 50px;
  background: linear-gradient(90deg, #1b5e20, #2e7d32, #66bb6a);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 12px;
  font-size: 0.8rem;
  color: var(--white);
  font-weight: 600;
  min-width: fit-content;
  box-shadow: 0 2px 8px rgba(46, 125, 50, 0.2);
  transition: width 1s ease;
}

/* ===== Alert / Success Messages ===== */
.alert {
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.alert-success {
  background: #f0fdf4;
  color: var(--primary-dark);
  border: 1px solid rgba(46, 125, 50, 0.2);
}
.alert-error {
  background: rgba(211, 47, 47, 0.1);
  color: #c62828;
  border: 1px solid rgba(211, 47, 47, 0.2);
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
  .container { max-width: 960px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
  .container { max-width: 720px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .content-block { flex-direction: column; gap: 40px; }
  .content-block.reverse { flex-direction: column; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .timeline::before { left: 20px; }
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    padding-left: 50px;
    padding-right: 0;
    text-align: left;
    justify-content: flex-start;
  }
  .timeline-dot { left: 20px; }
  .hero h1 { font-size: clamp(1.8rem, 4.5vw, 2.8rem); }
  .page-header { padding: 140px 0 60px; }
  .budget-table { font-size: 0.88rem; }
  .budget-table th, .budget-table td { padding: 12px 16px; }
  /* Disable parallax on tablets — scroll jank */
  .hero, .page-header, .stats-bar, .parallax-cta { background-attachment: scroll !important; }
}

@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 80px 30px 30px;
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    transition: var(--transition);
    gap: 15px;
  }
  .nav-links.active { right: 0; }
  .nav-links a { color: var(--text) !important; font-size: 1rem; }
  .hamburger { display: flex; }
  .grid-2, .grid-4, .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 50px 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .stat-item h3 { font-size: 2rem; }
  .section-title { margin-bottom: 35px; }
  .section-title p { font-size: 0.95rem; }
  .contact-info-card { padding: 30px 20px; }
  .contact-form { padding: 30px 20px; }
  .page-header { padding: 120px 0 50px; }
  .page-header p { font-size: 0.95rem; }
  .vm-card { padding: 30px 20px; }
  .hero { min-height: 90vh; }
  .hero, .page-header, .stats-bar, .parallax-cta { background-attachment: scroll !important; }
}

@media (max-width: 480px) {
  .container { padding: 0 12px; }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.35rem; }
  .hero { min-height: 85vh; padding-top: 100px; }
  .hero p { font-size: 1rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 15px; }
  .stat-item h3 { font-size: 1.6rem; }
  .stat-item p { font-size: 0.8rem; }
  .card { padding: 25px 20px; }
  .btn { padding: 12px 24px; font-size: 0.9rem; }
  .hero-stat h3 { font-size: 1.6rem; }
  .breadcrumb { font-size: 0.8rem; }
  .budget-table th, .budget-table td { padding: 10px 12px; font-size: 0.82rem; }
  .target-bar { flex-direction: column; align-items: stretch; gap: 6px; }
  .footer-bottom { font-size: 0.8rem; }
  .hero, .page-header, .stats-bar, .parallax-cta { background-attachment: scroll !important; }
}

/* ===== Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Stagger children animation */
.grid-2 .card:nth-child(2) { transition-delay: 0.1s; }
.grid-3 .card:nth-child(2) { transition-delay: 0.1s; }
.grid-3 .card:nth-child(3) { transition-delay: 0.2s; }
.grid-4 .card:nth-child(2) { transition-delay: 0.1s; }
.grid-4 .card:nth-child(3) { transition-delay: 0.2s; }
.grid-4 .card:nth-child(4) { transition-delay: 0.3s; }

/* ===== Impact Cards ===== */
.impact-card {
  border-left: 4px solid;
  border-image: linear-gradient(180deg, #2e7d32, #81c784) 1;
}

/* ===== KPI Tags ===== */
.kpi-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.kpi-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04), inset 0 1px 0 rgba(255,255,255,0.8);
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.kpi-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-colored);
}

.kpi-item .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
}

/* ===== Mobile Menu Overlay ===== */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 999;
}

.nav-overlay.active {
  display: block;
}

/* ===== Section Decorators ===== */
.section-light {
  position: relative;
}

.section-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.06), transparent);
}

.section-light::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.06), transparent);
}

/* ===== Selection Color ===== */
::selection {
  background: rgba(46, 125, 50, 0.12);
  color: var(--primary-dark);
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--light);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #81c784, #2e7d32);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #1b5e20;
}

/* ===== Parallax CTA Sections ===== */
.parallax-cta {
  position: relative;
  overflow: hidden;
}

.parallax-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.parallax-cta::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -15%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

/* ===== Glossy Glass Panels ===== */
.glass-panel {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 32px rgba(0,0,0,0.05), inset 0 1px 0 rgba(255,255,255,0.8);
}

/* ===== Enhanced Fade Animations ===== */
.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-left.visible,
.fade-in-right.visible,
.fade-in-scale.visible {
  opacity: 1;
  transform: translateX(0) scale(1);
}

/* ===== Glossy Button Effect ===== */
.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.2), transparent);
  border-radius: 50px 50px 0 0;
  pointer-events: none;
}

.btn {
  position: relative;
  overflow: hidden;
}

/* ===== Smooth scrollbar for tables ===== */
.budget-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
}
