:root {
  --green: #0f4c2a;
  --green-dark: #083018;
  --green-light: #1a7a40;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --white: #ffffff;
  --off-white: #f7faf8;
  --light: #eef5f1;
  --text: #1a2e1d;
  --text-muted: #5a7a62;
  --border: #d0e8d8;
  --shadow: rgba(15,76,42,0.12);
  --radius: 16px;
  --transition: 0.3s ease;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

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

/* ── NAVBAR ── */
.navbar {
  position: fixed; top:0; left:0; right:0; z-index:1000;
  padding: 16px 0;
  background: rgba(8,48,24,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  transition: var(--transition);
}
.navbar.scrolled { padding:10px 0; background: rgba(8,48,24,0.98); }
.nav-container {
  max-width:1200px; margin:0 auto; padding:0 24px;
  display:flex; align-items:center; justify-content:space-between;
}
.nav-logo { display:flex; align-items:center; gap:12px; text-decoration:none; }
.logo-img { height:48px; width:48px; object-fit:contain; border-radius:8px; }
.logo-text { display:flex; flex-direction:column; }
.logo-abbr { font-family:'Playfair Display',serif; font-size:1.4rem; font-weight:700; color:var(--gold); line-height:1; }
.logo-full { font-size:0.65rem; color:rgba(255,255,255,0.75); letter-spacing:0.5px; }
.nav-links { display:flex; align-items:center; gap:8px; list-style:none; }
.nav-links a {
  color:rgba(255,255,255,0.85); text-decoration:none;
  font-size:0.875rem; font-weight:500; padding:8px 14px;
  border-radius:8px; transition:var(--transition);
}
.nav-links a:hover { color:var(--gold); background:rgba(201,168,76,0.1); }
.nav-donate-btn {
  background: var(--gold) !important; color: var(--green-dark) !important;
  font-weight:700 !important; border-radius:8px !important;
}
.nav-donate-btn:hover { background: var(--gold-light) !important; transform:translateY(-1px); }
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:4px; }
.hamburger span { display:block; width:24px; height:2px; background:var(--white); border-radius:2px; transition:var(--transition); }

/* ── HERO ── */
.hero {
  min-height:100vh; position:relative;
  display:flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg, #062014 0%, #0f4c2a 40%, #1a6b3a 70%, #0a3019 100%);
  overflow:hidden;
}
.hero::before {
  content:''; position:absolute; inset:0;
  background-image: radial-gradient(circle at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(201,168,76,0.06) 0%, transparent 50%);
}
.hero-overlay {
  position:absolute; inset: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='%23c9a84c' fill-opacity='0.04'%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");
}
.hero-content {
  position:relative; z-index:2;
  text-align:center; padding:120px 24px 80px;
  max-width:800px;
}
.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(201,168,76,0.15); border:1px solid rgba(201,168,76,0.4);
  color:var(--gold-light); font-size:0.78rem; font-weight:500;
  padding:8px 20px; border-radius:50px; margin-bottom:28px;
  animation: fadeDown 0.8s ease;
}
.hero-content h1 {
  font-family:'Playfair Display',serif; font-size:clamp(2.2rem,5vw,3.8rem);
  font-weight:700; color:var(--white); line-height:1.2;
  margin-bottom:24px; animation: fadeUp 0.9s ease 0.1s both;
}
.gold-text { color:var(--gold); }
.hero-sub {
  font-size:1.05rem; color:rgba(255,255,255,0.8); line-height:1.8;
  margin-bottom:36px; animation: fadeUp 0.9s ease 0.2s both;
}
.hero-btns { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; margin-bottom:32px; animation: fadeUp 0.9s ease 0.3s both; }
.hero-location { color:rgba(255,255,255,0.6); font-size:0.875rem; animation: fadeUp 0.9s ease 0.4s both; }
.scroll-cue {
  position:absolute; bottom:30px; left:50%; transform:translateX(-50%);
  color:rgba(255,255,255,0.5); font-size:1.2rem;
  animation: bounce 2s infinite;
}

/* ── BUTTONS ── */
.btn {
  display:inline-flex; align-items:center; gap:8px;
  padding:14px 28px; border-radius:10px; font-weight:600;
  font-size:0.9rem; text-decoration:none; border:none; cursor:pointer;
  transition:var(--transition); white-space:nowrap;
}
.btn-gold { background:var(--gold); color:var(--green-dark); }
.btn-gold:hover { background:var(--gold-light); transform:translateY(-2px); box-shadow:0 8px 24px rgba(201,168,76,0.35); }
.btn-outline-white { background:transparent; color:var(--white); border:2px solid rgba(255,255,255,0.5); }
.btn-outline-white:hover { border-color:var(--white); background:rgba(255,255,255,0.1); }
.full-width { width:100%; justify-content:center; }

/* ── STATS BAR ── */
.stats-bar { background:var(--green); padding:40px 0; }
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.stat-item {
  text-align:center; padding:24px 16px;
  border-right:1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right:none; }
.stat-item i { font-size:1.8rem; color:var(--gold); margin-bottom:12px; display:block; }
.stat-num { font-size:2.4rem; font-weight:700; color:var(--white); font-family:'Playfair Display',serif; }
.stat-lbl { font-size:0.8rem; color:rgba(255,255,255,0.65); margin-top:4px; text-transform:uppercase; letter-spacing:1px; }

/* ── SECTION COMMONS ── */
.section { padding:96px 0; }
.section-head { text-align:center; margin-bottom:60px; }
.section-head.light h2, .section-head.light p { color:var(--white); }
.section-head.light .tag { background:rgba(201,168,76,0.2); color:var(--gold-light); border-color:rgba(201,168,76,0.4); }
.tag {
  display:inline-block; background:rgba(15,76,42,0.08); color:var(--green);
  border:1px solid rgba(15,76,42,0.2); font-size:0.75rem; font-weight:700;
  letter-spacing:2px; text-transform:uppercase; padding:6px 18px;
  border-radius:50px; margin-bottom:16px;
}
.section-head h2 { font-family:'Playfair Display',serif; font-size:clamp(1.8rem,3.5vw,2.6rem); font-weight:700; margin-bottom:16px; }
.section-head p { color:var(--text-muted); font-size:1rem; max-width:560px; margin:0 auto; line-height:1.8; }

/* ── ABOUT ── */
.about-section { background:var(--off-white); }
.about-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.about-card {
  background:var(--white); border-radius:var(--radius); padding:36px 28px;
  border:1px solid var(--border); transition:var(--transition);
  position:relative; overflow:hidden;
}
.about-card:hover { transform:translateY(-6px); box-shadow:0 20px 40px var(--shadow); }
.about-card::before { content:''; position:absolute; top:0; left:0; right:0; height:4px; background:var(--border); transition:var(--transition); }
.about-card:hover::before { background:var(--gold); }
.featured-card::before { background:var(--green); }
.acard-icon {
  width:56px; height:56px; border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  font-size:1.4rem; margin-bottom:20px;
}
.acard-icon.green { background:rgba(15,76,42,0.1); color:var(--green); }
.acard-icon.gold { background:rgba(201,168,76,0.15); color:var(--gold); }
.about-card h3 { font-size:1.15rem; font-weight:700; margin-bottom:12px; }
.about-card p { color:var(--text-muted); line-height:1.8; font-size:0.9rem; }
.reg-badge { margin-top:16px; background:var(--green); color:var(--white); font-size:0.72rem; font-weight:700; padding:6px 14px; border-radius:50px; display:inline-block; letter-spacing:1px; text-transform:uppercase; }

/* ── CONCERNS ── */
.concerns-section { background:var(--green); }
.concerns-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.concern-card {
  background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.1);
  border-radius:var(--radius); padding:32px 24px; text-align:center;
  transition:var(--transition); cursor:default;
}
.concern-card:hover { background:rgba(255,255,255,0.12); transform:translateY(-4px); border-color:rgba(201,168,76,0.4); }
.cc-icon { width:60px; height:60px; background:rgba(201,168,76,0.15); border:1px solid rgba(201,168,76,0.3); border-radius:16px; display:flex; align-items:center; justify-content:center; margin:0 auto 18px; font-size:1.5rem; color:var(--gold); transition:var(--transition); }
.concern-card:hover .cc-icon { background:var(--gold); color:var(--green-dark); }
.concern-card h3 { color:var(--white); font-size:1rem; font-weight:700; margin-bottom:8px; }
.concern-card p { color:rgba(255,255,255,0.65); font-size:0.82rem; line-height:1.7; }

/* ── PROGRAMS / TABS ── */
.programs-section { background:var(--off-white); }
.tab-wrap { background:var(--white); border-radius:var(--radius); border:1px solid var(--border); overflow:hidden; }
.tab-btns { display:flex; background:var(--light); border-bottom:1px solid var(--border); }
.tab-btn {
  flex:1; padding:16px 12px; border:none; background:transparent; cursor:pointer;
  font-size:0.875rem; font-weight:600; color:var(--text-muted);
  display:flex; align-items:center; justify-content:center; gap:8px;
  transition:var(--transition); border-bottom:3px solid transparent;
}
.tab-btn:hover { color:var(--green); background:rgba(15,76,42,0.04); }
.tab-btn.active { color:var(--green); border-bottom-color:var(--gold); background:var(--white); }
.tab-pane { display:none; padding:40px; }
.tab-pane.active { display:block; }
.plan-items { display:grid; grid-template-columns:repeat(2,1fr); gap:20px; }
.plan-item {
  display:flex; gap:16px; align-items:flex-start;
  padding:20px; border-radius:12px; background:var(--off-white); border:1px solid var(--border);
  transition:var(--transition);
}
.plan-item:hover { border-color:var(--gold); background:rgba(201,168,76,0.04); }
.plan-item > i { font-size:1.2rem; color:var(--gold); background:rgba(201,168,76,0.12); padding:10px; border-radius:10px; flex-shrink:0; margin-top:2px; }
.plan-item h4 { font-size:0.9rem; font-weight:700; margin-bottom:4px; color:var(--text); }
.plan-item p { font-size:0.8rem; color:var(--text-muted); line-height:1.6; }

/* ── TEAM ── */
.team-section { background:var(--white); }
.team-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; align-items:start; }
.team-card {
  background:var(--off-white); border-radius:var(--radius); overflow:hidden;
  border:1px solid var(--border); transition:var(--transition); text-align:center;
}
.team-card:hover { transform:translateY(-6px); box-shadow:0 20px 40px var(--shadow); }
.president-card { border:2px solid var(--gold); box-shadow: 0 8px 32px rgba(201,168,76,0.2); }
.team-photo-wrap { position:relative; width:100%; height:240px; overflow:hidden; }
.team-photo-wrap img { width:100%; height:100%; object-fit:cover; object-position:center 15%; transition:var(--transition); }
.team-card:hover .team-photo-wrap img { transform:scale(1.05); }
.team-initials {
  position:absolute; inset:0; background:var(--green);
  display:flex; align-items:center; justify-content:center;
  font-size:2rem; font-weight:700; color:var(--gold);
  font-family:'Playfair Display',serif;
}
.team-info { padding:20px 16px; width:100%; }
.team-info h3 { font-size:0.95rem; font-weight:700; margin-bottom:6px; color:var(--text); }
.team-role {
  display:inline-block; font-size:0.75rem; font-weight:600;
  background:rgba(15,76,42,0.1); color:var(--green);
  padding:4px 12px; border-radius:50px;
}
.president-role { background:rgba(201,168,76,0.15); color:#8a6a1a; }

/* ── PROJECTS ── */
.projects-section { background:var(--green); }
.projects-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.project-card {
  background:rgba(255,255,255,0.07); border:1px solid rgba(255,255,255,0.12);
  border-radius:var(--radius); padding:28px 20px; text-align:center;
  transition:var(--transition); cursor:default;
}
.project-card:hover { background:rgba(201,168,76,0.12); border-color:rgba(201,168,76,0.4); transform:translateY(-4px); }
.project-card i { font-size:2rem; color:var(--gold); margin-bottom:14px; display:block; }
.project-card h3 { color:var(--white); font-size:0.9rem; font-weight:600; }

/* ── FUNDING ── */
.funding-section { background:var(--off-white); }
.funding-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.funding-card {
  background:var(--white); border:1px solid var(--border); border-radius:var(--radius);
  padding:32px 24px; text-align:center; transition:var(--transition);
}
.funding-card:hover { transform:translateY(-4px); box-shadow:0 16px 40px var(--shadow); border-color:var(--gold); }
.funding-card i { font-size:2rem; color:var(--gold); margin-bottom:16px; display:block; }
.funding-card h3 { font-size:1rem; font-weight:700; margin-bottom:10px; }
.funding-card p { color:var(--text-muted); font-size:0.85rem; line-height:1.7; }

/* ── CONTACT ── */
.contact-section { background:var(--green); }
.contact-grid { display:grid; grid-template-columns:1fr 1.2fr; gap:48px; align-items:start; }
.contact-item { display:flex; gap:16px; align-items:flex-start; margin-bottom:28px; }
.contact-item i { font-size:1.2rem; color:var(--gold); background:rgba(201,168,76,0.15); padding:12px; border-radius:10px; flex-shrink:0; }
.contact-item h4 { color:var(--white); font-size:0.9rem; font-weight:700; margin-bottom:4px; }
.contact-item p { color:rgba(255,255,255,0.65); font-size:0.85rem; line-height:1.6; }
.donate-box { background:rgba(201,168,76,0.1); border:1px solid rgba(201,168,76,0.3); border-radius:var(--radius); padding:28px; margin-top:8px; }
.donate-box h3 { color:var(--gold); font-size:1.1rem; font-weight:700; margin-bottom:10px; }
.donate-box p { color:rgba(255,255,255,0.75); font-size:0.875rem; line-height:1.7; margin-bottom:20px; }
.contact-form { background:var(--white); border-radius:var(--radius); padding:40px; }
.contact-form h3 { font-size:1.3rem; font-weight:700; margin-bottom:24px; color:var(--text); }
.form-group { margin-bottom:16px; }
.form-group input, .form-group select, .form-group textarea {
  width:100%; padding:13px 16px; border:1.5px solid var(--border);
  border-radius:10px; font-family:'Inter',sans-serif; font-size:0.875rem;
  color:var(--text); background:var(--off-white); transition:var(--transition);
  outline:none; resize:vertical;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color:var(--green); background:var(--white); }

/* ── FOOTER ── */
.footer { background:var(--green-dark); padding:64px 0 0; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:40px; padding-bottom:48px; border-bottom:1px solid rgba(255,255,255,0.1); }
.footer-brand { display:flex; flex-direction:column; gap:12px; }
.footer-logo { height:44px; width:44px; object-fit:contain; border-radius:8px; }
.footer-logo-text strong { display:block; color:var(--white); font-size:1rem; }
.footer-logo-text span { color:rgba(255,255,255,0.5); font-size:0.8rem; }
.footer-brand p { color:rgba(255,255,255,0.55); font-size:0.85rem; line-height:1.7; }
.footer h4 { color:var(--gold); font-size:0.8rem; font-weight:700; letter-spacing:2px; text-transform:uppercase; margin-bottom:20px; }
.footer ul { list-style:none; }
.footer ul li { margin-bottom:10px; }
.footer ul li a { color:rgba(255,255,255,0.6); text-decoration:none; font-size:0.875rem; transition:var(--transition); }
.footer ul li a:hover { color:var(--gold); }
.footer-areas ul li { color:rgba(255,255,255,0.6); font-size:0.875rem; }
.footer-reg p { color:rgba(255,255,255,0.6); font-size:0.85rem; margin-bottom:10px; line-height:1.6; }
.reg-num { background:rgba(201,168,76,0.15); border:1px solid rgba(201,168,76,0.3); color:var(--gold); font-size:0.8rem; font-weight:700; padding:6px 14px; border-radius:8px; display:inline-block; margin-bottom:12px; }
.footer-bottom { text-align:center; padding:20px 0; }
.footer-bottom p { color:rgba(255,255,255,0.4); font-size:0.8rem; }

/* ── ANIMATIONS ── */
@keyframes fadeDown { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes bounce { 0%,100% { transform:translateX(-50%) translateY(0); } 50% { transform:translateX(-50%) translateY(10px); } }
.reveal { opacity:0; transform:translateY(30px); transition:opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
  .team-grid { grid-template-columns:repeat(3,1fr); }
  .president-card { grid-column:span 3; flex-direction:row; }
  .funding-grid { grid-template-columns:repeat(2,1fr); }
  .projects-grid { grid-template-columns:repeat(2,1fr); }
}
@media(max-width:768px) {
  .nav-links { display:none; flex-direction:column; position:absolute; top:100%; left:0; right:0; background:var(--green-dark); padding:20px; gap:4px; }
  .nav-links.open { display:flex; }
  .hamburger { display:flex; }
  .stats-grid { grid-template-columns:repeat(2,1fr); }
  .about-grid { grid-template-columns:1fr; }
  .concerns-grid { grid-template-columns:repeat(2,1fr); }
  .plan-items { grid-template-columns:1fr; }
  .team-grid { grid-template-columns:repeat(2,1fr); }
  .president-card { grid-column:span 2; flex-direction:column; }
  .contact-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .tab-btns { flex-wrap:wrap; }
  .tab-btn { flex:1 1 40%; }
  .projects-grid { grid-template-columns:repeat(2,1fr); }
}
@media(max-width:480px) {
  .concerns-grid { grid-template-columns:1fr; }
  .team-grid { grid-template-columns:1fr; }
  .president-card { grid-column:span 1; }
  .stats-grid { grid-template-columns:1fr 1fr; }
  .footer-grid { grid-template-columns:1fr; }
}
