/* =====================================================
   GEODESA.ID STYLE - Desa Perkhapesong
   Redesign sesuai tampilan geodesa.id
   ===================================================== */

:root {
  --gd-green: #27ae60;
  --gd-green-dark: #1e8449;
  --gd-orange: #f97316;
  --gd-orange-dark: #ea6c0a;
  --gd-dark: #1a1a2e;
  --gd-topbar: #2c2c2c;
  --gd-nav-bg: #ffffff;
  --gd-text: #333333;
  --gd-text-light: #666;
  --gd-border: #e8e8e8;
  --gd-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

* { box-sizing: border-box; }

/* ===== TOPBAR ===== */
.gd-topbar {
  background: var(--gd-topbar);
  color: rgba(255,255,255,0.8);
  font-size: 0.78rem;
  padding: 0.45rem 0;
}
.gd-topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gd-topbar-left { display: flex; gap: 1.5rem; align-items: center; }
.gd-topbar-left a { color: rgba(255,255,255,0.8); text-decoration: none; display: flex; align-items: center; gap: 0.4rem; font-size: 0.75rem; }
.gd-topbar-left a:hover { color: #fff; }
.gd-topbar-right { display: flex; gap: 0.5rem; align-items: center; }
.gd-social-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
}
.gd-social-btn:hover { transform: scale(1.15); opacity: 0.9; }
.gd-social-yt { background: #ff0000; color: white; }
.gd-social-ig { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); color: white; }
.gd-social-fb { background: #1877f2; color: white; }
.gd-social-tw { background: #1da1f2; color: white; }

/* ===== NAVBAR ===== */
.gd-navbar {
  background: #fff;
  border-bottom: 1px solid var(--gd-border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.gd-navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.gd-brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; flex-shrink: 0; }
.gd-logo-circle {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, #4285f4, #ea4335, #fbbc05, #34a853);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; font-weight: 900; color: white;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 3px 12px rgba(0,0,0,0.2);
  flex-shrink: 0;
}
.gd-logo-img {
  width: 50px; height: 50px;
  object-fit: contain;
  background: white;
  border-radius: 50%;
  padding: 5px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.2);
  flex-shrink: 0;
}
.gd-brand-text { line-height: 1.2; }
.gd-brand-main {
  display: block;
  font-size: 1.1rem; font-weight: 900;
  color: var(--gd-green-dark);
  letter-spacing: -0.01em;
  font-family: 'Inter', sans-serif;
}
.gd-brand-sub {
  display: block;
  font-size: 0.68rem;
  color: var(--gd-text-light);
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Navigation Menu */
.gd-nav { display: flex; align-items: center; gap: 0; flex: 1; justify-content: center; }
.gd-nav a {
  color: var(--gd-text);
  text-decoration: none;
  font-size: 0.83rem;
  font-weight: 600;
  padding: 0.5rem 0.85rem;
  border-radius: 0.35rem;
  transition: all 0.2s;
  display: flex; align-items: center; gap: 0.3rem;
  white-space: nowrap;
}
.gd-nav a:hover { color: var(--gd-orange); background: rgba(249,115,22,0.05); }
.gd-nav a.active { color: var(--gd-orange); }
.gd-nav-home-link { font-size: 1.1rem !important; }

/* Dropdown */
.gd-dropdown { position: relative; }
.gd-dropdown > a { cursor: pointer; }
.gd-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  border-radius: 0.5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border: 1px solid #e8e8e8;
  padding: 0.5rem 0;
  z-index: 1001;
}
.gd-dropdown:hover .gd-dropdown-menu { display: block; }
.gd-dropdown-menu a {
  display: block;
  padding: 0.55rem 1.25rem;
  border-radius: 0;
  color: #333;
  font-size: 0.8rem;
  font-weight: 500;
}
.gd-dropdown-menu a:hover { background: rgba(249,115,22,0.07); color: var(--gd-orange); }

/* CTA Button */
.gd-btn-pengaduan {
  background: linear-gradient(135deg, var(--gd-orange), var(--gd-orange-dark));
  color: white !important;
  padding: 0.6rem 1.25rem !important;
  border-radius: 0.5rem !important;
  font-weight: 700 !important;
  font-size: 0.8rem !important;
  display: inline-flex !important;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 4px 12px rgba(249,115,22,0.3);
  transition: all 0.2s !important;
  flex-shrink: 0;
  white-space: nowrap;
  text-decoration: none;
}
.gd-btn-pengaduan:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(249,115,22,0.4);
  color: white !important;
}

/* Mobile hamburger */
.gd-hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gd-text);
  padding: 0.25rem;
}
.gd-mobile-nav {
  display: none;
  background: #fff;
  border-top: 1px solid var(--gd-border);
  padding: 1rem;
}
.gd-mobile-nav a {
  display: block;
  padding: 0.65rem 1rem;
  color: var(--gd-text);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 0.35rem;
}
.gd-mobile-nav a:hover { background: rgba(249,115,22,0.07); color: var(--gd-orange); }
.gd-mobile-nav.open { display: block; }

/* ===== HERO SECTION ===== */
.gd-hero {
  position: relative;
  min-height: 75vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.gd-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.3) 0%,
    rgba(0,0,0,0.4) 60%,
    rgba(0,0,0,0.6) 100%
  );
}
.gd-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3rem 1.5rem 6rem;
  width: 100%;
  max-width: 800px;
}
.gd-hero-logo-wrap {
  margin-bottom: 1.5rem;
}
.gd-hero-logo-img {
  width: 90px; height: 90px;
  object-fit: contain;
  background: white;
  border-radius: 50%;
  padding: 10px;
  display: block;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}
.gd-hero-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: white;
  margin: 0 0 0.5rem;
  line-height: 1.2;
  font-family: 'Inter', sans-serif;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.gd-hero-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 2rem;
}
.gd-search-wrap {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}
.gd-search-bar {
  width: 100%;
  border: none;
  outline: none;
  padding: 1rem 1.5rem 1rem 3.25rem;
  border-radius: 999px;
  font-size: 0.9rem;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  color: #333;
  backdrop-filter: blur(8px);
}
.gd-search-bar::placeholder { color: #aaa; }
.gd-search-icon {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gd-green);
  font-size: 1.2rem;
  pointer-events: none;
}

/* ===== QUICK LINKS (floating over hero bottom) ===== */
.gd-quicklinks-wrap {
  position: relative;
  z-index: 3;
  margin-top: -3.5rem;
}
.gd-quicklinks {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.gd-quicklinks-row {
  background: white;
  border-radius: 1.25rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  padding: 1.5rem 1rem;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0.5rem;
}
.gd-ql-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  padding: 0.75rem 0.25rem;
  border-radius: 0.75rem;
  transition: all 0.2s;
  cursor: pointer;
}
.gd-ql-item:hover { background: rgba(249,115,22,0.06); transform: translateY(-3px); }
.gd-ql-icon {
  width: 52px; height: 52px;
  border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}
.gd-ql-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #444;
  text-align: center;
  line-height: 1.2;
}
/* Icon colors */
.gd-ql-icon.gallery { background: linear-gradient(135deg, #4caf50, #2e7d32); }
.gd-ql-icon.berita { background: linear-gradient(135deg, #ffc107, #f57f17); }
.gd-ql-icon.pengaduan { background: linear-gradient(135deg, #9c27b0, #6a1b9a); }
.gd-ql-icon.produk { background: linear-gradient(135deg, #f44336, #b71c1c); }
.gd-ql-icon.informasi { background: linear-gradient(135deg, #2196f3, #0d47a1); }
.gd-ql-icon.pengumuman { background: linear-gradient(135deg, #ff9800, #e65100); }
.gd-ql-icon.bantuan { background: linear-gradient(135deg, #795548, #3e2723); }
.gd-ql-icon.peta { background: linear-gradient(135deg, #f44336, #880808); }
.gd-ql-icon i { color: white; font-size: 1.5rem; }

/* ===== SECTION BASE ===== */
.gd-section { padding: 4rem 1.5rem; }
.gd-section-inner { max-width: 1200px; margin: 0 auto; }
.gd-section-head { text-align: center; margin-bottom: 2.5rem; }
.gd-section-tag {
  display: inline-block;
  background: rgba(39,174,96,0.1);
  color: var(--gd-green-dark);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 0.9rem; border-radius: 999px;
  margin-bottom: 0.6rem;
}
.gd-section-title {
  font-size: 1.75rem; font-weight: 900;
  color: #1a1a2e; margin: 0;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.02em;
}
.gd-section-title span { color: var(--gd-green); }
.gd-section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.gd-view-all {
  color: var(--gd-orange);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border: 2px solid var(--gd-orange);
  padding: 0.45rem 1rem;
  border-radius: 0.375rem;
  transition: all 0.2s;
}
.gd-view-all:hover { background: var(--gd-orange); color: white; }

/* ===== STATISTICS SECTION ===== */
.gd-stats-section {
  background: linear-gradient(135deg, var(--gd-green-dark) 0%, #155724 100%);
  padding: 3rem 1.5rem;
}
.gd-stats-inner { max-width: 1100px; margin: 0 auto; }
.gd-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.gd-stat-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 1rem;
  padding: 1.75rem 1.25rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.25s;
}
.gd-stat-card:hover { background: rgba(255,255,255,0.18); transform: translateY(-4px); }
.gd-stat-card .icon { font-size: 2rem; color: rgba(255,255,255,0.85); margin-bottom: 0.5rem; }
.gd-stat-card .num { font-size: 2rem; font-weight: 900; color: white; line-height: 1; font-family: 'Inter', sans-serif; }
.gd-stat-card .label { font-size: 0.8rem; color: rgba(255,255,255,0.75); font-weight: 600; margin-top: 0.35rem; }

/* ===== JADWAL SHOLAT ===== */
.gd-sholat-section {
  background: #f0fdf4;
  padding: 2.5rem 1.5rem;
}
.gd-sholat-card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  box-shadow: var(--gd-shadow);
  max-width: 1100px;
  margin: 0 auto;
}
.gd-sholat-head { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.gd-sholat-head i { color: var(--gd-green); font-size: 1.5rem; }
.gd-sholat-head span { font-weight: 800; font-size: 1rem; color: #1a1a2e; }
.gd-sholat-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.75rem; }
.gd-sholat-item {
  background: var(--gd-green-dark);
  border-radius: 0.75rem;
  padding: 1rem 0.5rem;
  text-align: center;
  color: white;
}
.gd-sholat-item .sholat-name { font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.8); margin-bottom: 0.35rem; text-transform: uppercase; letter-spacing: 0.05em; }
.gd-sholat-item .sholat-time { font-size: 1.2rem; font-weight: 900; font-family: 'Inter', sans-serif; }

/* ===== APARATUR DESA ===== */
.gd-aparatur-section { background: #fff; padding: 4rem 1.5rem; }
.gd-aparatur-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 2rem; }
.gd-pegawai-card {
  background: #fff;
  border: 1px solid var(--gd-border);
  border-radius: 1rem;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: all 0.25s;
}
.gd-pegawai-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(0,0,0,0.12); }
.gd-pegawai-img-wrap {
  background: linear-gradient(135deg, var(--gd-green-dark), var(--gd-green));
  padding: 2rem 1.5rem 1.5rem;
  position: relative;
}
.gd-pegawai-img-wrap::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 24px;
  background: white;
  border-radius: 50% 50% 0 0 / 24px;
}
.gd-pegawai-img {
  width: 80px; height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
  position: relative; z-index: 1;
}
.gd-pegawai-placeholder {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  border: 3px solid rgba(255,255,255,0.5);
  position: relative; z-index: 1;
  margin: 0 auto;
}
.gd-pegawai-body { padding: 0.5rem 1rem 1.25rem; }
.gd-pegawai-name { font-size: 0.88rem; font-weight: 800; color: #1a1a2e; margin: 0 0 0.25rem; font-family: 'Inter', sans-serif; }
.gd-pegawai-pos { font-size: 0.72rem; color: var(--gd-green-dark); font-weight: 600; }

/* ===== SAMBUTAN ===== */
.gd-sambutan-section { background: linear-gradient(135deg, #f8f9fa, #e8f5e9); padding: 4rem 1.5rem; }
.gd-sambutan-card {
  max-width: 900px; margin: 0 auto;
  background: white;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  display: grid;
  grid-template-columns: 280px 1fr;
}
.gd-sambutan-left {
  background: linear-gradient(135deg, var(--gd-green-dark), var(--gd-green));
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.gd-sambutan-photo {
  width: 130px; height: 130px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  margin-bottom: 1rem;
}
.gd-sambutan-photo-placeholder {
  width: 130px; height: 130px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  border: 4px solid rgba(255,255,255,0.5);
  margin: 0 auto 1rem;
}
.gd-sambutan-nama { font-size: 1.05rem; font-weight: 800; color: white; margin: 0 0 0.25rem; }
.gd-sambutan-jabatan { font-size: 0.75rem; color: rgba(255,255,255,0.8); font-weight: 500; }
.gd-sambutan-right { padding: 2.5rem; }
.gd-sambutan-right h3 { font-size: 1.35rem; font-weight: 900; color: #1a1a2e; margin: 0 0 1rem; font-family: 'Inter', sans-serif; }
.gd-sambutan-right p { color: #555; line-height: 1.8; font-size: 0.9rem; }

/* ===== BERITA SECTION ===== */
.gd-berita-section { background: #f8f9fa; padding: 4rem 1.5rem; }
.gd-berita-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }
.gd-berita-main { grid-column: span 1; }
.gd-berita-side { grid-column: span 1; display: flex; flex-direction: column; gap: 1rem; }
.gd-berita-card-big {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,0.07);
  border: 1px solid #eee;
  text-decoration: none;
  display: block;
  transition: all 0.25s;
}
.gd-berita-card-big:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(0,0,0,0.13); }
.gd-berita-card-big img { width: 100%; height: 230px; object-fit: cover; display: block; }
.gd-berita-card-big .placeholder { width: 100%; height: 230px; background: linear-gradient(135deg, #e8f5e9, #c8e6c9); display: flex; align-items: center; justify-content: center; font-size: 4rem; }
.gd-bc-body { padding: 1.25rem; }
.gd-bc-cat {
  display: inline-block;
  background: rgba(39,174,96,0.12);
  color: var(--gd-green-dark);
  font-size: 0.62rem; font-weight: 800;
  letter-spacing: 0.07em; text-transform: uppercase;
  padding: 0.2rem 0.6rem; border-radius: 0.25rem;
  margin-bottom: 0.5rem;
}
.gd-bc-title {
  font-size: 1rem; font-weight: 800;
  color: #1a1a2e; margin: 0 0 0.5rem;
  line-height: 1.4;
  font-family: 'Inter', sans-serif;
}
.gd-berita-card-big .gd-bc-title { font-size: 1.1rem; }
.gd-bc-excerpt { color: #666; font-size: 0.82rem; line-height: 1.6; margin: 0 0 0.75rem; }
.gd-bc-meta { font-size: 0.7rem; color: #999; display: flex; align-items: center; gap: 0.5rem; }
.gd-berita-card-small {
  background: white;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid #eee;
  text-decoration: none;
  display: grid;
  grid-template-columns: 110px 1fr;
  transition: all 0.2s;
}
.gd-berita-card-small:hover { box-shadow: 0 8px 20px rgba(0,0,0,0.1); transform: translateX(3px); }
.gd-berita-card-small img { width: 110px; height: 100%; object-fit: cover; }
.gd-berita-card-small .placeholder { width: 110px; min-height: 100px; background: linear-gradient(135deg, #e8f5e9, #c8e6c9); display: flex; align-items: center; justify-content: center; font-size: 2rem; }
.gd-bcs-body { padding: 0.85rem; }
.gd-bc-read {
  display: inline-flex; align-items: center; gap: 0.3rem;
  color: var(--gd-green-dark); font-size: 0.73rem; font-weight: 700;
  text-decoration: none; margin-top: 0.5rem;
}
.gd-bc-read:hover { color: var(--gd-orange); }
.gd-berita-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.5rem; }
.gd-berita-card-row {
  background: white; border-radius: 0.75rem;
  overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid #eee; text-decoration: none; display: block;
  transition: all 0.2s;
}
.gd-berita-card-row:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
.gd-berita-card-row img { width: 100%; height: 130px; object-fit: cover; display: block; }
.gd-berita-card-row .placeholder { width: 100%; height: 130px; background: linear-gradient(135deg, #e8f5e9, #c8e6c9); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }
.gd-bcr-body { padding: 0.85rem; }
.gd-bcr-title { font-size: 0.82rem; font-weight: 700; color: #1a1a2e; margin: 0 0 0.4rem; line-height: 1.4; font-family: 'Inter', sans-serif; }
.gd-bcr-date { font-size: 0.68rem; color: #aaa; display: flex; align-items: center; gap: 0.3rem; }

/* ===== GALERI SECTION ===== */
.gd-galeri-section { background: white; padding: 4rem 1.5rem; }
.gd-galeri-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 180px);
  gap: 0.75rem;
  margin-top: 2rem;
}
.gd-galeri-grid .gd-gitem:first-child { grid-row: 1 / 3; }
.gd-gitem { border-radius: 0.75rem; overflow: hidden; position: relative; display: block; }
.gd-gitem img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.35s; }
.gd-gitem:hover img { transform: scale(1.08); }
.gd-gitem-ov {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.gd-gitem:hover .gd-gitem-ov { opacity: 1; }
.gd-gitem-ov i { font-size: 2rem; color: white; }

/* ===== TRANSPARANSI ANGGARAN ===== */
.gd-anggaran-section { background: #f8f9fa; padding: 4rem 1.5rem; }
.gd-anggaran-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2rem; }
.gd-anggaran-card {
  background: white; border-radius: 1rem;
  padding: 1.75rem; box-shadow: 0 2px 14px rgba(0,0,0,0.07);
  border: 1px solid #eee; text-align: center;
}
.gd-anggaran-card .ang-icon { font-size: 2.5rem; margin-bottom: 0.75rem; display: block; }
.gd-anggaran-card .ang-label { font-size: 0.9rem; font-weight: 800; color: #1a1a2e; margin-bottom: 0.5rem; font-family: 'Inter', sans-serif; }
.gd-anggaran-card .ang-total { font-size: 0.8rem; color: #666; margin-bottom: 1rem; }
.gd-progress-bar { background: #eee; border-radius: 999px; height: 8px; overflow: hidden; }
.gd-progress-fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--gd-green), var(--gd-orange)); }
.gd-anggaran-card .ang-amount { font-size: 1.25rem; font-weight: 900; color: var(--gd-green-dark); margin-top: 0.75rem; font-family: 'Inter', sans-serif; }

/* ===== PROGRAM SINERGI ===== */
.gd-sinergi-section { background: white; padding: 3rem 1.5rem; }
.gd-sinergi-logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 1.5rem; margin-top: 2rem; }
.gd-sinergi-logos img { height: 60px; object-fit: contain; filter: grayscale(40%); transition: filter 0.2s, transform 0.2s; }
.gd-sinergi-logos img:hover { filter: grayscale(0%); transform: scale(1.08); }

/* ===== PENGADUAN CTA ===== */
.gd-pengaduan-section {
  background: linear-gradient(135deg, var(--gd-green-dark), #155724);
  padding: 4.5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.gd-pengaduan-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}
.gd-pengaduan-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.gd-pengaduan-inner h2 { font-size: 1.75rem; font-weight: 900; color: white; margin: 0 0 0.75rem; font-family: 'Inter', sans-serif; }
.gd-pengaduan-inner p { color: rgba(255,255,255,0.8); font-size: 0.9rem; line-height: 1.7; margin: 0 0 2rem; }
.gd-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  color: var(--gd-green-dark);
  padding: 0.9rem 2rem;
  border-radius: 0.5rem;
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  transition: all 0.2s;
}
.gd-btn-white:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.3); }

/* ===== PENGUMUMAN SECTION ===== */
.gd-pengumuman-section { background: #f8f9fa; padding: 4rem 1.5rem; }
.gd-pengumuman-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.gd-pengumuman-item {
  background: white;
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-left: 4px solid var(--gd-green);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-decoration: none;
  transition: all 0.2s;
}
.gd-pengumuman-item:hover { transform: translateX(4px); box-shadow: 0 6px 16px rgba(0,0,0,0.1); }
.gd-pengumuman-date { flex-shrink: 0; text-align: center; }
.gd-pengumuman-date .date-day { font-size: 1.5rem; font-weight: 900; color: var(--gd-green-dark); line-height: 1; font-family: 'Inter', sans-serif; }
.gd-pengumuman-date .date-mo { font-size: 0.65rem; font-weight: 600; color: #999; text-transform: uppercase; }
.gd-pengumuman-body { flex: 1; }
.gd-pengumuman-title { font-size: 0.88rem; font-weight: 700; color: #1a1a2e; margin: 0 0 0.25rem; line-height: 1.4; }
.gd-pengumuman-excerpt { font-size: 0.75rem; color: #777; margin: 0; }

/* ===== AGENDA SECTION ===== */
.gd-agenda-section { background: white; padding: 4rem 1.5rem; }
.gd-agenda-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.gd-agenda-card {
  background: white; border-radius: 0.875rem;
  border: 1px solid #eee;
  border-left: 5px solid var(--gd-green);
  padding: 1.25rem; display: flex; gap: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: all 0.2s;
}
.gd-agenda-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.1); background: #f0fdf4; }
.gd-agenda-date-box {
  background: var(--gd-green-dark); color: white;
  border-radius: 0.625rem; padding: 0.5rem 0.75rem;
  text-align: center; flex-shrink: 0; min-width: 52px;
}
.gd-agenda-date-box .day { font-size: 1.5rem; font-weight: 900; line-height: 1; font-family: 'Inter', sans-serif; }
.gd-agenda-date-box .mo { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.gd-agenda-info h4 { font-size: 0.85rem; font-weight: 700; color: #1a1a2e; margin: 0 0 0.3rem; line-height: 1.4; }
.gd-agenda-info p { font-size: 0.72rem; color: #888; margin: 0; display: flex; align-items: center; gap: 0.3rem; }

/* ===== FOOTER ===== */
.gd-footer { background: #1a1a2e; color: rgba(255,255,255,0.75); font-family: 'Inter', sans-serif; }
.gd-footer-top-bar { height: 4px; background: linear-gradient(90deg, var(--gd-green), var(--gd-orange)); }
.gd-footer-inner { max-width: 1100px; margin: 0 auto; padding: 3rem 1.5rem 2rem; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem; }
.gd-footer-brand .f-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.gd-footer-brand .f-logo-g {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4285f4, #ea4335, #fbbc05, #34a853);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 900; color: white;
  font-family: 'Inter', sans-serif;
}
.gd-footer-brand .f-site-name { font-size: 1rem; font-weight: 800; color: white; }
.gd-footer-brand .f-site-sub { font-size: 0.68rem; color: rgba(255,255,255,0.5); }
.gd-footer-brand p { font-size: 0.75rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin: 0 0 1rem; }
.gd-footer-contact-row { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.72rem; color: rgba(255,255,255,0.6); margin-bottom: 0.4rem; }
.gd-footer-contact-row i { color: var(--gd-green); flex-shrink: 0; }
.gd-footer-col h4 { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gd-green); margin: 0 0 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid rgba(39,174,96,0.2); }
.gd-footer-links { list-style: none; margin: 0; padding: 0; }
.gd-footer-links li { margin-bottom: 0.4rem; }
.gd-footer-links a { font-size: 0.75rem; color: rgba(255,255,255,0.6); text-decoration: none; display: flex; align-items: center; gap: 0.35rem; transition: color 0.2s; }
.gd-footer-links a:hover { color: var(--gd-green); }
.gd-footer-socials { display: flex; gap: 0.5rem; margin-top: 1rem; flex-wrap: wrap; }
.gd-footer-socials a {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
}
.gd-footer-socials a:hover { transform: scale(1.1); opacity: 0.9; }
.gd-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.25rem 1.5rem;
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
}
.gd-footer-bottom p { font-size: 0.7rem; color: rgba(255,255,255,0.35); margin: 0; }
.gd-footer-bottom a { color: var(--gd-green); text-decoration: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .gd-quicklinks-row { grid-template-columns: repeat(4, 1fr); }
  .gd-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gd-aparatur-grid { grid-template-columns: repeat(3, 1fr); }
  .gd-footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .gd-berita-grid { grid-template-columns: 1fr; }
  .gd-berita-main { grid-column: span 1; }
  .gd-berita-side { flex-direction: row; flex-wrap: wrap; }
  .gd-berita-card-small { flex: 1; min-width: 200px; }
  .gd-sholat-grid { grid-template-columns: repeat(3, 1fr); }
  .gd-galeri-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .gd-nav { display: none; }
  .gd-hamburger { display: flex; }
  .gd-navbar-inner { flex-wrap: wrap; }
  .gd-hero-title { font-size: 1.6rem; }
  .gd-hero-content { padding: 2rem 1rem 5rem; }
  .gd-quicklinks-row { grid-template-columns: repeat(4, 1fr); padding: 1rem 0.5rem; }
  .gd-ql-icon { width: 44px; height: 44px; font-size: 1.3rem; }
  .gd-ql-label { font-size: 0.65rem; }
  .gd-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gd-aparatur-grid { grid-template-columns: repeat(2, 1fr); }
  .gd-berita-row { grid-template-columns: 1fr; }
  .gd-anggaran-grid { grid-template-columns: 1fr; }
  .gd-agenda-grid { grid-template-columns: 1fr; }
  .gd-sambutan-card { grid-template-columns: 1fr; }
  .gd-galeri-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gd-galeri-grid .gd-gitem:first-child { grid-row: auto; }
  .gd-footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .gd-sholat-grid { grid-template-columns: repeat(3, 1fr); }
  .gd-topbar-left span:last-child { display: none; }
}

@media (max-width: 480px) {
  .gd-quicklinks-row { grid-template-columns: repeat(4, 1fr); gap: 0.25rem; }
  .gd-aparatur-grid { grid-template-columns: repeat(2, 1fr); }
  .gd-sholat-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== PAGE HEADER (Halaman Dalam) ===== */
.gd-page-header {
  background: linear-gradient(135deg, var(--gd-green-dark) 0%, #1e8449 60%, #27ae60 100%);
  padding: 2.5rem 1.5rem 2rem;
  color: #fff;
}
.gd-page-header-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.gd-page-header-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.6rem;
}
.gd-page-header-title i {
  margin-right: 0.4rem;
  opacity: 0.9;
}
.gd-breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}
.gd-breadcrumb .breadcrumb-item a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}
.gd-breadcrumb .breadcrumb-item a:hover { color: #fff; }
.gd-breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,0.65); }
.gd-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }

/* Pagination pada inner pages */
.pagination .page-item .page-link {
  color: var(--gd-green-dark);
  border-color: #ddd;
}
.pagination .page-item.active .page-link {
  background: var(--gd-green-dark);
  border-color: var(--gd-green-dark);
  color: #fff;
}
.pagination .page-item .page-link:hover {
  background: #e8f5e9;
  color: var(--gd-green-dark);
}

/* Berita isi (artikel) */
.berita-isi img { max-width: 100%; height: auto; border-radius: 8px; margin: 1rem 0; }
.berita-isi table { width: 100%; border-collapse: collapse; margin: 1rem 0; }
.berita-isi table td, .berita-isi table th { padding: 8px 12px; border: 1px solid #ddd; }
