/* ==========================================================================
   TRIMURTINITERPIS - MOBILE APP UI (DESAIN UKURAN PONSEL & PWA 1-KLIK)
   WhatsApp Admin: 081617247139
   ========================================================================== */

:root {
  --navy-950: #061220;
  --navy-900: #0a1b2e;
  --navy-800: #0f2742;
  --navy-700: #16375b;

  --sky-600: #2b74bd;
  --sky-500: #3b89d6;
  --sky-400: #5aa6f0;
  --sky-100: #e5f1fc;

  --gold-600: #b88422;
  --gold-500: #d6a33e;
  --gold-400: #f0c362;
  --gold-300: #fae09c;
  --gold-100: #fdf4dc;

  --bg-app: #f2f6fb;
  --white: #ffffff;
  --text-dark: #0a1b2e;
  --text-body: #33475b;
  --text-muted: #64778b;

  --whatsapp: #25D366;
  --whatsapp-dark: #169c46;

  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  --shadow-card: 0 6px 20px rgba(10, 27, 46, 0.07);
  --shadow-lg: 0 16px 40px rgba(6, 18, 32, 0.18);
  --transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  font-size: 15px;
  background: #040c16;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at top, #102a46 0%, #040c16 100%);
  color: var(--text-body);
  line-height: 1.55;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

/* ==========================================================================
   MOBILE PHONE APP SHELL (PAS UKURAN PONSEL 480PX)
   ========================================================================== */
.app-shell {
  width: 100%;
  max-width: 480px;
  min-height: 100vh;
  background: var(--bg-app);
  position: relative;
  padding-bottom: 86px; /* Ruang untuk Bottom Nav */
  box-shadow: 0 0 65px rgba(0, 0, 0, 0.65);
  overflow-x: hidden;
}

@media (min-width: 500px) {
  .app-shell {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }
}

.app-px {
  padding-left: 16px;
  padding-right: 16px;
}

/* ==========================================================================
   STICKY MOBILE APP HEADER
   ========================================================================== */
.app-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(9, 25, 43, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 11px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid rgba(240, 195, 98, 0.25);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.header-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--gold-400);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--navy-800);
}

.header-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-title-box {
  min-width: 0;
}

.header-title {
  font-size: 0.96rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}

.header-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  color: #72f3a2;
  font-weight: 600;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 8px #25D366;
  animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.65; }
}

.btn-install-header {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-950);
  border: none;
  padding: 8px 13px;
  border-radius: 99px;
  font-family: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(240, 195, 98, 0.35);
  transition: var(--transition);
}

.btn-install-header:active {
  transform: scale(0.96);
}

/* ==========================================================================
   1-CLICK PWA INSTALL BANNER (DI ATAS BERANDA)
   ========================================================================== */
.pwa-install-banner {
  background: linear-gradient(135deg, #102d4c 0%, #091b30 100%);
  margin: 12px 14px 0;
  padding: 13px 14px;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(240, 195, 98, 0.5);
  box-shadow: 0 10px 24px rgba(6, 18, 32, 0.22);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--white);
}

.pwa-banner-left {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.pwa-app-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1.5px solid var(--gold-400);
  flex-shrink: 0;
}

.pwa-banner-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--gold-300);
  line-height: 1.2;
}

.pwa-banner-text span {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.82);
  margin-top: 2px;
}

.btn-pwa-1click {
  background: linear-gradient(135deg, #25D366, #169c46);
  color: var(--white);
  border: none;
  padding: 10px 14px;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.btn-pwa-1click:active {
  transform: scale(0.96);
}

/* ==========================================================================
   MOBILE HERO SECTION (SESUAI FOTO REFERENSI TRI MURTINI PREMIUM)
   ========================================================================== */
.mobile-hero {
  margin: 12px 14px 16px;
  background:
    radial-gradient(circle at 80% 30%, rgba(70, 146, 221, 0.22), transparent 55%),
    linear-gradient(160deg, #09192b 0%, #0d2136 60%, #081523 100%);
  border-radius: var(--radius-xl);
  padding: 18px 16px 20px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  border: 1.5px solid rgba(240, 195, 98, 0.35);
  position: relative;
  overflow: hidden;
}

.hero-top-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 99px;
  background: rgba(70, 146, 221, 0.18);
  border: 1px solid rgba(90, 166, 240, 0.45);
  color: #cbe5ff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-top-tag i {
  color: var(--sky-400);
}

.hero-main-heading {
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}

.hero-main-heading span {
  background: linear-gradient(90deg, #ffffff 0%, var(--gold-300) 45%, var(--gold-400) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub-domain {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-400);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Foto Referensi Full HD Utuh Tanpa Terpotong */
.hero-photo-showcase {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid rgba(240, 195, 98, 0.6);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.5);
  margin-bottom: 14px;
  background: #0c2035;
}

.hero-photo-showcase img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  display: block;
}

.hero-under-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(240, 195, 98, 0.35);
  border-radius: 14px;
  padding: 10px 12px;
  margin-bottom: 12px;
}

.hpob-left {
  display: flex;
  align-items: center;
  gap: 9px;
}

.tri-badge-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #1b653e;
  border: 2px solid var(--gold-400);
  color: #fff;
  font-weight: 800;
  font-size: 0.72rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hpob-text strong {
  display: block;
  font-size: 0.84rem;
  color: var(--white);
  line-height: 1.15;
}

.hpob-text span {
  font-size: 0.69rem;
  color: var(--gold-400);
  font-weight: 600;
}

.hpob-pill {
  background: rgba(37, 211, 102, 0.2);
  color: #72f3a2;
  border: 1px solid rgba(37, 211, 102, 0.45);
  padding: 4px 9px;
  border-radius: 99px;
  font-size: 0.68rem;
  font-weight: 700;
}

/* Deskripsi Singkat Sesuai Poster */
.hero-desc-card {
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid var(--gold-400);
  padding: 10px 12px;
  border-radius: 0 12px 12px 0;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 14px;
}

.hero-desc-card strong {
  color: var(--gold-300);
}

/* Banner GRATIS KONSULTASI */
.hero-gratis-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, #3b89d6 0%, #52a4f5 60%, #2f7ac4 100%);
  padding: 12px 15px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 20px rgba(59, 137, 214, 0.35);
  margin-bottom: 14px;
}

.hgb-left strong {
  display: block;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--white);
}

.hgb-left span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.92);
}

.hgb-btn {
  background: rgba(6, 18, 32, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 7px 11px;
  border-radius: 10px;
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--white);
  white-space: nowrap;
}

/* Kotak KELEBIHAN KAMI (Persis Poster Referensi) */
.hero-kelebihan-box {
  background: rgba(15, 39, 66, 0.78);
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  border-radius: 16px;
  padding: 14px 16px;
  margin-bottom: 14px;
}

.hkb-heading {
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  gap: 7px;
}

.hkb-heading i {
  color: var(--gold-400);
}

.hkb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
}

.hkb-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--white);
}

.hkb-item i {
  color: var(--gold-400);
  font-size: 0.95rem;
}

/* Kotak Hubungi Kami 0816-1724-7139 */
.hero-call-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(90, 166, 240, 0.5);
  border-radius: 16px;
  padding: 10px 14px 10px 10px;
  gap: 10px;
}

.hcc-left {
  display: flex;
  align-items: center;
  gap: 11px;
}

.hcc-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #4da1f0, #2b74bd);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.hcc-info span {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.78);
}

.hcc-info strong {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
}

.hcc-wa-btn {
  background: linear-gradient(135deg, #25D366, #169c46);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

/* ==========================================================================
   QUICK LAUNCHER 8 LAYANAN (4x2 APP ICON GRID)
   ========================================================================== */
.quick-menu-card {
  background: var(--white);
  margin: 0 14px 18px;
  padding: 16px 14px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(10, 27, 46, 0.06);
}

.qm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.qm-header h2 {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--text-dark);
}

.qm-header span {
  font-size: 0.72rem;
  color: var(--sky-600);
  font-weight: 700;
}

.qm-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px 8px;
}

.qm-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  cursor: pointer;
}

.qm-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--sky-100), #d5e9fb);
  color: var(--navy-800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  border: 1px solid rgba(43, 116, 189, 0.2);
  box-shadow: 0 4px 10px rgba(43, 116, 189, 0.1);
  transition: var(--transition);
}

.qm-item:active .qm-icon {
  transform: scale(0.92);
  background: var(--navy-900);
  color: var(--gold-400);
}

.qm-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

/* ==========================================================================
   MOBILE SECTION HEADINGS
   ========================================================================== */
.mobile-section {
  padding: 8px 14px 20px;
}

.ms-header {
  margin-bottom: 14px;
}

.ms-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--sky-600);
  background: var(--sky-100);
  padding: 4px 10px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.ms-title {
  font-size: 1.28rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.22;
}

.ms-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 3px;
}

/* ==========================================================================
   KATALOG 8 LAYANAN (MOBILE APP CARDS)
   ========================================================================== */
.service-filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 14px;
  scrollbar-width: none;
}

.service-filters::-webkit-scrollbar {
  display: none;
}

.filter-btn {
  padding: 8px 14px;
  border-radius: 99px;
  border: 1px solid rgba(10, 27, 46, 0.14);
  background: var(--white);
  color: var(--text-body);
  font-weight: 700;
  font-size: 0.78rem;
  white-space: nowrap;
  cursor: pointer;
  font-family: inherit;
}

.filter-btn.active {
  background: var(--navy-900);
  color: var(--gold-400);
  border-color: var(--navy-900);
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(10, 27, 46, 0.08);
  display: flex;
  flex-direction: column;
}

.sc-top {
  display: flex;
  gap: 12px;
  padding: 14px 14px 10px;
  align-items: center;
}

.sc-thumb {
  width: 92px;
  height: 92px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  background: var(--navy-900);
}

.sc-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sc-info {
  flex: 1;
  min-width: 0;
}

.sc-badge {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--sky-600);
  background: var(--sky-100);
  padding: 2px 8px;
  border-radius: 6px;
  margin-bottom: 4px;
}

.sc-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
}

.sc-sub {
  font-size: 0.74rem;
  color: var(--gold-600);
  font-weight: 700;
  margin-top: 2px;
}

.sc-duration {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.sc-benefits {
  padding: 0 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sc-benefits li {
  font-size: 0.78rem;
  color: var(--text-body);
  display: flex;
  align-items: flex-start;
  gap: 7px;
}

.sc-benefits li i {
  color: var(--sky-600);
  font-size: 0.75rem;
  margin-top: 3px;
}

.sc-actions {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 8px;
  padding: 10px 14px 14px;
  border-top: 1px dashed rgba(10, 27, 46, 0.1);
  background: #fafcfe;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.8rem;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: var(--transition);
}

.btn:active {
  transform: scale(0.97);
}

.btn-wa {
  background: linear-gradient(135deg, #25D366, #169c46);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.28);
}

.btn-outline {
  background: var(--white);
  color: var(--navy-800);
  border: 1.5px solid rgba(15, 39, 66, 0.2);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-950);
}

/* ==========================================================================
   PAKET KOMBINASI HORIZONTAL / STACKED CARDS
   ========================================================================== */
.packages-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pkg-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px;
  border: 1px solid rgba(10, 27, 46, 0.08);
  box-shadow: var(--shadow-card);
  position: relative;
}

.pkg-card.featured {
  background: linear-gradient(145deg, var(--navy-900), var(--navy-800));
  color: var(--white);
  border: 1.5px solid var(--gold-400);
}

.pkg-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold-400);
  color: var(--navy-950);
  font-size: 0.66rem;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 99px;
  text-transform: uppercase;
}

.pkg-card h3 {
  font-size: 1.04rem;
  font-weight: 800;
  margin-bottom: 4px;
  color: inherit;
}

.pkg-card p {
  font-size: 0.78rem;
  opacity: 0.85;
  margin-bottom: 10px;
}

.pkg-items {
  margin-bottom: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.pkg-items li {
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pkg-items li i {
  color: var(--gold-500);
}

/* ==========================================================================
   GALERI PORTOFOLIO 2-KOLOM PONSEL
   ========================================================================== */
.gallery-mobile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.gm-item {
  position: relative;
  height: 155px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.gm-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gm-caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(6, 18, 32, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10px;
  color: var(--white);
}

.gm-caption span {
  font-size: 0.62rem;
  color: var(--gold-400);
  font-weight: 700;
  text-transform: uppercase;
}

.gm-caption h4 {
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
}

/* ==========================================================================
   TESTIMONI SWIPE / STACK
   ========================================================================== */
.testi-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.testi-card {
  background: var(--white);
  padding: 14px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(10, 27, 46, 0.06);
}

.testi-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.testi-user {
  display: flex;
  align-items: center;
  gap: 9px;
}

.testi-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-400);
  font-size: 0.78rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testi-user strong {
  display: block;
  font-size: 0.82rem;
  color: var(--text-dark);
}

.testi-user span {
  font-size: 0.68rem;
  color: var(--sky-600);
  font-weight: 700;
}

.testi-stars {
  color: var(--gold-500);
  font-size: 0.72rem;
}

.testi-text {
  font-size: 0.8rem;
  color: var(--text-body);
  font-style: italic;
}

/* ==========================================================================
   FORM BOOKING PONSEL KE WA 081617247139
   ========================================================================== */
.booking-mobile-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 18px 16px;
  box-shadow: var(--shadow-card);
  border: 1.5px solid rgba(43, 116, 189, 0.18);
}

.form-group {
  margin-bottom: 12px;
}

.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.form-control {
  width: 100%;
  padding: 11px 13px;
  border-radius: 10px;
  border: 1.5px solid rgba(10, 27, 46, 0.15);
  background: #f8fafd;
  font-family: inherit;
  font-size: 0.86rem;
  color: var(--text-dark);
}

.form-control:focus {
  outline: none;
  border-color: var(--sky-600);
  background: var(--white);
}

.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.cb-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border-radius: 9px;
  border: 1.5px solid rgba(10, 27, 46, 0.12);
  background: #f8fafd;
  font-size: 0.76rem;
  font-weight: 700;
  cursor: pointer;
}

.cb-pill input {
  accent-color: var(--navy-900);
  width: 15px;
  height: 15px;
}

/* ==========================================================================
   FAQ ACCORDION PONSEL
   ========================================================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid rgba(10, 27, 46, 0.08);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 13px 14px;
  background: none;
  border: none;
  text-align: left;
  font-family: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--text-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.faq-question i {
  color: var(--gold-600);
  transition: transform 0.25s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 14px 13px;
  font-size: 0.78rem;
  color: var(--text-body);
}

/* ==========================================================================
   MOBILE APP FOOTER
   ========================================================================== */
.app-footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.75);
  padding: 24px 16px 28px;
  text-align: center;
  font-size: 0.76rem;
  margin-top: 12px;
}

.app-footer strong {
  color: var(--white);
}

/* ==========================================================================
   FIXED BOTTOM NAVIGATION BAR (NATIVE MOBILE APP BAR)
   ========================================================================== */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  background: rgba(9, 25, 43, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(240, 195, 98, 0.28);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 7px 6px calc(7px + env(safe-area-inset-bottom, 0px));
  z-index: 1000;
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.35);
}

.bnav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.66rem;
  font-weight: 700;
  padding: 4px 2px;
  border-radius: 10px;
  transition: var(--transition);
}

.bnav-item i {
  font-size: 1.1rem;
}

.bnav-item.active,
.bnav-item:hover {
  color: var(--gold-400);
}

.bnav-item.bnav-wa {
  color: #6df09c;
}

.bnav-item.bnav-wa i {
  background: linear-gradient(135deg, #25D366, #169c46);
  color: var(--white);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  margin-top: -14px;
  border: 2px solid var(--navy-900);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.45);
}

/* ==========================================================================
   BOTTOM SHEET MODAL (DETAIL LAYANAN & INSTALL DRAWER)
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 12, 22, 0.78);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: none;
  align-items: flex-end;
  justify-content: center;
}

.modal-backdrop.open {
  display: flex;
}

.modal-sheet {
  background: var(--white);
  width: 100%;
  max-width: 480px;
  border-radius: 24px 24px 0 0;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  animation: slideUpSheet 0.26s ease;
}

@keyframes slideUpSheet {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.sheet-handle {
  width: 44px;
  height: 5px;
  background: rgba(10, 27, 46, 0.2);
  border-radius: 99px;
  margin: 10px auto 4px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(10, 27, 46, 0.82);
  color: var(--white);
  cursor: pointer;
  font-size: 0.95rem;
  z-index: 2;
}

.modal-body {
  padding: 18px 18px 26px;
}
