/* Cahaya Baitullah — Wisata Religi | Primary: #1b4332 Accent: #d4af37 */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --hijau: #1b4332;
  --hijau-mid: #2d6a4f;
  --hijau-light: #40916c;
  --emas: #d4af37;
  --emas-light: #f0d060;
  --krem: #fdf8ee;
  --putih: #ffffff;
  --abu: #6b7280;
  --gelap: #111827;
  --font: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
  font-family: var(--font);
  color: var(--gelap);
  background: var(--krem);
  line-height: 1.6;
}

/* ===== NAV ===== */
.site-header {
  background: var(--hijau);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--putih);
}
.nav-logo .logo-icon {
  width: 40px; height: 40px;
}
.nav-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo .brand { font-size: 16px; font-weight: 700; color: var(--emas); }
.nav-logo .tagline-logo { font-size: 10px; color: rgba(255,255,255,0.7); letter-spacing: 1px; text-transform: uppercase; }

/* checkbox hack */
#nav-toggle { display: none; }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--putih);
  border-radius: 2px;
  transition: all .3s;
}
.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: 8px 14px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  transition: background .2s, color .2s;
}
.nav-links a:hover, .nav-links a.active {
  background: var(--hijau-mid);
  color: var(--emas);
}
.nav-cta {
  background: var(--emas) !important;
  color: var(--hijau) !important;
  font-weight: 700 !important;
  border-radius: 6px;
}
.nav-cta:hover { background: var(--emas-light) !important; }

@media (max-width: 768px) {
  .nav-burger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--hijau);
    flex-direction: column;
    gap: 0;
    padding: 12px 20px 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  #nav-toggle:checked ~ .nav-links { display: flex; }
  .nav-links a { padding: 12px 16px; border-radius: 6px; }
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(160deg, var(--hijau) 0%, var(--hijau-mid) 60%, #1a3a2a 100%);
  color: var(--putih);
  padding: 80px 20px 100px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 50% 120%, rgba(212,175,55,0.12) 0%, transparent 70%),
    radial-gradient(circle 300px at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 60%);
}
/* Ornamen geometri islami */
.hero-ornamen {
  position: absolute;
  top: 20px; right: 30px;
  opacity: 0.12;
}
.hero-ornamen-left {
  position: absolute;
  top: 20px; left: 30px;
  opacity: 0.12;
  transform: scaleX(-1);
}
.hero-content {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-block;
  background: rgba(212,175,55,0.2);
  border: 1px solid var(--emas);
  color: var(--emas);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero h1 .emas { color: var(--emas); }
.hero p {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin: 0 auto 36px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-emas {
  background: var(--emas);
  color: var(--hijau);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  display: inline-block;
  transition: background .2s, transform .15s;
  border: none; cursor: pointer;
}
.btn-emas:hover { background: var(--emas-light); transform: translateY(-2px); }
.btn-outline-white {
  background: transparent;
  color: var(--putih);
  border: 2px solid rgba(255,255,255,0.5);
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-block;
  transition: border-color .2s, background .2s;
}
.btn-outline-white:hover { border-color: var(--putih); background: rgba(255,255,255,0.08); }

.hero-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.stat-item { text-align: center; }
.stat-num { font-size: 28px; font-weight: 800; color: var(--emas); }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 1px; }

/* ===== SECTION COMMONS ===== */
.section { padding: 72px 20px; }
.section-alt { background: var(--putih); }
.container { max-width: 1100px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 48px; }
.section-head .eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--emas);
  margin-bottom: 10px;
}
.section-head h2 {
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 800;
  color: var(--hijau);
  margin-bottom: 12px;
}
.section-head p { color: var(--abu); max-width: 560px; margin: 0 auto; font-size: 15px; }
.divider-emas {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--emas), var(--emas-light));
  border-radius: 2px;
  margin: 16px auto 0;
}

/* ===== FITUR UNGGULAN ===== */
.fitur-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.fitur-card {
  background: var(--krem);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: box-shadow .25s, transform .25s;
}
.fitur-card:hover { box-shadow: 0 8px 32px rgba(27,67,50,0.12); transform: translateY(-4px); }
.fitur-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--hijau), var(--hijau-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.fitur-card h3 { font-size: 18px; font-weight: 700; color: var(--hijau); margin-bottom: 10px; }
.fitur-card p { font-size: 14px; color: var(--abu); line-height: 1.7; }

/* ===== PAKET CARDS ===== */
.paket-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.paket-card {
  background: var(--putih);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  transition: box-shadow .25s, transform .25s;
  display: flex;
  flex-direction: column;
}
.paket-card:hover { box-shadow: 0 10px 40px rgba(27,67,50,0.14); transform: translateY(-4px); }
.paket-card.featured { border: 2px solid var(--emas); }
.paket-img {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.paket-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--emas);
  color: var(--hijau);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}
.paket-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.paket-durasi {
  font-size: 12px;
  font-weight: 600;
  color: var(--hijau-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.paket-body h3 { font-size: 19px; font-weight: 700; color: var(--hijau); margin-bottom: 8px; }
.paket-harga {
  font-size: 22px;
  font-weight: 800;
  color: var(--emas);
  margin-bottom: 16px;
}
.paket-harga small { font-size: 13px; font-weight: 400; color: var(--abu); }
.paket-include { list-style: none; margin-bottom: 20px; flex: 1; }
.paket-include li {
  font-size: 13px;
  color: #374151;
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
}
.paket-include li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  background: var(--hijau-light);
  border-radius: 50%;
}
.paket-exclude li::before { background: #d1d5db !important; }
.btn-pesan {
  display: block;
  text-align: center;
  background: var(--hijau);
  color: var(--putih);
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background .2s;
  border: none; cursor: pointer; width: 100%;
}
.btn-pesan:hover { background: var(--hijau-mid); }
.btn-pesan.emas { background: var(--emas); color: var(--hijau); }
.btn-pesan.emas:hover { background: var(--emas-light); }

/* ===== TESTIMONI ===== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testi-card {
  background: var(--putih);
  border-radius: 16px;
  padding: 28px;
  border-left: 4px solid var(--emas);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.testi-quote { font-size: 14px; color: #374151; line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--putih);
  flex-shrink: 0;
}
.testi-name { font-weight: 700; color: var(--hijau); font-size: 14px; }
.testi-asal { font-size: 12px; color: var(--abu); }
.testi-stars { color: var(--emas); font-size: 14px; margin-bottom: 4px; }

/* ===== CTA STRIP ===== */
.cta-strip {
  background: linear-gradient(135deg, var(--hijau) 0%, #0d2b1d 100%);
  color: var(--putih);
  text-align: center;
  padding: 64px 20px;
}
.cta-strip h2 { font-size: clamp(20px, 3.5vw, 32px); font-weight: 800; margin-bottom: 12px; }
.cta-strip h2 .emas { color: var(--emas); }
.cta-strip p { color: rgba(255,255,255,0.75); margin-bottom: 28px; font-size: 15px; }

/* ===== DESTINASI ===== */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.dest-card {
  background: var(--putih);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  transition: box-shadow .25s, transform .25s;
}
.dest-card:hover { box-shadow: 0 8px 32px rgba(27,67,50,0.14); transform: translateY(-4px); }
.dest-img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.dest-body { padding: 20px; }
.dest-body h3 { font-size: 16px; font-weight: 700; color: var(--hijau); margin-bottom: 6px; }
.dest-body p { font-size: 13px; color: var(--abu); line-height: 1.6; margin-bottom: 12px; }
.dest-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.dest-tag {
  background: rgba(27,67,50,0.08);
  color: var(--hijau);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
}

/* ===== GALERI ===== */
.galeri-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.galeri-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  cursor: pointer;
  transition: transform .25s;
}
.galeri-item:hover { transform: scale(1.02); }
.galeri-item:hover .galeri-overlay { opacity: 1; }
.galeri-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.galeri-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27,67,50,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .25s;
}
.galeri-overlay span { color: var(--putih); font-size: 13px; font-weight: 600; }

/* ===== KONTAK ===== */
.kontak-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 768px) { .kontak-grid { grid-template-columns: 1fr; gap: 32px; } }
.kontak-info h3 { font-size: 20px; font-weight: 700; color: var(--hijau); margin-bottom: 24px; }
.info-item { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.info-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--hijau), var(--hijau-mid));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-text strong { display: block; font-size: 13px; color: var(--abu); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 2px; }
.info-text span { font-size: 14px; color: var(--gelap); }
.peta-placeholder {
  height: 200px;
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  border: 2px dashed var(--hijau-light);
  color: var(--hijau);
  font-weight: 600;
  font-size: 14px;
  flex-direction: column;
  gap: 8px;
}
.kontak-form h3 { font-size: 20px; font-weight: 700; color: var(--hijau); margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--hijau); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--font);
  background: var(--putih);
  color: var(--gelap);
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--hijau); }
.form-group textarea { resize: vertical; min-height: 100px; }

/* ===== JAM OPERASIONAL ===== */
.jam-table { width: 100%; border-collapse: collapse; margin-top: 12px; font-size: 13px; }
.jam-table td { padding: 7px 0; border-bottom: 1px solid #f3f4f6; }
.jam-table td:first-child { color: var(--abu); width: 50%; }
.jam-table td:last-child { font-weight: 600; color: var(--gelap); }

/* ===== FOOTER ===== */
footer {
  background: var(--gelap);
  color: rgba(255,255,255,0.65);
  padding: 48px 20px 24px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }
.footer-brand .brand { font-size: 18px; font-weight: 700; color: var(--emas); margin-bottom: 8px; }
.footer-brand p { font-size: 13px; line-height: 1.7; }
footer h4 { color: var(--putih); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 8px; }
footer ul a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 13px; transition: color .2s; }
footer ul a:hover { color: var(--emas); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.footer-bottom .emas { color: var(--emas); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--hijau) 0%, var(--hijau-mid) 100%);
  color: var(--putih);
  padding: 60px 20px;
  text-align: center;
}
.page-hero .eyebrow { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--emas); margin-bottom: 12px; }
.page-hero h1 { font-size: clamp(24px, 4vw, 42px); font-weight: 800; margin-bottom: 12px; }
.page-hero p { font-size: 15px; color: rgba(255,255,255,0.78); max-width: 520px; margin: 0 auto; }
.breadcrumb { font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; }
.breadcrumb a:hover { color: var(--emas); }

/* ===== FILTER TABS ===== */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px; }
.filter-btn {
  padding: 9px 20px;
  border-radius: 30px;
  border: 2px solid #e5e7eb;
  background: var(--putih);
  color: var(--abu);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  font-family: var(--font);
}
.filter-btn.active, .filter-btn:hover {
  border-color: var(--hijau);
  background: var(--hijau);
  color: var(--putih);
}

/* ===== PAKET PAGE (full detail) ===== */
.paket-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.paket-full-card {
  background: var(--putih);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
}
.paket-full-card.featured { border: 2px solid var(--emas); box-shadow: 0 8px 32px rgba(212,175,55,0.2); }
.paket-header {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid #f3f4f6;
}
.paket-type { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--hijau-light); }
.paket-header h3 { font-size: 20px; font-weight: 800; color: var(--hijau); margin: 4px 0; }
.paket-header .durasi { font-size: 13px; color: var(--abu); }
.paket-price-box { text-align: right; }
.paket-price-box .harga { font-size: 20px; font-weight: 800; color: var(--emas); }
.paket-price-box .per { font-size: 11px; color: var(--abu); }
.paket-detail { padding: 24px; flex: 1; }
.paket-detail h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--abu); margin-bottom: 10px; margin-top: 16px; }
.paket-detail h4:first-child { margin-top: 0; }
.detail-list { list-style: none; }
.detail-list li {
  font-size: 13px;
  padding: 5px 0 5px 22px;
  position: relative;
  color: #374151;
  border-bottom: 1px solid #f9fafb;
}
.detail-list li::before { content: '✓'; position: absolute; left: 0; color: var(--hijau-light); font-weight: 700; }
.detail-list.exclude li::before { content: '✗'; color: #ef4444; }
.paket-footer { padding: 20px 24px; border-top: 1px solid #f3f4f6; }

/* ===== GALERI PAGE ===== */
.galeri-besar {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.galeri-besar .galeri-item { aspect-ratio: 4/3; }
.galeri-keterangan {
  text-align: center;
  margin-top: 8px;
  font-size: 12px;
  color: var(--abu);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .hero { padding: 60px 16px 72px; }
  .hero-stats { gap: 24px; }
  .section { padding: 48px 16px; }
  .fitur-grid, .dest-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .galeri-grid, .galeri-besar { grid-template-columns: repeat(2, 1fr); }
}
