:root{
  --bg: #0b1220;
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.08);
  --text: #e9eefc;
  --muted: rgba(233,238,252,.72);
  --line: rgba(233,238,252,.14);
  --accent: #54d2ff;
  --accent2:#7cffc7;
  --shadow: 0 14px 40px rgba(0,0,0,.45);
  --radius: 18px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background:
    radial-gradient(1200px 600px at 20% 10%, rgba(84,210,255,.22), transparent 55%),
    radial-gradient(900px 500px at 80% 10%, rgba(124,255,199,.16), transparent 60%),
    radial-gradient(900px 700px at 50% 90%, rgba(84,210,255,.12), transparent 65%),
    var(--bg);
  color: var(--text);
  line-height: 1.55;
}

a{ color: inherit; }
.container{
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.muted{ color: var(--muted); }
.small{ font-size: .92rem; }
.hide-sm{ display:inline; }
@media (max-width: 720px){
  .hide-sm{ display:none; }
}

.sr-only{
  position:absolute; width:1px; height:1px;
  padding:0; margin:-1px; overflow:hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border:0;
}

/* =========================
   TOPBAR (FIX: selalu kiri-kanan, tidak turun)
========================= */
.topbar{
  border-bottom: 1px solid var(--line);
  background: rgba(0,0,0,.22);
  backdrop-filter: blur(10px);
}

.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  padding: 10px 0;
  flex-wrap: nowrap;         /* jangan turun baris */
}

.topbar__left{
  flex: 1 1 auto;            /* kiri boleh mengecil */
  min-width: 0;              /* WAJIB untuk ellipsis */
  display:flex;
  align-items:center;
  gap: 10px;
}

.topbar__right{
  flex: 0 0 auto;            /* kanan jangan mengecil */
  white-space: nowrap;       /* nomor jangan turun */
}

.pill{
  display:inline-flex;
  align-items:center;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  font-size: .86rem;

  /* tetap 1 baris, kalau sempit jadi ... */
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.toplink{
  display:inline-flex;
  align-items:center;
  gap: 6px;
  text-decoration:none;
  font-weight: 700;
  white-space: nowrap;       /* nomor tetap 1 baris */
}

.icon{
  opacity: .9;
  margin-right: 0;           /* jangan pakai margin lama */
}

.phone{
  white-space: nowrap;
}

/* layar sangat kecil: kecilkan font sedikit supaya tetap muat */
@media (max-width: 380px){
  .pill{ font-size: .78rem; padding: 5px 8px; }
  .toplink{ font-size: .92rem; }
}

.pill{
  display:inline-flex; align-items:center;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  font-size: .86rem;
}
.toplink{
  text-decoration:none;
  font-weight: 600;
}
.icon{ opacity: .9; margin-right: 6px; }

/* Header */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(11,18,32,.55);
  backdrop-filter: blur(14px);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap: 14px;
  padding: 14px 0;
}

.brand{
  display:flex; align-items:center; gap: 10px;
  text-decoration:none;
}
.brand__mark{
  width:42px; height:42px;
  display:grid; place-items:center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(84,210,255,.22), rgba(124,255,199,.12));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  color: var(--text);
}
.brand__text{ display:flex; flex-direction:column; line-height:1.15; }
.brand__text strong{ font-size: 1.05rem; }
.brand__text .muted{ font-size: .86rem; margin-top: 2px; }

.nav{ display:flex; align-items:center; }
.nav__toggle{
  display:none;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--text);
  border-radius: 12px;
  width: 44px; height: 44px;
  cursor:pointer;
}
.hamburger{
  display:block;
  width: 20px; height: 2px;
  background: var(--text);
  position: relative;
  margin: 0 auto;
  border-radius: 2px;
}
.hamburger::before, .hamburger::after{
  content:"";
  position:absolute; left:0;
  width: 20px; height: 2px;
  background: var(--text);
  border-radius: 2px;
}
.hamburger::before{ top: -7px; }
.hamburger::after{ top: 7px; }

.nav__menu{
  display:flex; align-items:center; gap: 10px;
  list-style:none; padding:0; margin:0;
}
.nav__menu a{
  text-decoration:none;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 600;
}
.nav__menu a:hover{
  background: rgba(255,255,255,.05);
  color: var(--text);
}
@media (max-width: 920px){
  .nav__toggle{ display:inline-grid; place-items:center; }
  .nav__menu{
    position:absolute;
    top: 72px;
    right: 20px;
    width: min(320px, calc(100% - 40px));
    display:none;
    flex-direction:column;
    align-items:stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(11,18,32,.88);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow);
  }
  .nav__menu.is-open{ display:flex; }
  .nav__menu a{ color: var(--text); }
}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(84,210,255,.35);
  background: linear-gradient(135deg, rgba(84,210,255,.18), rgba(124,255,199,.10));
  color: var(--text);
  text-decoration:none;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
}
.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0); }
.btn--ghost{
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  font-weight: 700;
}
.btn--small{ padding: 10px 12px; border-radius: 12px; }

/* Sections */
.section{
  padding: 70px 0;
}
.section--alt{
  background: rgba(255,255,255,.03);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section__head{
  margin-bottom: 18px;
}
.section__head h2{
  margin:0 0 6px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}
.section__footer{
  margin-top: 18px;
}

.hr{
  border:0; border-top: 1px solid var(--line);
  margin: 18px 0;
}

/* Hero */
.hero{
  padding: 56px 0 30px;
}
.hero__inner{
  display:grid;
  grid-template-columns: 1.3fr .9fr;
  gap: 22px;
  align-items: start;
}
@media (max-width: 980px){
  .hero__inner{ grid-template-columns: 1fr; }
}
h1{
  margin:0 0 10px;
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.accent{
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead{
  font-size: 1.06rem;
  color: var(--muted);
  max-width: 62ch;
}
.hero__cta{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

/* Cards */
.card{
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}
.card h2, .card h3{ margin: 0 0 10px; }
.card__actions{
  display:flex; gap:10px; flex-wrap:wrap;
  margin-top: 12px;
}
.card__note{ margin-top: 12px; }

/* Info list */
.info{
  list-style:none; padding:0; margin: 0;
  display:grid; gap: 10px;
}
.info__label{ display:block; font-size: .86rem; color: var(--muted); }
.info__value{ display:block; margin-top: 2px; }

/* Badges */
.badges{
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 18px;
}
@media (min-width: 680px){
  .badges{ grid-template-columns: 1fr 1fr 1fr; }
}
.badge{
  display:flex; gap: 10px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
  border-radius: 16px;
  padding: 12px;
}
.badge__icon{
  width: 36px; height: 36px;
  display:grid; place-items:center;
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
}

/* Grid */
.grid{
  display:grid;
  gap: 14px;
}
.grid--2{ grid-template-columns: repeat(2, 1fr); }
.grid--3{ grid-template-columns: repeat(3, 1fr); }
@media (max-width: 920px){
  .grid--3{ grid-template-columns: 1fr; }
}
@media (max-width: 820px){
  .grid--2{ grid-template-columns: 1fr; }
}

/* Service cards */
.service{
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
  border-radius: 18px;
  padding: 16px;
}
.service h3{ margin: 0 0 6px; }
.service p{ margin: 0; color: var(--muted); }

/* Features */
.feature{
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
  border-radius: 18px;
  padding: 16px;
}
.feature h3{ margin: 0 0 6px; }
.feature p{ margin: 0; color: var(--muted); }

/* Steps */
.steps{
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
  display:grid;
  gap: 12px;
}
.steps li{
  counter-increment: step;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
  border-radius: 18px;
  padding: 14px 14px 14px 52px;
  position: relative;
}
.steps li::before{
  content: counter(step);
  position: absolute;
  left: 14px; top: 14px;
  width: 28px; height: 28px;
  border-radius: 10px;
  display:grid; place-items:center;
  border: 1px solid rgba(84,210,255,.35);
  background: rgba(84,210,255,.12);
  font-weight: 900;
}

/* Gallery placeholder */
.gallery .ph{
  margin:0;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: 18px;
  overflow:hidden;
}
.gallery .ph{
  margin:0;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: 18px;
  overflow:hidden;
}

.ph__img{
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}

.gallery figcaption{
  padding: 12px 14px;
  color: var(--muted);
  font-size: .95rem;
}

.gallery figcaption{
  padding: 12px 14px;
  color: var(--muted);
  font-size: .95rem;
}

/* Quotes */
.quote{
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
  border-radius: 18px;
  padding: 16px;
}
.quote p{ margin: 0 0 10px; color: var(--text); }
.quote__who{ display:flex; gap:8px; align-items:center; }

/* FAQ */
.faq details{
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
  border-radius: 16px;
  padding: 12px 14px;
  margin-bottom: 10px;
}
.faq summary{
  cursor:pointer;
  font-weight: 800;
}
.faq p{
  margin: 10px 0 0;
  color: var(--muted);
}

/* Contact */
.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 980px){
  .contact{ grid-template-columns: 1fr; }
}
.contact__list{
  list-style:none; padding:0; margin: 0;
  display:grid; gap: 10px;
}
.contact__label{ display:block; font-size:.86rem; color: var(--muted); }
.contact__value{ display:block; margin-top: 2px; }
.sep{ opacity:.55; margin: 0 8px; }

.contact__actions{
  display:flex; gap:10px; flex-wrap:wrap;
  margin-top: 12px;
}

/* Form */
.form{
  display:grid;
  gap: 10px;
}
label{
  display:grid;
  gap: 6px;
  font-weight: 700;
  color: var(--text);
}
input, textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.22);
  color: var(--text);
  outline: none;
}
input:focus, textarea:focus{
  border-color: rgba(84,210,255,.55);
  box-shadow: 0 0 0 4px rgba(84,210,255,.12);
}

/* Map */
.map__frame{
  margin-top: 10px;
  border-radius: 16px;
  overflow:hidden;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.18);
}
.map__frame iframe{
  width:100%;
  height: 360px;
  border:0;
}

/* Footer */
.footer{
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,.25);
  padding: 22px 0;
}
.footer__inner{
  display:flex;
  gap: 14px;
  align-items:center;
  justify-content: space-between;
  flex-wrap:wrap;
}
.footer__links{
  display:flex; gap: 10px; flex-wrap:wrap;
}
.footer__links a{
  text-decoration:none;
  padding: 8px 10px;
  border-radius: 12px;
  color: var(--muted);
}
.footer__links a:hover{ background: rgba(255,255,255,.05); color: var(--text); }
.topbar__left, .topbar__right{
  min-width: 0;
  display: flex;
  align-items: center;
}

.phone{
  white-space: nowrap; /* cegah nomor pecah-pecah */
}

/* Mobile rapihin: topbar jadi stack */
@media (max-width: 520px){
  .topbar__inner{
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 10px 0;
  }

  .topbar__left, .topbar__right{
    justify-content: flex-start;
  }

  .toplink{
    width: 100%;
    justify-content: flex-start;
  }

  .pill{
    max-width: 100%;
  }
}

/* ===== FORCE TOPBAR: selalu kiri-kanan (mobile juga) ===== */
.topbar .topbar__inner{
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  flex-wrap:nowrap !important;
  gap:10px !important;
}

.topbar .topbar__left{
  flex: 1 1 auto !important;
  min-width: 0 !important; /* wajib agar ellipsis jalan */
}

.topbar .topbar__right{
  flex: 0 0 auto !important;
  white-space: nowrap !important;
}

.topbar .pill{
  display:inline-flex !important;
  max-width: 100% !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.topbar .toplink,
.topbar .phone{
  white-space: nowrap !important;
}

/* Perkecil sedikit biar muat di layar kecil */
@media (max-width: 420px){
  .topbar .pill{ font-size: .78rem !important; padding: 5px 8px !important; }
  .topbar .toplink{ font-size: .92rem !important; }
}
/* =========================================================
   PRIVACY POLICY / MOBILE FIX PATCH
   - Hilangkan geser kiri-kanan (horizontal scroll)
   - Alamat topbar tidak kepotong: bisa wrap di mobile
========================================================= */

/* 1) Stop horizontal scrolling akibat elemen melebar */
html, body{
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}

/* Pastikan media tidak pernah melewati layar */
img, svg, video, canvas{
  max-width: 100%;
  height: auto;
}

/* 2) Pastikan container tidak bikin overflow */
.container{
  max-width: 1120px;
  width: min(1120px, calc(100% - 40px));
}

/* 3) Jangan biarkan item flex “maksa” lebar */
.topbar__inner,
.header__inner,
.hero__inner{
  min-width: 0;
}

/* 4) FIX: Topbar pill default (desktop) tetap 1 baris ellipsis */
.topbar .pill{
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 5) MOBILE: alamat boleh WRAP (biar tidak kepotong & tidak overflow) */
@media (max-width: 520px){
  /* Biar lebih lega di HP */
  .container{
    width: calc(100% - 28px) !important;
  }

  /* Topbar tetap kiri-kanan, tapi kiri boleh multiline */
  .topbar .topbar__inner{
    align-items: flex-start !important;
  }

  .topbar .topbar__left{
    min-width: 0 !important;
    flex: 1 1 auto !important;
  }

  .topbar .topbar__right{
    flex: 0 0 auto !important;
    white-space: nowrap !important;
  }

  /* INI KUNCINYA: hilangkan nowrap + ellipsis untuk alamat */
  .topbar .pill{
    white-space: normal !important;     /* boleh turun baris */
    overflow: visible !important;       /* jangan dipotong */
    text-overflow: clip !important;     /* matikan ... */
    display: -webkit-box !important;    /* batas 3 baris agar tetap rapi */
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-height: 1.25;
    padding: 8px 10px;
  }

  /* Ikon tidak bikin lebar aneh */
  .topbar .icon{
    margin-right: 6px;
    flex: 0 0 auto;
  }
}

/* 6) NAV MENU: pastikan dropdown menu tidak melebar melebihi viewport */
@media (max-width: 920px){
  .nav__menu{
    right: 14px !important;
    width: min(320px, calc(100% - 28px)) !important; /* jangan lebih lebar dari layar */
    max-width: calc(100% - 28px) !important;
  }
}

/* 7) CARD / GRID: pastikan grid tidak memaksa 2 kolom di layar kecil */
@media (max-width: 820px){
  .grid--2, .grid--3{
    grid-template-columns: 1fr !important;
  }
}

/* 8) Last resort: kalau ada elemen bandel, ini bantu flex children tidak overflow */
*{
  min-width: 0;
}

