/* === DESIGN SYSTEM - GOOGLE-INSPIRED MULTI-COLOR (MINIMAL GRADIENT) === */
:root {
  /* ⭐ PRIMARY: Google Blue (warna utama, clean & profesional) */
  --primary: #4285F4;
  --primary-2: #1a73e8;
  --primary-3: #669df6;
  --primary-50: #e8f0fe;
  --primary-100: #d2e3fc;
  --primary-200: #aecbfa;
  --primary-600: #1967d2;

  /* ⭐ GOOGLE RED (Energetic, CTA penting) */
  --g-red: #ea4335;
  --g-red-50: #fce8e6;
  --g-red-100: #fad2cf;

  /* ⭐ GOOGLE YELLOW (Hangat, highlight) */
  --g-yellow: #fbbc05;
  --g-yellow-50: #fef7e0;
  --g-yellow-100: #feefc3;

  /* ⭐ GOOGLE GREEN (Success, segar, trustworthy) */
  --secondary: #34a853;
  --secondary-2: #188038;
  --secondary-50: #e6f4ea;
  --secondary-100: #ceead6;

  /* ⭐ ACCENT: Kombinasi untuk tag/chip spesial - PINK cadangan (jarang dipakai) */
  --accent: #fbbc05;
  --accent-2: #ea4335;
  --accent-50: #fef7e0;
  --accent-100: #feefc3;

  /* ⭐ SUCCESS: Google Green */
  --success: #34a853;
  --success-50: #e6f4ea;

  /* Text & Latar */
  --text: #202124;
  --text-2: #3c4043;
  --muted: #5f6368;
  --line: #dadce0;
  --bg: #ffffff;
  --bg-2: #f8f9fa;
  --bg-3: #f1f3f4;

  /* Radius & Shadow (Google-style: soft, subtle) */
  --radius: 12px;
  --shadow-sm: 0 1px 2px 0 rgba(60, 64, 67, .1), 0 1px 3px 1px rgba(60, 64, 67, .06);
  --shadow-md: 0 4px 8px 3px rgba(60, 64, 67, .08), 0 1px 3px rgba(60, 64, 67, .12);
  --shadow-lg: 0 6px 10px 4px rgba(60, 64, 67, .1), 0 2px 3px rgba(60, 64, 67, .1);
  --shadow-xl: 0 12px 16px 4px rgba(60, 64, 67, .1), 0 4px 6px rgba(60, 64, 67, .1);

  /* ⭐ GRADIENT - HANYA UNTUK 4 TEMPAT PENTING SAJA (seperti Instagram)
     1. btn-primary (CTA utama)
     2. hero h1 span (teks judul)
     3. footer top-border
     4. scroll-top button
  */
  --grad-rainbow: linear-gradient(90deg, #4285F4 0%, #EA4335 28%, #FBBC05 62%, #34A853 100%);
  --grad-primary: linear-gradient(135deg, #4285F4 0%, #1a73e8 100%);
  --grad-sunset: linear-gradient(135deg, #ea4335 0%, #fbbc05 100%);
  --grad-ocean: linear-gradient(135deg, #4285F4 0%, #34a853 100%);
  --grad-forest: linear-gradient(135deg, #34a853 0%, #4285F4 100%);
  --grad-candy: var(--grad-rainbow);
  --grad-light: linear-gradient(135deg, #e8f0fe 0%, #e6f4ea 50%, #fef7e0 100%);
}

/* GOOGLE-INSPIRED: Flat background clean, subtle gradients */
body {
  background:
    radial-gradient(900px 500px at 100% 0%, rgba(251, 188, 5, .05) 0%, transparent 55%),
    radial-gradient(800px 500px at 0% 100%, rgba(52, 168, 83, .05) 0%, transparent 55%),
    var(--bg);
  background-attachment: fixed;
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  max-width: 100vw;
  width: 100%;
  overscroll-behavior-x: none;
  -webkit-overflow-scrolling: touch;
}
@supports (touch-action: pan-y) {
  html, body { touch-action: manipulation; }
}
body {
  font-family: 'Inter', 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
  width: 100%;
  max-width: 100%;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--primary); color: #fff; }

/* === SHIMMER SKELETON LOADING (anti getar first load) === */
@keyframes skeletonShimmer {
  0% { background-position: -400px 0; }
  100% { background-position: calc(400px + 100%) 0; }
}
.skeleton, .skeleton * {
  background: linear-gradient(90deg, #f1f5f9 0px, #e2e8f0 40px, #f8fafc 80px, #e2e8f0 120px, #f1f5f9 160px);
  background-size: 400px 100%;
  background-repeat: no-repeat;
  animation: skeletonShimmer 1.3s linear infinite;
  color: transparent !important;
  border-color: transparent !important;
}
.skeleton img, .skeleton i { opacity: 0 !important; visibility: hidden; }

/* === CONTENT-VISIBILITY (render hanya yang terlihat, anti getar section panjang) === */
/* HERO MOSAIC SELALU di ATAS FOLD → JANGAN pakai content-visibility (cuma bikin CLS besar) */
.section, .listing-grid, .news-grid, .footer-grid {
  content-visibility: auto;
  contain-intrinsic-size: 1px 1000px;
}
.ls-card, .news-card {
  content-visibility: auto;
  contain-intrinsic-size: 360px 440px;
}

/* === OVERFLOW SAFETY-NET (REVISI 2) — HANYA wrap OUTER yang memiliki pseudo-element ornamen
   KONTENER KONTEN (grid, hero-inner, stats, dll) JANGAN di-clip, nanti text/button terpotong! === */
.section, .hero, .page-header, .footer, header, .topbar, .auth-wrap,
.promo-box, .feature-card, .cat-card, .usaha-item, .author-box, .newsletter {
  overflow-x: clip;
}
/* Pastikan SEMUA teks wrap secara natural (tidak memaksa overflow karena kata panjang) */
html, body, p, h1, h2, h3, h4, h5, h6, span, li, a, strong {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  hyphens: auto;
}
/* Image & media JANGAN pernah keluar container parent */
picture, figure, img, svg, video, iframe, embed, object {
  max-width: 100%;
  height: auto;
}
input, select, textarea, button { max-width: 100%; }
/* Table: scroll horizontal di dalam kalau overflow, tapi parent TIDAK dipotong */
.table-wrap { overflow-x: auto; max-width: 100%; -webkit-overflow-scrolling: touch; }
table { width: 100%; }
/* Container untuk listing grid TIDAK di-clip, card bisa punya hover shadow keluar */
.stats, .categories-grid, .features-grid, .info-grid, .footer-grid,
.steps, .paket-grid, .contact-grid, .social-grid,
.two-col, .content-grid, .sidebar, .detail-section,
.hero-inner, .hero-mosaic-wrap, .header-inner,
.listing-grid, .news-grid, .menu-grid, .gallery-grid,
.form-section, .article-header, .search-box, .ls-grid {
  overflow: visible;
  contain: layout style;
  max-width: 100%;
}
/* === LAYOUT === */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  box-sizing: border-box;
}
/* ============================================================
   SAFETY RULE — CEGAH FULLWIDTH / MENTOK KE POJOK:
   Semua section, page-header, hero, footer SELALU punya
   padding HORIZONTAL minimal 20px utk mobile & 24px utk desktop,
   KECUALI jika section tersebut memang sengaja bleeding edge
   (contoh: background gradient seluruh lebar).
   ============================================================ */
section:not([data-fullwidth="true"]):not(.no-container-safety),
.page-header:not([data-fullwidth="true"]),
.hero:not([data-fullwidth="true"]),
.features:not([data-fullwidth="true"]),
.footer:not([data-fullwidth="true"]) {
  padding-left: max(0px, env(safe-area-inset-left));
  padding-right: max(0px, env(safe-area-inset-right));
}
/* UTAMA: Pastikan DIRECT CHILD PERTAMA dari section adalah .container,
   jika BUKAN maka section TERSEBUT otomatis diberi inline padding
   horizontal sama dengan container (20-24px) AGAR TIDAK MENTOK POJOK. */
section:not([data-fullwidth="true"]):not(.no-container-safety) > *:first-child:not(.container),
.page-header:not([data-fullwidth="true"]) > *:first-child:not(.container),
.hero:not([data-fullwidth="true"]) > *:first-child:not(.container),
.features:not([data-fullwidth="true"]) > *:first-child:not(.container) {
  padding-left: 24px;
  padding-right: 24px;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  width: 100%;
}
/* Mobile (< 640px): padding horizontal minimum 20px, agar tidak mentok */
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  section:not([data-fullwidth="true"]) > *:first-child:not(.container),
  .page-header:not([data-fullwidth="true"]) > *:first-child:not(.container),
  .hero:not([data-fullwidth="true"]) > *:first-child:not(.container),
  .features:not([data-fullwidth="true"]) > *:first-child:not(.container) {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.section {
  padding: 64px 0;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.section-head h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text);
  display: flex;
  align-items: center;
}
.section-head h2 i { display: inline-flex; align-items: center; }
.section-head a {
  color: var(--primary);
  font-weight: 700;
  font-size: 14.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--primary-50);
  transition: .25s;
}
.section-head a:hover { background: var(--primary); color: #fff; transform: translateX(4px); }

/* === BUTTONS - COLORFUL === */
.btn-primary, .btn-outline, .btn-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 18px;
  height: 44px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  transition: .25s cubic-bezier(.4, 0, .2, 1);
  cursor: pointer;
  border: 0;
  font-family: inherit;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  box-sizing: border-box;
  letter-spacing: .1px;
}
.btn-primary {
  background: var(--primary);
  background-color: #4285F4 !important;
  color: #fff !important;
  box-shadow: 0 2px 3px 0 rgba(66,133,244,.30), 0 4px 8px 1px rgba(66,133,244,.18);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  font-weight: 700 !important;
  letter-spacing: .1px;
  text-shadow: 0 1px 1px rgba(0,0,0,.18);
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 70%; height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.42) 50%, transparent 100%);
  transform: skewX(-20deg);
  pointer-events: none;
  transition: none;
  opacity: 0;
}
@keyframes btnShineSweep {
  0%   { left: -120%; opacity: 1; }
  60%  { opacity: 1; }
  100% { left: 130%;  opacity: 0; }
}
.btn-primary:hover::before { animation: btnShineSweep .72s cubic-bezier(.2,.7,.2,1) forwards; }
.btn-primary:hover {
  transform: translateY(-2.5px) scale(1.015);
  background-color: #1a73e8 !important;
  box-shadow: 0 6px 14px rgba(66,133,244,.34), 0 10px 24px rgba(26,115,232,.22);
}
.btn-primary:active { transform: translateY(-.5px) scale(1.005); }
.btn-glow { position: relative; z-index: 0; }
.btn-glow::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: transparent;
  pointer-events: none;
  z-index: -1;
  box-shadow: 0 0 0 0 rgba(66,133,244,0),
              0 10px 28px rgba(66,133,244,.30),
              0 2px 6px rgba(26,115,232,.18);
  opacity: .95;
  transition: box-shadow .28s cubic-bezier(.2,.7,.2,1), transform .28s;
}
@keyframes btnGlowSoftPulse {
  0%, 100% { box-shadow: 0 10px 28px rgba(66,133,244,.28), 0 2px 6px rgba(26,115,232,.16); transform: scale(1); }
  50%      { box-shadow: 0 14px 36px rgba(66,133,244,.38), 0 3px 8px rgba(26,115,232,.20); transform: scale(1.004); }
}
.btn-glow::after { animation: btnGlowSoftPulse 3.4s ease-in-out infinite; }
.btn-outline {
  background: #fff;
  color: var(--text);
  border: 1.5px solid var(--line);
  transition: .25s cubic-bezier(.4, 0, .2, 1);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-50);
  box-shadow: 0 1px 2px 0 rgba(66, 133, 244, .18), 0 1px 3px 1px rgba(66, 133, 244, .1);
  transform: translateY(-1.5px);
}
.btn-sm { height: auto; padding: 8px 14px; font-size: 13.5px; border-radius: 10px; line-height: 1.2; }
.icon-btn {
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--text-2);
  cursor: pointer;
  transition: transform .2s cubic-bezier(.2,.7,.2,1), box-shadow .2s, background .2s, border-color .2s, color .2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  position: relative;
  overflow: hidden;
}
.icon-btn i { transition: transform .22s cubic-bezier(.2,.7,.2,1), filter .22s; }
.icon-btn:hover {
  border-color: var(--primary);
  color: #fff;
  background: var(--primary);
  box-shadow: 0 6px 16px rgba(66,133,244,.22), 0 2px 6px rgba(66,133,244,.14);
  transform: translateY(-2px) scale(1.04);
}
.icon-btn:hover i { transform: scale(1.14); filter: drop-shadow(0 2px 4px rgba(0,0,0,.25)); }
.icon-btn:active { transform: translateY(-.5px) scale(1.01); }

.icon-btn.mono-ig {
  --accent:#E1306C;
  border-color: rgba(225,48,108,.25);
  background: #fff;
  color: var(--accent);
}
.icon-btn.mono-ig:hover { background: var(--accent); color: #fff; border-color: var(--accent); box-shadow: 0 6px 16px rgba(225,48,108,.24); }
.icon-btn.mono-fb {
  --accent:#1877F2;
  border-color: rgba(24,119,242,.25);
  background: #fff;
  color: var(--accent);
}
.icon-btn.mono-fb:hover { background: var(--accent); color: #fff; border-color: var(--accent); box-shadow: 0 6px 16px rgba(24,119,242,.24); }
.icon-btn.mono-tw {
  --accent:#000;
  border-color: rgba(0,0,0,.14);
  background: #fff;
  color: var(--accent);
}
.icon-btn.mono-tw:hover { background: var(--accent); color: #fff; border-color: var(--accent); box-shadow: 0 6px 16px rgba(0,0,0,.22); }
.icon-btn.mono-yt {
  --accent:#FF0000;
  border-color: rgba(255,0,0,.25);
  background: #fff;
  color: var(--accent);
}
.icon-btn.mono-yt:hover { background: var(--accent); color: #fff; border-color: var(--accent); box-shadow: 0 6px 16px rgba(255,0,0,.24); }
.icon-btn.mono-wa {
  --accent:#25D366;
  border-color: rgba(37,211,102,.25);
  background: #fff;
  color: var(--accent);
}
.icon-btn.mono-wa:hover { background: var(--accent); color: #fff; border-color: var(--accent); box-shadow: 0 6px 16px rgba(37,211,102,.24); }
.icon-btn.mono-tel {
  --accent:#0ea5e9;
  border-color: rgba(14,165,233,.25);
  background: #fff;
  color: var(--accent);
}
.icon-btn.mono-tel:hover { background: var(--accent); color: #fff; border-color: var(--accent); box-shadow: 0 6px 16px rgba(14,165,233,.24); }
.icon-btn.mono-email {
  --accent:#64748b;
  border-color: rgba(100,116,139,.25);
  background: #fff;
  color: var(--accent);
}
.icon-btn.mono-email:hover { background: var(--accent); color: #fff; border-color: var(--accent); box-shadow: 0 6px 16px rgba(100,116,139,.24); }
.icon-btn.mono-map {
  --accent:#EA4335;
  border-color: rgba(234,67,53,.25);
  background: #fff;
  color: var(--accent);
}
.icon-btn.mono-map:hover { background: var(--accent); color: #fff; border-color: var(--accent); box-shadow: 0 6px 16px rgba(234,67,53,.24); }
.icon-btn.mono-web {
  --accent:#0f172a;
  border-color: rgba(15,23,42,.2);
  background: #fff;
  color: var(--accent);
}
.icon-btn.mono-web:hover { background: var(--accent); color: #fff; border-color: var(--accent); box-shadow: 0 6px 16px rgba(15,23,42,.22); }

/* === TOPBAR === */
.topbar {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #cbd5e1;
  font-size: 13px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 24px;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar-left { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.topbar-left span { display: inline-flex; align-items: center; gap: 6px; }
.topbar-left .divider { color: #475569; }
.topbar-right { display: flex; align-items: center; gap: 4px; }
.topbar-right a {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px;
  color: #cbd5e1;
  transition: .2s;
  font-size: 14px;
}
.topbar-right a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* === HEADER / NAV === */
.header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: .25s;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  box-shadow: 0 4px 20px -6px rgba(15, 23, 42, .1);
  border-bottom-color: var(--line);
  backdrop-filter: saturate(1.2) blur(10px);
  background: rgba(255, 255, 255, .94);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 20px;
}
.logo { display: inline-flex; align-items: center; }
.logo-img {
  height: 64px;
  width: auto;
  max-width: 260px;
  transition: .3s;
}
.logo:hover .logo-img { transform: scale(1.04); }
.nav {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-item { position: relative; }
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  color: var(--text-2);
  border-radius: 10px;
  transition: .25s;
  gap: 7px;
  height: 44px;
  box-sizing: border-box;
}
.nav-link i {
  font-size: 14.5px;
  transition: .25s;
  color: var(--muted);
  flex-shrink: 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px; bottom: 6px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s cubic-bezier(.4, 0, .2, 1);
}
.nav-link:hover {
  color: var(--primary);
  background: var(--primary-50);
  transform: translateY(-1px);
}
.nav-link:hover i { color: var(--primary); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.active {
  color: var(--primary);
  background: var(--primary-50);
  box-shadow: inset 0 0 0 1.5px rgba(66, 133, 244, .2);
}
.nav-link.active i { color: var(--primary); }
.nav-link.active::after { transform: scaleX(1); }
.nav-link .chev {
  display: inline-flex;
  align-items: center;
  margin-left: -1px;
}
.nav-link .chev i {
  font-size: 9px;
  opacity: .75;
  color: var(--muted);
}
.nav-link:hover .chev i,
.nav-link.active .chev i { color: var(--primary); opacity: 1; }
.has-dropdown:hover > .dropdown,
.has-dropdown.dd-hovered > .dropdown,
.has-dropdown.drop-open > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* === DROPDOWN === */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 8px;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity .22s ease, transform .28s cubic-bezier(.4, 0, .2, 1), visibility .22s;
  z-index: 120;
  margin-top: 0;
}
/* INVISIBLE BUFFER: area transparan 14px di ATAS dropdown box
   -> Supaya cursor lewat dari trigger NAV KE dropdown tidak sempat HOVER-OUT saat melewati celah */
.dropdown::before,
.mega-dropdown::before {
  content: '';
  position: absolute;
  top: -14px; left: 0; right: 0;
  height: 14px;
  pointer-events: auto;
  background: transparent;
  z-index: -1;
}
.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: .18s;
}
.dropdown a i {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px;
  background: var(--primary-50);
  color: var(--primary);
  font-size: 13px;
  transition: .2s;
}
.dropdown a:hover {
  background: var(--primary-50);
  color: var(--primary);
  transform: translateX(3px);
}
.dropdown a:hover i {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1) rotate(-6deg);
}

/* ============ CUSTOM USER DROPDOWN (Administrator Menu) CANTIK!!! ============= */
.dd-user {
  min-width: 280px !important;
  padding: 0 !important;
  overflow: hidden;
}
.dd-user-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 16px 14px;
  background: var(--primary-50);
  border-bottom: 1px solid #f1f3f4;
  position: relative;
}
.dd-user-head::after {
  content: '';
  position: absolute;
  inset: auto -30px -24px auto;
  width: 90px; height: 90px;
  background: radial-gradient(circle at 30% 30%, rgba(66, 133, 244, .12), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.dd-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
  font-size: 16px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 2px solid #ffffff;
  box-shadow: 0 6px 14px rgba(15, 23, 42, .12);
}
.dd-name {
  font-size: 14.5px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -.2px;
}
.dd-email {
  font-size: 11.5px;
  color: #64748b;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dd-email i { font-size: 10.5px; opacity: .85; }
.dd-role {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2px;
}
.dd-role i { font-size: 10px; }
.dd-role-admin { background: var(--g-yellow-50); color: #b45309; border: 1px solid var(--g-yellow-100); }
.dd-role-user  { background: var(--primary-50); color: var(--primary-600); border: 1px solid var(--primary-100); }

/* Groups */
.dd-grp {
  padding: 8px;
}
.dd-grp + .dd-grp { padding-top: 4px; }
.dd-grp-title {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .8px;
  color: #94a3b8;
  text-transform: uppercase;
  padding: 6px 10px 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.dd-grp-title i { font-size: 10px; opacity: .9; }
.dd-divider {
  height: 1px;
  margin: 0 8px;
  background: repeating-linear-gradient(90deg, #e2e8f0 0 6px, transparent 6px 12px);
}
/* Dropdown anchor custom style REPLACE default .dropdown a untuk yang punya wrapper dd-user (agar tidak semua dropdown berubah) */
.dd-user .dd-grp a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 11px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  transition: .18s;
  position: relative;
  text-decoration: none;
}
.dd-user .dd-grp a i {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px;
  background: #f8fafc;
  color: #475569;
  font-size: 12.5px;
  transition: .22s;
  flex-shrink: 0;
}
.dd-user .dd-grp a:hover {
  background: #f8fafc;
  color: #0f172a;
  transform: translateX(3px);
}
.dd-user .dd-grp a:hover i {
  background: var(--primary);
  color: #fff;
  transform: scale(1.08) rotate(-5deg);
}
/* Arrow indicator di kanan */
.dd-arrow {
  margin-left: auto;
  color: #cbd5e1;
  font-size: 10.5px;
  transition: .2s;
}
.dd-user .dd-grp a:hover .dd-arrow { color: var(--primary); transform: translateX(2px); }
.dd-count {
  margin-left: auto;
  font-size: 10.5px;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: 999px;
  letter-spacing: .2px;
}
/* Active state (halaman ini = Dashboard Admin) */
.dd-user .dd-grp a.dd-active {
  background: var(--g-red-50);
  color: #991b1b;
  border: 1px solid var(--g-red-100);
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .1), 0 1px 3px 1px rgba(60, 64, 67, .06);
}
.dd-user .dd-grp a.dd-active i {
  background: var(--g-red);
  color: #fff;
}
.dd-user .dd-grp a.dd-active .dd-arrow { color: var(--g-red); }
.dd-user .dd-grp a.dd-active:hover { transform: translateX(2px); background: var(--g-red-50); }

/* Logout */
.dd-user .dd-grp a.dd-logout {
  color: var(--g-red);
  justify-content: center;
  padding: 11px;
  border-radius: 11px;
  background: var(--g-red-50);
  border: 1px solid var(--g-red-100);
  font-weight: 800;
  letter-spacing: .15px;
  font-size: 12.5px;
}
.dd-user .dd-grp a.dd-logout i {
  background: var(--g-red);
  color: #fff;
  font-size: 12px;
  width: 26px; height: 26px;
}
.dd-user .dd-grp a.dd-logout:hover {
  background: var(--g-red);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 1px 2px 0 rgba(234, 67, 53, .3), 0 1px 3px 1px rgba(234, 67, 53, .15);
}
.dd-user .dd-grp a.dd-logout:hover i {
  background: #fff;
  color: var(--g-red);
  transform: translateX(2px) rotate(-5deg);
}

/* === MEGA DROPDOWN === */
.mega-dropdown {
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  min-width: 680px;
  padding: 20px;
}
.has-dropdown:hover > .mega-dropdown,
.has-dropdown.dd-hovered > .mega-dropdown,
.has-dropdown.drop-open > .mega-dropdown {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mega-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 24px;
  margin-bottom: 14px;
}
.mega-col { display: flex; flex-direction: column; gap: 2px; }
.mega-col a {
  display: grid !important;
  grid-template-columns: 36px 1fr;
  gap: 12px !important;
  align-items: center;
  padding: 10px;
  border-radius: 10px;
}
.mega-col a i {
  width: 36px !important; height: 36px !important;
  font-size: 16px !important;
  border-radius: 10px !important;
}
.mega-col a > div { display: flex; flex-direction: column; line-height: 1.3; }
.mega-col a strong { color: var(--text); font-size: 14px; font-weight: 700; }
.mega-col a span { color: var(--muted); font-size: 12px; font-weight: 400; margin-top: 2px; }
.mega-footer {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: center;
}
.mega-footer .btn-sm i {
  background: none !important;
  color: inherit !important;
  width: auto !important;
  height: auto !important;
}

/* === HEADER ACTIONS === */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  font-size: 18px;
  color: var(--text);
  transition: .2s;
}
.menu-toggle:hover { color: var(--primary); border-color: var(--primary); }

/* === EXPANDABLE SEARCH === */
.header-searchbar {
  display: none;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  animation: slideDown .25s ease-out;
}
.header-searchbar.open { display: block; }
.header-searchbar .search-box input { border: 1.5px solid var(--primary-100); }
.header-searchbar .search-box input:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(66,133,244,.12); }

/* === MOBILE NAV === */
.mob-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(15, 23, 42, .55);
  backdrop-filter: blur(4px);
  z-index: 199;
}
.mob-overlay.show { display: block; animation: fadeIn .2s; }
.mobile-nav {
  position: fixed;
  top: 0; right: 0;
  width: 340px; max-width: 88vw;
  height: 100dvh;
  background: #fff;
  z-index: 200;
  transform: translateX(105%);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px rgba(15,23,42,.2);
  will-change: transform;
}
.mobile-nav.open { transform: translateX(0); right: 0; }
.mobile-nav-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  font-size: 17px;
  font-weight: 700;
  background: var(--primary-50);
}
.mobile-nav-scroll {
  padding: 10px;
  overflow-y: auto;
  flex: 1;
  display: flex; flex-direction: column;
}
.mobile-nav-scroll > a {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--text-2);
  transition: .2s;
}
.mobile-nav-scroll > a i { color: var(--primary); font-size: 16px; width: 22px; }
.mobile-nav-scroll > a:hover { background: var(--primary-50); color: var(--primary); }
.mob-detail { border: none; margin: 0; }
.mob-detail > summary {
  list-style: none;
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--text-2);
  cursor: pointer;
}
.mob-detail > summary::-webkit-details-marker { display: none; }
.mob-detail > summary i { color: var(--primary); font-size: 16px; width: 22px; }
.mob-detail > summary > i:last-child { margin-left: auto; width: auto; font-size: 11px; color: var(--muted); transition: .2s; }
.mob-detail[open] > summary > i:last-child { transform: rotate(180deg); }
.mob-detail > summary:hover { background: var(--primary-50); color: var(--primary); }
.mob-detail a.sub {
  padding: 10px 14px 10px 52px;
  font-size: 13.5px;
  color: var(--text-2);
  font-weight: 500;
  border-radius: 8px;
  display: block;
  transition: .18s;
  border-bottom: 1px dashed transparent;
}
.mob-detail a.sub:hover { background: var(--primary-50); color: var(--primary); padding-left: 60px; }

/* === HERO === */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 90% 0%, rgba(251, 188, 5, .06) 0%, transparent 50%),
    #fff;
  overflow: hidden;
  overflow-x: clip;
  padding: 60px 0 80px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -140px; right: -140px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(66, 133, 244, .08), transparent 65%);
  border-radius: 50%;
  animation: floatOrb 10s ease-in-out infinite;
  pointer-events: none;
}
.hero::after { display: none; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 1;
  padding: 20px 0;
}
.hero h1 {
  margin: 0 0 18px;
  font-size: 46px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -1.2px;
  color: var(--text);
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  /* RESERVED HEIGHT: 2 baris + margin bawah → cegah CLS saat font swap dari fallback ke PlusJakarta */
  min-height: calc(46px * 1.1 * 2 + 18px);
}
/* Pre-hitung line-height fallback (Arial ~ x-height lebih besar) → beri kelonggaran */
@media (max-width: 820px) {
  .hero h1 { min-height: calc(36px * 1.1 * 2 + 18px); }
}
@media (max-width: 560px) {
  .hero h1 { min-height: calc(28px * 1.2 * 2 + 18px); }
}
.hero h1 span {
  color: var(--primary);
  font-weight: 900;
}
/* MIN-WIDTH untuk typewriter: reserve ruang sepanjang frase terpanjang
   "Pusat Kuliner Legendaris" = 22ch & "Wisata & Jasa Profesional" = 23ch → pakai 23ch
   → lebar tetap, tidak berubah per karakter → no CLS */
#typeHero {
  display: inline-block;
  min-width: min(23ch, 100%);
  text-align: left;
  vertical-align: baseline;
}
.hero h1 {
  max-width: 100%;
  overflow-wrap: break-word;
}
.hero p {
  margin: 0 0 28px;
  font-size: 17px;
  color: var(--text-2);
  max-width: min(560px, 100%);
  overflow-wrap: break-word;
  /* RESERVED HEIGHT: 3 baris + margin bawah → cegah CLS font swap */
  min-height: calc(17px * 1.6 * 3 + 28px);
}
.hero-logo {
  display: block;
}
.hero-logo-box {
  transition: .4s;
  will-change: transform;
}
.hero-logo-box:hover {
  transform: scale(1.04) rotate(-1.5deg);
  box-shadow: 0 40px 100px rgba(220, 38, 38, .25) !important;
}

/* === HERO MOSAIC (RIGHT VISUAL) === */
.hero-mosaic-wrap { position: relative; z-index: 2; min-height: 520px; }
.hero-mosaic {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 12px;
  width: 100%;
  min-height: 500px;
  max-width: 580px;
  margin-left: auto;
}
.hero-mosaic .hm {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 18px 48px rgba(15,23,42,.12);
  background: #f1f5f9;
  transition: transform .3s, box-shadow .3s;
}
/* === PRE-SET ASPECT RATIO SEMUA HERO MOSAIC ITEM → CEGAH CLS BERGETAR === */
.hero-mosaic .hm { aspect-ratio: 1 / 1; }
.hero-mosaic .hm-1 { grid-row: 1 / span 2; grid-column: 1 / 1; aspect-ratio: 4 / 5; }
.hero-mosaic .hm-2 { grid-row: 1 / span 1; grid-column: 2 / 3; aspect-ratio: 5 / 4; }
.hero-mosaic .hm-3 { grid-row: 2 / span 1; grid-column: 2 / 3; aspect-ratio: 5 / 4; }
.hero-mosaic .hm-4 { grid-row: 3 / span 1; grid-column: 1 / span 2; aspect-ratio: 16 / 7; }

.hero-mosaic .hm:hover { transform: translateY(-4px) scale(1.01); box-shadow: 0 26px 60px rgba(15,23,42,.18); }
.hero-mosaic .hm img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform .5s ease-out;
}
.hero-mosaic .hm:hover img { transform: scale(1.06); }
.hm-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 12px 14px;
  background: linear-gradient(180deg, rgba(15,23,42,.12) 0%, rgba(15,23,42,0) 30%, rgba(15,23,42,0) 55%, rgba(15,23,42,.78) 100%);
  color: #fff;
}
.hm-tag {
  display: inline-flex; align-items: center; gap: 4px;
  align-self: flex-start;
  font-size: 11.5px; font-weight: 800; letter-spacing: .2px;
  padding: 5px 10px; border-radius: 999px;
  backdrop-filter: blur(6px);
  box-shadow: 0 3px 10px rgba(0,0,0,.12);
  border: 1px solid rgba(255,255,255,.25);
}
.hm-tag-red    { background: rgba(234, 67, 53, .95); }    /* GOOGLE RED */
.hm-tag-orange { background: rgba(251, 188, 5, .95); color: #713f12; } /* GOOGLE YELLOW */
.hm-tag-blue   { background: rgba(66, 133, 244, .95); }    /* GOOGLE BLUE (pengganti PURPLE) */
.hm-tag-teal   { background: rgba(52, 168, 83, .95); }     /* GOOGLE GREEN (pengganti TEAL ungu-ish) */
.hm-bottom { padding-top: 6px; }
.hm-bottom strong { font-size: 14px; line-height: 1.2; display: block; margin-bottom: 3px; text-shadow: 0 1px 3px rgba(0,0,0,.4); }
.hm-bottom span { font-size: 11.5px; opacity: .9; }

/* Floating Tags */
.hero-float-tag {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 10px 13px 10px 10px;
  box-shadow: 0 16px 36px rgba(15,23,42,.15);
  display: flex; align-items: center; gap: 10px;
  border: 1px solid rgba(226,232,240,.9);
  z-index: 3;
  will-change: transform;
}
.hero-float-tag .favatar {
  width: 38px; height: 38px; border-radius: 11px;
  display: grid; place-items: center; font-size: 15px;
  flex-shrink: 0;
}
.hft-1 { top: 6%; left: -30px; padding-right: 18px; }
.hft-2 { bottom: 16%; right: -20px; }
.hft-3 { bottom: -10px; left: 22%; }

@media (max-width: 940px) {
  .hero-mosaic-wrap { min-height: auto; margin-top: 16px; }
  .hero-mosaic { min-height: 460px; max-width: 100%; margin: 0 auto; }
  .hft-1 { left: 0; }
  .hft-2 { right: 0; }
}
@media (max-width: 560px) {
  .hero-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 1.1fr .9fr .9fr; gap: 8px; min-height: 400px; }
  .hm-1 { grid-row: 1; grid-column: 1 / span 2; aspect-ratio: 16/10; }
  .hm-2 { grid-row: 2; grid-column: 1 / span 2; }
  .hm-3 { grid-row: 3; grid-column: 1; }
  .hm-4 { grid-row: 3; grid-column: 2; aspect-ratio: auto; }
  .hero-float-tag { padding: 8px 10px 8px 8px; }
  .hero-float-tag .favatar { width: 32px; height: 32px; font-size: 13px; }
  .hft-1 { top: -2%; left: -4px; }
  .hft-2 { bottom: 18%; right: -4px; }
  .hft-3 { display: none; }
}

/* === SEARCH BOX === */
.search-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 16px;
  padding: 6px 6px 6px 18px;
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .1), 0 2px 6px 2px rgba(60, 64, 67, .08);
  border: 1.5px solid var(--line);
  gap: 8px;
  max-width: min(640px, 100%);
  margin-bottom: 32px;
  transition: .3s;
}
.search-box:focus-within {
  border-color: var(--primary);
  box-shadow: 0 1px 2px 0 rgba(66, 133, 244, .2), 0 2px 6px 2px rgba(66, 133, 244, .12);
  transform: translateY(-2px);
}
.search-box input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 14px 6px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  min-width: 0;
}
.search-box .loc {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-left: 1.5px solid var(--line);
  border-right: 1.5px solid var(--line);
  font-size: 13.5px;
  color: var(--primary);
  font-weight: 600;
  /* CEGAH SHRINK: loc pill TIDAK BOLEH di-penyusutan oleh input flex:1
     (font-size terlihat hilang / wrap tak terlihat jika width < 110px) */
  flex-shrink: 0;
  min-width: fit-content;
  white-space: nowrap;
}
.search-box button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  cursor: pointer;
  padding: 12px 20px;
  background: var(--primary);
  color: #fff;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14.5px;
  transition: .25s;
  font-family: inherit;
}
.search-box button:hover { transform: scale(1.04); box-shadow: 0 1px 2px 0 rgba(66, 133, 244, .3), 0 1px 3px 1px rgba(66, 133, 244, .15); background: var(--primary-2); }

/* === STATS === */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: min(640px, 100%);
}
.hero-mosaic-wrap {
  max-width: 100%;
}
.hero-mosaic {
  max-width: min(580px, 100%) !important;
}
.stat {
  background: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: .25s;
}
.stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-100);
}
.stat-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--primary-50);
  color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: .3s;
}
.stat:hover .stat-icon { transform: rotate(-6deg) scale(1.1); }
.stat-text strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.3px;
  /* MIN-WIDTH: reserve ruang angka 99.999 + locale id (6 digit + separator) → no CLS saat counter */
  min-width: 5ch;
}
.stat-text span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  margin-top: 2px;
  display: block;
}

/* === HERO RIGHT IMAGE === */
.hero-img-wrap {
  position: relative;
  padding: 10px;
  overflow-x: clip;
}
.hero-img-wrap img {
  border-radius: 32px;
  box-shadow: var(--shadow-xl);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  transform: rotate(2deg);
  transition: .4s;
}
.hero-img-wrap:hover img { transform: rotate(0) scale(1.02); }

/* === CATEGORIES === */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  overflow-x: clip;
}
.cat-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 22px 20px;
  border: 1.5px solid var(--line);
  transition: .3s cubic-bezier(.4, 0, .2, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: .35s;
}
.cat-card-hover {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 38px; height: 38px;
  border-radius: 11px;
  background: var(--primary);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: translateX(12px);
  transition: .3s cubic-bezier(.4, 0, .2, 1);
  font-size: 14px;
}
.cat-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-100);
  box-shadow: var(--shadow-lg);
  background: var(--primary-50);
}
.cat-card:hover::before { transform: scaleX(1); }
.cat-card:hover .cat-card-hover {
  opacity: 1;
  transform: translateX(0);
}
.cat-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: var(--primary-50);
  border: 1.5px solid var(--primary-100);
  color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 26px;
  transition: .35s cubic-bezier(.4, 0, .2, 1);
  margin-bottom: 6px;
}
.cat-card:hover .cat-icon {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1) rotate(-8deg);
  border-color: var(--primary);
  box-shadow: 0 1px 2px 0 rgba(66, 133, 244, .3), 0 1px 3px 1px rgba(66, 133, 244, .15);
}
.cat-card h4 {
  margin: 4px 0 2px;
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
}
.cat-card p {
  margin: 0;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
  max-width: 260px;
}

/* === REUSABLE LAYOUT GRID CLASS (menggantikan inline hardcode grid di PHP) === */
.page-layout-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: start;
  width: 100%;
  max-width: 100%;
}
.page-layout-grid > aside,
.page-layout-grid > main,
.page-layout-grid > div {
  min-width: 0;
  max-width: 100%;
}
.feature-inline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
}
.paket-inline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
}

/* ============================================================
   PRICING CARD MODERN PREMIUM (compact, clean, Google palette)
   Shared oleh harga.php & pasang-iklan.php
   ============================================================ */
.paket-inline-grid > .pi-paket {
  position: relative;
  border-radius: 20px !important;
  border: 1px solid #e2e8f0 !important;
  background: #ffffff !important;
  padding: 24px 18px 22px !important;
  transition: all .32s cubic-bezier(.4, 0, .2, 1) !important;
  box-shadow: 0 4px 10px rgba(15, 23, 42, .04) !important;
  overflow: hidden;
}
.paket-inline-grid > .pi-paket:hover {
  transform: translateY(-6px) !important;
  border-color: #cbd5e1 !important;
  box-shadow: 0 22px 50px rgba(15, 23, 42, .12), 0 2px 6px rgba(15, 23, 42, .06) !important;
  z-index: 2;
}
/* HERO BAR BAWAH (scaleX hover) = warna tier */
.paket-inline-grid > .pi-paket::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 0;
  height: 3.5px;
  border-radius: 999px 999px 0 0;
  background: var(--pi-tier-color, #475569);
  transform: scaleX(.16);
  transform-origin: center;
  transition: transform .45s cubic-bezier(.4, 0, .2, 1);
  opacity: .85;
}
.paket-inline-grid > .pi-paket:hover::after { transform: scaleX(1); opacity: 1; }

/* Verified = Highlight & pop out */
.paket-inline-grid > .pi-paket-standard {
  transform: translateY(-6px) scale(1.02);
  border: 1.5px solid #34d399 !important;
  box-shadow:
    0 0 0 4px rgba(16, 185, 129, .10),
    0 22px 50px rgba(16, 185, 129, .16),
    0 4px 10px rgba(15, 23, 42, .05) !important;
  z-index: 3;
}
.paket-inline-grid > .pi-paket-standard:hover {
  transform: translateY(-12px) scale(1.03) !important;
  box-shadow:
    0 0 0 5px rgba(16, 185, 129, .14),
    0 30px 60px rgba(16, 185, 129, .22),
    0 6px 14px rgba(15, 23, 42, .06) !important;
}

/* Basic = subdued (tidak ada border tebal) */
.paket-inline-grid > .pi-paket-basic { background: #fcfcfd !important; }
/* Premium = accent merah kuat */
.paket-inline-grid > .pi-paket-premium {
  background:
    radial-gradient(420px 200px at 100% 0%, rgba(220, 38, 38, .06), transparent 60%),
    #ffffff !important;
}

/* --- HEAD: Tier Label + Radio + Icon Avatar --- */
.pi-paket-head {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin-bottom: 14px;
  min-height: 44px;
}
/* Radio kiri (jika ada) sejajar */
.pi-paket-head > input[type="radio"] {
  margin: 0;
  width: 19px; height: 19px;
  accent-color: var(--pi-tier-color, #4285F4);
  flex-shrink: 0;
}
/* Tier badge - TEXT JANGAN KEPOTONG (flex-wrap + grow) */
.pi-paket-tier {
  display: inline-flex !important;
  align-items: center !important;
  padding: 6px 13px !important;
  border-radius: 999px !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: .2px !important;
  white-space: nowrap !important;
  line-height: 1.2;
  flex-shrink: 0;
  border: 1px solid rgba(0,0,0,.04) !important;
  box-shadow: inset 0 -1px 0 rgba(255,255,255,.4);
}
/* Avatar icon = rounded square 44px - GRADIENT match tier */
.pi-paket-avatar {
  margin-left: auto !important;
  width: 44px !important; height: 44px !important;
  border-radius: 14px !important;
  display: inline-flex !important;
  align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,.5) !important;
  box-shadow:
    inset 0 -3px 0 rgba(0,0,0,.05),
    0 6px 14px rgba(15, 23, 42, .08) !important;
}
.pi-paket-basic  .pi-paket-avatar { background: linear-gradient(145deg, #f1f5f9, #e2e8f0) !important; color: #334155 !important; }
.pi-paket-standard .pi-paket-avatar { background: linear-gradient(145deg, #bbf7d0, #86efac) !important; color: #065f46 !important; box-shadow: 0 8px 20px rgba(16, 185, 129, .25) !important; }
.pi-paket-premium .pi-paket-avatar { background: linear-gradient(145deg, #fecaca, #f87171) !important; color: #7f1d1d !important; box-shadow: 0 8px 20px rgba(220, 38, 38, .22) !important; }
.pi-paket-avatar-i { font-size: 19px !important; }

/* --- NAMA PAKET --- */
.pi-paket-name {
  margin: 0 !important;
  font-size: 24px !important;
  font-weight: 900 !important;
  color: #0f172a !important;
  letter-spacing: -.02em !important;
  padding: 0 2px !important;
  line-height: 1.1 !important;
}
.pi-paket-desc {
  color: #64748b !important;
  font-size: 13px !important;
  line-height: 1.6 !important;
  padding: 6px 2px 14px !important;
  margin: 0 !important;
  min-height: 60px;
  font-weight: 500 !important;
}

/* --- PRICE WRAP --- */
.pi-paket-price-wrap {
  padding: 0 2px 14px !important;
  border-bottom: 1px dashed #e2e8f0;
  margin-bottom: 14px;
}
.pi-paket-price-old {
  display: inline-block;
  margin-bottom: 2px;
  color: #94a3b8 !important;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  font-weight: 600 !important;
  font-size: 13px !important;
  opacity: .85;
}
.pi-paket-price {
  font-size: 34px !important;
  font-weight: 900 !important;
  letter-spacing: -.03em !important;
  color: #0f172a !important;
  line-height: 1.15 !important;
  display: block;
}
.pi-paket-basic  .pi-paket-price { color: #334155 !important; }
.pi-paket-standard .pi-paket-price { color: #065f46 !important; background: linear-gradient(135deg, #059669, #047857); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.pi-paket-premium .pi-paket-price { color: #991b1b !important; background: linear-gradient(135deg, #dc2626, #991b1b); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.pi-paket-price-sub {
  margin-top: 5px;
  color: #475569 !important;
  font-size: 12.5px !important;
  font-weight: 500;
  line-height: 1.55;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.pi-paket-price-sub strong { color: #0f172a; font-weight: 800; }
.pi-paket-hemat {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  color: #065f46;
  font-weight: 800 !important;
  font-size: 11px !important;
  letter-spacing: .3px;
  border: 1px solid #6ee7b7;
  flex-shrink: 0;
}
.pi-hemat-big {
  background: linear-gradient(135deg, #fee2e2, #fecaca) !important;
  color: #991b1b !important;
  border-color: #fca5a5 !important;
  padding: 5px 11px !important;
  font-size: 11.5px !important;
  animation: piPulse 2.2s ease-in-out infinite;
}
@keyframes piPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, .25); }
  50%      { box-shadow: 0 0 0 6px rgba(220, 38, 38, 0); }
}

/* Addon warning note - PILL SOFT */
.pi-paket-addon-note {
  margin-top: 12px;
  padding: 9px 13px !important;
  border-radius: 12px !important;
  background: linear-gradient(135deg, #fff7ed, #ffedd5) !important;
  color: #9a3412 !important;
  border: 1px solid #fed7aa !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1.5;
  display: flex !important;
  align-items: flex-start;
  gap: 8px !important;
}
.pi-paket-addon-note i {
  font-size: 14px;
  margin-top: 1px;
  flex-shrink: 0;
  color: #ea580c;
}

/* --- FEATURES LIST --- */
.pi-paket-features { padding: 0 !important; margin: 0 !important; list-style: none !important; border-top: none !important; padding-top: 2px !important; flex-grow: 1; }
.pi-paket-features, .pi-paket-features * { list-style-type: none !important; }
.pi-paket-features ::marker { content: "" !important; }
.pi-paket-f {
  display: flex !important; align-items: flex-start !important; gap: 10px !important;
  padding: 6.5px 2px !important;
  font-size: 13px !important; color: #334155 !important; line-height: 1.5 !important;
  opacity: 1; transform: translateX(0); transition: all .22s ease;
  list-style-type: none !important;
}
.pi-paket-f::marker { content: "" !important; }
.pi-paket-fi {
  margin-top: 3px !important;
  font-size: 13px !important;
  flex-shrink: 0 !important;
  display: block !important;
  line-height: 1 !important;
  width: 1em !important; text-align: center !important;
}
/* Basic icon = bulat redup (unverified look) */
.pi-paket-basic .pi-paket-fi {
  color: #cbd5e1 !important;
  opacity: 1 !important;
  width: .55em !important;
  transform: scale(.72);
  filter: none !important;
}
.pi-paket-standard .pi-paket-fi { font-size: 15px !important; margin-top: 2px !important; }
.pi-paket-premium .pi-paket-fi { filter: drop-shadow(0 1px 1px rgba(220, 38, 38, .2)) !important; font-size: 14px !important; }
.pi-f-disabled { opacity: .55 !important; text-decoration: line-through !important; text-decoration-color: #cbd5e1 !important; }

/* --- CTA BUTTON (modern glass + shine) --- */
.pi-paket-btn {
  display:flex !important; align-items:center !important; justify-content:center !important; gap:10px !important;
  margin-top: 16px !important;
  padding: 13px 16px !important;
  border-radius: 13px !important;
  font-weight: 800 !important;
  font-size: 14px !important;
  color:#fff !important;
  text-decoration:none !important;
  letter-spacing: 0.2px !important;
  box-shadow: 0 10px 22px rgba(15, 23, 42, .12) !important;
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease !important;
  position: relative !important;
  overflow: hidden !important;
  border: 1px solid rgba(255,255,255,.15) !important;
}
.pi-paket-btn::before {
  content: "" !important; position: absolute !important; inset: 0 !important;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  transform: translateX(-120%);
  transition: transform .65s ease !important;
  pointer-events: none;
}
.pi-paket-btn:hover {
  transform: translateY(-3px) !important;
  filter: brightness(1.08) saturate(1.08) !important;
  box-shadow: 0 18px 38px rgba(15, 23, 42, .22) !important;
}
.pi-paket-btn:hover::before { transform: translateX(120%) !important; }

/* Override warna CTA gradient per tier */
.pi-paket-basic  .pi-paket-btn { background: linear-gradient(145deg, #475569, #1e293b) !important; box-shadow: 0 12px 28px rgba(30, 41, 59, .28) !important; }
.pi-paket-standard .pi-paket-btn { background: linear-gradient(145deg, #10b981, #047857) !important; box-shadow: 0 12px 28px rgba(16, 185, 129, .38) !important; }
.pi-paket-premium .pi-paket-btn { background: linear-gradient(145deg, #ef4444, #991b1b) !important; box-shadow: 0 12px 28px rgba(220, 38, 38, .35) !important; }

/* CHECKED STATE (form radio label di pasang-iklan.php) - RING + top bar tier color */
.pi-paket.pi-paket-checked {
  border-color: var(--pi-tier-color, #475569) !important;
  border-width: 2px !important;
  box-shadow:
    0 0 0 4px color-mix(in srgb, var(--pi-tier-color, #475569) 14%, transparent),
    0 22px 50px rgba(15, 23, 42, .10) !important;
}
.pi-paket.pi-paket-checked::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pi-tier-color), color-mix(in srgb, var(--pi-tier-color) 60%, #fff));
  z-index: 1;
  pointer-events: none;
}
.pi-paket.pi-paket-checked::after { transform: scaleX(1) !important; opacity: 1 !important; }
.pi-paket.pi-paket-checked .pi-paket-avatar {
  box-shadow: 0 0 0 3px rgba(255,255,255,.9), 0 8px 22px rgba(15, 23, 42, .16) !important;
  transform: rotate(-3deg) scale(1.04);
  transition: all .3s ease;
}

/* Hide default radio bullet visually (pasang-iklan) - AGRESIF, selector multi-layer agar tidak tampil radio native manapun */
.pi-paket-r,
.pi-paket > input[type="radio"],
.pi-paket input[type="radio"],
.pi-paket-head > input[type="radio"] {
  appearance: none !important;
  -webkit-appearance: none !important;
  position: absolute !important;
  left: -99999px !important;
  top: -99999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  outline: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  overflow: hidden !important;
  white-space: nowrap !important;
}

/* price wiggle anim */
.pi-price-anim { transform-origin: left center; }
.pi-paket:hover .pi-price-anim { animation: piWigglePrice .9s cubic-bezier(.36, .07, .19, .97) both; }
@keyframes piWigglePrice {
  10%, 90% { transform: translateX(-1px) rotate(-.5deg); }
  20%, 80% { transform: translateX(2px) rotate(.8deg); }
  30%, 50%, 70% { transform: translateX(-3px) rotate(-1.1deg); }
  40%, 60% { transform: translateX(3px) rotate(1deg); }
}

/* RESPONSIVE PRICING CARDS */
@media (max-width: 980px) {
  .paket-inline-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 18px !important; }
  .paket-inline-grid > .pi-paket-standard { transform: none !important; }
  .paket-inline-grid > .pi-paket-standard:hover { transform: translateY(-6px) scale(1.01) !important; }
  .pi-paket-price { font-size: 30px !important; }
  .pi-paket-name { font-size: 21px !important; }
}
@media (max-width: 640px) {
  .paket-inline-grid { grid-template-columns: 1fr !important; gap: 16px !important; padding: 10px 4px 32px !important; }
  .paket-inline-grid > .pi-paket-standard { transform: none !important; box-shadow: 0 0 0 3px rgba(16, 185, 129, .12), 0 12px 30px rgba(16, 185, 129, .18) !important; }
  .paket-inline-grid > .pi-paket-standard:hover { transform: translateY(-4px) !important; }
  .pi-paket-price { font-size: 32px !important; }
  .pi-paket-tier { font-size: 11.5px !important; padding: 5px 11px !important; }
  .pi-paket-avatar { width: 40px !important; height: 40px !important; border-radius: 12px !important; }
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
  align-items: stretch;
}
.categories-grid > * {
  min-width: 0;
  max-width: 100%;
}
.page-layout-grid.hubungi-layout {
  grid-template-columns: 1fr 1.2fr;
}

/* === 2 COL LAYOUT === */
.two-col {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 36px;
  align-items: start;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.info-card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  transition: .3s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
}
.info-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-100);
  box-shadow: var(--shadow-lg);
}
.info-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-2);
}
.info-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: .5s cubic-bezier(.4, 0, .2, 1);
}
.info-card:hover .info-img img { transform: scale(1.08); }
.info-tag {
  position: absolute;
  top: 12px; left: 12px;
  padding: 5px 10px;
  background: rgba(220, 38, 38, .95);
  color: #fff;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .2px;
  display: inline-flex; align-items: center; gap: 4px;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 10px rgba(220, 38, 38, .3);
}
.info-body {
  padding: 16px 16px 18px;
  display: flex; flex-direction: column;
  gap: 8px;
  flex: 1;
}
.info-body h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  transition: .2s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.info-card:hover .info-body h4 { color: var(--primary); }
.info-body p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.info-date {
  margin-top: auto;
  padding-top: 8px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 5px;
}

/* === USAHA LIST === */
.usaha-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.usaha-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 12px 12px 10px;
  border-radius: 14px;
  border: 1.5px solid var(--line);
  background: #fff;
  transition: .25s cubic-bezier(.4, 0, .2, 1);
  position: relative;
}
.usaha-item::before {
  content: '';
  position: absolute;
  left: 0; top: 10%; bottom: 10%;
  width: 3.5px;
  background: var(--primary);
  border-radius: 3px;
  transform: scaleY(0);
  transition: .3s;
}
.usaha-item:hover {
  transform: translateX(6px);
  border-color: var(--primary-100);
  background: var(--primary-50);
  box-shadow: var(--shadow-md);
}
.usaha-item:hover::before { transform: scaleY(1); }
.usaha-thumb {
  width: 64px; height: 64px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-2);
  border: 1.5px solid var(--line);
  transition: .3s;
}
.usaha-item:hover .usaha-thumb { border-color: var(--primary); transform: rotate(-3deg); }
.usaha-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.usaha-body { flex: 1; min-width: 0; }
.usaha-body h4 {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  transition: .2s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.usaha-item:hover .usaha-body h4 { color: var(--primary); }
.usaha-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 500;
}
.usaha-meta span { display: inline-flex; align-items: center; gap: 4px; }
.usaha-meta i { color: var(--primary); font-size: 11px; }
.verified-badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 9px;
  font-size: 11px;
  font-weight: 700;
  background: var(--secondary-50);
  color: #166534;
  border: 1.5px solid var(--secondary-100);
  border-radius: 999px;
  flex-shrink: 0;
}
.verified-badge i { font-size: 13px; }

/* === FEATURES === */
.features {
  padding: 64px 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(251, 188, 5, .05), transparent 45%),
    #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 20px;
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid var(--line);
  transition: .3s cubic-bezier(.4, 0, .2, 1);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  right: -40px; top: -40px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(66,133,244,.06), transparent 65%);
  transition: .4s;
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-100);
  background: #fff;
  box-shadow: var(--shadow-lg);
}
.feature-card:hover::before { transform: scale(1.4); }
.feature-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: var(--primary-50);
  color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  transition: .4s cubic-bezier(.4, 0, .2, 1);
  position: relative;
  z-index: 1;
}
.feature-card:hover .feature-icon {
  transform: rotate(-8deg) scale(1.12);
  background: var(--primary);
  color: #fff;
  box-shadow: 0 1px 2px 0 rgba(66, 133, 244, .3), 0 1px 3px 1px rgba(66, 133, 244, .15);
}
.feature-body h4 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
}
.feature-body p {
  margin: 0;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
}

/* === SCROLL TO TOP === */
.scroll-top-btn {
  position: fixed;
  bottom: 26px; right: 26px;
  z-index: 150;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: #4285F4;
  color: #fff;
  border: 0;
  cursor: pointer;
  font-size: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px rgba(66,133,244,.28), 0 2px 6px rgba(26,115,232,.16);
  transition: .3s cubic-bezier(.4, 0, .2, 1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(.9);
  animation: btnGlowSoftPulse 3.4s ease-in-out infinite;
}
.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.scroll-top-btn:hover {
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 4px 8px 3px rgba(66, 133, 244, .25), 0 1px 3px rgba(234, 67, 53, .18);
}
.scroll-top-btn:active { transform: translateY(0) scale(.95); }

/* === FOOTER === */
.footer {
  background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
  color: #cbd5e1;
  padding: 64px 0 0;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--primary);
  animation: footerTopGlow 6s ease-in-out infinite;
}
@keyframes footerTopGlow {
  0%, 100% { opacity: .72; }
  50%      { opacity: 1; }
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer h4 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 15.5px;
  font-weight: 800;
  position: relative;
  padding-bottom: 10px;
}
.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 42px; height: 3px;
  background: var(--primary);
  border-radius: 3px;
}
.footer p.muted {
  margin: 0 0 18px;
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.7;
  max-width: 360px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul li { font-size: 14px; color: #94a3b8; }
.footer ul li a {
  color: #94a3b8;
  transition: .2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  padding-left: 0;
}
.footer ul li a::before {
  content: '→';
  display: inline-block;
  color: var(--primary);
  opacity: 0;
  transform: translateX(-8px);
  transition: .25s;
}
.footer ul li a:hover {
  color: #fff;
  padding-left: 18px;
}
.footer ul li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}
.contact-list li { display: inline-flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.contact-list i {
  margin-top: 3px;
  width: 24px; height: 24px;
  border-radius: 7px;
  background: rgba(220, 38, 38, .18);
  color: var(--primary-2);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}
.socials { display: flex; gap: 10px; }
.socials a {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: rgba(255, 255, 255, .06);
  color: #cbd5e1;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 15px;
  transition: .28s;
  border: 1px solid rgba(255,255,255,.07);
}
.socials a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: 0 1px 2px 0 rgba(66, 133, 244, .3), 0 1px 3px 1px rgba(66, 133, 244, .15);
}
/* ⭐⭐⭐ FOOTER DARK-BG VISIBILITY FIX — SELURUH FOOTER (bukan cuma footer-bottom!) */
.footer,
.footer .container,
.footer p,
.footer span,
.footer div,
.footer strong,
.footer em,
.footer small,
.footer li,
.footer i,
.footer ul,
.footer label,
.footer .muted,
.footer-grid,
.footer-grid > *,
.footer .contact-list li {
  color: #cbd5e1 !important;
}
.footer h1, .footer h2, .footer h3, .footer h4, .footer h5, .footer h6 {
  color: #f1f5f9 !important;
}
.footer a {
  color: #94a3b8 !important;
  text-decoration: none !important;
  transition: color .2s !important;
}
.footer a:hover { color: #fff !important; }
.footer .socials a {
  color: #cbd5e1 !important;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
}
.footer .socials a:hover {
  color: #fff !important;
  background: var(--primary);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 18px 0;
  margin-top: 10px;
  background: rgba(2, 6, 23, .5);
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
}
/* ENSURE footer-bottom TETAP konsisten meskipun sudah diatas ada global .footer override */
.footer-bottom,
.footer-bottom .container,
.footer-bottom .container > *,
.footer-bottom span,
.footer-bottom div,
.footer-bottom p,
.footer-bottom strong,
.footer-bottom em,
.footer-bottom small,
.footer-bottom i {
  color: #cbd5e1 !important;
}
.footer-bottom a {
  color: #94a3b8 !important;
  transition: .2s;
  margin-left: 18px;
}
.footer-bottom a:hover { color: #fff !important; }

/* === PAGE HEADER (for inner pages) === */
/* ⭐ POLA STANDARD (FULL BACKGROUND, CONTENT DALAM CONTAINER):
   - Background pink gradien FULLWIDTH sampai pojok kiri/kanan layar (tidak terbatas 1240!)
   - Content (breadcrumb, H1, paragraf) di DALAM .container MAX-WIDTH 1240px
   - Container di dalam page-header punya PADDING KONSISTEN: T 56px, H 24px KIRI/KANAN, B 48px
   = JAUH LEBIH BAIK, TIDAK ADA PUTIH KOSONG DI LUAR BACKGROUND! = */
.page-header {
  background:
    radial-gradient(circle at 92% 18%, rgba(251, 188, 5, .08), transparent 48%),
    #fff;
  padding: 0;                      /* OUTER TIDAK USAH PADDING (sudah container didalam!) */
  margin: 0 0 32px;                /* jarak bawah ke section berikutnya */
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  max-width: none;                 /* ⭐⭐ background FULLWIDTH, TIDAK MAX 1240! */
  box-sizing: border-box;
  border-radius: 0;                /* ⭐ TIDAK USAH RADIUS (full edge-to-edge) */
  box-shadow: none;                /* hilangin shadow outer (udah background natural) */
}
.page-header::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(66, 133, 244, .08), transparent 68%);
  border-radius: 50%;
  pointer-events: none;
}
.page-header::after { display: none; }
/* ⭐⭐ PADDING SEBENARNYA ADA DI DALAM .container (sesuai pola standard) */
.page-header .container {
  position: relative;
  z-index: 1;
  padding: 56px 24px 48px !important;   /* atas 56, kiri/kanan 24 (KONSISTEN), bawah 48 */
  max-width: 1240px;
  margin: 0 auto;
  box-sizing: border-box;
}
.page-header h1 {
  margin: 0 0 12px;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -1.3px;
  line-height: 1.1;
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.page-header p { margin: 0; color: var(--text-2); font-size: 16px; line-height: 1.75; max-width: 760px; }
.breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
  font-size: 13.5px;
  color: var(--muted);
  font-weight: 500;
}
.breadcrumb a { color: var(--primary); }
.breadcrumb span { color: var(--muted); }
.breadcrumb .sep { color: #cbd5e1; }

/* Mobile < 768px: PADDING container 44 / 20 / 40 */
@media (max-width: 768px){
  .page-header{ margin-bottom: 26px; }
  .page-header .container {
    padding: 44px 20px 40px !important;
  }
  .page-header h1{ font-size: 32px; letter-spacing: -.8px; }
  .breadcrumb { margin-bottom: 14px; }
}
/* Mobile kecil < 520px: PADDING 36 / 18 / 32 */
@media (max-width: 520px){
  .page-header{ margin-bottom: 20px; }
  .page-header .container {
    padding: 36px 18px 32px !important;
  }
  .page-header h1{ font-size: 26px; letter-spacing: -.4px; margin-bottom: 10px; }
  .page-header p { font-size: 14.5px; line-height: 1.7; }
  .breadcrumb { margin-bottom: 12px; font-size: 12.5px; }
}

/* === INNER PAGE CONTENT LAYOUT === */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: start;
}
.card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.sidebar-card + .sidebar-card { margin-top: 20px; }
.chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 20px;
}
.chip {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 7px 13px;
  border-radius: 999px;
  background: var(--primary-50);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: .2s;
  text-decoration: none;
}
.chip:hover, .chip.active {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(220, 38, 38, .3);
}
.list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}

/* === CARD USHA LISTING === */
.listing-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: .3s cubic-bezier(.4, 0, .2, 1);
  display: flex; flex-direction: column;
  position: relative;
}
.listing-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(66, 133, 244, .05));
  opacity: 0;
  transition: .3s;
  pointer-events: none;
}
.listing-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-100);
  box-shadow: var(--shadow-lg);
}
.listing-card:hover::before { opacity: 1; }
.listing-img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-2);
}
.listing-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: .5s;
}
.listing-card:hover .listing-img img { transform: scale(1.08); }
.listing-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 5px 10px;
  background: rgba(220, 38, 38, .95);
  color: #fff;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  backdrop-filter: blur(6px);
}
.listing-heart {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,.95);
  color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
  cursor: pointer;
  transition: .2s;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(15, 23, 42, .1);
}
.listing-heart:hover { transform: scale(1.15); background: var(--primary); color: #fff; }
.listing-body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.listing-body h4 { margin: 0; font-size: 15.5px; font-weight: 800; color: var(--text); transition: .2s; }
.listing-card:hover .listing-body h4 { color: var(--primary); }
.listing-meta {
  display: flex; flex-wrap: wrap; gap: 10px;
  font-size: 12.5px; color: var(--muted);
}
.listing-meta span { display: inline-flex; align-items: center; gap: 5px; }
.listing-meta i { color: var(--primary); font-size: 11px; }
.listing-desc {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.listing-foot {
  margin-top: auto;
  padding-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px dashed var(--line);
}
.listing-rating { display: inline-flex; align-items: center; gap: 4px; color: var(--g-yellow); font-weight: 700; font-size: 13px; }
.listing-rating i { font-size: 12px; }
.listing-btn {
  font-size: 12.5px;
  padding: 6px 12px;
  background: var(--primary-50);
  color: var(--primary);
  border-radius: 10px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: .2s;
}
.listing-btn:hover { background: var(--primary); color: #fff; transform: translateX(3px); }

/* === SIDEBAR === */
.sidebar-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.sidebar-card h3 {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 800;
  padding-bottom: 12px;
  border-bottom: 1.5px solid var(--line);
  display: flex; align-items: center; gap: 8px;
  color: var(--text);
}
.sidebar-card h3 i {
  color: var(--primary);
  background: var(--primary-50);
  width: 30px; height: 30px;
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px;
}
.sidebar-links { display: flex; flex-direction: column; gap: 6px; }
.sidebar-links a {
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 13.5px;
  color: var(--text-2);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  transition: .2s;
}
.sidebar-links a:hover {
  background: var(--primary-50);
  color: var(--primary);
  padding-left: 16px;
}
.sidebar-links a span {
  background: var(--bg-2);
  padding: 2px 9px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--muted);
  transition: .2s;
}
.sidebar-links a:hover span { background: var(--primary); color: #fff; }
.promo-box {
  padding: 22px;
  border-radius: 14px;
  background: var(--g-red);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.promo-box::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(255,255,255,.18), transparent 65%);
  border-radius: 50%;
}
.promo-box h4 { margin: 0 0 6px; font-size: 17px; font-weight: 800; }
.promo-box p { margin: 0 0 14px; font-size: 13px; opacity: .95; line-height: 1.55; }
.promo-box .btn {
  display: inline-flex;
  padding: 9px 16px;
  background: #fff;
  color: var(--g-red);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  transition: .2s;
  align-items: center;
  gap: 5px;
  position: relative;
  z-index: 1;
}
.promo-box .btn:hover { transform: translateX(4px); box-shadow: 0 8px 18px rgba(0,0,0,.2); }

/* === AUTH === */
.auth-wrap {
  min-height: calc(100vh - 140px);
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 90% 0%, rgba(251, 188, 5, .06), transparent 45%),
    var(--bg-2);
}
.auth-card {
  background: #fff;
  border-radius: 22px;
  padding: 32px 30px;
  width: 100%;
  max-width: 440px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.auth-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--primary);
}
.auth-card h2 { margin: 0 0 6px; font-size: 26px; font-weight: 900; letter-spacing: -.5px; }
.auth-card p.muted { margin: 0 0 22px; color: var(--muted); font-size: 14.5px; }
.form-group { margin-bottom: 15px; }
.form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-2);
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 11px;
  border: 1.5px solid var(--line);
  font-family: inherit;
  font-size: 14px;
  transition: .2s;
  background: #fff;
  color: var(--text);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: 0;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(66,133,244,.12);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* === PASSWORD TOGGLE === */
.pwd-toggle {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  background: transparent;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: .2s;
  z-index: 2;
}
.pwd-toggle:hover {
  background: var(--primary-50);
  color: var(--primary);
}
.pwd-toggle:active { transform: translateY(-50%) scale(.92); }
.pwd-toggle .icon-eye { font-size: 15px; }
.pwd-toggle.active { color: var(--primary); }

/* === AD BANNERS === */
/* LATAR BELAKANG banner tetap bisa fullwidth ke pojok (gradien / image full),
   TAPI KONTEN NYA (teks + CTA) SELALU terikat max-width 1240px + padding 24px,
   agar banner TIDAK PERNAH MENTOK ke pojok layar. */
.ad-banner {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,.1);
  transition: transform .2s, box-shadow .2s;
  position: relative;
  margin: 18px auto;              /* tengah di parent */
  max-width: 100%;                /* parent ada padding, banner tidak melampaui */
  box-sizing: border-box;
}
.ad-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0,0,0,.14);
}
/* INNER CONTAINER = WAJIB MAX 1240PX + PADDING HORIZONTAL (KONSISTEN 24px kayak .container) */
.ad-banner .ad-banner-inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;        /* ⭐ 24px KONSISTEN DENGAN .container */
  box-sizing: border-box;
  display: block;
}
.ad-banner-link {
  display: flex;
  align-items: center;
  gap: 16px;             /* ⭐ gap normal 16px */
  padding: 16px 0;       /* ⭐ padding vertikal saja (horizontal di inner) */
  text-decoration: none;
  color: inherit;
  width: 100%;
  box-sizing: border-box;
  min-height: 64px;
}
.ad-banner-link .ad-banner-texts { flex: 1; min-width: 0; }
.ad-banner-link .ad-banner-texts .ad-title {
  font-weight: 900;
  font-size: 17px;
  letter-spacing: .3px;
  margin: 0 0 3px;
  color: inherit;
  line-height: 1.3;
}
.ad-banner-link .ad-banner-texts .ad-text {
  opacity: .95;
  font-size: 13.5px;
  line-height: 1.45;
  color: inherit;
  margin: 0;
}
.ad-banner .ad-cta {
  background: rgba(255,255,255,.95);
  color: var(--g-red);
  padding: 8px 16px;
  border-radius: 9px;
  font-weight: 800;
  font-size: 13px;
  white-space: nowrap;
  box-shadow: 0 3px 8px rgba(0,0,0,.15);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.ad-banner .ad-cta i { font-size: 11px; }

/* === OLD BANNER WRAPPER BACKWARD COMPATIBILITY (jika ada banner pake direct a tanpa class baru) === */
.ad-banner > a { display: flex; min-height: 64px; }
.ad-banner.banner-sidebar { margin: 0 0 16px; }
.ad-banner.banner-sidebar > a,
.ad-banner.banner-sidebar .ad-banner-link { flex-direction: column; gap: 10px; padding: 18px 18px !important; align-items: flex-start; }
.ad-banner.banner-sidebar .ad-cta { margin-top: 4px; align-self: flex-start; }
.ad-banner.banner-listing_tengah { margin: 10px auto; border-radius: 12px; }
.ad-banner.banner-listing_tengah > a,
.ad-banner.banner-listing_tengah .ad-banner-link { min-height: 56px; padding: 12px 16px !important; }
.ad-banner.banner-hero_bawah {
  margin: 0 auto 30px;
  border-radius: 16px;
}
.ad-banner.banner-hero_bawah > a,
.ad-banner.banner-hero_bawah .ad-banner-link { min-height: 78px; }
/* Mobile < 640px: padding horizontal 20px (KONSISTEN mobile small layout), cta fullwidth, flex wrap */
@media (max-width: 640px) {
  .ad-banner .ad-banner-inner { padding: 0 20px; }    /* ⭐ sama kek page-header .container mobile */
  .ad-banner > a,
  .ad-banner-link { flex-wrap: wrap; gap: 12px !important; padding: 14px 0 !important; min-height: auto; }
  .ad-banner .ad-cta { width: 100%; text-align: center; justify-content: center; }
  .ad-banner-link .ad-banner-texts .ad-title { font-size: 15.5px !important; }
}
@media (max-width: 520px) {
  .ad-banner-link { gap: 12px !important; padding: 12px 0 !important; }
}

.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  margin-bottom: 18px;
}
.form-actions label { font-size: 13px; color: var(--text-2); font-weight: 500; display: inline-flex; align-items: center; gap: 6px; }
.form-actions a { color: var(--primary); font-weight: 600; font-size: 13px; }
.auth-card .btn-primary { width: 100%; justify-content: center; padding: 13px 20px; }
.divider-or {
  display: flex; align-items: center;
  margin: 20px 0;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 500;
  gap: 10px;
}
.divider-or::before, .divider-or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}
.social-buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.social-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px;
  border-radius: 11px;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--text);
  font-weight: 600;
  font-size: 13.5px;
  transition: .2s;
  cursor: pointer;
  font-family: inherit;
}
.social-btn:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: var(--shadow-md);
}
.social-btn.google:hover { background: #fff8f8; }
.social-btn.facebook:hover { background: #f0f7ff; }
.auth-footer {
  text-align: center;
  margin-top: 18px;
  font-size: 14px;
  color: var(--muted);
}
.auth-footer a { color: var(--primary); font-weight: 700; }

.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  margin-bottom: 18px;
}
.form-actions label { font-size: 13px; color: var(--text-2); font-weight: 500; display: inline-flex; align-items: center; gap: 6px; }
.form-actions a { color: var(--primary); font-weight: 600; font-size: 13px; }
.auth-card .btn-primary { width: 100%; justify-content: center; padding: 13px 20px; }

/* === END: AUTH / FORM-ACTIONS === */

/* ====================================================== */
/* === MODERN DIRECTORY LISTING CARDS (LS = LISTING)  === */
/* ====================================================== */

/* ---- Listing Grids ---- */
.grid-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}
.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}
@media (min-width: 1200px) {
  .grid-list { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 22px; }
  .grid-cards-news { grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); }
}

/* ---- Base Card ---- */
.ls-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 2px 10px rgba(15,23,42,.04);
  transition: transform .32s cubic-bezier(.16,.84,.44,1), box-shadow .32s ease, border-color .25s ease;
  will-change: transform;
  display: flex;
  flex-direction: column;
  isolation: isolate;
}
.ls-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-100);
  box-shadow: 0 4px 8px 3px rgba(60, 64, 67, .12), 0 1px 3px rgba(66, 133, 244, .1);
  z-index: 5;
}
/* Premium / highlight special border glow (KEEP GRADIENT - special place) */
.ls-card.ls-premium {
  border: 1.5px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--grad-rainbow) border-box;
}
.ls-card.ls-premium:hover {
  box-shadow: 0 4px 8px 3px rgba(66, 133, 244, .18), 0 1px 3px rgba(234, 67, 53, .12);
}
.ls-card.ls-highlight {
  border: 1.5px solid var(--g-yellow-100);
  background: var(--g-yellow-50);
}
.ls-card.ls-highlight:hover {
  box-shadow: 0 4px 8px 3px rgba(251, 188, 5, .2), 0 1px 3px rgba(251, 188, 5, .1);
}
/* Ribbon Premium / Highlight (SOLID GOOGLE COLORS, NO GRADIENT) */
.ls-ribbon {
  position: absolute;
  top: 16px; left: -36px;
  z-index: 6;
  background: var(--g-red);
  color: #fff;
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: 1px;
  padding: 6px 38px;
  transform: rotate(-45deg);
  box-shadow: 0 4px 10px rgba(234, 67, 53, .28);
}
.ls-ribbon.ls-ribbon-yellow {
  background: var(--g-yellow);
  color: #713f12;
  box-shadow: 0 4px 10px rgba(251, 188, 5, .3);
}

/* ---- Media / Image Area ---- */
.ls-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #e2e8f0, #cbd5e1) center/cover no-repeat #f1f5f9;
  display: block;
  text-decoration: none;
  overflow: hidden;
}
.ls-media::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,.18) 0%, rgba(15,23,42,0) 45%, rgba(15,23,42,.05) 100%);
  z-index: 1;
  pointer-events: none;
  transition: .35s;
}
.ls-card:hover .ls-media::before {
  background: linear-gradient(180deg, rgba(15,23,42,.35) 0%, rgba(15,23,42,.15) 55%, rgba(15,23,42,.45) 100%);
}
.ls-media::after {
  content: '';
  position: absolute; inset: 0;
  opacity: 0;
  transform: scale(1.15);
  transition: transform .7s ease, opacity .4s ease;
}
.ls-card:hover .ls-media::after {
  transform: scale(1);
}
.ls-card:hover .ls-media { background-size: 112% auto; }

/* Top-row (pills) inside media */
.ls-toprow {
  position: absolute;
  top: 12px; left: 12px; right: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  z-index: 3;
  pointer-events: none;
}
.ls-cat-pill,
.ls-verified,
.ls-news-read {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.1;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  background: rgba(15,23,42,.58);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 3px 8px rgba(0,0,0,.18);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 72%;
}
.ls-cat-pill i { font-size: 9.5px; opacity: .9; }
.ls-verified {
  background: rgba(22,163,74,.86);
  border-color: rgba(134,239,172,.5);
  max-width: none;
}
.ls-verified i { color: var(--secondary-100); }

/* Rating pill bottom-media (usaha cards) */
.ls-rating-pill {
  position: absolute;
  bottom: 12px; left: 12px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px 6px 10px;
  background: #fff;
  color: #0f172a;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  z-index: 3;
  box-shadow: 0 10px 25px rgba(15,23,42,.22);
  border: 1px solid rgba(148,163,184,.25);
  max-width: calc(100% - 24px);
}
.ls-rating-pill strong {
  font-size: 14px;
  font-weight: 900;
  color: #0f172a;
  padding: 1px 7px 1px 4px;
  border-right: 1px solid #e2e8f0;
}
.ls-rating-pill .ls-stars {
  display: inline-flex; align-items: center;
  gap: 1px;
  font-size: 10.5px;
  color: var(--g-yellow);
  padding-right: 2px;
}
.ls-rating-pill .ls-stars i.fa-regular { color: #cbd5e1; }
.ls-rating-pill small {
  font-weight: 600;
  color: #64748b;
  font-size: 11px;
  padding-left: 4px;
  border-left: 1px solid #e2e8f0;
}
.ls-shimmer {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(148,163,184,0) 0%, rgba(248,250,252,.18) 50%, rgba(148,163,184,0) 100%);
  background-size: 200% 100%;
  animation: shimmer 3.6s infinite ease-in-out;
  mix-blend-mode: soft-light;
  pointer-events: none;
  z-index: 2;
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.ls-shimmer--imgreal {
  background: linear-gradient(90deg, rgba(226,232,240,0) 0%, rgba(241,245,249,.35) 50%, rgba(226,232,240,0) 100%);
  animation: shimmer 2.6s infinite ease-in-out;
  mix-blend-mode: normal;
}

/* News card specific (info.php) */
.ls-news-read {
  position: absolute;
  bottom: 10px; left: 12px; right: 12px;
  background: transparent;
  color: rgba(255,255,255,.95);
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  max-width: none;
  font-size: 11px;
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(0,0,0,.5);
}
.ls-news-read i { color: #fff !important; }
/* === MONOCHROME ICONS ENFORCEMENT - GLOBAL RESET === */
/* News category pill (info.php, artikel listing) - semua KATEGORI pakai HITAM BLUR SAMA, TIDAK WARNA WARNI */
[class*="ls-cat-"] {
  background: rgba(28,28,30,.76) !important;
  color: #fff !important;
  border: 0 !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
[class*="ls-cat-"] i { color: #fff !important; }

/* Hero mega tag (index, etc): Hapus WARNA WARNI G-red, g-yellow → MONO hitam blur SAMA SEMUA */
[class*="hm-tag-"] {
  background: rgba(28,28,30,.78) !important;
  color: #fff !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 0 !important;
}

/* Feature icon cards: HAPUS style fico-red/fico-blue dll (warna warna 4 google) → SEMUA BLUE/GRAY MONO */
[class*="fico-"],
.feature-icon,
.pi-fico-red, .pi-fico-blue, .pi-fico-yellow, .pi-fico-green {
  background: rgba(0,122,255,.10) !important;
  color: #007AFF !important;
  box-shadow: none !important;
  border: 0 !important;
  background-image: none !important;
  filter: none !important;
}
.pi-fico-yellow { color: #007AFF !important; }

/* Semua background ikon yang pakai Google color (g-red/g-yellow/g-blue/g-green) → SF blue monochrome */
.i[style*="background:var(--g-red)"],
[class*="ico"][style*="background:#ea4335"],
[class*="ico"][style*="background:#FBBC05"],
[class*="ico"][style*="background:#4285F4"],
[class*="ico"][style*="background:#34A853"],
.stat-card .ic,
.art-stat-card .ic {
  background: rgba(0,122,255,.12) !important;
  background-color: rgba(0,122,255,.12) !important;
  background-image: none !important;
  color: #007AFF !important;
  box-shadow: none !important;
}
.art-stat-card .num[style],
.art-stat-card .num[style*="#4285F4"],
.art-stat-card .num[style*="#0ea5e9"],
.art-stat-card .num[style*="#FBBC05"],
.art-stat-card .num[style*="#34A853"] {
  color: #007AFF !important;
}

/* ---- Body Area ---- */
.ls-body {
  padding: 18px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  position: relative;
}
a.ls-title {
  font-size: 17px;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: -.3px;
  color: #0f172a;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .2s;
}
a.ls-title:hover { color: var(--primary); }
a.ls-news-title {
  font-size: 16.5px;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: -.25px;
  color: #0f172a;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .2s;
}
a.ls-news-title:hover { color: var(--primary); }
.ls-meta {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 6px 14px;
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
}
.ls-meta i { color: #94a3b8; margin-right: 3px; font-size: 11.5px; }
.ls-meta > span { display: inline-flex; align-items: center; }
.ls-meta .ls-price { color: var(--g-red); font-weight: 800; }
.ls-meta .ls-price i { color: var(--g-red); }
.ls-excerpt {
  font-size: 12.8px;
  color: #64748b;
  line-height: 1.6;
  margin: 2px 0 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ls-footer {
  margin-top: auto;
  padding-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px dashed #e2e8f0;
  padding-bottom: 2px;
}
.ls-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  flex: 1;
  min-width: 0;
}
.ls-tags span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10.5px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 7px;
  background: #f8fafc;
  color: #475569;
  border: 1px solid #e2e8f0;
  line-height: 1.1;
  white-space: nowrap;
}
.ls-tags span i { font-size: 9.5px; color: #94a3b8; }
.ls-views {
  font-size: 11.5px;
  font-weight: 700;
  color: #64748b;
  display: inline-flex; align-items: center; gap: 4px;
  flex-shrink: 0;
  padding: 4px 9px;
  background: var(--g-yellow-50);
  border: 1px solid var(--g-yellow-100);
  border-radius: 8px;
}
.ls-views i { color: var(--g-yellow); font-size: 11px; }
.ls-views strong { color: #713f12; }

/* ---- News Footer (author + arrow) ---- */
.ls-news-footer { border-top-style: solid; }
.ls-author {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}
.ls-ava {
  width: 34px; height: 34px;
  border-radius: 10px;
  display: grid; place-items: center;
  font-size: 13px;
  font-weight: 900;
  color: #fff;
  background: var(--primary);
  flex-shrink: 0;
  letter-spacing: -.3px;
}
.ls-author > div { min-width: 0; }
.ls-author strong {
  display: block;
  font-size: 12.5px;
  color: #0f172a;
  font-weight: 800;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ls-author span {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; color: #64748b; font-weight: 600;
}
.ls-author span i { font-size: 10px; }
.ls-next {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--primary-50);
  color: var(--primary);
  display: grid; place-items: center;
  transition: .2s;
  text-decoration: none;
  flex-shrink: 0;
}
.ls-next:hover {
  background: var(--primary);
  color: #fff;
  transform: translateX(3px);
  box-shadow: 0 1px 2px 0 rgba(66, 133, 244, .3), 0 1px 3px 1px rgba(66, 133, 244, .15);
}

/* Mobile responsive tweaks */
@media (max-width: 540px) {
  .grid-list { grid-template-columns: 1fr; gap: 16px; }
  .grid-cards { grid-template-columns: 1fr; gap: 16px; }
  .ls-body { padding: 15px 15px 16px; }
  a.ls-title { font-size: 16px; }
  .ls-ribbon { top: 14px; left: -38px; }
}

/* === END LS-CARDS (Modern Directory UI) === */

/* === DETAIL USAHA === */
.detail-hero {
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
  position: relative;
}
.detail-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15,23,42,.75));
  pointer-events: none;
  z-index: 1;
}
.detail-hero-img {
  aspect-ratio: 16 / 7;
  width: 100%;
  overflow: hidden;
  background: var(--bg-2);
  position: relative;
}
.detail-hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.detail-hero-content {
  padding: 22px 26px 26px;
  position: relative;
  z-index: 2;
  margin-top: -100px;
  display: flex;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}
.detail-hero-thumb {
  width: 110px; height: 110px;
  border-radius: 22px;
  overflow: hidden;
  border: 4px solid #fff;
  background: #fff;
  box-shadow: var(--shadow-lg);
  flex-shrink: 0;
}
.detail-hero-thumb img { width: 100%; height: 100%; object-fit: cover; }
.detail-hero-info { flex: 1; min-width: 260px; color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,.35); padding-bottom: 6px; }
.detail-hero-info h1 { margin: 0 0 8px; font-size: 30px; font-weight: 900; letter-spacing: -.5px; line-height: 1.15; }
.detail-meta {
  display: flex; flex-wrap: wrap; gap: 14px;
  font-size: 13.5px;
  color: #f1f5f9;
  font-weight: 500;
}
.detail-meta span { display: inline-flex; align-items: center; gap: 6px; }
.detail-meta i { color: var(--primary-100); }
.detail-rating {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
}
.detail-rating i { color: #fbbf24; }
.detail-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding: 20px 26px 24px;
  border-top: 1px solid var(--line);
}
.detail-tag {
  padding: 6px 12px;
  background: var(--primary-50);
  color: var(--primary);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 5px;
}

/* === GALERI DETAIL USAHA (FOTO 2-5) === */
.galeri-detail-wrap {
  margin-top: 14px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 4px 18px rgba(15,23,42,.04);
}
.galeri-detail-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.galeri-detail-head h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.galeri-detail-grid {
  display: grid;
  gap: 12px;
}
.galeri-detail-grid.gal-col-1 { grid-template-columns: 1fr; }
.galeri-detail-grid.gal-col-2 { grid-template-columns: repeat(2, 1fr); }
.galeri-detail-grid.gal-col-3 { grid-template-columns: repeat(3, 1fr); }
.galeri-detail-grid.gal-col-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 860px) {
  .galeri-detail-grid.gal-col-4 { grid-template-columns: repeat(2, 1fr); }
  .galeri-detail-grid.gal-col-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .galeri-detail-grid.gal-col-4,
  .galeri-detail-grid.gal-col-3,
  .galeri-detail-grid.gal-col-2 { grid-template-columns: repeat(2, 1fr); }
}
.galeri-thumb {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
  transition: .25s cubic-bezier(.4,0,.2,1);
  border: 1.5px solid #e2e8f0;
  isolation: isolate;
}
.galeri-thumb:hover {
  transform: translateY(-3px);
  border-color: var(--primary-100);
  box-shadow: 0 4px 8px 3px rgba(60, 64, 67, .12), 0 1px 3px rgba(66, 133, 244, .1);
}
.galeri-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease-out;
}
.galeri-thumb:hover img { transform: scale(1.08); }
.gt-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(66, 133, 244, .7) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 10px 12px;
  opacity: 0;
  transition: opacity .25s;
  pointer-events: none;
}
.galeri-thumb:hover .gt-overlay { opacity: 1; }
.gt-overlay i {
  color: #fff;
  font-size: 13px;
  width: 28px; height: 28px;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 9px;
  display: grid; place-items: center;
  transform: translateY(6px);
  transition: transform .25s .03s;
}
.galeri-thumb:hover .gt-overlay i { transform: translateY(0); }
.detail-section {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.detail-section h3 {
  margin: 0 0 16px;
  font-size: 19px;
  font-weight: 800;
  color: var(--text);
  display: inline-flex; align-items: center; gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1.5px solid var(--line);
  width: 100%;
}
.detail-section h3 i {
  width: 34px; height: 34px;
  background: var(--primary-50);
  color: var(--primary);
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.detail-body p { margin: 0 0 12px; color: var(--text-2); line-height: 1.75; font-size: 14.5px; }
.detail-body ul { padding-left: 20px; color: var(--text-2); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.menu-item {
  padding: 14px;
  border-radius: 12px;
  background: var(--bg-2);
  transition: .2s;
  border: 1px solid transparent;
}
.menu-item:hover { background: var(--primary-50); border-color: var(--primary-100); transform: translateY(-2px); }
.menu-item h5 { margin: 0 0 4px; font-size: 14.5px; font-weight: 700; color: var(--text); }
.menu-item .harga { color: var(--primary); font-weight: 800; font-size: 15px; }
.info-box {
  display: flex; flex-direction: column; gap: 2px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 6px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, .04);
}
.info-box-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  background: transparent;
  transition: .22s ease;
  position: relative;
  border-bottom: 1px dashed #f1f5f9;
}
.info-box-item:last-child { border-bottom: 0; }
.info-box-item:hover {
  background: var(--bg-2);
  transform: translateX(3px);
}
/* ⭐ HANYA icon ANAK LANGSUNG (.info-box-item > i) = icon BESAR di tiap row (WARNA GOOGLE 4 RESMI) */
.info-box-item > i {
  width: 42px; height: 42px;
  min-width: 42px; min-height: 42px;
  background: var(--primary);
  color: #fff;
  border-radius: 12px;
  display: inline-flex;
  align-items: center !important;
  justify-content: center !important;
  align-content: center;
  font-size: 16px;
  line-height: 1 !important;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translateZ(0);
  flex-shrink: 0;
  transition: .3s cubic-bezier(.4, 0, .2, 1);
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .15), 0 1px 3px 1px rgba(60, 64, 67, .08);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}
.info-box-item > i::before {
  line-height: 1 !important;
  display: inline-block !important;
  vertical-align: middle !important;
  font-size: inherit !important;
}
.info-box-item:hover > i {
  transform: rotate(-8deg) scale(1.12) translateY(-2px);
  box-shadow: 0 1px 2px 0 rgba(66, 133, 244, .3), 0 1px 3px 1px rgba(66, 133, 244, .15);
}

/* === WARNA ICON per-JENIS (direct child juga) - SEMUA MENGGUNAKAN WARNA GOOGLE 4 RESMI === */
.info-box-item.ibi-addr  > i { background: var(--g-red);       box-shadow: 0 1px 2px 0 rgba(234, 67, 53, .25), 0 1px 3px 1px rgba(234, 67, 53, .12); }
.info-box-item.ibi-clock > i { background: var(--primary);      box-shadow: 0 1px 2px 0 rgba(66, 133, 244, .25), 0 1px 3px 1px rgba(66, 133, 244, .12); }
.info-box-item.ibi-telp  > i { background: var(--primary-2);    box-shadow: 0 1px 2px 0 rgba(26, 115, 232, .25), 0 1px 3px 1px rgba(26, 115, 232, .12); }
.info-box-item.ibi-wa    > i { background: var(--secondary);    box-shadow: 0 1px 2px 0 rgba(52, 168, 83, .25), 0 1px 3px 1px rgba(52, 168, 83, .12); }
.info-box-item.ibi-mail  > i { background: var(--g-red);        box-shadow: 0 1px 2px 0 rgba(234, 67, 53, .25), 0 1px 3px 1px rgba(234, 67, 53, .12); }
.info-box-item.ibi-web   > i { background: var(--g-yellow);  color: #713f12;  box-shadow: 0 1px 2px 0 rgba(251, 188, 5, .25), 0 1px 3px 1px rgba(251, 188, 5, .12); }
.info-box-item.ibi-sosmed > i { background: var(--primary);   box-shadow: 0 1px 2px 0 rgba(66, 133, 244, .25), 0 1px 3px 1px rgba(66, 133, 244, .12); }

/* ⭐ RESET ICON NESTED KECIL di dalam text (panah link, icon badge sosmed) JANGAN di-apply style 42px */
.info-box-item span i,
.info-box-item a i,
.info-box-item small i,
.info-box-item label i,
.info-box-item div:not([class]) > i:not([class^="fa-"]):not([class*=" fa-"]) {
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  display: inline !important;
  line-height: inherit !important;
  font-weight: inherit !important;
  font-size: inherit !important;
  color: inherit !important;
  position: static !important;
  overflow: visible !important;
  flex-shrink: inherit !important;
  transform: none !important;
  transition: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.info-box-item span i::before,
.info-box-item a i::before {
  line-height: inherit !important;
  font-size: inherit !important;
}

.info-box-item strong { display: block; font-size: 12.5px; font-weight: 800; color: #94a3b8; margin-bottom: 3px; letter-spacing: .3px; text-transform: uppercase; }
.info-box-item span { font-size: 14.5px; color: #0f172a; line-height: 1.55; font-weight: 600; word-break: break-word; }
.info-box-item span a:hover { text-decoration: underline !important; }

/* === Fix icon di detail section: default base (bisa di-override inline style per section) === */
.detail-section h3 i {
  color: var(--primary);
  background: var(--primary-50);
  width: 34px; height: 34px;
  min-width: 34px; min-height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center; justify-content: center;
  align-content: center;
  font-size: 14px;
  line-height: 1 !important;
  font-style: normal;
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: auto;
  flex-shrink: 0;
  box-sizing: border-box;
  position: relative;
  vertical-align: middle;
}
.detail-section h3 i::before {
  line-height: 1 !important;
  display: inline-block !important;
  vertical-align: middle !important;
}
.breadcrumb .sep { color: #cbd5e1; margin: 0 2px; display: inline-flex; align-items: center; justify-content: center; }

/* === SOSMED BADGES (inside info-box) === */
.sm-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  transition: .2s;
  text-decoration: none;
  border: 1px solid transparent;
}
.sm-badge:hover { transform: translateY(-2px); }
.sm-badge i { font-size: 12.5px; width:auto !important; height:auto !important; background:transparent !important; box-shadow:none !important; color:inherit !important; border-radius:0 !important; }
.sm-badge.sm-ig { background: var(--g-red-50); color: #991b1b; border-color: var(--g-red-100); }
.sm-badge.sm-fb { background: var(--primary-50); color: var(--primary-600); border-color: var(--primary-100); }
.sm-badge.sm-tt { background: var(--bg-3); color: #0f172a; border-color: var(--line); }
.sm-badge.sm-yt { background: var(--g-red-50); color: #991b1b; border-color: var(--g-red-100); }

.sidebar-cta-list { display: flex; flex-direction: column; gap: 10px; }
.sidebar-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  transition: .25s;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
}
.sidebar-cta i { font-size: 16px; }
.sidebar-cta.wa { background: var(--secondary); color: #fff; box-shadow: 0 1px 2px 0 rgba(52, 168, 83, .3), 0 1px 3px 1px rgba(52, 168, 83, .15); }
.sidebar-cta.wa:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.sidebar-cta.tel { background: var(--primary); color: #fff; box-shadow: 0 1px 2px 0 rgba(66, 133, 244, .3), 0 1px 3px 1px rgba(66, 133, 244, .15); }
.sidebar-cta.tel:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.sidebar-cta.map { background: var(--g-yellow); color: #713f12; box-shadow: 0 1px 2px 0 rgba(251, 188, 5, .3), 0 1px 3px 1px rgba(251, 188, 5, .15); }
.sidebar-cta.map:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.sidebar-cta.share { background: #fff; border: 1.5px solid var(--line); color: var(--text); }
.sidebar-cta.share:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-3px); }
.reviews-list { display: flex; flex-direction: column; gap: 14px; }
.review-item {
  padding: 16px;
  border-radius: 14px;
  background: var(--bg-2);
  border: 1px solid var(--line);
}
.review-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.review-user { display: inline-flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--primary-50);
  border: 1.5px solid var(--primary-100);
  color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 15px;
}
.review-name strong { display: block; font-size: 14px; font-weight: 700; color: var(--text); }
.review-name span { font-size: 12px; color: var(--muted); }
.review-rating { color: var(--g-yellow); font-size: 13px; font-weight: 700; }
.review-item p { margin: 0; color: var(--text-2); font-size: 14px; line-height: 1.6; }

/* === ARTIKEL === */
.article-header {
  text-align: center;
  padding: 42px 20px 36px;
  background:
    radial-gradient(circle at 50% 0%, rgba(66, 133, 244, .08), transparent 55%),
    var(--bg-2);
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
  border-radius: 18px;
}
.article-chip {
  display: inline-flex;
  padding: 6px 12px;
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}
.article-header h1 {
  margin: 0 auto 10px;
  font-size: 36px;
  max-width: 760px;
  font-weight: 900;
  letter-spacing: -.8px;
  line-height: 1.15;
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.article-meta {
  display: inline-flex; flex-wrap: wrap; gap: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  margin-top: 6px;
}
.article-meta span { display: inline-flex; align-items: center; gap: 6px; }
.article-meta i { color: var(--primary); }
.article-img {
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 24px;
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow-lg);
}
.article-img img { width: 100%; height: 100%; object-fit: cover; }
.article-body {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--text-2);
}
.article-body > p { margin: 0 0 16px; }
.article-body h2 { font-size: 23px; font-weight: 800; color: var(--text); margin: 28px 0 14px; letter-spacing: -.3px; }
.article-body h3 { font-size: 18px; font-weight: 800; color: var(--text); margin: 22px 0 12px; }
.article-body ul, .article-body ol { padding-left: 22px; margin: 0 0 16px; }
.article-body ul li, .article-body ol li { margin-bottom: 6px; }
.article-body blockquote {
  margin: 20px 0;
  padding: 16px 20px;
  border-left: 4px solid var(--primary);
  background: var(--primary-50);
  border-radius: 0 12px 12px 0;
  color: var(--text);
  font-weight: 500;
  font-style: italic;
}
.article-body table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  margin: 18px 0;
}
.article-body th {
  background: var(--primary);
  color: #fff;
  padding: 12px 14px;
  text-align: left;
  font-weight: 700;
}
.article-body td { padding: 12px 14px; border-top: 1px solid var(--line); font-size: 14px; }
.article-body tr:nth-child(even) td { background: var(--bg-2); }
.article-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; padding-top: 20px; border-top: 1px dashed var(--line); }
.article-tags a {
  padding: 5px 11px;
  background: var(--bg-2);
  color: var(--text-2);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  transition: .2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.article-tags a::before { content: '#'; color: var(--primary); }
.article-tags a:hover { background: var(--primary); color: #fff; }
.article-tags a:hover::before { color: #fff; }
.author-box {
  margin-top: 28px;
  padding: 20px;
  border-radius: 16px;
  background: var(--primary-50);
  border: 1.5px solid var(--primary-100);
  display: flex; align-items: center; gap: 16px;
}
.author-avatar {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 1px 2px 0 rgba(66, 133, 244, .3), 0 1px 3px 1px rgba(66, 133, 244, .15);
}
.author-info strong { display: block; font-size: 16px; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.author-info span { font-size: 13.5px; color: var(--muted); line-height: 1.55; }
.share-box {
  display: flex; align-items: center; gap: 10px;
  margin-top: 22px;
  padding: 16px;
  border-radius: 14px;
  background: var(--bg-2);
  flex-wrap: wrap;
}
.share-box strong { font-size: 14px; color: var(--text); }
.share-box a {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
  transition: .2s;
  font-size: 14px;
}
.share-box a:hover { color: #fff; transform: translateY(-3px); border-color: transparent; }
.share-box a.fa-whatsapp:hover { background: var(--secondary); box-shadow: 0 1px 2px 0 rgba(52, 168, 83, .3), 0 1px 3px 1px rgba(52, 168, 83, .15); }
.share-box a.fa-facebook:hover { background: var(--primary); box-shadow: 0 1px 2px 0 rgba(66, 133, 244, .3), 0 1px 3px 1px rgba(66, 133, 244, .15); }
.share-box a.fa-twitter:hover { background: var(--primary-2); box-shadow: 0 1px 2px 0 rgba(26, 115, 232, .3), 0 1px 3px 1px rgba(26, 115, 232, .15); }
.share-box a.fa-link:hover { background: var(--primary); box-shadow: 0 1px 2px 0 rgba(66, 133, 244, .3), 0 1px 3px 1px rgba(66, 133, 244, .15); }

.newsletter {
  padding: 22px;
  border-radius: 14px;
  background: var(--g-yellow-50);
  border: 1.5px solid var(--g-yellow-100);
}
.newsletter h4 { margin: 0 0 6px; font-size: 16px; font-weight: 800; color: var(--text); }
.newsletter p { margin: 0 0 12px; font-size: 13px; color: var(--muted); line-height: 1.55; }
.newsletter input {
  width: 100%;
  padding: 11px 13px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  margin-bottom: 8px;
  font-family: inherit;
  font-size: 13.5px;
}
.newsletter input:focus { outline: 0; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(66,133,244,.12); }
.newsletter button {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 0;
  background: var(--g-red);
  color: #fff;
  font-weight: 700;
  font-size: 13.5px;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  cursor: pointer;
  transition: .2s;
  font-family: inherit;
}
.newsletter button:hover { transform: translateY(-2px); box-shadow: 0 1px 2px 0 rgba(234, 67, 53, .3), 0 1px 3px 1px rgba(234, 67, 53, .15); }
.related-list { display: flex; flex-direction: column; gap: 12px; }
.related-item {
  display: flex; gap: 12px;
  padding: 10px;
  border-radius: 12px;
  transition: .2s;
  text-decoration: none;
}
.related-item:hover { background: var(--primary-50); transform: translateX(4px); }
.related-thumb {
  width: 72px; height: 72px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}
.related-thumb img { width: 100%; height: 100%; object-fit: cover; }
.related-info { flex: 1; min-width: 0; }
.related-info span {
  font-size: 11px;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
}
.related-info h5 {
  margin: 4px 0 2px;
  font-size: 13.5px;
  color: var(--text);
  font-weight: 700;
  line-height: 1.4;
  transition: .2s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.related-item:hover .related-info h5 { color: var(--primary); }
.related-info small { font-size: 11.5px; color: var(--muted); }

/* === FORM PASANG IKLAN & KONTAK === */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}
.step-item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #fff;
  border: 1.5px solid var(--line);
  transition: .25s;
  position: relative;
}
.step-item.active {
  background: var(--primary-50);
  border-color: var(--primary-100);
  box-shadow: var(--shadow-md);
}
.step-num {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: var(--bg-2);
  color: var(--muted);
  font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: .25s;
  font-size: 14px;
}
.step-item.active .step-num {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 1px 2px 0 rgba(66, 133, 244, .3), 0 1px 3px 1px rgba(66, 133, 244, .15);
}
.step-item strong { font-size: 13.5px; font-weight: 700; color: var(--text); }
.step-item span { font-size: 12px; color: var(--muted); display: block; line-height: 1.3; }
.form-section {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px 26px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.form-section h3 {
  margin: 0 0 18px;
  font-size: 19px;
  font-weight: 800;
  color: var(--text);
  display: inline-flex; align-items: center; gap: 10px;
}
.form-section h3 i {
  width: 40px; height: 40px;
  background: var(--primary-50);
  color: var(--primary);
  border-radius: 11px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.paket-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.paket-card {
  padding: 22px 18px;
  border-radius: 16px;
  border: 2px solid var(--line);
  background: #fff;
  transition: .3s cubic-bezier(.4, 0, .2, 1);
  cursor: pointer;
  text-align: center;
  position: relative;
}
.paket-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-100);
}
.paket-card.selected {
  border-color: var(--primary);
  background: var(--primary-50);
  box-shadow: 0 0 0 5px rgba(66, 133, 244, .08), var(--shadow-lg);
  transform: translateY(-6px);
}
.paket-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  padding: 4px 14px;
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .3px;
  box-shadow: 0 1px 2px 0 rgba(66, 133, 244, .3), 0 1px 3px 1px rgba(66, 133, 244, .15);
}
.paket-icon {
  width: 64px; height: 64px;
  margin: 6px auto 12px;
  border-radius: 18px;
  background: var(--primary-50);
  color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 26px;
  transition: .3s;
}
.paket-card:hover .paket-icon, .paket-card.selected .paket-icon {
  transform: scale(1.1) rotate(-6deg);
  background: var(--primary);
  color: #fff;
  box-shadow: 0 1px 2px 0 rgba(66, 133, 244, .3), 0 1px 3px 1px rgba(66, 133, 244, .15);
}
.paket-card h4 { margin: 0 0 4px; font-size: 17px; font-weight: 800; }
.paket-card .harga {
  margin: 6px 0 14px;
  color: var(--primary);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -.5px;
}
.paket-card .harga small { font-size: 14px; font-weight: 600; color: var(--muted); }
.paket-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex; flex-direction: column;
  gap: 8px;
  text-align: left;
}
.paket-card ul li {
  font-size: 13px;
  color: var(--text-2);
  display: flex; align-items: flex-start; gap: 8px;
  line-height: 1.5;
}
.paket-card ul li i {
  color: var(--secondary-2);
  background: var(--secondary-50);
  width: 20px; height: 20px;
  border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px;
  margin-top: 2px;
  flex-shrink: 0;
}
.pilih-btn {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--text);
  font-weight: 700;
  font-size: 13.5px;
  cursor: pointer;
  transition: .2s;
  font-family: inherit;
}
.paket-card.selected .pilih-btn {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.contact-info {
  padding: 22px 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  text-align: center;
  transition: .3s cubic-bezier(.4, 0, .2, 1);
  box-shadow: var(--shadow-sm);
}
.contact-info:hover {
  transform: translateY(-6px);
  border-color: var(--primary-100);
  box-shadow: var(--shadow-lg);
  background: var(--primary-50);
}
.contact-info i {
  width: 54px; height: 54px;
  border-radius: 16px;
  background: var(--primary-50);
  color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 12px;
  transition: .3s cubic-bezier(.4, 0, .2, 1);
}
.contact-info:hover i {
  background: var(--primary);
  color: #fff;
  transform: rotate(-6deg) scale(1.1);
  box-shadow: 0 1px 2px 0 rgba(66, 133, 244, .3), 0 1px 3px 1px rgba(66, 133, 244, .15);
}
.contact-info h4 { margin: 0 0 4px; font-size: 15px; font-weight: 800; color: var(--text); }
.contact-info p { margin: 0; font-size: 13px; color: var(--muted); line-height: 1.5; }
.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}
.social-card {
  padding: 18px 14px;
  border-radius: 14px;
  color: var(--text);
  text-align: center;
  transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s, background .2s;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  background: #fff;
  border: 1.5px solid var(--line);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.social-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--brand-accent, var(--primary-50));
  opacity: 0;
  transform: scale(.7);
  border-radius: inherit;
  transition: .25s;
  z-index: -1;
}
.social-card:hover {
  transform: translateY(-6px) rotate(-1deg);
  box-shadow: 0 12px 28px rgba(15, 23, 42, .12), 0 4px 10px rgba(15,23,42,.06);
  border-color: var(--brand-color, var(--primary));
  color: var(--text);
}
.social-card:hover::before { opacity: 1; transform: scale(1); }
.social-card:hover i {
  transform: scale(1.12) rotate(-6deg);
  filter: drop-shadow(0 4px 8px var(--brand-shadow, rgba(66,133,244,.3)));
}
.social-card i {
  font-size: 28px;
  color: var(--brand-color, var(--primary));
  transition: .25s cubic-bezier(.2,.7,.2,1);
}
.social-card strong { font-size: 14px; font-weight: 800; color: var(--text); }
.social-card span { font-size: 12px; opacity: .72; color: var(--muted); }

.social-card.instagram {
  --brand-color: #E1306C;
  --brand-accent: rgba(225,48,108,.08);
  --brand-shadow: rgba(225,48,108,.28);
}
.social-card.facebook {
  --brand-color: #1877F2;
  --brand-accent: rgba(24,119,242,.08);
  --brand-shadow: rgba(24,119,242,.28);
}
.social-card.tiktok {
  --brand-color: #000;
  --brand-accent: rgba(0,0,0,.06);
  --brand-shadow: rgba(0,0,0,.25);
}
.social-card.youtube {
  --brand-color: #FF0000;
  --brand-accent: rgba(255,0,0,.08);
  --brand-shadow: rgba(255,0,0,.28);
}
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: .2s;
}
.faq-item:hover { border-color: var(--primary-100); }
.faq-item[open] { background: var(--primary-50); }
.faq-item > summary {
  list-style: none;
  padding: 16px 18px;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--text);
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary i {
  color: var(--primary);
  background: var(--primary-50);
  width: 28px; height: 28px;
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px;
  transition: .25s;
  flex-shrink: 0;
}
.faq-item[open] > summary i { transform: rotate(180deg); background: var(--primary); color: #fff; }
.faq-item p {
  padding: 0 18px 18px;
  margin: 0;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
}

/* === ANIMATIONS === */
@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -20px) scale(1.08); }
  66% { transform: translate(-15px, 15px) scale(.96); }
}
@keyframes glowPulse {
  0%, 100% { opacity: .6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes gradientMove {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}
@keyframes revealUp {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s cubic-bezier(.4, 0, .2, 1), transform .6s cubic-bezier(.4, 0, .2, 1);
  will-change: opacity, transform;
}
.reveal.show {
  opacity: 1;
  transform: translateY(0);
  animation: revealUp .6s cubic-bezier(.4, 0, .2, 1) both;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; padding: 0; }
  .hero p { margin: 0 auto 28px; }
  .search-box { margin-left: auto; margin-right: auto; text-align: left; }
  .stats { margin: 0 auto; }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .content-grid { grid-template-columns: 1fr; }
  .page-layout-grid { grid-template-columns: 1fr; gap: 24px; }
  .feature-inline-grid { grid-template-columns: repeat(2, 1fr); }
  .paket-inline-grid { grid-template-columns: 1fr; }
  .nav { display: none; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .mega-dropdown { left: auto; right: 0; transform: translateY(14px); min-width: 320px; }
  .has-dropdown:hover > .mega-dropdown,
  .has-dropdown.dd-hovered > .mega-dropdown,
  .has-dropdown.drop-open > .mega-dropdown { transform: translateY(0); }
  .mega-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .paket-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
  .topbar-left { font-size: 12px; gap: 8px; }
}
@media (max-width: 820px) {
  .section { padding: 50px 0; }
  .hero { padding: 40px 0 60px; }
  .hero h1 { font-size: 36px; }
  .section-head h2 { font-size: 24px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .feature-inline-grid { grid-template-columns: repeat(2, 1fr); }
  .page-layout-grid { grid-template-columns: 1fr; gap: 20px; }
  .search-box { flex-wrap: wrap; padding: 10px; gap: 6px; }
  .search-box input { width: 100%; order: -1; }
  .search-box .loc { border: 1.5px solid var(--line); border-radius: 10px; order: 1; }
  .search-box button { flex: 1; justify-content: center; order: 1; }
  .header-inner { padding: 12px 18px; gap: 10px; }
  .logo-img { height: 52px; max-width: 210px; }
  .header-actions .btn-outline { display: none; }
  .header-actions .btn-primary { padding: 10px 14px; font-size: 13px; }
  .btn-primary i.fa-plus { display: inline !important; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-logo-box { margin: 0 auto; }
  .form-row { grid-template-columns: 1fr; }
  .page-header h1 { font-size: 28px; }
  .article-header h1 { font-size: 26px; padding: 0; }
  .social-buttons { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .container { padding: 0 16px; }
  .topbar-inner { padding: 8px 16px; }
  .topbar-left .divider,
  .topbar-left span:nth-child(3) { display: none; }
  .hero { overflow: hidden; overflow-x: clip; }
  .hero::before { width: 280px; height: 280px; top: -80px; right: -80px; }
  .hero h1 { font-size: 28px; line-height: 1.2; }
  .hero p { font-size: 15px; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .stat { padding: 10px 12px; gap: 10px; }
  .stat-icon { width: 38px; height: 38px; font-size: 15px; border-radius: 10px; }
  .stat-text strong { font-size: 18px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cat-card { padding: 16px 14px; }
  .cat-icon { width: 48px; height: 48px; font-size: 20px; border-radius: 13px; }
  .cat-card h4 { font-size: 14px; }
  .cat-card p { display: none; }
  .section { padding: 40px 0; overflow-x: clip; }
  .page-header { overflow-x: clip; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 10px; }
  .features-grid { grid-template-columns: 1fr; gap: 14px; }
  .feature-card { padding: 16px; gap: 12px; }
  .feature-icon { width: 48px; height: 48px; font-size: 20px; border-radius: 13px; }
  .feature-inline-grid { grid-template-columns: 1fr !important; gap: 10px; }
  .page-layout-grid { grid-template-columns: 1fr !important; gap: 18px; }
  .paket-inline-grid { grid-template-columns: 1fr !important; gap: 10px; }
  .usaha-item { padding: 10px; gap: 10px; }
  .usaha-thumb { width: 52px; height: 52px; border-radius: 10px; }
  .verified-badge { font-size: 10.5px; padding: 3px 7px; }
  .detail-hero-content { padding: 18px 18px 22px; flex-direction: column; align-items: flex-start; }
  .detail-hero-thumb { width: 86px; height: 86px; border-radius: 18px; }
  .detail-hero-info h1 { font-size: 24px; }
  .detail-section { padding: 18px; }
  .detail-section h3 { font-size: 17px; }
  .menu-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .contact-info { padding: 16px 12px; }
  .contact-info i { width: 44px; height: 44px; font-size: 18px; border-radius: 13px; }
  .contact-info h4 { font-size: 13px; }
  .contact-info p { font-size: 12px; }
  .social-grid { grid-template-columns: 1fr 1fr; }
  .form-section { padding: 18px; }
  .form-section h3 { font-size: 17px; }
  .auth-card { padding: 24px 18px; border-radius: 18px; }
  .header-actions .btn-primary { display: none; }
  .hero-logo { margin-left: auto !important; margin-right: auto !important; }
  .scroll-top-btn { bottom: 16px; right: 16px; width: 44px; height: 44px; border-radius: 12px; }
  .two-col, .content-grid { overflow-x: clip; }
  .sidebar { overflow-x: clip; }
}
