/* === NOKUSA SUPPORT FOR DISABLED PEOPLE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand: #0057a8;
  --brand2: #e63946;
  --accent: #f4a261;
  --dark: #0d1117;
  --dark2: #161b22;
  --surface: #1c2333;
  --border: rgba(255,255,255,0.08);
  --fg: #e6edf3;
  --muted: rgba(230,237,243,0.55);
  --radius: 16px;
  --shadow: 0 4px 32px rgba(0,0,0,0.3);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; background: var(--dark); color: var(--fg); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.75rem 1.75rem; border-radius: 50px; font-weight: 700;
  font-size: 0.95rem; cursor: pointer; border: none; transition: all 0.2s;
  white-space: nowrap;
}
.btn-donate { background: var(--brand2); color: #fff; }
.btn-donate:hover { background: #c1121f; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(230,57,70,0.4); }
.btn-ghost { background: transparent; color: var(--fg); border: 2px solid rgba(255,255,255,0.25); }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.05); }
.btn-ghost-dark { background: transparent; color: var(--fg); border: 2px solid rgba(255,255,255,0.2); }
.btn-ghost-dark:hover { border-color: rgba(255,255,255,0.5); }
.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }
.btn-full { width: 100%; display: flex; }

/* === NAV === */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13,17,23,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; gap: 2rem; height: 70px;
}
.nav-logo { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.logo-icon { font-size: 1.75rem; }
.logo-name { display: block; font-weight: 800; font-size: 1.1rem; color: #fff; line-height: 1; }
.logo-tag { display: block; font-size: 0.65rem; color: var(--muted); line-height: 1; margin-top: 2px; }
.nav-links { display: flex; list-style: none; gap: 2rem; margin-left: auto; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--muted); transition: color 0.2s; }
.nav-links a:hover { color: #fff; }
.nav-donate { margin-left: 1rem; flex-shrink: 0; }
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 0.25rem; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--fg); border-radius: 2px; transition: all 0.2s; }
.nav-mobile { display: none; flex-direction: column; padding: 1rem 1.5rem 1.5rem; gap: 0.5rem; border-top: 1px solid var(--border); background: var(--dark2); }
.nav-mobile a { padding: 0.6rem 0; color: var(--muted); font-weight: 500; border-bottom: 1px solid var(--border); }
.nav-mobile .btn { margin-top: 0.5rem; text-align: center; }
.nav-mobile.open { display: flex; }

/* === HELPERS === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 0; }
.section-eyebrow { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem; }
.section-eyebrow.light { color: rgba(255,255,255,0.6); }
.section-title { font-size: clamp(1.8rem, 4vw, 2.75rem); font-weight: 800; line-height: 1.15; margin-bottom: 1rem; }
.section-title.white { color: #fff; }
.section-sub { color: var(--muted); font-size: 1.05rem; max-width: 560px; }
.section-head { text-align: center; margin-bottom: 3.5rem; }
.section-head .section-sub { margin: 0 auto; }
.accent { color: var(--accent); }

/* === HERO === */
.hero {
  min-height: 100vh; display: flex; align-items: center; position: relative;
  overflow: hidden; padding-top: 70px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0d1117 0%, #0a1628 50%, #1a0a0a 100%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(0,87,168,0.15) 0%, transparent 70%);
}
.hero-content {
  position: relative; z-index: 2; max-width: 1200px; margin: 0 auto;
  padding: 4rem 1.5rem; flex: 1; max-width: 600px; padding-left: 5vw;
}
.hero-badge {
  display: inline-block; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  padding: 0.35rem 1rem; border-radius: 50px; font-size: 0.78rem; font-weight: 600;
  color: var(--muted); margin-bottom: 1.5rem; letter-spacing: 0.05em;
}
.hero-title {
  font-size: clamp(2.5rem, 7vw, 5rem); font-weight: 900; line-height: 1.05;
  margin-bottom: 1.5rem; color: #fff;
}
.hero-sub { color: var(--muted); font-size: 1.05rem; max-width: 520px; margin-bottom: 2.5rem; line-height: 1.7; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: flex; gap: 2.5rem; }
.hero-stat { display: flex; flex-direction: column; }
.hero-stat strong { font-size: 1.5rem; font-weight: 800; color: #fff; }
.hero-stat span { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }
.hero-image-col {
  position: absolute; right: 0; top: 70px; bottom: 0;
  width: 45%; display: flex; align-items: center; justify-content: center;
  z-index: 1;
}
.hero-img-wrap {
  width: 90%; max-width: 480px; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* === ABOUT === */
.about { background: var(--dark2); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-images { position: relative; }
.about-img-main { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about-img-main img { width: 100%; height: 380px; object-fit: cover; }
.about-img-small {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  width: 200px; border-radius: var(--radius); overflow: hidden;
  border: 4px solid var(--dark2); box-shadow: var(--shadow);
}
.about-img-small img { width: 100%; height: 140px; object-fit: cover; }
.about-text { padding-left: 1rem; }
.about-text p { color: var(--muted); margin-bottom: 1rem; line-height: 1.8; }
.about-details { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.detail-item { display: flex; gap: 1rem; align-items: flex-start; }
.detail-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 2px; }
.detail-item strong { display: block; font-size: 0.85rem; color: var(--fg); margin-bottom: 2px; }
.detail-item span { font-size: 0.9rem; color: var(--muted); }

/* === PROGRAMS === */
.programs { background: var(--dark); }
.programs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.program-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem 1.5rem; transition: all 0.25s;
}
.program-card:hover { transform: translateY(-4px); border-color: rgba(244,162,97,0.3); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.program-icon { font-size: 2.25rem; margin-bottom: 1rem; }
.program-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.6rem; color: #fff; }
.program-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }

/* === DONATE === */
.donate-section { background: linear-gradient(135deg, #0d1b2e 0%, #1a0a0a 100%); }
.donate-box { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.donate-desc { color: rgba(255,255,255,0.7); margin-bottom: 2rem; line-height: 1.8; }
.donate-impact { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; }
.donate-impact li { color: rgba(255,255,255,0.75); font-size: 0.95rem; padding: 0.75rem 1rem; background: rgba(255,255,255,0.05); border-radius: 10px; border: 1px solid rgba(255,255,255,0.08); }
.donate-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; }
.donate-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 1.5rem; color: #fff; }
.bank-details { background: rgba(255,255,255,0.04); border-radius: 10px; padding: 1.25rem; margin-bottom: 1.5rem; }
.bank-row { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 0; border-bottom: 1px solid var(--border); }
.bank-row:last-child { border-bottom: none; }
.bank-row span { font-size: 0.85rem; color: var(--muted); }
.bank-row strong { font-size: 0.9rem; color: #fff; }
.donate-divider { text-align: center; color: var(--muted); font-size: 0.85rem; margin: 1.25rem 0; position: relative; }
.donate-divider::before, .donate-divider::after { content: ''; position: absolute; top: 50%; width: 35%; height: 1px; background: var(--border); }
.donate-divider::before { left: 0; }
.donate-divider::after { right: 0; }
.donate-note { text-align: center; font-size: 0.78rem; color: var(--muted); margin-top: 1.25rem; line-height: 1.5; }

/* === GALLERY === */
.gallery-section { background: var(--dark2); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery-item { position: relative; border-radius: 12px; overflow: hidden; cursor: pointer; background: var(--surface); }
.gallery-item img { width: 100%; height: 240px; object-fit: cover; transition: transform 0.4s; display: block; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-wide { grid-column: span 2; }
.gallery-wide img { height: 340px; }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: #fff; font-size: 0.82rem; font-weight: 500;
  padding: 2rem 1rem 0.85rem; opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-caption { opacity: 1; }

/* === CONTACT === */
.contact-section { background: var(--dark); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-card { display: flex; gap: 1rem; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 1.25rem; transition: border-color 0.2s; }
.contact-card:hover { border-color: rgba(244,162,97,0.3); }
.contact-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-card h4 { font-size: 0.85rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.contact-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }
.contact-card a { color: var(--accent); }
.contact-card a:hover { text-decoration: underline; }
.contact-form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; }
.contact-form h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 1.5rem; color: #fff; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--muted); margin-bottom: 0.4rem; text-transform: uppercase; letter-spacing: 0.05em; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: 10px; padding: 0.75rem 1rem; color: var(--fg); font-size: 0.95rem;
  font-family: inherit; transition: border-color 0.2s; outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--accent); }
.form-group select option { background: var(--surface); }
.form-group textarea { resize: vertical; }
.form-success { display: none; margin-top: 1rem; padding: 0.85rem 1rem; background: rgba(39,174,96,0.15); border: 1px solid rgba(39,174,96,0.3); border-radius: 10px; color: #27ae60; font-size: 0.9rem; font-weight: 500; text-align: center; }

/* === FOOTER === */
.footer { background: #080d13; border-top: 1px solid var(--border); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-logo .logo-icon { font-size: 1.5rem; }
.footer-logo span { font-weight: 800; font-size: 1.1rem; }
.footer-brand p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }
.footer-reg { margin-top: 0.75rem; font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-links { display: flex; flex-direction: column; gap: 0.1rem; }
.footer-links h4 { font-size: 0.85rem; font-weight: 700; color: #fff; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-links a { font-size: 0.88rem; color: var(--muted); padding: 0.3rem 0; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.footer-contact h4 { font-size: 0.85rem; font-weight: 700; color: #fff; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-contact p { font-size: 0.88rem; color: var(--muted); margin-bottom: 0.4rem; }
.footer-contact a { color: var(--muted); transition: color 0.2s; }
.footer-contact a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--border); padding: 1.5rem 0; text-align: center; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.25); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-image-col { display: none; }
  .hero-content { max-width: 100%; padding: 5rem 1.5rem 4rem; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; }
  .about-images { margin-bottom: 3rem; }
  .about-img-small { right: 0; }
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .donate-box { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-donate { display: none; }
  .nav-burger { display: flex; margin-left: auto; }
  .section { padding: 4rem 0; }
  .programs-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-wide { grid-column: span 2; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.5rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-wide { grid-column: span 1; }
  .gallery-wide img { height: 240px; }
}
