/* =====================================================
   GEODESA.ID STYLE - Desa Perkhapesong
   Redesign sesuai tampilan geodesa.id
   ===================================================== */

:root {
  --gd-green: #b4865f;
  --gd-green-dark: #6f4b34;
  --gd-orange: #d3a06a;
  --gd-orange-dark: #b9834d;
  --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);
  --gd-craft-bg: #f4efe6;
  --gd-craft-board: #e8d9bf;
  --gd-craft-board-dark: #d5bf9d;
  --gd-craft-brown: #7a5a3e;
  --gd-craft-brown-dark: #5b3f2a;
  --gd-craft-paper: #f6f0e5;
}

* { box-sizing: border-box; }

body {
  background: radial-gradient(circle at 20% 20%, #f8f2e8 0%, #efe4d3 48%, #e5d6c0 100%);
}

/* ===== 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-craft-hero {
  padding: 2rem 1rem 3rem;
}

.gd-craft-board {
  max-width: 1200px;
  margin: 0 auto;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.2), rgba(0,0,0,0.04)),
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.08) 0,
      rgba(255,255,255,0.08) 3px,
      rgba(0,0,0,0.03) 3px,
      rgba(0,0,0,0.03) 9px
    ),
    var(--gd-craft-board);
  border: 1px solid rgba(122, 90, 62, 0.25);
  border-radius: 32px;
  box-shadow:
    0 18px 40px rgba(65, 45, 24, 0.18),
    inset 0 0 0 6px rgba(255,255,255,0.18);
  padding: 1.8rem 1.6rem 1.5rem;
}

.gd-craft-head {
  text-align: center;
  margin-bottom: 1.2rem;
}

.gd-craft-badge {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  margin: 0 auto 0.75rem;
  background: #fff;
  border: 3px solid #f6f1e7;
  box-shadow: 0 6px 18px rgba(73, 47, 25, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gd-craft-badge img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.gd-craft-title {
  margin: 0;
  color: var(--gd-craft-brown-dark);
  font-size: 3rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 0 rgba(255,255,255,0.55), 0 3px 12px rgba(92, 62, 38, 0.28);
}

.gd-craft-subtitle {
  margin: 0.55rem 0 0;
  color: #5d5246;
  font-size: 0.92rem;
  font-weight: 600;
}

.gd-craft-window {
  width: 100%;
  min-height: 480px;
  border-radius: 24px;
  border: 12px solid rgba(244, 235, 219, 0.95);
  box-shadow: 0 10px 22px rgba(87, 62, 40, 0.28);
  background-size: cover;
  background-position: center;
  margin-bottom: 1.1rem;
}

.gd-craft-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, #b99163, #8f6c48);
  border-radius: 999px;
  padding: 0.5rem;
  margin: 0 auto 1rem;
  max-width: 720px;
  box-shadow: inset 0 2px 4px rgba(255,255,255,0.2), 0 8px 16px rgba(72, 51, 31, 0.2);
}

.gd-craft-pill {
  text-decoration: none;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.42rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(0,0,0,0.08);
  transition: all 0.2s ease;
}

.gd-craft-pill:hover,
.gd-craft-pill.active {
  background: #f5ebdb;
  color: #5b3f2a;
  border-color: rgba(91,63,42,0.2);
}

.gd-craft-content {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 0.9rem;
}

.gd-craft-card {
  border-radius: 16px;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(123, 91, 63, 0.22);
  box-shadow: 0 8px 16px rgba(83, 59, 39, 0.12);
}

.gd-craft-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--gd-craft-brown-dark);
}

.gd-craft-card p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.6;
  color: #574b3f;
}

.gd-craft-card-paper {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.85), rgba(246, 239, 226, 0.95)),
    var(--gd-craft-paper);
}

.gd-craft-card-search {
  background: #efe4cf;
}

.gd-craft-search {
  width: 100%;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(122,90,62,0.35);
  background: rgba(255,255,255,0.85);
  padding: 0.6rem 0.8rem;
  font-size: 0.84rem;
  margin-bottom: 0.6rem;
}

.gd-craft-search:focus {
  outline: none;
  border-color: #8d6b47;
  box-shadow: 0 0 0 3px rgba(141,107,71,0.16);
}

.gd-craft-btn {
  border: none;
  border-radius: 10px;
  background: linear-gradient(180deg, #7f6244, #5f442f);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.58rem 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  cursor: pointer;
}

.gd-craft-btn:hover {
  background: linear-gradient(180deg, #8b6d4d, #644934);
}

.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%, #513726 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: #f7efe4;
  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: 330px 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: 185px; height: 185px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid white;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  margin-bottom: 1rem;
}
.gd-sambutan-photo-placeholder {
  width: 185px; height: 185px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  border: 5px solid rgba(255,255,255,0.5);
  margin: 0 auto 1rem;
}
.gd-sambutan-nama { font-size: 1.1rem; 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), #4f3626);
  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-craft-title { font-size: 2.1rem; }
  .gd-craft-window { min-height: 280px; border-radius: 16px; border-width: 8px; }
  .gd-craft-content { grid-template-columns: 1fr; }
  .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-craft-board { padding: 1.2rem 0.95rem 1rem; border-radius: 16px; }
  .gd-craft-title { font-size: 1.7rem; }
  .gd-craft-ribbon { justify-content: flex-start; border-radius: 14px; }
  .gd-craft-pill { font-size: 0.7rem; }
  .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%, #8d6341 62%, #c19265 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; }

/* ===== GLOBAL CRAFT OVERRIDES (ALL PUBLIC PAGES) ===== */
.gd-theme-craft {
  color: #3f352b;
}

.gd-header-wrap {
  position: sticky;
  top: 0;
  z-index: 1050;
}

.gd-topbar {
  background: linear-gradient(180deg, #8f6d4b, #795637);
}

.gd-topbar-left a,
.gd-topbar-right a { color: rgba(255,255,255,0.92); }

.gd-navbar {
  background: linear-gradient(180deg, #f6f0e5, #ecdfca);
  border-bottom: 1px solid rgba(112, 81, 53, 0.2);
  box-shadow: 0 8px 20px rgba(90, 64, 38, 0.12);
}

.gd-logo-img {
  border: 2px solid rgba(125, 92, 62, 0.2);
  background: #fffefb;
}

.gd-brand-main { color: #5d432d; }
.gd-brand-sub { color: #7a6958; }

.gd-nav a {
  color: #5f4833;
}

.gd-nav a:hover,
.gd-nav a.active {
  color: #7d3f00;
  background: rgba(124, 75, 27, 0.08);
}

.gd-dropdown-menu {
  background: #fffaf2;
  border-color: rgba(118, 86, 58, 0.22);
}

.gd-dropdown-menu a:hover {
  background: #f2e8d8;
  color: #6a3f1d;
}

.gd-btn-pengaduan {
  background: linear-gradient(180deg, #7d5b3f, #5d402a);
  box-shadow: 0 6px 14px rgba(78, 53, 30, 0.22);
}

.gd-main-content {
  padding-bottom: 0.5rem;
}

.gd-main-content .gd-page-header {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.16), rgba(0,0,0,0.03)),
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.08) 0,
      rgba(255,255,255,0.08) 3px,
      rgba(0,0,0,0.03) 3px,
      rgba(0,0,0,0.03) 9px
    ),
    #d9c3a0;
  border-top: 1px solid rgba(108, 76, 46, 0.25);
  border-bottom: 1px solid rgba(108, 76, 46, 0.25);
}

.gd-main-content .gd-page-header-title {
  color: #5a3f28;
  text-shadow: 0 1px 0 rgba(255,255,255,0.5);
}

.gd-main-content .gd-breadcrumb .breadcrumb-item a,
.gd-main-content .gd-breadcrumb a {
  color: #6b4b2f;
}

.gd-main-content .gd-breadcrumb .breadcrumb-item.active,
.gd-main-content .gd-breadcrumb span {
  color: #8b6f55;
}

.gd-main-content .gd-section {
  background: transparent !important;
}

.gd-main-content .gd-card,
.gd-main-content .card,
.gd-main-content .list-group-item,
.gd-main-content .table,
.gd-main-content .alert,
.gd-main-content .accordion-item {
  background: #fffaf1;
  border-color: rgba(121, 90, 61, 0.2) !important;
  box-shadow: 0 8px 18px rgba(98, 69, 42, 0.08);
}

.gd-main-content .card-header,
.gd-main-content .gd-card-header {
  background: linear-gradient(180deg, #876447, #6f4e36) !important;
  color: #fff !important;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.gd-main-content .btn,
.gd-main-content button,
.gd-main-content .gd-view-all {
  border-radius: 10px;
}

.gd-main-content .btn-primary,
.gd-main-content .btn-success,
.gd-main-content button[type="submit"] {
  background: linear-gradient(180deg, #876447, #6a4a31);
  border-color: #6a4a31;
}

.gd-main-content .btn-primary:hover,
.gd-main-content .btn-success:hover,
.gd-main-content button[type="submit"]:hover {
  background: linear-gradient(180deg, #956f4f, #6f4e36);
  border-color: #6f4e36;
}

.gd-main-content .form-control,
.gd-main-content .form-select,
.gd-main-content textarea,
.gd-main-content input {
  background: #fffdf8;
  border: 1px solid rgba(122, 90, 62, 0.35);
  border-radius: 10px;
}

.gd-main-content .form-control:focus,
.gd-main-content .form-select:focus,
.gd-main-content textarea:focus,
.gd-main-content input:focus {
  border-color: #7f5b3e;
  box-shadow: 0 0 0 0.2rem rgba(127, 91, 62, 0.16);
}

.gd-main-content .table {
  color: #4a3a2b;
}

.gd-main-content .table thead th {
  background: #efe0c9;
  color: #5e442e;
  border-color: rgba(120, 90, 62, 0.2);
}

.gd-main-content .pagination .page-link {
  color: #6a4a31;
  border-color: rgba(122, 90, 62, 0.28);
  background: #fffaf1;
}

.gd-main-content .pagination .page-item.active .page-link {
  background: #7d5b3f;
  border-color: #7d5b3f;
  color: #fff;
}

.gd-main-content .text-success,
.gd-main-content .text-success i,
.gd-main-content .badge.bg-success,
.gd-main-content .bg-success {
  color: #7a5539 !important;
}

.gd-main-content .badge.bg-success,
.gd-main-content .bg-success {
  background-color: #ecd8bf !important;
  border-color: #c39a6d !important;
}

.gd-main-content .alert-success {
  background: #f4e8d8;
  border-color: #d0b08b;
  color: #62472f;
}

.gd-footer {
  background: linear-gradient(180deg, #3f2f23, #2d2119);
}

.gd-footer-top-bar {
  background: linear-gradient(90deg, #d6b98a, #8a6444);
}

.gd-footer-col h4,
.gd-footer-bottom a,
.gd-footer-contact-row i {
  color: #d9bc8f;
}

@media (max-width: 768px) {
  .gd-main-content .gd-page-header {
    padding-top: 1.6rem;
    padding-bottom: 1.3rem;
  }
}
