/* ============================================================
   LIMA PILAR TRAVEL — Homepage
   Palette diambil langsung dari desain asli.
   ============================================================ */

:root {
  --gold:        #c8972a;   /* aksen utama */
  --gold-soft:   #d9ad42;
  --gold-bright: #e8c45f;
  --bg:          #090909;   /* latar utama */
  --bg-2:        #111111;   /* section alternatif */
  --card:        #1a1a1a;   /* kartu */
  --card-2:      #161616;
  --line:        #262626;
  --line-gold:   rgba(200, 151, 42, .35);
  --ink:         #f4f2ee;
  --muted:       #9a958c;
  --muted-2:     #7c776e;

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --container: 1140px;
  --radius:    16px;
  --ease:      cubic-bezier(.22, 1, .36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }
.gold { color: var(--gold); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ===================== Typography helpers ===================== */
.h2 {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(1.8rem, 4.2vw, 2.9rem);
  line-height: 1.15;
  letter-spacing: -.01em;
}
.h2 em { font-weight: 700; }
.eyebrow {
  display: inline-block;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  padding: .5rem 1rem;
  border: 1px solid var(--line-gold);
  border-radius: 8px;
  background: rgba(200, 151, 42, .06);
  margin-bottom: 1.4rem;
}
.lede { color: var(--muted); font-size: 1.06rem; margin-top: 1rem; }

/* ===================== Buttons ===================== */
.btn {
  --py: .85rem; --px: 1.5rem;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: var(--py) var(--px);
  font-family: var(--sans); font-weight: 700; font-size: .96rem;
  border-radius: 10px; border: 1.5px solid transparent; cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s, color .2s;
  white-space: nowrap;
}
.btn--gold { background: var(--gold); color: #1a1208; box-shadow: 0 10px 30px rgba(200, 151, 42, .28); }
.btn--gold:hover { background: var(--gold-soft); transform: translateY(-2px); box-shadow: 0 14px 36px rgba(200, 151, 42, .4); }
.btn--outline { background: transparent; color: var(--ink); border-color: rgba(255, 255, 255, .25); }
.btn--outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn--sm { --py: .6rem; --px: 1.05rem; font-size: .86rem; }
.btn--lg { --py: 1rem; --px: 1.7rem; font-size: 1rem; }
.btn--xl { --py: 1.15rem; --px: 2.2rem; font-size: 1.1rem; }

/* ===================== Top bar ===================== */
.topbar {
  background: var(--gold);
  color: #1c1407;
  font-size: .85rem; font-weight: 600;
  text-align: center;
}
.topbar__inner { padding: .6rem 24px; }

/* ===================== Navbar ===================== */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(9, 9, 9, .82);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.nav.is-scrolled { border-bottom-color: var(--line); background: rgba(9, 9, 9, .94); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { font-family: var(--serif); font-weight: 800; font-size: 1.4rem; color: #fff; letter-spacing: -.01em; }
.nav__links { display: flex; align-items: center; gap: 1.8rem; }
.nav__links > a:not(.btn) { font-size: .94rem; font-weight: 500; color: var(--muted); transition: color .2s; }
.nav__links > a:not(.btn):hover { color: var(--ink); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .3s; }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===================== Hero ===================== */
.hero { position: relative; overflow: hidden; padding: 96px 0 84px; }
.hero__bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
  background-size: cover; background-position: center 30%;
  z-index: 0; transform: scale(1.03);
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(9,9,9,.95) 0%, rgba(9,9,9,.82) 45%, rgba(9,9,9,.55) 100%),
    linear-gradient(0deg, var(--bg) 2%, transparent 40%);
}
.hero__inner { position: relative; z-index: 2; max-width: 760px; }
.badge {
  display: inline-block;
  font-size: .74rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold);
  padding: .55rem 1.1rem; border: 1px solid var(--line-gold); border-radius: 8px;
  background: rgba(200, 151, 42, .07); margin-bottom: 1.6rem;
}
.hero__title {
  font-family: var(--serif); font-weight: 800;
  font-size: clamp(2.1rem, 5.6vw, 3.7rem); line-height: 1.12; letter-spacing: -.01em;
  color: #fff;
}
.hero__title em { font-weight: 700; }
.hero__subtitle { color: #c9c4bb; font-size: 1.12rem; margin-top: 1.5rem; max-width: 600px; }
.hero__cta { display: flex; gap: .9rem; flex-wrap: wrap; margin-top: 2.2rem; }
.hero__stats { display: flex; gap: 2.6rem; flex-wrap: wrap; margin-top: 3.2rem; }
.hstat { display: grid; grid-template-columns: auto auto; grid-template-rows: auto auto; column-gap: .6rem; align-items: center; }
.hstat__ico { grid-row: 1 / 3; font-size: 1.5rem; }
.hstat strong { font-family: var(--serif); font-weight: 800; font-size: 1.5rem; color: #fff; line-height: 1; }
.hstat small { color: var(--muted); font-size: .85rem; }

/* ===================== Divider band ===================== */
.band {
  height: 150px; background-size: cover; background-position: center 60%;
  position: relative;
}
.band::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, var(--bg), transparent 55%), linear-gradient(180deg, var(--bg), transparent 55%); }

/* ===================== Sections ===================== */
.section { padding: 90px 0; }
.section--alt { background: var(--bg-2); }
.section__head { max-width: 720px; margin: 0 auto 3.2rem; text-align: center; }

.grid { display: grid; }
.gap-md { gap: 1.2rem; }
.gap-lg { gap: 1.6rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ===================== Photo cards (problems / pillars) ===================== */
.pcard {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .28s var(--ease), border-color .28s, box-shadow .28s;
}
.pcard:hover { transform: translateY(-5px); border-color: var(--line-gold); box-shadow: 0 22px 50px rgba(0, 0, 0, .5); }
.pcard__img { height: 200px; background-size: cover; background-position: center; }
.pcard__img--plain { display: grid; place-items: center; background: #141414; }
.emoji-xl { font-size: 3rem; opacity: .5; }
.pcard__body { padding: 1.6rem 1.7rem 1.9rem; }
.emoji-ico {
  width: 52px; height: 52px; display: grid; place-items: center; font-size: 1.5rem;
  background: #131313; border: 1px solid var(--line); border-radius: 12px; margin-bottom: 1rem;
}
.pcard__body h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: .5rem; color: #fff; }
.pcard__body p { color: var(--muted); font-size: .97rem; }
.pilar-label {
  display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .6rem;
}
.pcard--wide { grid-column: 1 / -1; }
.pcard--wide .pcard__img { height: 220px; }

/* ===================== Insight quote ===================== */
.insight {
  margin-top: 2.4rem; text-align: center;
  background: linear-gradient(135deg, rgba(18, 40, 30, .55), rgba(15, 20, 16, .5));
  border: 1px solid rgba(120, 170, 130, .22); border-radius: var(--radius);
  padding: 2.4rem 2rem;
}
.insight p { font-family: var(--serif); font-style: italic; font-size: clamp(1.1rem, 2.4vw, 1.5rem); color: #e9e6df; line-height: 1.5; }

/* ===================== Value proposition ===================== */
.valueprop { position: relative; overflow: hidden; padding: 100px 0; text-align: center; }
.valueprop__bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.valueprop__overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, var(--bg) 4%, rgba(9,9,9,.86) 50%, var(--bg) 96%); }
.valueprop__inner { position: relative; z-index: 2; max-width: 820px; }
.valueprop__quote { font-family: var(--serif); font-weight: 700; font-size: clamp(1.6rem, 4vw, 2.7rem); line-height: 1.3; color: #fff; margin-top: .6rem; }
.valueprop__by { color: var(--muted); margin-top: 1.6rem; letter-spacing: .04em; }

/* ===================== Stats band (gold) ===================== */
.statsband { background: var(--gold); padding: 56px 0; }
.statsband__grid { gap: 1.5rem; }
.bigstat { text-align: center; color: #1c1407; }
.bigstat strong { display: block; font-family: var(--serif); font-weight: 800; font-size: clamp(2.4rem, 5vw, 3.4rem); line-height: 1; }
.bigstat span { font-weight: 600; font-size: .98rem; margin-top: .5rem; display: block; color: #2c2208; }

/* ===================== Philosophy table ===================== */
.ptable { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--card-2); }
.ptable__head, .ptable__row { display: grid; grid-template-columns: 70px 1fr 1.4fr; align-items: start; gap: 1.5rem; padding: 1.5rem 1.8rem; }
.ptable__head { background: #131313; border-bottom: 1px solid var(--line); }
.ptable__head span { font-size: .76rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.ptable__row { border-bottom: 1px solid var(--line); transition: background .2s; }
.ptable__row:last-child { border-bottom: 0; }
.ptable__row:hover { background: rgba(200, 151, 42, .04); }
.ptable__num { font-family: var(--serif); font-weight: 700; font-size: 2rem; color: rgba(200, 151, 42, .55); line-height: 1; }
.ptable__name { font-weight: 700; color: #fff; font-size: 1.06rem; padding-top: .35rem; }
.ptable__desc { color: var(--muted); font-size: .97rem; }

/* ===================== About ===================== */
.about { display: grid; grid-template-columns: .85fr 1.15fr; gap: 3rem; align-items: center; margin-bottom: 3rem; }
.about__photo { aspect-ratio: 4 / 5; background-size: cover; background-position: center; border-radius: var(--radius); border: 1px solid var(--line); }
.about__text h2 { margin: 1rem 0; }
.about__text p { color: var(--muted); margin-bottom: 1rem; }
.about__tag { font-family: var(--serif); font-style: italic; font-size: 1.15rem; margin-top: .4rem; }
.traits { margin-top: .5rem; }
.trait { display: flex; gap: 1rem; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; transition: border-color .25s, transform .25s var(--ease); }
.trait:hover { border-color: var(--line-gold); transform: translateY(-3px); }
.trait__ico { flex: 0 0 auto; width: 48px; height: 48px; display: grid; place-items: center; font-size: 1.35rem; border-radius: 50%; background: rgba(200, 151, 42, .12); border: 1px solid var(--line-gold); }
.trait h4 { font-size: 1.05rem; margin-bottom: .35rem; color: #fff; }
.trait p { color: var(--muted); font-size: .93rem; }

/* ===================== Testimonials ===================== */
.tcard { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .28s var(--ease), border-color .28s; }
.tcard:hover { transform: translateY(-5px); border-color: var(--line-gold); }
.tcard__img { height: 170px; background-size: cover; background-position: center; }
.tcard__body { padding: 1.6rem 1.7rem 1.8rem; display: flex; flex-direction: column; flex: 1; }
.stars { color: var(--gold); letter-spacing: .15em; font-size: 1rem; margin-bottom: 1rem; }
.tcard__quote { font-family: var(--serif); font-style: italic; color: #d9d5cc; font-size: 1.04rem; line-height: 1.55; flex: 1; }
.tcard footer { margin-top: 1.4rem; display: flex; flex-direction: column; }
.tcard footer strong { color: #fff; font-weight: 700; }
.tcard footer span { color: var(--muted-2); font-size: .86rem; margin-top: .15rem; }

/* ===================== ICP + FAQ ===================== */
.icp { display: grid; grid-template-columns: .9fr 1.1fr; gap: 2.2rem; align-items: start; }
.persona { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.persona__photo { height: 240px; background-size: cover; background-position: center 25%; }
.persona__body { padding: 1.6rem 1.8rem 2rem; }
.persona__body h3 { font-family: var(--serif); font-size: 1.6rem; color: #fff; }
.persona__role { color: var(--gold); font-weight: 600; font-size: .92rem; margin-bottom: 1.2rem; }
.persona__list { list-style: none; display: flex; flex-direction: column; gap: .8rem; }
.persona__list li { color: var(--muted); font-size: .95rem; padding-left: 1.1rem; position: relative; }
.persona__list li::before { content: ""; position: absolute; left: 0; top: .6em; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.persona__list li span { display: block; color: #fff; font-weight: 600; font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; }

.faq { display: flex; flex-direction: column; gap: 1rem; }
.faq__item { background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 0 1.4rem; transition: border-color .2s; }
.faq__item[open] { border-color: var(--line-gold); }
.faq__item summary { list-style: none; cursor: pointer; font-weight: 600; color: #fff; padding: 1.2rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-size: 1.02rem; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; color: var(--gold); font-size: 1.5rem; font-weight: 400; line-height: 1; transition: transform .25s; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { color: var(--muted); padding: 0 0 1.3rem; font-size: .96rem; }

/* ===================== Steps ===================== */
.steps { list-style: none; max-width: 820px; margin: 0 auto; position: relative; }
.steps::before { content: ""; position: absolute; left: 27px; top: 20px; bottom: 20px; width: 2px; background: linear-gradient(180deg, var(--line-gold), var(--line)); }
.step { display: flex; gap: 1.6rem; padding-bottom: 2.4rem; position: relative; }
.step:last-child { padding-bottom: 0; }
.step__num { flex: 0 0 auto; width: 56px; height: 56px; display: grid; place-items: center; font-family: var(--serif); font-weight: 800; font-size: 1.5rem; color: var(--gold); background: var(--bg-2); border: 1.5px solid var(--line-gold); border-radius: 50%; position: relative; z-index: 1; }
.section--alt .step__num { background: #161616; }
.step__content { padding-top: .3rem; }
.step__tag { display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem; }
.step__content h3 { font-size: 1.2rem; color: #fff; margin-bottom: .5rem; }
.step__content p { color: var(--muted); font-size: .98rem; }

/* ===================== Final CTA ===================== */
.finalcta { position: relative; overflow: hidden; padding: 110px 0; text-align: center; }
.finalcta__bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.finalcta__overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, var(--bg) 3%, rgba(20, 14, 4, .82) 45%, rgba(9, 9, 9, .9) 100%); }
.finalcta__inner { position: relative; z-index: 2; max-width: 760px; }
.finalcta__lede { color: #d6d1c7; font-size: 1.1rem; margin: 1.4rem auto 2.2rem; max-width: 640px; }
.finalcta__checks { color: #cfc9bd; margin-top: 1.5rem; font-size: .98rem; }

/* ===================== Footer ===================== */
.footer { background: #0c0c0c; border-top: 1px solid var(--line); padding: 64px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr; gap: 2.5rem; }
.footer__brand .brand { font-size: 1.45rem; }
.footer__brand p { color: var(--muted); margin-top: .9rem; font-size: .95rem; max-width: 340px; }
.footer__col h4 { color: var(--gold); font-size: .8rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer__col a, .footer__col span { display: block; color: var(--muted); font-size: .94rem; margin-bottom: .65rem; transition: color .2s; }
.footer__col a:hover { color: var(--gold); }
.footer__bottom { margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer__bottom p { color: var(--muted-2); font-size: .88rem; }
.footer__bottom a { color: var(--muted); transition: color .2s; }
.footer__bottom a:hover { color: var(--gold); }
.footer__values { font-weight: 600; }

/* ===================== Floating WhatsApp ===================== */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 80;
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  font-size: 1.6rem; background: var(--gold); color: #1a1208;
  box-shadow: 0 12px 30px rgba(200, 151, 42, .45); transition: transform .2s var(--ease);
}
.wa-float:hover { transform: scale(1.08) translateY(-2px); }

/* ===================== WhatsApp teaser bubble ===================== */
.wa-bubble {
  position: fixed; right: 22px; bottom: 90px; z-index: 79;
  max-width: 252px; background: var(--card); border: 1px solid var(--line-gold);
  border-radius: 14px 14px 4px 14px; padding: .82rem 2rem .82rem 1rem;
  color: var(--ink); font-family: var(--sans); font-size: .9rem; line-height: 1.45;
  box-shadow: 0 14px 36px rgba(0, 0, 0, .5); cursor: pointer;
  opacity: 0; transform: translateY(12px) scale(.96); transform-origin: bottom right;
  transition: opacity .45s var(--ease), transform .45s var(--ease); pointer-events: none;
}
.wa-bubble.is-show { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.wa-bubble b { color: var(--gold); }
.wa-bubble__x {
  position: absolute; top: 5px; right: 7px; width: 22px; height: 22px;
  border: none; background: transparent; color: var(--muted-2); font-size: 1.1rem;
  line-height: 1; cursor: pointer; border-radius: 50%;
}
.wa-bubble__x:hover { color: var(--ink); background: rgba(255, 255, 255, .06); }
@media (max-width: 480px) { .wa-bubble { max-width: 212px; right: 18px; bottom: 84px; font-size: .86rem; } }

/* ===================== Reveal ===================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.hero .reveal, .hero__title, .hero__subtitle, .hero__cta, .hero__stats { opacity: 1 !important; transform: none !important; }

/* ===================== Responsive ===================== */
@media (max-width: 940px) {
  .about, .icp { grid-template-columns: 1fr; gap: 2rem; }
  .about__photo { aspect-ratio: 16 / 10; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .nav__links {
    position: fixed; inset: 0 0 auto 0; top: calc(74px + 33px);
    flex-direction: column; align-items: stretch; gap: .2rem;
    background: #0c0c0c; padding: 1rem 24px 1.6rem; border-bottom: 1px solid var(--line);
    transform: translateY(-130%); transition: transform .35s var(--ease); box-shadow: 0 20px 40px rgba(0,0,0,.5);
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links > a:not(.btn) { padding: .7rem 0; border-bottom: 1px solid var(--line); }
  .nav__links .btn { margin-top: .6rem; }
  .nav__toggle { display: flex; }
  .grid--2, .grid--3 { grid-template-columns: 1fr; }
  .pcard--wide { grid-column: auto; }
  .ptable__head { display: none; }
  .ptable__row { grid-template-columns: 44px 1fr; row-gap: .5rem; }
  .ptable__desc { grid-column: 2; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero__stats { gap: 1.6rem; }
}
@media (max-width: 480px) {
  .grid--4 { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__bg { transform: none; }
}

/* ===================== Nav dropdown (Layanan) ===================== */
.nav__group { position: relative; display: inline-flex; }
.nav__group-btn {
  background: none; border: 0; cursor: pointer; font-family: var(--sans);
  font-size: .94rem; font-weight: 500; color: var(--muted);
  display: inline-flex; align-items: center; gap: .35rem; padding: 0; transition: color .2s;
}
.nav__group-btn .caret { font-size: .65em; transition: transform .25s var(--ease); }
.nav__group:hover .nav__group-btn, .nav__group.is-open .nav__group-btn { color: var(--ink); }
.nav__group-btn.is-active { color: var(--gold); }
.nav__group:hover .caret, .nav__group.is-open .caret { transform: rotate(180deg); }

.nav__submenu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  margin-top: 12px; min-width: 264px;
  background: #16161a; border: 1px solid var(--line-gold); border-radius: 14px;
  padding: .55rem; display: flex; flex-direction: column; gap: .35rem;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .16s var(--ease), transform .16s var(--ease), visibility .16s;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .65); z-index: 70;
}
.nav__submenu::before { content: ""; position: absolute; left: 0; right: 0; top: -14px; height: 14px; }
.nav__group:hover .nav__submenu, .nav__group.is-open .nav__submenu {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.nav__submenu a {
  display: flex; align-items: center; gap: .65rem;
  padding: .75rem .9rem; border-radius: 10px; font-size: .92rem; font-weight: 500;
  color: #d8d4ca; background: rgba(255, 255, 255, .04); border: 1px solid var(--line);
  white-space: nowrap; transition: background .15s, color .15s, border-color .15s;
}
.nav__submenu a::before { font-size: 1.05rem; line-height: 1; }
.nav__submenu a[href="umroh-private.html"]::before { content: "👤"; }
.nav__submenu a[href="umroh-vip.html"]::before { content: "👑"; }
.nav__submenu a[href="handling.html"]::before { content: "🕌"; }
.nav__submenu a[href="hotel.html"]::before { content: "🏨"; }
.nav__submenu a[href="tiket.html"]::before { content: "✈️"; }
.nav__submenu a[href="visa.html"]::before { content: "📄"; }
.nav__submenu a[href="haji.html"]::before { content: "🕋"; }
.nav__submenu a[href="agen-umroh.html"]::before { content: "🤝"; }
.nav__submenu a:hover { background: rgba(200, 151, 42, .16); color: var(--gold); border-color: var(--line-gold); }
.nav__submenu a.is-active { color: var(--gold); background: rgba(200, 151, 42, .1); border-color: var(--line-gold); }

@media (max-width: 760px) {
  .nav__group { display: block; width: 100%; }
  .nav__group-btn { width: 100%; justify-content: space-between; padding: .7rem 0; color: var(--gold); font-weight: 600; border-bottom: 1px solid var(--line); }
  .nav__group-btn .caret { display: none; }
  .nav__submenu {
    position: static; opacity: 1; visibility: visible; pointer-events: auto; transform: none;
    margin-top: 0; min-width: 0; box-shadow: none; border: 0; background: transparent; padding: .2rem 0 .4rem .9rem;
  }
  .nav__submenu::before { display: none; }
  .nav__submenu a { padding: .65rem .85rem; }
}

/* ============================================================
   OFFICE BAND — "Kunjungi Kantor Kami" (kredibilitas: alamat + rating + peta)
   ============================================================ */
.officeband { padding: 5rem 0; background: var(--bg-2); border-top: 1px solid var(--line); }
.officeband .section__head { margin-bottom: 2.6rem; }
.office {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem;
  max-width: 980px; margin: 0 auto; align-items: stretch;
}
.office__info {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.9rem; display: flex; flex-direction: column;
}
.office__rating { display: flex; align-items: center; gap: .5rem; margin-bottom: 1rem; flex-wrap: wrap; }
.office__rating .stars { color: var(--gold); letter-spacing: .1em; font-size: 1.05rem; }
.office__rating strong { font-family: var(--serif); font-size: 1.5rem; color: var(--ink); }
.office__rating span { color: var(--muted); font-size: .92rem; }
.office__info h3 { font-family: var(--serif); font-size: 1.3rem; line-height: 1.25; margin: 0 0 1.1rem; color: var(--ink); }
.office__meta { list-style: none; padding: 0; margin: 0 0 1.6rem; display: grid; gap: .85rem; }
.office__meta li { display: flex; gap: .7rem; align-items: flex-start; color: #d6d1c7; font-size: .96rem; line-height: 1.5; }
.office__meta li .mi { flex: none; }
.office__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: auto; }
.office__cta .btn { flex: 1 1 auto; }
.office__map {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  min-height: 320px; background: var(--card);
}
.office__map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; filter: grayscale(.15); }
@media (max-width: 760px) {
  .office { grid-template-columns: 1fr; }
  .office__map { min-height: 260px; }
  .office__map iframe { min-height: 260px; }
}

/* ===================== Related / Baca Juga ===================== */
.article .related { margin: 3rem 0 1rem; padding: 1.6rem 1.7rem; border: 1px solid var(--line-gold); border-radius: var(--radius); background: var(--card-2); }
.article .related h3 { font-family: var(--serif); font-weight: 800; font-size: 1.2rem; color: var(--gold); margin: 0 0 1rem; text-transform: none; letter-spacing: 0; }
.article .related ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .75rem; }
.article .related li { margin: 0; }
.article .related a { color: #e8dcc2; text-decoration: none; font-weight: 600; font-size: 1.02rem; }
.article .related a:hover { color: var(--gold); text-decoration: underline; }

/* ===================== Guide links (internal linking) ===================== */
.guidelinks { display: grid; grid-template-columns: repeat(2, 1fr); gap: .9rem; max-width: 860px; margin: 2.2rem auto 0; }
.guidelinks a { display: block; padding: 1rem 1.2rem; background: var(--card); border: 1px solid var(--line); border-radius: 12px; color: var(--ink); font-weight: 600; font-size: 1rem; transition: border-color .2s, color .2s, transform .2s; }
.guidelinks a:hover { border-color: var(--line-gold); color: var(--gold); transform: translateY(-2px); }
@media (max-width: 620px) { .guidelinks { grid-template-columns: 1fr; } }

/* ===================== Panduan Visa (SEO) ===================== */
.vguide { max-width: 760px; margin: 1.6rem auto 0; }
.vguide h3 { font-family: var(--serif); font-weight: 700; font-size: 1.22rem; color: var(--ink); margin: 1.9rem 0 .6rem; }
.vguide p { color: var(--muted); font-size: 1.04rem; line-height: 1.78; margin: 0 0 1rem; }
.vguide ul { margin: 0 0 1.1rem 1.2rem; color: var(--muted); }
.vguide li { margin-bottom: .55rem; line-height: 1.65; }
.vguide strong { color: var(--ink); }
.vguide a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
