/*
Theme Name: RJ Tour Custom Theme
Theme URI: https://rjtour.id/
Author: RJ Tour
Description: Custom theme RJ Tour, dikonversi dari desain HTML/CSS asli. Palet Emerald + Gold, font Fraunces + Inter.
Version: 1.0
Text Domain: rjtour
*/

/* =========================================================
   RJ TOUR — PREMIUM RESPONSIVE STYLESHEET
   Palette   : Emerald (#0b4a30) + Muted Gold (#b8901f) + Ivory (#faf7f1)
   Display   : "Fraunces" (warm serif, heritage feel)
   Body      : "Inter"
   Signature : Mihrab-arch motifs marking section transitions,
               echoing the gateways of Masjidil Haram & Nabawi.
   ========================================================= */


/* =========================================================
   RJ TOUR — PREMIUM RESPONSIVE STYLESHEET
   Palette   : Emerald (#0b4a30) + Muted Gold (#b8901f) + Ivory (#faf7f1)
   Display   : "Fraunces" (warm serif, heritage feel)
   Body      : "Inter"
   Signature : Mihrab-arch motifs marking section transitions,
               echoing the gateways of Masjidil Haram & Nabawi.
   ========================================================= */

:root {
  --emerald-950: #052416;
  --emerald-900: #073320;
  --emerald-800: #0b4a30;
  --emerald-700: #135c3c;
  --emerald-600: #1a7049;
  --emerald-100: #e7f1ec;
  --emerald-50:  #f2f8f5;

  --gold-700: #93711b;
  --gold-600: #b8901f;
  --gold-500: #c9a227;
  --gold-400: #d9bb62;
  --gold-200: #f0e2b8;

  --ivory: #faf7f1;
  --ivory-dim: #f3ede1;
  --white: #ffffff;

  --ink-900: #171f1a;
  --ink-700: #37423b;
  --ink-500: #647166;
  --ink-300: #9aa79d;

  --line: #e7e2d4;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;

  --shadow-sm: 0 2px 10px rgba(7, 51, 32, 0.06);
  --shadow-md: 0 12px 32px rgba(7, 51, 32, 0.10);
  --shadow-lg: 0 24px 60px rgba(7, 51, 32, 0.16);

  --container: 1180px;
  --nav-h: 76px;
}

/* ---------- RESET ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* Skip-to-content -- tersembunyi secara visual, muncul saat di-focus
   pakai keyboard (Tab). Standar aksesibilitas dasar, membantu
   pengguna keyboard/screen-reader lompat lewati menu navigasi. */
.skip-link {
  position: absolute; top: -100px; left: 12px; z-index: 9999;
  background: var(--emerald-900); color: #fff; padding: 12px 20px;
  border-radius: 8px; font-weight: 700; text-decoration: none;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--ink-700);
  background: var(--ivory);
  line-height: 1.65;
  padding-top: var(--nav-h);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
iframe, video { max-width: 100%; }
button { font-family: inherit; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

:focus-visible {
  outline: 2.5px solid var(--gold-500);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: min(var(--container), 92%);
  margin: 0 auto;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  color: var(--emerald-900);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.01em;
}

section { padding: clamp(56px, 8vw, 108px) 0; position: relative; }

/* ---------- ARCH DIVIDER (signature motif) ---------- */
.arch-divider {
  width: 100%;
  height: clamp(28px, 5vw, 56px);
  display: block;
}
.arch-divider svg { width: 100%; height: 100%; display: block; }

/* ---------- EYEBROW / LABEL ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-700);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.14em;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 1.5px;
  background: var(--gold-500);
  display: inline-block;
}

.sec-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.sec-head h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); margin-top: 10px; }
.sec-head p { color: var(--ink-500); margin-top: 14px; font-size: 15.5px; }
.kontak-lokasi-line { font-size: clamp(11px, 3.1vw, 15.5px); }
@media (min-width: 640px) { .kontak-lokasi-line { white-space: nowrap; } }
.sec-head.align-left { text-align: left; margin-left: 0; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14.5px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--emerald-950);
  box-shadow: 0 10px 24px rgba(184, 144, 31, 0.35);
}
.btn-gold:hover { box-shadow: 0 14px 30px rgba(184, 144, 31, 0.45); }
.btn-outline-light {
  border-color: rgba(255,255,255,0.55);
  color: #fff;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(6px);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.16); border-color: #fff; }
.btn-whatsapp {
  background: #1fae56;
  color: #fff;
  box-shadow: 0 10px 24px rgba(31, 174, 86, 0.3);
}
.btn-whatsapp:hover { background: #17903f; }
.btn-emerald {
  background: var(--emerald-800);
  color: #fff;
}
.btn-emerald:hover { background: var(--emerald-700); }
.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink-700);
}
.btn-ghost:hover { border-color: var(--emerald-700); color: var(--emerald-800); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 16px; font-size: 12.5px; }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.main-header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  min-height: var(--nav-h);
  z-index: 1000;
  background: rgba(250, 247, 241, 0.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(11, 74, 48, 0.08);
  transition: box-shadow 0.3s ease;
}
.main-header.scrolled { box-shadow: 0 6px 24px rgba(7,51,32,0.08); }

.header-container {
  max-width: var(--container);
  margin: 0 auto;
  min-height: var(--nav-h);
  padding: 12px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
section[id] { scroll-margin-top: calc(var(--nav-h) + 14px); }
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 42px; width: auto; }
.logo-text { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.15rem; color: var(--emerald-900); line-height: 1.1; }
.logo-text small { display: block; font-family: 'Inter'; font-weight: 500; font-size: 10.5px; letter-spacing: 0.06em; color: var(--gold-700); text-transform: uppercase; }

.navbar { display: flex; align-items: center; gap: 20px; }
.nav-links { display: flex; align-items: center; flex-wrap: wrap; justify-content: center; gap: 10px 18px; }
.nav-links a {
  font-size: 13.5px; font-weight: 600; color: var(--ink-700);
  position: relative; padding: 6px 0;
  transition: color .25s ease;
  white-space: nowrap;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--gold-500);
  transition: width .25s ease;
}
.nav-links a:hover { color: var(--emerald-800); }
.nav-links a:hover::after { width: 100%; }
.nav-links .highlight { color: var(--gold-700); display: inline-flex; align-items: center; gap: 5px; }
.nav-sep { width: 1px; height: 16px; background: var(--line); flex-shrink: 0; }
.nav-cta-item .btn { padding: 12px 22px; font-size: 13.5px; }

/* Tablet band: stack logo above nav, let nav-links wrap onto centered rows,
   with a fixed generous height so it never overlaps the page below. */
@media (max-width: 1100px) and (min-width: 769px) {
  :root { --nav-h: 176px; }
  .header-container { flex-direction: column; padding: 14px 4%; row-gap: 4px; }
  .navbar { width: 100%; justify-content: center; }
  .nav-sep { display: none; }
  .nav-links a { font-size: 13px; }
}

.menu-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  border-radius: 50%;
}
.menu-toggle:hover { background: var(--emerald-100); }
.hamburger, .hamburger::before, .hamburger::after {
  width: 22px; height: 2.5px; background: var(--emerald-900); display: block;
  transition: all .3s ease; border-radius: 2px;
}
.hamburger { position: relative; }
.hamburger::before, .hamburger::after { content: ''; position: absolute; left: 0; }
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }
.menu-toggle.active .hamburger { background: transparent; }
.menu-toggle.active .hamburger::before { transform: rotate(45deg); top: 0; }
.menu-toggle.active .hamburger::after { transform: rotate(-45deg); top: 0; }

/* =========================================================
   HERO
   ========================================================= */
.hero-section {
  position: relative;
  min-height: min(92vh, 780px);
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 40px) 0 90px;
  background:
    radial-gradient(ellipse at 20% 15%, rgba(217,187,98,0.14), transparent 55%),
    linear-gradient(160deg, var(--emerald-950) 0%, var(--emerald-900) 45%, var(--emerald-800) 100%);
  overflow: hidden;
  color: #fff;
}
.hero-pattern {
  position: absolute; inset: 0;
  opacity: 0.10;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='84' height='84' viewBox='0 0 84 84'%3E%3Cg fill='none' stroke='%23d9bb62' stroke-width='1'%3E%3Cpath d='M42 2 L82 42 L42 82 L2 42 Z'/%3E%3Ccircle cx='42' cy='42' r='20'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 84px 84px;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-copy .eyebrow { color: var(--gold-400); }
.hero-copy .eyebrow::before { background: var(--gold-400); }
.hero-copy h1 {
  color: #fff;
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  margin: 16px 0 20px;
}
.hero-copy h1 em { font-style: normal; color: var(--gold-400); }
.hero-copy p {
  color: rgba(255,255,255,0.82);
  font-size: 16.5px;
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px 30px; }
.hero-trust-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.75); }
.hero-trust-item strong { display: block; color: #fff; font-size: 15px; font-family: 'Fraunces', serif; }
.hero-trust-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(217,187,98,0.16); border: 1px solid rgba(217,187,98,0.4);
  display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0;
}

/* Hero visual: arch-framed photo */
.hero-visual { position: relative; display: flex; justify-content: center; }
.arch-frame {
  position: relative;
  width: min(100%, 400px);
  aspect-ratio: 3/4;
  clip-path: path('M0,400 L0,140 C0,60 65,0 150,0 C235,0 300,60 300,140 L300,400 Z');
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid rgba(217,187,98,0.55);
}
.arch-frame img { width: 100%; height: 100%; object-fit: cover; }
.arch-frame-glow {
  position: absolute; inset: -22px;
  z-index: -1;
  background: radial-gradient(circle at 50% 30%, rgba(217,187,98,0.35), transparent 70%);
  filter: blur(10px);
}
.hero-badge-float {
  position: absolute; bottom: -22px; left: -18px;
  background: #fff;
  color: var(--emerald-900);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
  max-width: 250px;
}
.hero-badge-float .num { font-family: 'Fraunces', serif; font-size: 1.6rem; font-weight: 700; color: var(--gold-600); }
.hero-badge-float span { font-size: 12px; color: var(--ink-500); line-height: 1.35; }

.hero-akreditasi-float {
  position: absolute; top: -30px; right: -20px;
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.hero-akreditasi-float img { height: 88px; width: 88px; object-fit: contain; flex-shrink: 0; filter: drop-shadow(0 6px 10px rgba(0,0,0,0.25)); }
.hero-akreditasi-float span {
  display: block;
  background: linear-gradient(135deg, #fff8e6, #fdecc4);
  border: 1px solid #e8c876;
  border-radius: 999px;
  padding: 6px 16px;
  box-shadow: var(--shadow-lg);
  font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; color: #8a6d1f; white-space: nowrap; text-align: center;
}
.hero-akreditasi-float span strong { font-size: 16px; color: var(--emerald-900); letter-spacing: 0; margin-left: 2px; }
@media (max-width: 768px) {
  .hero-akreditasi-float { top: -20px; right: 6px; gap: 4px; }
  .hero-akreditasi-float img { height: 58px; width: 58px; }
  .hero-akreditasi-float span { font-size: 10px; padding: 4px 12px; }
  .hero-akreditasi-float span strong { font-size: 13px; }
}

/* =========================================================
   LEGALITAS BAR
   ========================================================= */
.legalitas-bar {
  background: var(--emerald-950);
  color: rgba(255,255,255,0.85);
  padding: 14px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(217,187,98,0.25);
}
.legal-row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 10px 18px; text-align: center;
}
.legal-row span { display: inline-flex; align-items: center; gap: 6px; font-weight: 500; }
.legal-sep { color: var(--gold-500); opacity: .7; }
.legal-row a { color: var(--gold-400); font-weight: 700; }
.legal-row a:hover { text-decoration: underline; }

/* =========================================================
   TRUST BADGES -- logo lembaga/mitra resmi (Kemenhaj, KAN,
   Siskopatuh, Visa Umrah, dst). Ditaruh menyatu di bawah
   legalitas-bar (teks) supaya makin meyakinkan karena ada
   logo resminya, bukan cuma teks nomor SK.
   ========================================================= */
.trust-badges {
  background: var(--ivory);
  padding: 22px 0;
  border-bottom: 1px solid rgba(11,74,48,0.08);
}
.trust-badges-label {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin: 0 0 14px;
}
.trust-badges-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px 40px;
}
.trust-badges-row img {
  height: 76px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  opacity: 0.9;
  filter: grayscale(15%);
  transition: opacity .2s ease, filter .2s ease, transform .2s ease;
}
.trust-badges-row img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: translateY(-2px);
}
@media (max-width: 640px) {
  .trust-badges-row { gap: 20px 26px; }
  .trust-badges-row img { height: 56px; max-width: 140px; }
}

/* =========================================================
   TRUST / PARTNER LOGOS
   ========================================================= */
.partners-strip { background: var(--white); padding: 34px 0; border-bottom: 1px solid var(--line); }
.partners-row {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(24px, 5vw, 56px); flex-wrap: wrap;
}
.partners-row img { height: 72px; width: auto; object-fit: contain; filter: grayscale(15%); opacity: 0.88; transition: opacity .25s ease, filter .25s ease; }
.partners-row img:hover { opacity: 1; filter: grayscale(0%); }
.partners-label { font-size: 11.5px; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-300); font-weight: 700; text-align: center; margin-bottom: 18px; }

/* =========================================================
   PROGRAM CARDS
   ========================================================= */
.programs-section { background: var(--ivory); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold-500), var(--emerald-700));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card-icon-wrap {
  width: 60px; height: 60px; border-radius: 16px;
  background: var(--emerald-50);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 20px;
}
.card.featured .card-icon-wrap { background: var(--gold-200); }
.card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.card p { font-size: 14.5px; color: var(--ink-500); margin-bottom: 22px; }
.card-link { font-weight: 700; font-size: 13.5px; color: var(--emerald-800); display: inline-flex; align-items: center; gap: 6px; }
.card-link:hover { color: var(--gold-700); }
.card.featured { border-color: var(--gold-400); background: linear-gradient(180deg, #fffdf6, #ffffff); }
.card-tag {
  position: absolute; top: 22px; right: 22px;
  background: var(--gold-500); color: #fff; font-size: 10.5px; font-weight: 800;
  padding: 4px 10px; border-radius: 999px; text-transform: uppercase; letter-spacing: .04em;
}

/* =========================================================
   BERITA & ARTIKEL (NEWS)
   ========================================================= */
.news-section { background: var(--white); }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.news-card {
  background: var(--ivory);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.news-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.news-date { font-size: 12px; font-weight: 700; color: var(--emerald-700); text-transform: uppercase; letter-spacing: .04em; }
.news-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--ink-300); }
.news-source { font-size: 12px; color: var(--ink-500); }
.news-card h2 { font-size: 1.05rem; line-height: 1.4; margin-bottom: 10px; color: var(--ink-900); }
.news-card p { font-size: 14px; color: var(--ink-500); margin-bottom: 18px; flex-grow: 1; }
.news-card .card-link { margin-top: auto; }
.news-more { text-align: center; margin-top: 40px; }
@media (max-width: 900px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .news-grid { grid-template-columns: 1fr; } }

/* =========================================================
   SCHEDULE / PRICING TABLE
   ========================================================= */
.packages-section { background: var(--emerald-50); }
.table-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  overflow: hidden;
}
.p-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.p-table thead th {
  background: linear-gradient(135deg, var(--emerald-800), var(--emerald-950));
  color: #fff; text-transform: uppercase; font-size: 11.5px; letter-spacing: .06em;
  font-weight: 700; padding: 18px 20px; text-align: left;
  border-bottom: 3px solid var(--gold-500);
}
.p-table td { padding: 22px 20px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.p-table tbody tr:last-child td { border-bottom: none; }
.p-table tbody tr:hover td { background: var(--emerald-50); }
.pkg-name { font-weight: 700; color: var(--ink-900); font-size: 15px; margin-bottom: 6px; font-family: 'Fraunces', serif; }
.pkg-duration {
  font-size: 11px; font-weight: 700; color: var(--emerald-800); background: var(--emerald-100);
  padding: 4px 10px; border-radius: 999px; display: inline-block;
}
.flight-info { font-weight: 600; color: var(--ink-700); margin-bottom: 3px; font-size: 13.5px; }
.hotel-info { font-size: 12.5px; color: var(--ink-500); }
.price-tag { font-size: 17px; font-weight: 800; color: var(--emerald-800); white-space: nowrap; }
.price-old { font-size: 12px; color: var(--ink-500); text-decoration: line-through; display: block; margin-bottom: 2px; }
.price-box { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; }
.price-original { font-size: 12.5px; font-weight: 400; color: #9ca3af; text-decoration: line-through; white-space: nowrap; }
.price-tag.discount { color: #c9432c; }
.price-wrap-discount .price-tag { color: #c9432c; }
.pkg-single-card .price-old { font-size: 14px; color: var(--ink-500); text-decoration: line-through; display: block; margin-bottom: 4px; font-weight: 500; }
.pkg-single-card .price-tag.discount { color: #c9432c; }
.discount-badge { display: inline-block; background: #c9432c; color: #fff; font-size: 10px; font-weight: 800; padding: 3px 8px; border-radius: 6px; margin-left: 8px; vertical-align: middle; }
.price-badge {
  display: inline-block; width: fit-content; max-width: 140px; margin-top: 4px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .01em; line-height: 1.35;
  color: #fff; background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  padding: 3px 8px; border-radius: 10px;
  white-space: normal; word-break: break-word; text-align: center;
}
/* Di halaman detail paket, harga tampil lebih besar (lihat .pkg-single-card
   .price-tag di bawah), jadi badge promo di sana boleh sedikit lebih lebar
   supaya tetap proporsional dengan lebar teks harga. */
.pkg-single-card .price-badge { max-width: 190px; font-size: 11.5px; }
.action-col { display: flex; flex-direction: column; gap: 8px; align-items: stretch; min-width: 150px; }
.price-tag.gold { color: var(--gold-700); }
.status-badge {
  padding: 6px 13px; border-radius: 999px; font-size: 11px; font-weight: 800; display: inline-block; white-space: nowrap;
}
.badge-danger { background: #fff0ee; color: #c9432c; border: 1px solid #f6cfc7; }
.badge-success { background: #eefaf2; color: #1c8a4d; border: 1px solid #c9ecd6; }
.badge-soldout { background: #383838; color: #fff; border: 1px solid #383838; }
.text-soldout { color: #383838; }
.pkg-card-soldout { opacity: 0.85; }
.pkg-card-soldout .price-tag { text-decoration: line-through; opacity: 0.6; }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery-section { background: #fff; }
.gallery-section .sec-head p { max-width: 560px; margin: 10px auto 0; text-align: center; color: var(--emerald-700); font-size: 14.5px; }
.gallery-wrap { position: relative; }

.gallery-filters {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin: 28px 0 26px;
}
.gallery-filter-btn {
  border: 1.5px solid var(--emerald-100); background: var(--emerald-50);
  color: var(--emerald-800); font-family: 'Inter', sans-serif; font-size: 13.5px; font-weight: 600;
  padding: 9px 20px; border-radius: 999px; cursor: pointer; transition: all .2s ease;
}
.gallery-filter-btn:hover { border-color: var(--gold-400); color: var(--gold-700); }
.gallery-filter-btn.active { background: var(--emerald-800); border-color: var(--emerald-800); color: #fff; }

.gallery-grid {
  display: flex; gap: 18px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 4px 4px 18px;
  scrollbar-width: thin; scrollbar-color: var(--gold-400) var(--ivory-dim);
}
.gallery-grid::-webkit-scrollbar { height: 8px; }
.gallery-grid::-webkit-scrollbar-track { background: var(--ivory-dim); border-radius: 4px; }
.gallery-grid::-webkit-scrollbar-thumb { background: var(--gold-400); border-radius: 4px; }
.gallery-item {
  flex: 0 0 260px; scroll-snap-align: start;
  border-radius: var(--radius-md); overflow: hidden; position: relative;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4/5;
  cursor: zoom-in;
}
.gallery-item.gallery-hidden { display: none; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-nav {
  position: absolute; top: 50%; translate: 0 -50%;
  width: 42px; height: 42px; border-radius: 50%; border: none;
  background: rgba(255,255,255,0.92); color: var(--emerald-800);
  box-shadow: var(--shadow-md); cursor: pointer; z-index: 2;
  display: flex; align-items: center; justify-content: center; font-size: 16px;
  transition: background .2s ease;
}
.gallery-nav:hover { background: var(--gold-400); color: var(--emerald-950); }
.gallery-nav-prev { left: -6px; }
.gallery-nav-next { right: -6px; }
@media (max-width: 640px) {
  .gallery-item { flex: 0 0 78%; }
  .gallery-nav { display: none; }
}
.gallery-tag {
  position: absolute; top: 10px; left: 10px; z-index: 1;
  background: rgba(7,51,32,0.82); color: var(--gold-200);
  font-size: 11px; font-weight: 600; letter-spacing: .03em;
  padding: 4px 11px; border-radius: 999px;
}
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5,36,22,0.92) 100%);
  display: flex; align-items: flex-end; padding: 22px;
  opacity: 0; transition: opacity .25s ease;
}
.gallery-item:hover .gallery-overlay, .gallery-item:focus-within .gallery-overlay { opacity: 1; }
.gallery-overlay p { color: #fff; font-size: 13px; font-style: italic; line-height: 1.5; }
.gallery-count { text-align: center; margin-top: 20px; font-size: 13px; color: var(--emerald-700); }

.lightbox {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(5, 20, 13, 0.94);
  align-items: center; justify-content: center; padding: 32px 16px;
}
.lightbox.open { display: flex; }
.lightbox-inner { position: relative; max-width: 920px; width: 100%; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.lightbox-inner img { max-width: 100%; max-height: 74vh; border-radius: var(--radius-md); object-fit: contain; box-shadow: var(--shadow-lg); }
.lightbox-caption { color: var(--ivory); font-size: 14px; text-align: center; max-width: 620px; line-height: 1.6; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; background: rgba(255,255,255,0.12); border: none; color: #fff;
  width: 42px; height: 42px; border-radius: 50%; font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: background .2s ease;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--gold-500); }
.lightbox-close { top: -54px; right: 0; }
.lightbox-prev { left: -54px; top: 44%; }
.lightbox-next { right: -54px; top: 44%; }
@media (max-width: 720px) {
  .lightbox-prev { left: 4px; }
  .lightbox-next { right: 4px; }
  .lightbox-close { top: -46px; right: 4px; }
}

/* =========================================================
   VIDEO
   ========================================================= */
.video-section { background: var(--emerald-50); }
.video-container {
  position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
  max-width: 820px; margin: 0 auto; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); border: 6px solid #fff;
}
.video-container iframe { position: absolute; inset: 0; width: 100%; height: 100%; }

/* =========================================================
   SECURITY NOTICE
   ========================================================= */
.notice-box {
  background: linear-gradient(135deg, var(--emerald-900), var(--emerald-800));
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 46px);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.notice-box::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='84' height='84' viewBox='0 0 84 84'%3E%3Cg fill='none' stroke='%23d9bb62' stroke-width='1'%3E%3Cpath d='M42 2 L82 42 L42 82 L2 42 Z'/%3E%3Ccircle cx='42' cy='42' r='20'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 84px 84px; opacity: 0.08;
}
.notice-box > * { position: relative; z-index: 1; }
.notice-box h3 { color: #fff; font-size: 1.35rem; margin-bottom: 12px; }
.notice-box p { color: rgba(255,255,255,0.78); max-width: 560px; margin: 0 auto 22px; font-size: 14.5px; }

/* =========================================================
   WHY US
   ========================================================= */
.why-section { background: #fff; }
.why-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.why-img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-md);
  position: relative;
}
.why-img-frame img { width: 100%; height: 100%; object-fit: cover; }
.why-feature {
  display: flex; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--line);
}
.why-feature:last-child { border-bottom: none; }
.why-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: var(--emerald-50); display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.why-feature h3 { font-size: 16px; color: var(--ink-900); margin-bottom: 5px; font-family: 'Fraunces', serif; font-weight: 600; }
.why-feature p { font-size: 14px; color: var(--ink-500); }

/* =========================================================
   HOTEL GRID
   ========================================================= */
.hotel-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.hotel-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 22px 16px; text-align: center; font-weight: 700; font-size: 13.5px; color: var(--ink-900);
  transition: all .25s ease;
}
.hotel-card:hover { border-color: var(--gold-400); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.hotel-stars { color: var(--gold-500); font-size: 12px; margin-top: 6px; letter-spacing: 1px; }

/* =========================================================
   MANASIK
   ========================================================= */
.manasik-section { background: var(--emerald-50); }
.manasik-card {
  max-width: 780px; margin: 0 auto; background: #fff; border-radius: var(--radius-lg);
  padding: clamp(28px,5vw,46px); text-align: center; box-shadow: var(--shadow-sm); border: 1px dashed var(--gold-400);
}
.manasik-info { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px 40px; margin-top: 22px; font-size: 14px; }
.manasik-info strong { color: var(--emerald-800); font-family: 'Fraunces', serif; }

/* =========================================================
   BRANCH OFFICES
   ========================================================= */
.cabang-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.cabang-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 26px; transition: all .25s ease;
}
.cabang-card:hover { box-shadow: var(--shadow-sm); border-color: var(--gold-400); }
.cabang-card h2 { font-size: 15.5px; color: var(--ink-900); margin-bottom: 8px; font-family: 'Fraunces', serif; }
.cabang-card p { font-size: 13.5px; color: var(--ink-500); margin-bottom: 16px; }

/* =========================================================
   SAHABAT RJ (AGEN) DOMICILE
   ========================================================= */
.agen-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.agen-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 18px; font-size: 13.5px; color: var(--ink-700, var(--ink-900));
  transition: all .25s ease;
}
.agen-chip:hover { border-color: var(--gold-400); box-shadow: var(--shadow-sm); color: var(--emerald-800); }

/* =========================================================
   ROOM TYPE & PAYMENT
   ========================================================= */
.info-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.info-box {
  background: #fff; border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); border: 1px solid var(--line);
}
.info-box h3 { font-size: 1.05rem; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.room-line {
  display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px dashed var(--line); font-size: 14px;
}
.room-line:last-child { border-bottom: none; }
.room-line strong { color: var(--ink-900); }
.rek-card {
  background: var(--ivory-dim); padding: 20px; border-radius: var(--radius-md); border: 1px solid var(--gold-200); margin-top: 6px;
}
.rek-card h4 { font-family: 'Fraunces', serif; color: var(--emerald-900); margin-bottom: 8px; }
.rek-actions { margin-top: 16px; display: flex; gap: 10px; flex-wrap: wrap; }

/* =========================================================
   FAQ
   ========================================================= */
.faq-section { background: #fff; }
.faq-container { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius-md);
  margin-bottom: 12px; overflow: hidden; transition: border-color .25s ease;
}
.faq-item.open { border-color: var(--gold-400); }
.faq-question {
  padding: 18px 22px; font-weight: 700; font-size: 15px; color: var(--ink-900);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-question .arrow { color: var(--gold-600); font-size: 13px; transition: transform .3s ease; flex-shrink: 0; }
.faq-item.open .arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height .35s ease;
  font-size: 14px; color: var(--ink-500); padding: 0 22px;
}
.faq-answer-inner { padding-bottom: 20px; }
.faq-category {
  color: var(--emerald-800); font-family: 'Fraunces', serif; font-size: 18px;
  border-bottom: 2px solid var(--line); padding-bottom: 8px; margin: 32px 0 16px;
}
.faq-category:first-of-type { margin-top: 24px; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-section { background: var(--emerald-950); color: rgba(255,255,255,0.85); }
.contact-section .sec-head h2 { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 46px; align-items: stretch; }
.kontak-info h3 { color: var(--gold-400); font-size: 1.2rem; margin-bottom: 16px; }
.kontak-info p { margin-bottom: 10px; font-size: 14.5px; }
.kontak-info strong { color: #fff; }
.kontak-line { display: flex; gap: 10px; margin-bottom: 12px; font-size: 14px; }
.map-container { border-radius: var(--radius-lg); overflow: hidden; min-height: 260px; border: 1px solid rgba(255,255,255,0.12); }
.map-container iframe { width: 100%; height: 100%; min-height: 260px; border: 0; filter: grayscale(20%) contrast(1.05); }

footer.site-footer {
  background: var(--emerald-950); border-top: 1px solid rgba(217,187,98,0.2);
  padding: 22px 0; text-align: center; font-size: 13px; color: rgba(255,255,255,0.55);
}
footer.site-footer strong { color: var(--gold-400); }
.footer-legal-links { margin-top: 8px; font-size: 12.5px; }
.footer-legal-links a { color: rgba(255,255,255,0.65); text-decoration: underline; }
.footer-legal-links a:hover { color: #fff; }

/* =========================================================
   SOCIAL MEDIA
   ========================================================= */
.social-row {
  display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px;
}
.social-link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff; font-size: 13px; font-weight: 600;
  text-decoration: none; transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.social-link:hover { background: rgba(255,255,255,0.14); border-color: var(--gold-400); transform: translateY(-2px); }
.social-link .rj-icon { width: 16px; height: 16px; }
.social-link .rj-icon-instagram { color: #E1306C; }
.social-link .rj-icon-facebook { color: #1877F2; }
.social-link .rj-icon-tiktok { color: #ffffff; }
.social-link .rj-icon-youtube { color: #FF0000; }
.footer-social {
  display: flex; gap: 16px; justify-content: center; margin-bottom: 10px; flex-wrap: wrap;
}
.footer-social a {
  color: rgba(255,255,255,0.65); text-decoration: none; font-size: 13px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px; transition: color .2s ease;
}
.footer-social a:hover { color: var(--gold-400); }
.footer-social .rj-icon { width: 14px; height: 14px; }

/* Ikon SVG inline (pengganti Font Awesome) -- warna ikut warna teks
   di sekitarnya (fill="currentColor" di markup) kecuali di-override
   di atas untuk warna brand asli tiap platform. */
.rj-icon { width: 1em; height: 1em; flex-shrink: 0; display: inline-block; vertical-align: -0.125em; }

/* =========================================================
   WHATSAPP FLOAT
   ========================================================= */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 2000;
  width: 58px; height: 58px; border-radius: 50%;
  background: #1fae56; color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 27px; box-shadow: 0 8px 22px rgba(31,174,86,0.45);
  animation: pulse-wa 2.6s infinite;
}
@keyframes pulse-wa {
  0% { box-shadow: 0 8px 22px rgba(31,174,86,0.45), 0 0 0 0 rgba(31,174,86,0.4); }
  70% { box-shadow: 0 8px 22px rgba(31,174,86,0.45), 0 0 0 14px rgba(31,174,86,0); }
  100% { box-shadow: 0 8px 22px rgba(31,174,86,0.45), 0 0 0 0 rgba(31,174,86,0); }
}

/* =========================================================
   SCROLL REVEAL
   (hanya aktif jika JS berhasil menambahkan class "js" ke <html>.
   Kalau JS gagal/lambat, semua konten tetap terlihat normal — aman.)
   ========================================================= */
html.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
html.js .reveal.in { opacity: 1; transform: translateY(0); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .hotel-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy p { margin-left: auto; margin-right: auto; }
  .hero-buttons, .hero-trust { justify-content: center; }
  .hero-visual { order: -1; }
  .arch-frame { width: min(72vw, 320px); }
  .hero-badge-float { left: 50%; transform: translateX(-50%); bottom: -18px; }

  .why-grid { grid-template-columns: 1fr; }
  .why-img-frame { max-width: 420px; margin: 0 auto; }

  .footer-grid { grid-template-columns: 1fr; }
  .map-container { min-height: 220px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 66px; }
  .navbar { position: fixed; top: var(--nav-h); left: 0; width: 100%;
    background: var(--white); max-height: 0; overflow: hidden;
    transition: max-height .35s ease; box-shadow: var(--shadow-md); }
  .navbar.active { max-height: calc(100vh - var(--nav-h)); overflow-y: auto; }
  .nav-links { flex-direction: column; align-items: stretch; padding: 10px 5% 20px; gap: 4px; width: 100%; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 13px 4px; border-bottom: 1px solid var(--line); }
  .nav-sep { display: none; }
  .nav-cta-item { padding: 14px 4px 4px; }
  .menu-toggle { display: flex; }

  .cards { grid-template-columns: 1fr; }
  .cards-4 { grid-template-columns: 1fr; }
  .info-row { grid-template-columns: 1fr; }
  .cabang-grid { grid-template-columns: 1fr; }
  .hotel-grid { grid-template-columns: repeat(2, 1fr); }

  section { padding: 48px 0; }

  /* table -> cards */
  .p-table, .p-table thead, .p-table tbody, .p-table th, .p-table td, .p-table tr { display: block; width: 100%; }
  .p-table thead { display: none; }
  .p-table tbody tr {
    margin: 16px; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 18px;
    box-shadow: var(--shadow-sm);
  }
  .p-table td {
    border-bottom: 1px dashed var(--line); padding: 10px 0; display: flex; justify-content: space-between; align-items: center; gap: 12px; text-align: right;
  }
  .p-table td::before {
    content: attr(data-label); font-weight: 700; color: var(--ink-300); font-size: 10.5px; text-transform: uppercase; letter-spacing: .05em; text-align: left;
  }
  .p-table td:first-child { display: block; text-align: left; border-bottom: 2px dashed var(--line); padding-bottom: 14px; margin-bottom: 8px; }
  .p-table td:first-child::before { display: none; }
  .p-table td:last-child { border-bottom: none; padding-top: 14px; }
  .p-table td:last-child::before { display: none; }
  .action-col { min-width: 0; }
}

@media (max-width: 520px) {
  .hotel-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .partners-row { gap: 22px; }
  .partners-row img { height: 52px; }
  .hero-badge-float { max-width: 220px; padding: 12px 16px; }
  .btn { padding: 13px 20px; font-size: 13.5px; }
  h1 { font-size: 1.85rem !important; }
  .sec-head h2 { font-size: 1.5rem; }
}

/* =========================================================
   HAJI SECTION — DETAIL PROGRAM
   ========================================================= */
.haji-section {
  background: linear-gradient(180deg, var(--emerald-950) 0%, var(--emerald-900) 38%, var(--ivory) 38%);
  position: relative;
  overflow: hidden;
}
.haji-pattern { opacity: 0.08; }
.haji-eyebrow { color: var(--gold-400); }
.haji-eyebrow::before { background: var(--gold-400); }
.haji-title { color: #fff; }
.haji-sub { color: rgba(255,255,255,0.78) !important; max-width: 620px; }

.compare-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 26px;
  position: relative; z-index: 1;
}
.compare-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: clamp(26px, 3vw, 38px);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  position: relative;
  display: flex; flex-direction: column;
}
.compare-card.featured { border: 2px solid var(--gold-400); background: linear-gradient(180deg, #fffdf6, #ffffff); }
.compare-tag {
  position: absolute; top: -14px; right: 28px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--emerald-950); font-size: 11px; font-weight: 800;
  padding: 6px 14px; border-radius: 999px; letter-spacing: .03em;
  box-shadow: 0 6px 14px rgba(184,144,31,0.35);
}
.compare-head { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.compare-icon {
  width: 54px; height: 54px; border-radius: 14px; flex-shrink: 0;
  background: var(--emerald-50); display: flex; align-items: center; justify-content: center; font-size: 24px;
}
.compare-card.featured .compare-icon { background: var(--gold-200); }
.compare-head h2 { font-size: 1.25rem; margin-bottom: 2px; }
.compare-tagline { font-size: 12.5px; color: var(--ink-500); font-weight: 600; }
.compare-list { margin-bottom: 22px; flex-grow: 1; }
.compare-list li {
  display: flex; align-items: flex-start; gap: 10px; padding: 9px 0;
  border-bottom: 1px solid var(--line); font-size: 13.5px; color: var(--ink-700); line-height: 1.5;
}
.compare-list li:last-child { border-bottom: none; }
.compare-list .ok { color: var(--emerald-700); font-weight: 800; flex-shrink: 0; }
.compare-foot {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--ivory-dim); border-radius: var(--radius-sm); padding: 12px 16px; margin-bottom: 16px;
}
.compare-label { font-size: 12px; color: var(--ink-500); font-weight: 600; }
.compare-foot strong { font-family: 'Fraunces', serif; color: var(--emerald-800); font-size: 15px; }

.haji-disclaimer { font-size: 12.5px; color: var(--ink-300); text-align: center; margin-top: 18px; max-width: 640px; margin-left: auto; margin-right: auto; }

.haji-sub-block { margin-top: 64px; position: relative; z-index: 1; }

.docs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.docs-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 22px; transition: all .25s ease;
}
.docs-card:hover { border-color: var(--gold-400); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.docs-icon { font-size: 26px; margin-bottom: 12px; }
.docs-card h3 { font-family: 'Fraunces', serif; font-size: 15px; color: var(--ink-900); margin-bottom: 6px; }
.docs-card p { font-size: 13px; color: var(--ink-500); line-height: 1.55; }

.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 24px 20px; position: relative;
}
.step-num {
  display: inline-block; font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.6rem;
  color: var(--gold-500); margin-bottom: 10px;
}
.step-item h3 { font-size: 14.5px; color: var(--ink-900); margin-bottom: 8px; }
.step-item p { font-size: 12.5px; color: var(--ink-500); line-height: 1.55; }
.step-item:not(:last-child)::after {
  content: '→'; position: absolute; top: 26px; right: -18px; color: var(--gold-400); font-size: 18px; display: none;
}
@media (min-width: 769px) {
  .step-item:not(:last-child)::after { display: block; }
}

.cost-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.cost-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-sm);
}
.cost-card.featured { border: 2px solid var(--gold-400); box-shadow: var(--shadow-md); }
.cost-badge {
  display: inline-block; background: var(--emerald-100); color: var(--emerald-800);
  font-size: 11.5px; font-weight: 800; padding: 5px 12px; border-radius: 999px; margin-bottom: 14px;
}
.cost-badge.gold { background: var(--gold-200); color: var(--gold-700); }
.cost-amount { font-family: 'Fraunces', serif; font-size: 1.7rem; font-weight: 700; color: var(--emerald-900); margin-bottom: 8px; }
.cost-amount small { font-family: 'Inter'; font-size: 12px; font-weight: 500; color: var(--ink-500); }
.cost-note { font-size: 12.5px; color: var(--ink-500); margin-bottom: 16px; }
.cost-includes li { font-size: 13px; color: var(--ink-700); padding: 6px 0; }

@media (max-width: 940px) {
  .compare-grid { grid-template-columns: 1fr; }
  .docs-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .cost-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .docs-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .haji-section { background: linear-gradient(180deg, var(--emerald-950) 0%, var(--emerald-900) 46%, var(--ivory) 46%); }
}
/* =========================================================
   TAMBAHAN CSS -- untuk class baru yang dipakai di halaman
   detail paket, arsip, dan blog yang sekarang jadi halaman
   terpisah (dulu tidak ada karena semua 1 halaman HTML).

   Ditulis konsisten dengan token warna & font yang sudah ada
   di style.css asli: var(--emerald-800), var(--gold-600), dst.
   Tinggal ditambahkan ke akhir style.css (setelah CSS asli).
   ========================================================= */

/* --- Breadcrumb --- */
.breadcrumb {
  font-size: 0.85rem;
  color: var(--ink-500, #6b7280);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--emerald-700); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* --- Halaman Detail Paket (single-paket_umrah.php / single-paket_haji.php) --- */
.pkg-single-head h1 { margin-bottom: 8px; }
.pkg-single-image img { width: 100%; height: 420px; border-radius: 14px; object-fit: contain; background: var(--emerald-950); display: block; }
.pkg-single-top { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; margin-bottom: 32px; }
@media (max-width: 860px) { .pkg-single-top { grid-template-columns: 1fr; } }
.pkg-single-grid { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }
@media (max-width: 860px) { .pkg-single-grid { grid-template-columns: 1fr; } }

.pkg-single-card {
  background: var(--ivory, #faf7f1);
  border: 1px solid var(--emerald-100, #e7f1ec);
  border-radius: 16px;
  padding: 24px;
  position: sticky;
  top: 100px;
}
.pkg-single-card .price-tag { font-family: "Fraunces", serif; font-size: 1.8rem; color: var(--emerald-800); margin-bottom: 16px; }
.pkg-single-card .price-tag.gold { color: var(--gold-600); }
.pkg-info-list { list-style: none; padding: 0; margin: 0 0 20px; }
.pkg-info-list li { padding: 8px 0; border-bottom: 1px dashed var(--emerald-100, #e7f1ec); font-size: 0.92rem; }
.pkg-info-list li:last-child { border-bottom: none; }
.btn-block { display: block; width: 100%; text-align: center; margin-bottom: 10px; }
.btn-ghost { background: transparent; border: 1px solid var(--emerald-700); color: var(--emerald-700); }

.pkg-related { margin-top: 60px; }
.pkg-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 700px) { .pkg-related-grid { grid-template-columns: 1fr; } }
.pkg-related-card { display: block; text-decoration: none; color: inherit; border-radius: 12px; overflow: hidden; border: 1px solid var(--emerald-100, #e7f1ec); }
.pkg-related-card img { width: 100%; height: 160px; object-fit: cover; }
.pkg-related-card span { display: block; padding: 12px; font-weight: 600; color: var(--emerald-800); }

/* --- Badge Haji (single-paket_haji.php) --- */
.badge-gold {
  display: inline-block; background: var(--gold-600); color: #fff;
  padding: 6px 14px; border-radius: 999px; font-size: 0.8rem; font-weight: 700;
  margin-bottom: 12px;
}
.syarat-dokumen { line-height: 1.7; }
.alur-pendaftaran { padding-left: 20px; }
.alur-pendaftaran li { margin-bottom: 14px; }

/* --- Halaman Perbandingan Haji (archive-paket_haji.php) --- */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 32px; }
@media (max-width: 760px) { .compare-grid { grid-template-columns: 1fr; } }
.compare-card {
  background: #fff; border: 1px solid var(--emerald-100, #e7f1ec); border-radius: 18px;
  padding: 32px; position: relative;
}
.compare-card.featured { border-color: var(--gold-600); box-shadow: 0 8px 24px rgba(184,144,31,0.15); }
.compare-tag {
  position: absolute; top: -12px; right: 24px; background: var(--gold-600); color: #fff;
  padding: 4px 14px; border-radius: 999px; font-size: 0.75rem; font-weight: 700;
}
.compare-head { display: flex; gap: 14px; align-items: center; margin-bottom: 16px; }
.compare-icon { font-size: 2.2rem; }
.compare-tagline { font-size: 0.85rem; color: var(--ink-500, #6b7280); }
.compare-foot { margin: 20px 0 8px; }
.compare-label { display: block; font-size: 0.8rem; color: var(--ink-500, #6b7280); }
.cost-amount { font-family: "Fraunces", serif; font-size: 1.6rem; color: var(--emerald-800); margin-bottom: 20px; }
.btn-emerald { background: var(--emerald-800); color: #fff; }

/* --- Blog (single.php / archive.php) --- */
.badge-kategori {
  display: inline-block; background: var(--emerald-100, #e7f1ec); color: var(--emerald-800);
  padding: 4px 12px; border-radius: 999px; font-size: 0.78rem; font-weight: 600; margin-bottom: 12px;
}
.article-meta { display: flex; gap: 16px; flex-wrap: wrap; font-size: 0.85rem; color: var(--ink-500, #6b7280); margin: 12px 0 20px; }
.article-content { line-height: 1.8; font-size: 1.05rem; }
.article-content h2 { margin-top: 32px; }
.article-cta {
  background: var(--emerald-800); color: #fff; border-radius: 14px; padding: 28px;
  text-align: center; margin: 40px 0;
}
.article-cta p { margin-bottom: 16px; }
.article-tags { margin-top: 24px; display: flex; gap: 10px; flex-wrap: wrap; }
.article-tags a { color: var(--emerald-700); text-decoration: none; font-size: 0.85rem; }

.blog-cat-nav { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin: 24px 0 36px; }
.blog-cat-nav a {
  padding: 8px 16px; border-radius: 999px; border: 1px solid var(--emerald-100, #e7f1ec);
  text-decoration: none; color: var(--emerald-800); font-size: 0.88rem;
}
.blog-cat-nav a.active, .blog-cat-nav a:hover { background: var(--emerald-800); color: #fff; }

.related-articles { margin-top: 60px; }
.related-articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 700px) { .related-articles-grid { grid-template-columns: 1fr; } }
.related-card { display: block; text-decoration: none; color: inherit; border-radius: 12px; overflow: hidden; border: 1px solid var(--emerald-100, #e7f1ec); }
.related-card img { width: 100%; height: 140px; object-fit: cover; }
.related-card span { display: block; padding: 10px; font-weight: 600; font-size: 0.9rem; }

.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.pagination .page-numbers { padding: 8px 14px; border-radius: 8px; border: 1px solid var(--emerald-100, #e7f1ec); text-decoration: none; color: var(--emerald-800); }
.pagination .page-numbers.current { background: var(--emerald-800); color: #fff; }

/* --- Halaman Cabang --- */
.cabang-single-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 24px; }
@media (max-width: 760px) { .cabang-single-grid { grid-template-columns: 1fr; } }
.cabang-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 20px 0; }
.cabang-gallery img { width: 100%; border-radius: 10px; height: 140px; object-fit: cover; }

/* --- Konten Detail Paket (info strip, hotel, fasilitas, itinerary) --- */
.pkg-content-section { margin: 40px 0; }
.pkg-content-eyebrow { display: block; text-transform: uppercase; letter-spacing: .08em; font-size: 12px; font-weight: 700; color: var(--gold-600); margin-bottom: 6px; }
.pkg-content-section h2 { font-family: "Fraunces", serif; font-size: 1.5rem; color: var(--emerald-900); margin: 0 0 20px; }

.pkg-info-strip { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; font-size: 13.5px; color: var(--ink-500); margin-bottom: 24px; }
.pkg-info-strip span:not(:last-child)::after { content: "•"; margin-left: 10px; color: var(--gold-500); }

.pkg-quickfacts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 16px; }
@media (max-width: 700px) { .pkg-quickfacts { grid-template-columns: 1fr; } }
.pkg-quickfact { background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 18px 20px; }
.pkg-quickfact-label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--gold-600); font-weight: 700; margin-bottom: 6px; }
.pkg-quickfact-main { display: block; font-family: "Fraunces", serif; font-size: 1.25rem; color: var(--emerald-900); font-weight: 700; }
.pkg-quickfact-sub { display: block; font-size: 12.5px; color: var(--ink-500); margin-top: 4px; font-style: italic; }
.pkg-upgrade-note { font-size: 13px; color: var(--ink-500); font-style: italic; margin: -4px 0 0; }

.pkg-hotel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 700px) { .pkg-hotel-grid { grid-template-columns: 1fr; } }
.pkg-hotel-card { border: 1px solid var(--line); border-radius: var(--radius-md); padding: 20px; }
.pkg-hotel-city { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--gold-600); font-weight: 700; margin-bottom: 8px; }
.pkg-hotel-name { display: block; font-weight: 700; color: var(--emerald-900); margin-bottom: 6px; }
.pkg-hotel-stars { color: var(--gold-500); letter-spacing: 2px; margin-bottom: 10px; }
.pkg-hotel-desc { font-size: 13.5px; color: var(--ink-500); line-height: 1.6; }

.pkg-facility-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
@media (max-width: 700px) { .pkg-facility-grid { grid-template-columns: 1fr; } }
.pkg-facility-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--emerald-800); margin: 0 0 12px; }
.pkg-facility-col ul { list-style: none; padding: 0; margin: 0; }
.pkg-facility-col li { padding: 7px 0; font-size: 14px; display: flex; gap: 10px; align-items: flex-start; border-bottom: 1px dashed var(--line); }
.pkg-facility-col li:last-child { border-bottom: none; }
.pkg-facility-col.included li::before { content: "✓"; color: #1c8a4d; font-weight: 800; flex-shrink: 0; }
.pkg-facility-col.excluded li::before { content: "–"; color: #c9432c; font-weight: 800; flex-shrink: 0; }

.pkg-reason-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 700px) { .pkg-reason-grid { grid-template-columns: 1fr; } }
.pkg-reason-card { background: var(--ivory); border-radius: var(--radius-md); padding: 22px 20px; }
.pkg-reason-num { font-family: "Fraunces", serif; font-size: 1.8rem; color: var(--gold-500); font-weight: 700; opacity: .6; display: block; margin-bottom: 8px; }
.pkg-reason-card h4 { margin: 0 0 8px; color: var(--emerald-900); font-size: 15px; }
.pkg-reason-card p { margin: 0; font-size: 13.5px; color: var(--ink-500); line-height: 1.6; }

.pkg-itinerary { display: flex; flex-direction: column; gap: 0; }
.pkg-itinerary-day { display: flex; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.pkg-itinerary-day:last-child { border-bottom: none; }
.pkg-itinerary-badge { flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%; background: var(--emerald-800); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 13px; }
.pkg-itinerary-day h4 { margin: 2px 0 6px; color: var(--emerald-900); font-size: 15px; }
.pkg-itinerary-day p { margin: 0; font-size: 13.5px; color: var(--ink-500); line-height: 1.6; }

.pkg-footer-note { font-size: 13px; color: var(--ink-500); font-style: italic; border-top: 1px solid var(--line); padding-top: 20px; margin-top: 8px; }

/* =========================================================
   HALAMAN LEGAL (Kebijakan Privasi & Syarat Ketentuan)
   Dipakai lewat class .page-content di dalam page.php
   ========================================================= */
.page-content { font-size: 15.5px; line-height: 1.75; color: var(--ink-700); }
.page-content .updated-date { font-size: 13px; color: var(--ink-500); margin-bottom: 28px; }
.page-content h2 {
  font-size: 1.3rem; color: var(--emerald-900); margin: 38px 0 14px;
  padding-bottom: 10px; border-bottom: 1px solid var(--line);
}
.page-content h2:first-of-type { margin-top: 0; }
.page-content h3 { font-size: 1.05rem; color: var(--ink-900); margin: 22px 0 10px; }
.page-content p { margin: 0 0 14px; }
.page-content ul, .page-content ol { margin: 0 0 16px; padding-left: 22px; }
.page-content ul { list-style: disc; }
.page-content ol { list-style: decimal; }
.page-content li { margin-bottom: 8px; }
.page-content a { color: var(--emerald-700); text-decoration: underline; }
.page-content strong { color: var(--ink-900); }

/* Kotak sorotan (jaminan keamanan transaksi, kantor operasional, catatan penting) */
.page-note {
  background: var(--ivory-dim); border: 1px solid var(--gold-200); border-radius: var(--radius-md);
  padding: 20px 22px; margin: 20px 0;
}
.page-note h3 { margin-top: 0; display: flex; align-items: center; gap: 8px; color: var(--emerald-900); }
.page-note p:last-child { margin-bottom: 0; }

.page-office-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 18px 0 20px; }
@media (max-width: 700px) { .page-office-grid { grid-template-columns: 1fr; } }
.page-office-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 20px; box-shadow: var(--shadow-sm);
}
.page-office-card h4 { font-family: 'Fraunces', serif; font-size: 15px; color: var(--emerald-900); margin: 0 0 8px; }
.page-office-card p { font-size: 13.5px; color: var(--ink-500); margin-bottom: 12px; }

@media (max-width: 480px) {
  .page-content { font-size: 14.5px; }
  .page-content h2 { font-size: 1.15rem; margin-top: 30px; }
}

/* =========================================================
   FORM PENDAFTARAN (Umrah, Haji, Tabungan, Umrah By Request)
   ========================================================= */
.form-page-hero {
  background: linear-gradient(135deg, var(--emerald-900), var(--emerald-800));
  color: #fff; padding: 60px 0 50px; text-align: center;
}
.form-page-hero .eyebrow { color: var(--gold-400); }
.form-page-hero h1 { color: #fff; margin: 10px 0 12px; font-family: "Fraunces", serif; font-size: clamp(1.6rem, 3vw, 2.3rem); }
.form-page-hero p { color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto; }

.form-wrap { max-width: 720px; margin: -30px auto 60px; padding: 0 20px; position: relative; z-index: 2; }
.form-card {
  background: #fff; border-radius: var(--radius-lg, 18px); box-shadow: var(--shadow-md);
  padding: 36px 32px; border: 1px solid var(--line);
}
@media (max-width: 600px) { .form-card { padding: 26px 20px; } }

.form-section-title {
  font-family: "Fraunces", serif; font-size: 1.1rem; color: var(--emerald-900);
  margin: 32px 0 16px; padding-top: 20px; border-top: 1px solid var(--line);
}
.form-section-title:first-child { margin-top: 0; padding-top: 0; border-top: none; }

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 13.5px; font-weight: 700; color: var(--emerald-900); margin-bottom: 6px;
}
.form-group .form-hint { font-size: 12px; color: var(--ink-500); font-weight: 400; margin-top: 4px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px;
  font-family: "Inter", sans-serif; font-size: 14.5px; color: var(--ink-900);
  background: var(--ivory); transition: border-color .2s ease;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--emerald-600); background: #fff;
}
.form-textarea { resize: vertical; min-height: 90px; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23135c3c' stroke-width='2' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

.form-required { color: #c9432c; }

.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 600px) { .check-grid { grid-template-columns: 1fr; } }
.check-item, .radio-item {
  display: flex; align-items: center; gap: 10px; padding: 11px 14px;
  border: 1.5px solid var(--line); border-radius: 10px; cursor: pointer;
  font-size: 13.5px; transition: border-color .2s ease, background .2s ease;
}
.check-item:has(input:checked), .radio-item:has(input:checked) {
  border-color: var(--emerald-600); background: var(--emerald-50);
}
.check-item input, .radio-item input { accent-color: var(--emerald-700); width: 17px; height: 17px; flex-shrink: 0; }

.form-submit-btn {
  width: 100%; margin-top: 10px; font-size: 15.5px; padding: 15px;
}

.form-summary-box {
  background: var(--emerald-50); border: 1.5px dashed var(--emerald-600); border-radius: 12px;
  padding: 18px 20px; margin: 24px 0; font-size: 13.5px; color: var(--emerald-900); line-height: 1.7;
}
.form-summary-box strong { color: var(--emerald-900); }
.form-summary-empty { color: var(--ink-500); font-style: italic; }

.form-note-box {
  background: #fff8e8; border: 1px solid #f0d999; border-radius: 10px;
  padding: 14px 16px; font-size: 12.5px; color: #7a5c14; margin-top: 20px; line-height: 1.6;
}
