/* ==========================================================================
AGENLPG.COM — Design tokens
Palette dasar industri energi: merah Pertamina, biru dalam, putih, abu.
Motif signature: dial tekanan gas (gauge) & garis peringatan tabung.
========================================================================== */
:root {
  --red: #D2151C;
  --red-dark: #9E0F14;
  --blue: #0B2E4F;
  --blue-mid: #134A73;
  --blue-light: #1E6FA6;
  --white: #FFFFFF;
  --gray-50: #F6F6F4;
  --gray-100: #EEEEEA;
  --gray-200: #DDDFE0;
  --gray-500: #65707A;
  --charcoal: #1B2126;
  --gauge: #E8A317;
  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
  --radius: 10px;
  --shadow: 0 6px 24px rgba(11, 46, 79, .10);
  --maxw: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  padding-bottom: env(safe-area-inset-bottom, 0);
  -webkit-tap-highlight-color: transparent;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; margin: 0 0 .5em; color: var(--blue); }
p { margin: 0 0 1em; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--red); color: #fff; padding: 12px 18px; z-index: 200; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--gauge); outline-offset: 2px; }

/* Hazard stripe divider — motif tabung LPG */
.hazard-strip { height: 8px; background: repeating-linear-gradient(45deg, var(--red) 0 18px, var(--white) 18px 36px); border-top: 1px solid var(--red-dark); border-bottom: 1px solid var(--red-dark); }

/* ---------- Header / Nav ---------- */
.topbar { background: var(--blue); color: #cfe0ee; font-size: .8rem; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; padding-top: 6px; padding-bottom: 6px; gap: 12px; flex-wrap: wrap; }
.topbar-contact { display: flex; gap: 16px; flex-wrap: wrap; }
.topbar-contact a { display: inline-flex; align-items: center; gap: 6px; color: #cfe0ee; }
.topbar-contact a:hover { color: #fff; }
.topbar-social { display: flex; gap: 10px; }
.topbar-social a { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; background: rgba(255, 255, 255, .12); }
.topbar-social a:hover { background: var(--red); }

.site-header { position: sticky; top: 0; z-index: 100; background: #fff; box-shadow: 0 1px 0 var(--gray-200); }
.nav-main { display: flex; align-items: center; gap: 18px; padding: 12px 20px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: var(--blue); margin-right: auto; }
.brand .flame { width: 34px; height: 34px; color: var(--red); }
.brand small { display: block; font-family: var(--font-mono); font-weight: 500; font-size: .6rem; letter-spacing: .08em; color: var(--gray-500); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > li { position: relative; }
.nav-links a { display: block; padding: 10px 12px; font-weight: 600; font-size: .92rem; border-radius: 6px; color: var(--charcoal); }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--red); background: var(--gray-50); }
.has-dropdown > a::after { content: ""; display: inline-block; width: 6px; height: 6px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); margin-left: 6px; }
.dropdown { position: absolute; top: 100%; left: 0; background: #fff; min-width: 210px; box-shadow: var(--shadow); border-radius: 8px; padding: 8px; opacity: 0; visibility: hidden; transform: translateY(6px); transition: .15s ease; }
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { padding: 8px 10px; font-weight: 500; }
.nav-search { display: flex; align-items: center; background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 999px; padding: 4px 4px 4px 14px; min-width: 220px; }
.nav-search input { border: 0; background: transparent; font-family: inherit; font-size: .9rem; flex: 1; outline: 0; }
.nav-search button { border: 0; background: var(--blue); color: #fff; width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; cursor: pointer; }
.nav-search button:hover { background: var(--red); }
.btn { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: .9rem; padding: 11px 20px; border-radius: 999px; border: 2px solid transparent; cursor: pointer; font-family: var(--font-body); }
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); }
.btn-outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-ghost { background: #fff; color: var(--blue); border-color: var(--gray-200); }
.hamburger { display: none; border: 0; background: none; padding: 8px; cursor: pointer; }
.hamburger span, .hamburger::before, .hamburger::after { content: ""; display: block; width: 24px; height: 2.5px; background: var(--blue); margin: 5px 0; border-radius: 2px; }

.breadcrumb-bar { background: var(--gray-50); border-bottom: 1px solid var(--gray-200); }
.breadcrumb { display: flex; gap: 8px; align-items: center; padding: 10px 20px; font-size: .8rem; font-family: var(--font-mono); color: var(--gray-500); }
.breadcrumb a { color: var(--blue-mid); }
.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: 8px; color: var(--gray-500); }
.breadcrumb li { display: inline-flex; }

/* ---------- Hero ---------- */
.hero { position: relative; background: linear-gradient(160deg, var(--blue) 0%, var(--blue-mid) 62%, var(--blue-light) 100%); color: #fff; overflow: hidden; }
.hero .container { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; padding-top: 64px; padding-bottom: 56px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; background: rgba(255, 255, 255, .1); padding: 6px 14px; border-radius: 999px; margin-bottom: 18px; color: #ffe3b0; }
.hero h1 { color: #fff; font-size: clamp(2rem, 4.4vw, 3.2rem); letter-spacing: -.01em; margin-bottom: .3em; }
.hero .lead { font-weight: 600; font-size: 1.15rem; color: #dfeaf3; max-width: 46ch; }
.hero .sub { color: #c3d3e0; max-width: 56ch; font-size: 1rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.hero-cta .btn-ghost:hover { background: var(--gray-50); }
.hero-stats { display: flex; gap: 28px; margin-top: 36px; flex-wrap: wrap; }
.hero-stats div strong { display: block; font-family: var(--font-display); font-size: 1.5rem; color: #fff; }
.hero-stats div span { font-size: .78rem; color: #b9cbdb; }
.gauge-wrap { position: relative; display: grid; place-items: center; }
.gauge-wrap svg { width: 100%; max-width: 340px; height: auto; filter: drop-shadow(0 12px 30px rgba(0,0,0,.35)); }

/* ---------- Section shell ---------- */
.section { padding: 64px 0; }
.section-alt { background: var(--gray-50); }
.section-head { max-width: 720px; margin: 0 auto 36px; text-align: center; }
.section-head .eyebrow { display: inline-block; font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.section-head h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
.section-head p { color: var(--gray-500); }

/* Kategori */
.grid-cat { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 16px; }
.cat-card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 20px; display: flex; flex-direction: column; gap: 10px; transition: .15s; }
.cat-card:hover { border-color: var(--red); transform: translateY(-3px); box-shadow: var(--shadow); }
.cat-card .icon { width: 42px; height: 42px; color: var(--red); }
.cat-card h3 { font-size: 1rem; margin: 0; }
.cat-card p { font-size: .83rem; color: var(--gray-500); margin: 0; }

/* Artikel */
.grid-articles { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 24px; }
.article-card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 1px 0 var(--gray-100); }
.article-card .thumb { aspect-ratio: 16/9; background: linear-gradient(135deg, var(--blue), var(--blue-light)); position: relative; }
.article-card .thumb span { position: absolute; bottom: 10px; left: 10px; background: var(--red); color: #fff; font-size: .7rem; font-weight: 700; padding: 4px 10px; border-radius: 999px; text-transform: uppercase; letter-spacing: .04em; }
.article-body { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.article-body time { font-family: var(--font-mono); font-size: .72rem; color: var(--gray-500); }
.article-body h3 { font-size: 1.02rem; margin: 0; }
.article-body p { font-size: .87rem; color: var(--gray-500); margin: 0; flex: 1; }
.article-body .read-more { font-weight: 700; color: var(--red); font-size: .85rem; }

/* Lazy Image Styling */
.lazy-image { opacity: 0; transition: opacity 0.4s ease-in-out; }
.lazy-image.loaded { opacity: 1; }

/* Panduan */
.grid-guide { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; }
.guide-card { background: #fff; border-left: 4px solid var(--red); border-radius: 0 var(--radius) var(--radius) 0; box-shadow: var(--shadow); padding: 18px 20px; }
.guide-card h3 { font-size: .98rem; margin-bottom: 6px; }
.guide-card p { font-size: .83rem; color: var(--gray-500); margin: 0; }
.guide-card a { font-size: .82rem; font-weight: 700; color: var(--blue-mid); display: inline-block; margin-top: 8px; }

/* Peta */
.map-layout { display: grid; grid-template-columns: 1.3fr 1fr; gap: 28px; align-items: start; }
.province-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 8px; }
.province-btn { border: 1px solid var(--gray-200); background: #fff; padding: 10px 8px; border-radius: 8px; font-size: .78rem; font-weight: 600; cursor: pointer; text-align: left; }
.province-btn:hover, .province-btn[aria-pressed="true"] { border-color: var(--red); background: #fff5f5; color: var(--red-dark); }
.province-panel { background: var(--blue); color: #fff; border-radius: var(--radius); padding: 24px; position: sticky; top: 96px; }
.province-panel h3 { color: #fff; font-size: 1.1rem; }
.province-panel dl { display: grid; grid-template-columns: 1fr auto; gap: 10px 12px; margin: 16px 0; font-family: var(--font-mono); }
.province-panel dt { color: #b9cbdb; font-size: .82rem; }
.province-panel dd { margin: 0; font-weight: 700; text-align: right; }
.province-panel .btn { margin-top: 8px; width: 100%; justify-content: center; }

/* Direktori */
.directory-form { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.directory-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }
.field label { display: block; font-size: .78rem; font-weight: 700; color: var(--blue); margin-bottom: 6px; }
.field select, .field input { width: 100%; padding: 11px 12px; border: 1px solid var(--gray-200); border-radius: 8px; font-family: inherit; font-size: .9rem; background: #fff; }
.field select:focus, .field input:focus { border-color: var(--red); }
.directory-form .btn { margin-top: 18px; }

/* FAQ */
.faq-list { max-width: 840px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1px solid var(--gray-200); border-radius: 8px; background: #fff; }
.faq-item summary { cursor: pointer; padding: 16px 18px; font-weight: 700; font-size: .95rem; list-style: none; display: flex; justify-content: space-between; gap: 12px; color: var(--blue); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.3rem; color: var(--red); flex: none; }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { padding: 0 18px 16px; color: var(--gray-500); font-size: .9rem; margin: 0; }

/* Tentang */
.about-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.about-badges { display: flex; gap: 16px; margin-top: 20px; flex-wrap: wrap; }
.badge { display: flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 700; color: var(--blue); }
.badge .icon { width: 20px; height: 20px; color: var(--red); }

/* Aside kontak cepat */
.quick-contact { background: var(--charcoal); color: #fff; }
.quick-contact .container { display: grid; grid-template-columns: 1.1fr 1fr; gap: 32px; padding: 48px 20px; align-items: center; }
.quick-contact h2 { color: #fff; font-size: 1.4rem; }
.quick-contact p { color: #c8ccd0; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.contact-actions a { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--charcoal); font-weight: 700; font-size: .85rem; padding: 10px 16px; border-radius: 8px; }
.contact-actions a.wa { background: #25D366; color: #fff; }
.contact-actions a.call { background: var(--red); color: #fff; }
.newsletter { background: #252c33; border-radius: var(--radius); padding: 22px; }
.newsletter h3 { color: #fff; font-size: 1rem; }
.newsletter form { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.newsletter input[type=email] { flex: 1; min-width: 180px; padding: 12px; border-radius: 8px; border: 0; font-family: inherit; }
.newsletter .btn { background: var(--red); color: #fff; border: 0; }
.newsletter .note { font-size: .72rem; color: #8b939b; margin-top: 8px; }

/* Footer */
.site-footer { background: var(--blue); color: #cfe0ee; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; padding: 56px 20px 32px; }
.footer-grid h3 { color: #fff; font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px; }
.footer-grid ul { display: flex; flex-direction: column; gap: 9px; }
.footer-grid a { font-size: .86rem; color: #b9cbdb; }
.footer-grid a:hover { color: #fff; }
.footer-brand address { font-style: normal; font-size: .85rem; color: #b9cbdb; line-height: 1.7; margin-top: 10px; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a { width: 32px; height: 32px; border-radius: 50%; background: rgba(255, 255, 255, .1); display: grid; place-items: center; }
.footer-social a:hover { background: var(--red); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .12); padding: 18px 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .78rem; color: #9fb4c6; }
.footer-bottom ul { display: flex; gap: 16px; flex-wrap: wrap; }

.icon { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.back-to-top { position: fixed; right: 18px; bottom: 80px; width: 44px; height: 44px; border-radius: 50%; background: var(--blue); color: #fff; display: none; place-items: center; box-shadow: var(--shadow); z-index: 90; border: 0; cursor: pointer; }
.back-to-top.show { display: grid; }
.fab-wa { position: fixed; right: 18px; bottom: 20px; width: 52px; height: 52px; border-radius: 50%; background: #25D366; color: #fff; display: grid; place-items: center; box-shadow: var(--shadow); z-index: 90; }

@media (max-width: 960px) {
  .hero .container { grid-template-columns: 1fr; }
  .gauge-wrap { order: -1; max-width: 220px; margin: 0 auto; }
  .map-layout, .about-wrap { grid-template-columns: 1fr; }
  .quick-contact .container { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 800px) {
  .nav-links, .nav-search { display: none; }
  .hamburger { display: block; }
  .site-header.nav-open .nav-links { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff; padding: 12px 20px; box-shadow: var(--shadow); }
  .site-header.nav-open .nav-search { display: flex; margin: 10px 20px; }
  .footer-grid { grid-template-columns: 1fr; padding: 40px 20px; }
}

/* ---------- Halaman internal ---------- */
.page-hero { padding: 48px 0 40px; background: linear-gradient(160deg, var(--blue) 0%, var(--blue-mid) 100%); color: #fff; }
.page-hero h1 { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: .4em; }
.page-hero .lead { color: #dfeaf3; font-size: 1.05rem; max-width: 60ch; }
.page-content { padding: 48px 0 64px; }
.content-prose { max-width: 780px; margin: 0 auto; }
.content-prose h2 { font-size: 1.35rem; margin-top: 1.6em; }
.content-prose h3 { font-size: 1.1rem; margin-top: 1.2em; }
.content-prose ul, .content-prose ol { margin: 0 0 1em 1.2em; padding-left: 1em; }
.content-prose li { margin-bottom: .4em; }
.content-prose blockquote { border-left: 4px solid var(--red); margin: 1.5em 0; padding: .5em 1em; background: var(--gray-50); color: var(--gray-500); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.info-box { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 24px; }
.info-box h3 { font-size: 1rem; margin-bottom: 10px; }
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 16px; margin: 24px 0; }
.stat-card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 20px; text-align: center; }
.stat-card strong { display: block; font-family: var(--font-display); font-size: 1.6rem; color: var(--red); }
.stat-card span { font-size: .8rem; color: var(--gray-500); }
.dir-list { display: grid; gap: 16px; }
.dir-card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 20px; display: grid; gap: 8px; }
.dir-card .tag { display: inline-block; background: var(--blue); color: #fff; font-size: .7rem; font-weight: 700; padding: 3px 10px; border-radius: 999px; text-transform: uppercase; }
.dir-card .tag.pangkalan { background: var(--red); }
.dir-card h3 { font-size: 1.05rem; margin: 4px 0; }
.dir-card .meta { font-size: .85rem; color: var(--gray-500); }
.dir-card .actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.price-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.price-table th, .price-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--gray-200); }
.price-table th { background: var(--blue); color: #fff; font-size: .85rem; }
.price-table tr:last-child td { border-bottom: 0; }
.price-table td:last-child { font-family: var(--font-mono); font-weight: 700; color: var(--red); }
.form-card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); max-width: 640px; }
.form-card .field { margin-bottom: 16px; }
.form-card textarea { width: 100%; padding: 11px 12px; border: 1px solid var(--gray-200); border-radius: 8px; font-family: inherit; font-size: .9rem; min-height: 120px; resize: vertical; }
.alert { padding: 14px 18px; border-radius: 8px; font-size: .9rem; margin-bottom: 16px; }
.alert-success { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
.alert-error { background: #ffebee; color: #c62828; border: 1px solid #ef9a9a; }
.search-results section { margin-bottom: 40px; }
.search-results h2 { font-size: 1.2rem; margin-bottom: 16px; }
.empty-state { text-align: center; padding: 48px 20px; color: var(--gray-500); }
@media (max-width: 960px) { .two-col { grid-template-columns: 1fr; } }

/* ---------- PWA & Mobile App Experience ---------- */

/* Touch-friendly inputs (prevent iOS zoom) */
input, select, textarea { font-size: 16px; }

/* Mobile bottom navigation */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 95;
  background: #fff;
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -4px 20px rgba(11, 46, 79, .08);
  padding: 6px 8px calc(6px + env(safe-area-inset-bottom, 0));
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
}
.mob-nav-item {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 8px 4px; border: 0; background: none;
  font-family: var(--font-body); font-size: .65rem; font-weight: 600;
  color: var(--gray-500); cursor: pointer; border-radius: 8px;
  min-height: 48px; justify-content: center;
}
.mob-nav-item .icon { width: 22px; height: 22px; }
.mob-nav-item.active, .mob-nav-item:hover { color: var(--red); }
.mob-nav-item.active { background: var(--gray-50); }

/* Offline bar */
.offline-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: var(--gauge); color: var(--charcoal);
  text-align: center; padding: 8px 16px; font-size: .82rem; font-weight: 600;
}

/* PWA install banner */
.pwa-install-banner {
  position: fixed; bottom: calc(64px + env(safe-area-inset-bottom, 0)); left: 12px; right: 12px; z-index: 94;
}
.pwa-install-inner {
  background: var(--blue); color: #fff; border-radius: var(--radius);
  padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  box-shadow: var(--shadow); flex-wrap: wrap;
}
.pwa-install-inner strong { display: block; font-size: .9rem; }
.pwa-install-inner span { font-size: .75rem; color: #b9cbdb; }
.pwa-install-actions { display: flex; gap: 8px; align-items: center; }
.pwa-install-actions .btn-ghost { color: #fff; border-color: rgba(255, 255, 255, .3); padding: 8px 12px; min-width: auto; }

/* PERBAIKAN: Update Toast (.pwa-update-toast)
   Diubah agar melayang di pojok kanan bawah agar tidak lagi menutupi header utama.
*/
.pwa-update-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  left: auto;
  top: auto;
  z-index: 199;
  background: var(--charcoal);
  color: #fff;
  border-radius: 8px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: .85rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  min-width: 280px;
}
.pwa-update-toast .btn { padding: 8px 14px; font-size: .8rem; margin: 0; }

/* Mobile layout improvements */
@media (max-width: 800px) {
  .mobile-bottom-nav { display: grid; }
  body.has-mobile-nav { padding-bottom: calc(64px + env(safe-area-inset-bottom, 0)); }
  .fab-wa { bottom: calc(72px + env(safe-area-inset-bottom, 0)); right: 14px; width: 48px; height: 48px; }
  .back-to-top { bottom: calc(132px + env(safe-area-inset-bottom, 0)); right: 14px; width: 40px; height: 40px; }

  /* Penyesuaian posisi toast di layar mobile agar terpusat 
     dan melayang aman tepat di atas bilah navigasi bawah (.mobile-bottom-nav).
  */
  .pwa-update-toast {
    bottom: calc(76px + env(safe-area-inset-bottom, 0));
    left: 16px;
    right: 16px;
    min-width: auto;
  }

  .topbar-contact { display: none; }
  .brand small { display: none; }
  .brand { font-size: 1.1rem; }
  .nav-main .btn-primary { display: none; }
  .nav-main { padding: 10px 16px; }
  .section { padding: 48px 0; }
  .hero .container { padding-top: 40px; padding-bottom: 40px; }
  .hero-stats { gap: 16px; }
  .hero-stats div strong { font-size: 1.2rem; }
  .hero-cta .btn { padding: 10px 16px; font-size: .85rem; }
  .page-hero { padding: 36px 0 32px; }
  .directory-grid { grid-template-columns: 1fr; }
  .price-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .price-table th, .price-table td { padding: 12px 14px; font-size: .85rem; white-space: nowrap; }
  .dir-card .actions .btn { flex: 1; justify-content: center; }
  .form-card { padding: 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .site-header.nav-open .nav-links {
    max-height: 70vh; overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .province-grid { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); }
  .province-panel { position: static; margin-top: 16px; }
  .quick-contact .container { padding: 32px 20px; }
  .newsletter form { flex-direction: column; }
  .newsletter input[type=email] { min-width: 100%; }
  .breadcrumb { overflow-x: auto; white-space: nowrap; -webkit-overflow-scrolling: touch; }
  .grid-articles { grid-template-columns: 1fr; }
  .grid-cat { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cat-card { padding: 14px; }
  .cat-card h3 { font-size: .9rem; }
  .cat-card p { font-size: .75rem; }
}

@media (max-width: 380px) {
  .grid-cat { grid-template-columns: 1fr; }
  .mob-nav-item span { font-size: .6rem; }
}