:root {
  --sea-dark: #1b4332;
  --sea: #2d6a4f;
  --sea-light: #ffd166;
  --leaf: #40916c;
  --leaf-light: #95d5b2;
  --sand: #f5f8f2;
  --text: #1c2b2f;
  --muted: #5a6b6e;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 4px 20px rgba(7, 59, 76, 0.08);
  --shadow-lg: 0 20px 45px rgba(7, 59, 76, 0.14);
  --font-heading: 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--sand);
  line-height: 1.65;
  overflow-x: hidden;
  background-image:
    radial-gradient(circle at 12% 8%, rgba(64, 145, 108, 0.07) 0%, transparent 32%),
    radial-gradient(circle at 88% 4%, rgba(255, 209, 102, 0.09) 0%, transparent 28%);
  background-attachment: fixed;
}

/* Scroll-reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .leaf-decor { animation: none !important; }
}

/* Floating eco decorations */
.leaf-decor {
  position: absolute;
  font-size: 1.8rem;
  opacity: 0.5;
  animation: float-sway 7s ease-in-out infinite;
  pointer-events: none;
  user-select: none;
}

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


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

a { text-decoration: none; color: inherit; }

h1, h2, h3 {
  color: var(--sea-dark);
  margin-top: 0;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* Header */
.site-header {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(7, 59, 76, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--sea-dark);
}

.logo-icon {
  font-size: 1.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--leaf-light), var(--leaf));
  box-shadow: 0 4px 12px rgba(64, 145, 108, 0.35);
}

.nav {
  display: flex;
  gap: 32px;
}

.nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--muted);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav a:hover, .nav a.active {
  color: var(--leaf);
  border-color: var(--leaf-light);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--sea-dark);
}

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--sea-dark), var(--sea) 55%, var(--leaf));
  background-size: 200% 200%;
  animation: gradient-shift 12s ease infinite;
  color: var(--white);
  padding: 90px 0 130px;
  overflow: hidden;
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 80px;
  background: var(--sand);
  clip-path: polygon(0 60%, 5% 55%, 10% 62%, 15% 50%, 20% 60%, 25% 48%, 30% 58%, 35% 52%, 40% 62%, 45% 50%, 50% 60%, 55% 48%, 60% 58%, 65% 52%, 70% 62%, 75% 50%, 80% 60%, 85% 48%, 90% 58%, 95% 52%, 100% 60%, 100% 100%, 0 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 32px;
}

.hero-content { max-width: 640px; position: relative; z-index: 2; }

.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 20px rgba(0,0,0,0.15));
}

.illustration-section {
  padding: 20px 0 60px;
  text-align: center;
}

.illustration-section img {
  max-width: 480px;
  width: 100%;
  height: auto;
}

.contact-illustration {
  max-width: 320px;
  width: 100%;
  height: auto;
  margin-top: 30px;
  display: block;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--leaf-light);
  margin-bottom: 10px;
}

.hero h1,
.hero .lead,
.hero .eyebrow,
.hero-actions {
  opacity: 0;
  animation: fade-up 0.8s ease forwards;
}

.hero .eyebrow { animation-delay: 0.05s; }
.hero h1 { animation-delay: 0.2s; }
.hero .lead { animation-delay: 0.35s; }
.hero-actions { animation-delay: 0.5s; }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
  color: var(--white);
  font-size: 2.6rem;
  margin-bottom: 16px;
}

.hero .lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  position: relative;
  display: inline-block;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-family: var(--font-heading);
  cursor: pointer;
  border: 2px solid transparent;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: translateX(-120%);
  transition: transform 0.5s ease;
}

.btn:hover::after { transform: translateX(120%); }

.btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 24px rgba(7, 59, 76, 0.22);
}

.btn:active { transform: translateY(-1px) scale(0.99); }

.btn-primary {
  background: linear-gradient(135deg, var(--leaf-light), var(--leaf));
  color: var(--sea-dark);
}

.btn-outline {
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}

.btn-outline:hover { background: rgba(255,255,255,0.12); }

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--sea-dark), var(--sea) 60%, var(--leaf));
  color: var(--white);
  padding: 60px 0 80px;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 50px;
  background: var(--sand);
  clip-path: polygon(0 60%, 10% 50%, 20% 62%, 30% 48%, 40% 60%, 50% 50%, 60% 62%, 70% 48%, 80% 60%, 90% 50%, 100% 60%, 100% 100%, 0 100%);
}

.page-hero h1,
.page-hero .eyebrow {
  color: var(--white);
  opacity: 0;
  animation: fade-up 0.7s ease forwards;
  position: relative;
  z-index: 2;
}

.page-hero .eyebrow { color: var(--leaf-light); animation-delay: 0.05s; }
.page-hero h1 { font-size: 2.2rem; margin-bottom: 0; animation-delay: 0.2s; }

/* Values / Cards */
.values {
  padding: 80px 0;
  position: relative;
  background:
    radial-gradient(circle at 8% 20%, rgba(46,139,87,0.06) 0%, transparent 40%),
    radial-gradient(circle at 92% 80%, rgba(17,138,178,0.06) 0%, transparent 40%);
}

.values h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 26px;
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid rgba(27, 67, 50, 0.06);
  border-top: 3px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--leaf-light);
}

.card h3 { font-size: 1.15rem; }

.card-icon {
  font-size: 1.9rem;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(149, 213, 178, 0.35), rgba(64, 145, 108, 0.18));
  transition: transform 0.35s ease, background 0.35s ease;
}

.card:hover .card-icon {
  transform: scale(1.1) rotate(-6deg);
  background: linear-gradient(135deg, var(--leaf-light), var(--leaf));
}

/* Stats */
.stats {
  position: relative;
  margin-top: -60px;
  z-index: 3;
  padding: 0 0 40px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 36px 24px;
}

.stat-item { text-align: center; }

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--sea-dark), var(--leaf));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  display: block;
  margin-top: 6px;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

/* CTA */
.cta {
  position: relative;
  background: linear-gradient(120deg, var(--sea-dark), var(--leaf));
  color: var(--white);
  padding: 60px 0;
  text-align: center;
  overflow: hidden;
}

.cta h2 { color: var(--white); }
.cta p { color: rgba(255,255,255,0.85); margin-bottom: 24px; }

/* Content section */
.content-section { padding: 80px 0; }

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

.highlight-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--sea-light);
}

.highlight-box h3 { margin-bottom: 6px; }
.highlight-box p { margin-top: 0; margin-bottom: 20px; color: var(--muted); }
.highlight-box p:last-child { margin-bottom: 0; }

/* Contact */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #e2e8e6;
  color: var(--muted);
}

.contact-icon { font-size: 1.2rem; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form label {
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 10px;
  color: var(--sea-dark);
}

.contact-form input,
.contact-form textarea {
  padding: 12px 14px;
  border: 1px solid #d5dedb;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--sea);
}

.contact-form button { margin-top: 16px; align-self: flex-start; }

.form-note {
  color: var(--sea);
  font-weight: 600;
  margin-top: 10px;
  min-height: 1.2em;
}

/* Institutional / accountability page */
.notice-badge {
  display: inline-block;
  background: rgba(255, 209, 102, 0.25);
  border: 1px solid var(--sea-light);
  color: var(--sea-dark);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(255, 209, 102, 0.2);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(27, 67, 50, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.info-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.info-icon {
  font-size: 1.3rem;
  line-height: 1;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 209, 102, 0.35), rgba(64, 145, 108, 0.18));
}

.info-item div { display: flex; flex-direction: column; gap: 2px; }

.info-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--muted);
  font-weight: 600;
}

.info-value { font-weight: 600; color: var(--sea-dark); }

.doc-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.doc-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(27, 67, 50, 0.06);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.doc-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--leaf-light), var(--leaf));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}

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

.doc-item:hover::before { transform: scaleY(1); }

.doc-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(149, 213, 178, 0.4), rgba(64, 145, 108, 0.2));
  transition: transform 0.3s ease;
}

.doc-item:hover .doc-icon { transform: scale(1.08) rotate(-4deg); }

.doc-text { display: flex; flex-direction: column; gap: 3px; flex: 1; }

.doc-title { font-weight: 700; color: var(--sea-dark); font-family: var(--font-heading); }
.doc-desc { font-size: 0.86rem; color: var(--muted); }

.doc-action {
  font-weight: 600;
  color: var(--leaf);
  white-space: nowrap;
  font-size: 0.85rem;
  margin-top: auto;
  transition: transform 0.2s ease;
}

.doc-item:hover .doc-action { transform: translateX(3px); }

.gov-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.gov-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 22px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(27, 67, 50, 0.06);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.gov-icon {
  font-size: 1.6rem;
  margin: 0 auto 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 209, 102, 0.35), rgba(64, 145, 108, 0.18));
}

.gov-item h3 { font-size: 1.05rem; margin-bottom: 6px; }
.gov-item p { font-size: 0.9rem; color: var(--muted); margin: 0; }

.table-wrap {
  overflow-x: auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(27, 67, 50, 0.06);
}

.accountability-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.accountability-table th,
.accountability-table td {
  text-align: left;
  padding: 16px 22px;
  border-bottom: 1px solid #e2e8e6;
}

.accountability-table th {
  background: linear-gradient(135deg, var(--sea-dark), var(--leaf));
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.accountability-table th:first-child { border-top-left-radius: var(--radius); }
.accountability-table th:last-child { border-top-right-radius: var(--radius); }

.accountability-table tbody tr {
  transition: background 0.2s ease;
}

.accountability-table tbody tr:hover { background: rgba(149, 213, 178, 0.12); }
.accountability-table tbody tr:last-child td { border-bottom: none; }

.status-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.status-ok { background: rgba(64, 145, 108, 0.15); color: var(--leaf); }
.status-pending { background: rgba(255, 209, 102, 0.3); color: #a67c00; }

.btn-link {
  font-weight: 600;
  color: var(--sea);
  transition: color 0.2s ease;
}

.btn-link:hover { color: var(--leaf); text-decoration: underline; }

/* Footer */
.site-footer {
  position: relative;
  background: linear-gradient(160deg, var(--sea-dark), #0f2a20);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
  overflow: hidden;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.footer-col p { font-size: 0.9rem; line-height: 1.7; }

.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.75); transition: color 0.2s ease, padding-left 0.2s ease; }
.footer-links a:hover { color: var(--leaf-light); padding-left: 4px; }

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 22px 0;
  font-size: 0.85rem;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .nav { display: none; }
  .menu-toggle { display: block; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 16px 20px;
    box-shadow: var(--shadow);
  }
  .hero h1 { font-size: 2rem; }
  .two-col { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image { order: -1; max-width: 320px; margin: 0 auto 20px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}
