 :root {
      --primary: #2563eb;
      --secondary: #0f172a;
      --accent: #22d3ee;
      --bg: #f8fafc;
      --card: #ffffff;
    }

    * { box-sizing: border-box; }

    body {
      margin: 0;
      font-family: 'Inter', sans-serif;
      background: linear-gradient(180deg, #eef2ff, #f8fafc);
      color: #0f172a;
      line-height: 1.6;
    }

    header {
      background: radial-gradient(circle at top right, #38bdf8, #2563eb, #1e3a8a);
      color: white;
      padding: 80px 20px 120px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    header h1 {
      font-size: clamp(2.2rem, 4vw, 3.2rem);
      margin-bottom: 16px;
    }

    header p {
      max-width: 800px;
      margin: auto;
      font-size: 1.1rem;
      opacity: 0.95;
    }

    nav {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255,255,255,0.9);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid #e5e7eb;
    }

    nav ul {
      display: flex;
      gap: 20px;
      justify-content: center;
      padding: 12px 20px;
      margin: 0;
      list-style: none;
      flex-wrap: wrap;
    }

    nav a {
      text-decoration: none;
      font-weight: 600;
      color: #1e293b;
      padding: 6px 12px;
      border-radius: 999px;
    }

    nav a:hover {
      background: #e0e7ff;
      color: var(--primary);
    }

    section {
      padding: 80px 20px;
      max-width: 1200px;
      margin: auto;
    }

    .section-title {
      text-align: center;
      margin-bottom: 50px;
    }

    .section-title h2 {
      font-size: 2.2rem;
      margin-bottom: 10px;
    }

    .section-title p {
      max-width: 700px;
      margin: auto;
      color: #475569;
    }

    .grid {
      display: grid;
      gap: 24px;
    }

    .grid-3 {
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }

    .card {
      background: var(--card);
      border-radius: 20px;
      padding: 28px;
      box-shadow: 0 10px 30px rgba(15,23,42,0.08);
      transition: transform .3s, box-shadow .3s;
    }

    .card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 40px rgba(15,23,42,0.12);
    }

    .card h3 {
      margin-top: 0;
      color: var(--primary);
    }

    .badge {
      display: inline-block;
      padding: 6px 14px;
      background: #e0f2fe;
      color: #0369a1;
      border-radius: 999px;
      font-size: 0.8rem;
      font-weight: 600;
      margin-bottom: 12px;
    }

    .timeline {
      border-left: 3px solid var(--primary);
      padding-left: 30px;
    }

    .timeline-item {
      margin-bottom: 30px;
    }

    .timeline-item h4 {
      margin-bottom: 6px;
    }

    footer {
      background: #020617;
      color: #cbd5f5;
      padding: 60px 20px;
      text-align: center;
    }

    footer h3 {
      color: white;
    }

    footer p {
      max-width: 700px;
      margin: auto;
      opacity: 0.9;
    }

    .btn {
      display: inline-block;
      margin-top: 20px;
      padding: 14px 28px;
      background: linear-gradient(90deg, #22d3ee, #2563eb);
      color: white;
      border-radius: 999px;
      font-weight: 700;
      text-decoration: none;
      box-shadow: 0 10px 20px rgba(37,99,235,0.4);
    }

    .btn:hover {
      opacity: 0.95;
    }

.laporan-card {
  background: white;
  padding: 28px;
  border-radius: 20px;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.laporan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 20px;
  margin-top: 20px;
}

.laporan-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 14px;
  cursor: pointer;
  transition: transform .3s;
}

.laporan-img:hover { transform: scale(1.05); }

/* Lightbox */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 20px;
}

#closeLightbox {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}