/*
Theme Name: Gadai Unit Jogja
Theme URI: https://gadaiunitjogja.com/
Author: Gadai Unit Jogja
Author URI: https://gadaiunitjogja.com/
Description: Custom WordPress theme untuk Gadai Unit Jogja, fokus SEO utama pada layanan gadai mobil Jogja. Dibangun murni dengan PHP, HTML, CSS, dan JavaScript tanpa page builder — mobile-first, ringan, dan siap SEO.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: gadaiunitjogja
*/

/* ==========================================================================
   0. DESIGN TOKENS
   Palet navy premium + aksen emas (sesuai identitas logo), dipadukan
   dengan off-white hangat. Tipografi memakai dua keluarga font (Sora +
   Inter) — sengaja diminimalkan demi performa. Motif signature situs ini
   adalah kartu bersudut potong (clip corner) yang mengingatkan pada sudut
   dokumen/kartu identitas, selaras dengan layanan berbasis STNK.
   ========================================================================== */
:root {
	/* Warna — kontras dinaikkan sedikit dari versi awal supaya tidak pucat */
	--navy-950: #0A1826;
	--navy-900: #0E2138;
	--navy-800: #142C48;
	--navy-700: #1B3A5C;
	--navy-600: #234A73;
	--blue-500: #3E6FA0;
	--blue-300: #8FB0D1;
	--gold-700: #86642F;
	--gold-600: #AD8140;
	--gold-500: #C99F5C;
	--gold-300: #E7C892;
	--gold-glow: rgba(201, 159, 92, .28);
	--cream-50: #F8F6F1;
	--cream-100: #F0EADC;
	--ink-900: #15212B;
	--ink-700: #3C4750;
	--ink-500: #5F6B75;
	--line: #DFD8C7;
	--white: #FFFFFF;
	--wa-green: #25D366;
	--wa-green-dark: #1DBE5C;

	/* Tipografi */
	--font-display: 'Sora', 'Segoe UI', sans-serif;
	--font-body: 'Inter', 'Segoe UI', sans-serif;

	/* Layout */
	--container: 1220px;
	--radius-sm: 10px;
	--radius-md: 16px;
	--radius-lg: 26px;
	--corner-cut: 20px;
	--section-y: clamp(56px, 7.5vw, 116px);
	--section-gap-sm: clamp(20px, 3vw, 32px);
	--shadow-card: 0 10px 28px -14px rgba(10, 24, 38, .26);
	--shadow-lift: 0 22px 48px -18px rgba(10, 24, 38, .42);
	--shadow-gold: 0 16px 34px -14px rgba(173, 129, 64, .45);

	/* Safe-area (notch / gesture bar) fallback 0 untuk perangkat tanpa dukungan */
	--safe-b: env(safe-area-inset-bottom, 0px);
	--safe-r: env(safe-area-inset-right, 0px);
	--safe-l: env(safe-area-inset-left, 0px);
}

/* ==========================================================================
   1. RESET & BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: .001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .001ms !important;
		scroll-behavior: auto !important;
	}
}
body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--ink-900);
	background: var(--white);
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
	max-width: 100vw;
}
body.nav-is-open { overflow: hidden; }
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, figure { margin: 0; }
button { font-family: inherit; cursor: pointer; background: none; border: 0; }
input, textarea { font-family: inherit; }

:focus-visible {
	outline: 3px solid var(--gold-500);
	outline-offset: 3px;
	border-radius: 4px;
}

.container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: 20px;
}
@media (min-width: 780px) { .container { padding-inline: 32px; } }

section { position: relative; }
.section-pad { padding-block: var(--section-y); }
.alt-bg { background: var(--cream-50); }

.skip-link {
	position: absolute; left: -999px; top: 0; background: var(--navy-950); color: #fff;
	padding: 12px 20px; z-index: 9999; border-radius: 0 0 8px 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

.sr-only {
	position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden;
	clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ==========================================================================
   2. TYPOGRAPHY
   ========================================================================== */
.eyebrow {
	display: inline-flex; align-items: center; gap: 9px;
	font-family: var(--font-body);
	font-size: 12.5px;
	font-weight: 800;
	letter-spacing: .13em;
	text-transform: uppercase;
	color: var(--gold-700);
	margin-bottom: 14px;
}
.eyebrow::before {
	content: '';
	width: 26px; height: 3px; background: linear-gradient(90deg, var(--gold-600), var(--gold-300));
	display: inline-block; border-radius: 2px;
}

h1, h2, h3 { font-family: var(--font-display); color: var(--navy-950); font-weight: 700; line-height: 1.14; letter-spacing: -.015em; }
.h1 { font-size: clamp(32px, 6.4vw, 53px); font-weight: 800; }
.h2 { font-size: clamp(24px, 4vw, 36px); }
.h3 { font-size: clamp(19px, 2.8vw, 24px); }

p { color: var(--ink-700); }
strong { color: var(--navy-950); font-weight: 700; }

.section-head { max-width: 640px; margin-bottom: clamp(32px, 4.5vw, 52px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-lead { margin-top: 10px; font-size: 17px; color: var(--ink-700); }

.link-more {
	display: inline-flex; align-items: center; gap: 8px;
	font-weight: 700; color: var(--navy-800);
	border-bottom: 2px solid var(--gold-500);
	padding-bottom: 3px;
}
.link-more svg { width: 16px; height: 16px; transition: transform .2s ease; }
.link-more:hover svg { transform: translateX(3px); }

.center-cta { text-align: center; margin-top: clamp(28px, 4vw, 40px); }

/* ==========================================================================
   3. BUTTONS
   ========================================================================== */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	font-family: var(--font-body); font-weight: 700; font-size: 15.5px;
	padding: 15px 26px; border-radius: 999px;
	min-height: 50px;
	transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
	white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn:active { transform: scale(.98); }

.btn-wa { background: var(--wa-green); color: #fff; box-shadow: 0 12px 26px -10px rgba(37,211,102,.55); }
.btn-wa:hover { background: var(--wa-green-dark); }

.btn-outline {
	background: transparent; color: var(--navy-900);
	border: 1.5px solid var(--navy-900);
}
.btn-outline:hover { background: var(--navy-900); color: #fff; }

.btn-lg { padding: 17px 30px; font-size: 16.5px; }
.btn-sm { padding: 10px 16px; min-height: 40px; font-size: 14px; }
.btn-block { width: 100%; }

/* ==========================================================================
   4. HEADER / NAVIGATION
   ========================================================================== */
.site-header {
	position: sticky; top: 0; z-index: 500;
	background: var(--navy-950);
	border-bottom: 1px solid rgba(255,255,255,.08);
	transition: box-shadow .2s ease;
}
.site-header.is-scrolled { box-shadow: 0 12px 30px -18px rgba(0,0,0,.6); }

.header-inner {
	display: flex; align-items: center; justify-content: space-between;
	gap: 16px; padding-block: 12px;
}

.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.brand-text strong { font-family: var(--font-display); font-size: 16px; color: #fff; font-weight: 700; }
.brand-text span { font-size: 10.5px; letter-spacing: .08em; color: var(--gold-300); text-transform: uppercase; font-weight: 600; }

.header-actions { display: flex; align-items: center; gap: 10px; }
.header-actions .btn-wa.btn-sm .long { display: none; }
@media (min-width: 480px) { .header-actions .btn-wa.btn-sm .long { display: inline; } }

.nav-toggle {
	width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center;
	color: #fff; border-radius: var(--radius-sm);
}
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle[aria-expanded="true"] { background: rgba(255,255,255,.08); }

/* Mobile nav: full-height slide-in panel */
.main-nav {
	position: fixed; top: 0; right: -100%; height: 100dvh; width: min(320px, 86vw);
	background: var(--navy-950);
	padding: 90px 24px 32px;
	display: flex; flex-direction: column; gap: 4px;
	overflow-y: auto;
	transition: right .28s ease;
	z-index: 550;
	padding-bottom: calc(32px + var(--safe-b));
}
.main-nav.is-open { right: 0; box-shadow: -20px 0 50px rgba(0,0,0,.35); }
.main-nav a, .main-nav .submenu-toggle {
	display: flex; align-items: center; justify-content: space-between;
	color: #fff; font-weight: 600; font-size: 16px;
	padding: 13px 6px; border-bottom: 1px solid rgba(255,255,255,.08);
	width: 100%; text-align: left;
}
.main-nav .caret svg { width: 16px; height: 16px; transition: transform .2s ease; }
.main-nav .menu-item-has-children.is-open > .submenu-toggle .caret svg { transform: rotate(45deg); }
.main-nav .sub-menu {
	max-height: 0; overflow: hidden; transition: max-height .25s ease;
	padding-left: 12px;
}
.main-nav .menu-item-has-children.is-open .sub-menu { max-height: 480px; }
.main-nav .sub-menu a { font-size: 14.5px; font-weight: 500; color: var(--blue-300); border-bottom: 1px solid rgba(255,255,255,.05); }
.main-nav .nav-wa-link { color: var(--wa-green); }
.main-nav .nav-wa-link svg { width: 18px; height: 18px; }

.nav-overlay {
	position: fixed; inset: 0; background: rgba(6,15,26,.6); z-index: 540;
	opacity: 0; visibility: hidden; transition: opacity .25s ease;
}
.nav-overlay.is-visible { opacity: 1; visibility: visible; }

@media (min-width: 1024px) {
	.nav-toggle { display: none; }

	.main-nav {
		position: static; height: auto; width: auto; background: transparent;
		flex-direction: row; align-items: center; padding: 0; gap: 2px;
		overflow: visible;
	}
	.main-nav a, .main-nav .submenu-toggle {
		color: rgba(255,255,255,.85); font-size: 14.5px; font-weight: 600;
		padding: 10px 14px; border-bottom: 0; border-radius: 999px; width: auto;
		gap: 6px;
	}
	.main-nav a:hover, .main-nav .submenu-toggle:hover { color: #fff; background: rgba(255,255,255,.07); }
	.main-nav .nav-wa-link { display: none; }
	.main-nav .caret svg { width: 13px; height: 13px; }

	.main-nav .menu-item-has-children { position: relative; }
	.main-nav .sub-menu {
		position: absolute; top: calc(100% + 8px); left: 0; max-height: none;
		background: var(--white); border-radius: var(--radius-md);
		box-shadow: var(--shadow-lift); padding: 10px; width: 240px;
		opacity: 0; visibility: hidden; transform: translateY(6px);
		transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
	}
	.main-nav .menu-item-has-children.is-open .sub-menu {
		opacity: 1; visibility: visible; transform: translateY(0);
	}
	.main-nav .sub-menu a {
		color: var(--navy-800); font-size: 14px; border-radius: var(--radius-sm);
		border-bottom: 0; padding: 10px 12px;
	}
	.main-nav .sub-menu a:hover { background: var(--cream-50); color: var(--navy-950); }
}

/* ==========================================================================
   5. HERO
   Hierarki diperkuat: badge eyebrow, headline lebih tegas, CTA WhatsApp
   lebih menonjol, aksen gold pada glow latar + bingkai foto + garis
   pembatas — tetap satu foto Tugu saja, porsinya dikecilkan sedikit
   supaya tidak lebih dominan dari headline & CTA.
   ========================================================================== */
.hero {
	background: linear-gradient(160deg, var(--navy-950) 0%, var(--navy-800) 100%);
	padding-block: clamp(40px, 6.5vw, 84px);
	overflow: hidden;
	position: relative;
}
.hero::before {
	content: ''; position: absolute; pointer-events: none;
	top: -18%; right: -8%; width: 620px; height: 620px;
	background: radial-gradient(circle, var(--gold-glow) 0%, transparent 68%);
	opacity: .55;
}
.hero::after {
	content: ''; position: absolute; pointer-events: none;
	bottom: -25%; left: -10%; width: 480px; height: 480px;
	background: radial-gradient(circle, rgba(62,111,160,.25) 0%, transparent 70%);
}
.hero-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(30px, 5vw, 48px);
	align-items: center;
	position: relative; z-index: 1;
}
.hero-content .eyebrow {
	color: var(--gold-300);
	background: rgba(201,159,92,.14);
	border: 1px solid rgba(201,159,92,.3);
	padding: 7px 14px 7px 12px; border-radius: 999px;
}
.hero-content .eyebrow::before { background: linear-gradient(90deg, var(--gold-500), var(--gold-300)); }
.hero .h1 { color: #fff; text-shadow: 0 4px 26px rgba(0,0,0,.28); }
.hero-lead {
	margin-top: 18px; color: rgba(255,255,255,.82);
	font-size: clamp(15.5px, 2vw, 17.5px); max-width: 54ch;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero .btn-wa {
	box-shadow: 0 20px 42px -14px rgba(37,211,102,.6), 0 0 0 1px rgba(255,255,255,.08) inset;
}
.hero .btn-outline { color: #fff; border-color: rgba(255,255,255,.55); }
.hero .btn-outline:hover { background: #fff; color: var(--navy-950); }

.trust-chips {
	display: flex; flex-wrap: wrap; gap: 10px 18px;
	margin-top: 30px; padding-top: 22px;
	border-top: 1px solid rgba(201,159,92,.22);
}
.trust-chips li { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.88); font-size: 13.5px; font-weight: 600; }
.trust-chips svg { width: 17px; height: 17px; color: var(--gold-300); flex-shrink: 0; }

.hero-media { position: relative; }
.hero-photo {
	width: 100%; height: clamp(178px, 30vw, 220px);
	object-fit: cover; border-radius: var(--radius-lg);
	border: 3px solid rgba(201,159,92,.4);
	box-shadow: var(--shadow-lift);
}
.hero-float-card {
	position: absolute; left: 16px; bottom: -20px;
	background: #fff; border-radius: var(--radius-md);
	border-top: 3px solid var(--gold-500);
	padding: 13px 16px 12px; box-shadow: var(--shadow-lift);
	display: flex; flex-direction: column; gap: 2px;
	max-width: 220px;
}
.hero-float-num {
	display: flex; align-items: center; gap: 6px;
	font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--navy-950);
}
.hero-float-num svg { width: 18px; height: 18px; color: var(--gold-600); }
.hero-float-label { font-size: 11.5px; color: var(--ink-500); line-height: 1.4; }

@media (min-width: 861px) {
	.hero-photo { height: clamp(280px, 24vw, 360px); }
}
@media (min-width: 1024px) {
	.hero-grid { grid-template-columns: 1.18fr .82fr; }
	.hero-media { margin-top: 0; }
}

/* ==========================================================================
   6. TRUST BAR (band di bawah hero)
   ========================================================================== */
.trust-bar-section { background: var(--cream-100); border-bottom: 1px solid var(--line); }
.trust-bar {
	display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
	padding-block: 20px;
}
.trust-bar li {
	display: flex; align-items: center; gap: 10px;
	font-size: 13px; font-weight: 700; color: var(--navy-800);
}
.trust-bar-icon {
	width: 34px; height: 34px; border-radius: 50%; background: var(--white);
	display: inline-flex; align-items: center; justify-content: center;
	color: var(--gold-600); flex-shrink: 0; box-shadow: var(--shadow-card);
}
.trust-bar-icon svg { width: 17px; height: 17px; }
@media (min-width: 660px) { .trust-bar { grid-template-columns: repeat(5, auto); justify-content: space-between; } }

/* ==========================================================================
   7. SCROLL REVEAL
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ==========================================================================
   8. GADAI MOBIL — SECTION UTAMA (layanan paling menonjol di situs ini)
   ========================================================================== */
#gadai-mobil { position: relative; overflow: hidden; }
#gadai-mobil::before {
	content: ''; position: absolute; pointer-events: none;
	top: -12%; right: -6%; width: 460px; height: 460px;
	background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
	opacity: .5;
}
.mobil-showcase { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: start; position: relative; z-index: 1; }
.mobil-showcase-text p { margin-top: 14px; font-size: 15.5px; }
.mobil-showcase-text .link-more { margin-top: 18px; }

.mobil-showcase-card {
	background: var(--navy-950);
	border-radius: var(--radius-lg);
	border-top: 4px solid var(--gold-500);
	padding: clamp(26px, 4vw, 36px);
	position: relative;
	clip-path: polygon(0 0, calc(100% - var(--corner-cut)) 0, 100% var(--corner-cut), 100% 100%, 0 100%);
	box-shadow: var(--shadow-lift);
}
.mobil-showcase-card h3 { color: #fff; font-size: 18px; margin-bottom: 16px; }
.mobil-showcase-card .btn-wa { margin-top: 22px; box-shadow: 0 18px 38px -14px rgba(37,211,102,.55); }

.check-list li { display: flex; align-items: flex-start; gap: 10px; padding-block: 8px; font-size: 14.5px; }
.check-list li:not(:last-child) { border-bottom: 1px dashed rgba(120,120,120,.2); }
.check-list svg { width: 19px; height: 19px; color: var(--gold-600); flex-shrink: 0; margin-top: 1px; }
.check-list span { color: var(--ink-700); }
.mobil-showcase-card .check-list li:not(:last-child) { border-bottom-color: rgba(255,255,255,.12); }
.mobil-showcase-card .check-list svg { color: var(--gold-300); }
.mobil-showcase-card .check-list span { color: rgba(255,255,255,.85); }

@media (min-width: 940px) {
	.mobil-showcase { grid-template-columns: 1.15fr .85fr; gap: 44px; }
}

/* ==========================================================================
   9. STEPS (CARA GADAI)
   ========================================================================== */
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.step-card {
	background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md);
	padding: 26px 24px; position: relative; overflow: hidden;
	transition: border-color .18s ease, box-shadow .18s ease;
}
.step-card:hover { border-color: var(--gold-500); box-shadow: var(--shadow-card); }
.step-num {
	font-family: var(--font-display); font-weight: 800; font-size: 34px;
	color: rgba(201,159,92,.16); -webkit-text-stroke: 1.5px var(--gold-500);
	display: block; margin-bottom: 8px;
}
.step-card h3 { font-size: 17px; margin-bottom: 8px; }
.step-card p { font-size: 14px; }
@media (min-width: 700px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }

/* ==========================================================================
   10. DOKUMEN & KETENTUAN
   ========================================================================== */
.docs-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.docs-card {
	background: var(--cream-50); border-radius: var(--radius-lg);
	padding: clamp(26px, 3.5vw, 36px);
	border: 1px solid var(--line);
	transition: border-color .18s ease, box-shadow .18s ease;
}
.docs-card:hover { border-color: var(--gold-500); box-shadow: var(--shadow-card); }
.docs-icon {
	width: 48px; height: 48px; border-radius: 50%; background: var(--navy-950);
	box-shadow: 0 0 0 4px rgba(201,159,92,.14);
	display: inline-flex; align-items: center; justify-content: center; color: var(--gold-300);
	margin-bottom: 18px;
}
.docs-icon svg { width: 23px; height: 23px; }
.docs-card h3 { margin-bottom: 12px; font-size: 18px; }
@media (min-width: 780px) { .docs-grid { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   11. SECURITY BANNER
   ========================================================================== */
.security-banner { background: var(--navy-950); padding-block: clamp(32px, 5vw, 48px); }
.security-banner-inner { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.security-icon {
	width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,.08);
	display: inline-flex; align-items: center; justify-content: center; color: var(--gold-300); flex-shrink: 0;
}
.security-icon svg { width: 27px; height: 27px; }
.security-banner-inner h2 { color: #fff; margin-bottom: 8px; }
.security-banner-inner p { color: rgba(255,255,255,.78); max-width: 60ch; }
@media (min-width: 700px) { .security-banner-inner { flex-direction: row; align-items: center; } }

/* ==========================================================================
   12. LAYANAN LAINNYA (SERVICE CARDS)
   Area ikon dibuat sebagai "slot visual" penuh lebar — premium tapi
   sederhana, dan secara jujur terlihat sebagai placeholder yang nanti
   mudah diganti admin dengan foto unit asli lewat wp-admin (bukan foto
   AI yang berpura-pura sebagai lokasi/unit sungguhan).
   ========================================================================== */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.service-card {
	display: flex; flex-direction: column;
	background: var(--white); border: 1px solid var(--line);
	border-radius: var(--radius-md); overflow: hidden;
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: var(--gold-500); }
.service-icon {
	width: 100%; height: 132px; flex-shrink: 0;
	background:
		radial-gradient(circle at 75% 20%, rgba(201,159,92,.22) 0%, transparent 55%),
		linear-gradient(150deg, var(--navy-900) 0%, var(--navy-700) 100%);
	display: flex; align-items: center; justify-content: center; color: var(--gold-300);
}
.service-icon svg { width: 40px; height: 40px; }
.service-card h3 { font-size: 17px; margin: 18px 22px 6px; }
.service-card p { font-size: 13.5px; margin-bottom: 14px; padding-inline: 22px; }
.service-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--navy-800); margin: 0 22px 20px; margin-top: auto; }
.service-link svg { width: 15px; height: 15px; }
@media (min-width: 620px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

/* ==========================================================================
   13. KENDARAAN TIDAK ATAS NAMA (BANNER)
   ========================================================================== */
.name-banner {
	background: linear-gradient(135deg, var(--cream-100), var(--cream-50));
	border: 1px solid var(--line); border-radius: var(--radius-lg);
	padding: clamp(24px, 4vw, 36px);
	display: flex; flex-direction: column; gap: 18px; align-items: flex-start;
}
.name-banner-icon {
	width: 52px; height: 52px; border-radius: 50%; background: var(--navy-950);
	display: inline-flex; align-items: center; justify-content: center; color: var(--gold-300); flex-shrink: 0;
}
.name-banner-icon svg { width: 25px; height: 25px; }
.name-banner-text h2 { margin-bottom: 8px; }
.name-banner-text p { max-width: 62ch; }
.name-banner .btn { flex-shrink: 0; }
@media (min-width: 860px) { .name-banner { flex-direction: row; align-items: center; } }

/* ==========================================================================
   14. LOKASI / PETA
   ========================================================================== */
.location-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.location-card {
	background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
	padding: clamp(22px, 3vw, 30px);
}
.location-list li { display: flex; align-items: flex-start; gap: 12px; padding-block: 12px; }
.location-list li:not(:last-child) { border-bottom: 1px solid var(--line); }
.location-list svg { width: 20px; height: 20px; color: var(--gold-600); flex-shrink: 0; margin-top: 2px; }
.location-list strong { display: block; font-size: 13px; margin-bottom: 2px; }
.location-list span { font-size: 14.5px; color: var(--ink-700); }
.location-note { font-size: 13.5px; margin-block: 16px; padding: 12px 14px; background: var(--cream-50); border-radius: var(--radius-sm); }
.location-map {
	border-radius: var(--radius-lg); overflow: hidden; min-height: 280px;
	border: 1px solid var(--line); box-shadow: var(--shadow-card);
}
.location-map iframe { width: 100%; height: 100%; min-height: 280px; display: block; }
@media (min-width: 860px) {
	.location-grid { grid-template-columns: 1fr 1.1fr; }
	.location-map { min-height: 360px; }
	.location-map iframe { min-height: 360px; }
}

/* ==========================================================================
   15. FAQ ACCORDION
   ========================================================================== */
.faq-list { max-width: 780px; margin-inline: auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; }
.faq-q {
	width: 100%; display: flex; align-items: center; gap: 14px;
	padding: 16px 18px; text-align: left;
}
.faq-q .num { font-family: var(--font-display); font-weight: 700; font-size: 13px; color: var(--gold-600); flex-shrink: 0; width: 22px; }
.faq-q .qtext { flex: 1; font-weight: 700; font-size: 15px; color: var(--navy-950); }
.faq-q .plus { flex-shrink: 0; color: var(--navy-800); transition: transform .2s ease; }
.faq-q .plus svg { width: 18px; height: 18px; }
.faq-item.is-open .faq-q .plus { transform: rotate(45deg); color: var(--gold-600); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-a-inner { padding: 0 18px 18px 54px; }
.faq-a-inner p { font-size: 14.5px; }

/* ==========================================================================
   16. CTA FINAL
   ========================================================================== */
.cta-final {
	background: radial-gradient(120% 140% at 15% 0%, var(--navy-800) 0%, var(--navy-950) 60%);
	padding-block: clamp(48px, 7vw, 88px);
}
.cta-final-inner { max-width: 640px; margin-inline: auto; text-align: center; }
.cta-final .eyebrow { color: var(--gold-300); justify-content: center; }
.cta-final .h2 { color: #fff; }
.cta-final-inner p { color: rgba(255,255,255,.78); margin-top: 12px; margin-bottom: 26px; }
.cta-final-note {
	display: flex; align-items: center; justify-content: center; gap: 8px;
	margin-top: 18px; font-size: 13px; color: rgba(255,255,255,.6);
}
.cta-final-note svg { width: 15px; height: 15px; }

/* ==========================================================================
   17. FOOTER
   ========================================================================== */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,.74); padding-block: clamp(40px, 6vw, 64px) 26px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand img { width: 42px; height: 42px; border-radius: 50%; }
.footer-brand strong { display: block; font-family: var(--font-display); color: #fff; font-size: 17px; }
.footer-brand span { font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-300); font-weight: 600; }
.footer-desc { font-size: 13.5px; line-height: 1.7; max-width: 40ch; }
.footer-col h4 { color: #fff; font-family: var(--font-display); font-size: 14.5px; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 13.5px; }
.footer-col a:hover { color: #fff; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; }
.footer-contact svg { width: 16px; height: 16px; color: var(--gold-300); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
	display: flex; flex-direction: column; gap: 6px;
	padding-top: 22px; font-size: 12.5px; color: rgba(255,255,255,.45);
}
@media (min-width: 780px) {
	.footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); gap: 24px; }
	.footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* ==========================================================================
   18. WHATSAPP FLOATING BUTTON
   Selalu terlihat, menghormati safe-area, tidak pernah tertutup elemen lain.
   ========================================================================== */
.wa-float {
	position: fixed;
	right: calc(18px + var(--safe-r));
	bottom: calc(18px + var(--safe-b));
	z-index: 600;
	width: 60px; height: 60px; border-radius: 50%;
	background: var(--wa-green);
	display: inline-flex; align-items: center; justify-content: center;
	box-shadow: 0 14px 30px -8px rgba(37,211,102,.65);
	transition: transform .18s ease, box-shadow .18s ease;
}
.wa-float:hover { transform: scale(1.06); box-shadow: 0 18px 38px -8px rgba(37,211,102,.78); }
.wa-float svg { width: 30px; height: 30px; color: #fff; }
.wa-float::after {
	content: ''; position: absolute; inset: -6px; border-radius: 50%;
	border: 2px solid rgba(37,211,102,.35); animation: wa-pulse 2.4s ease-out infinite;
}
@keyframes wa-pulse {
	0% { transform: scale(.9); opacity: .8; }
	100% { transform: scale(1.35); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .wa-float::after { animation: none; } }

.wa-tooltip {
	position: absolute; right: calc(100% + 12px); top: 50%; transform: translateY(-50%);
	background: var(--navy-950); color: #fff; font-size: 12.5px; font-weight: 600;
	padding: 8px 14px; border-radius: 999px; white-space: nowrap;
	opacity: 0; visibility: hidden; transition: opacity .2s ease;
	box-shadow: var(--shadow-card);
}
.wa-float:hover .wa-tooltip, .wa-float:focus-visible .wa-tooltip { opacity: 1; visibility: visible; }

@media (max-width: 480px) {
	.wa-float { width: 56px; height: 56px; right: calc(14px + var(--safe-r)); bottom: calc(14px + var(--safe-b)); }
	.wa-float svg { width: 27px; height: 27px; }
	.wa-tooltip { display: none; }
}

/* ==========================================================================
   19. PAGE HERO (halaman layanan/informasi selain homepage)
   ========================================================================== */
.page-hero { background: var(--navy-950); padding-block: 40px clamp(36px, 5vw, 56px); }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: rgba(255,255,255,.5); margin-bottom: 18px; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span[aria-current] { color: var(--gold-300); font-weight: 600; }
.page-hero .h1 { color: #fff; }
.page-hero-subhead { margin-top: 12px; color: rgba(255,255,255,.72); font-size: 15.5px; max-width: 60ch; }

/* ==========================================================================
   20. ENTRY CONTENT (konten halaman layanan)
   ========================================================================== */
.entry-content { padding-block: clamp(32px, 5vw, 52px) 12px; }
.entry-content-inner { max-width: 760px; margin-inline: auto; }
.entry-content-inner h2 { font-size: clamp(20px, 3vw, 25px); margin-top: 36px; margin-bottom: 12px; }
.entry-content-inner h2:first-child { margin-top: 0; }
.entry-content-inner h3 { font-size: 17px; margin-top: 22px; margin-bottom: 8px; color: var(--navy-800); }
.entry-content-inner p { margin-bottom: 14px; font-size: 15.5px; }
.entry-content-inner ul { margin-bottom: 14px; padding-left: 4px; }
.entry-content-inner li {
	position: relative; padding-left: 24px; margin-bottom: 9px; font-size: 15px; color: var(--ink-700);
}
.entry-content-inner li::before {
	content: ''; position: absolute; left: 2px; top: 9px;
	width: 7px; height: 7px; border-radius: 50%; background: var(--gold-500);
}
.entry-content-inner a { color: var(--navy-800); font-weight: 700; text-decoration: underline; text-decoration-color: var(--gold-500); text-underline-offset: 3px; }
.entry-content-inner a:hover { color: var(--gold-700); }
.entry-thumb { margin-bottom: 24px; border-radius: var(--radius-lg); overflow: hidden; }

.page-cta-inline { display: flex; justify-content: center; padding-bottom: clamp(28px, 4vw, 44px); }

/* ==========================================================================
   21. RELATED LINKS
   ========================================================================== */
.related-section { border-top: 1px solid var(--line); }
.related-links { display: grid; grid-template-columns: 1fr; gap: 12px; }
.related-link {
	display: flex; align-items: center; justify-content: space-between; gap: 10px;
	background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md);
	padding: 16px 18px; font-weight: 700; color: var(--navy-900); font-size: 14.5px;
	transition: border-color .15s ease, transform .15s ease;
}
.related-link:hover { border-color: var(--gold-500); transform: translateX(2px); }
.related-link svg { width: 16px; height: 16px; color: var(--gold-600); flex-shrink: 0; }
@media (min-width: 700px) { .related-links { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   22. BLOG GRID / SEARCH (index.php)
   ========================================================================== */
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.blog-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 22px; }
.blog-card h2 { font-size: 18px; margin-bottom: 8px; }
.blog-card .meta { font-size: 12.5px; color: var(--ink-500); margin-bottom: 10px; }
.blog-card p { font-size: 14px; margin-bottom: 12px; }
@media (min-width: 700px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

/* ==========================================================================
   23. 404
   ========================================================================== */
.not-found { text-align: center; max-width: 620px; margin-inline: auto; }
.not-found .code {
	display: inline-block; font-family: var(--font-display); font-weight: 800; font-size: 15px;
	color: var(--gold-600); letter-spacing: .12em; margin-bottom: 12px;
}
.not-found p { margin-block: 14px 26px; }
.not-found .hero-cta { justify-content: center; }
.not-found-links { margin-top: clamp(40px, 6vw, 60px); text-align: left; }
.not-found-links h2 { text-align: center; margin-bottom: 20px; }

/* ==========================================================================
   24. PENYESUAIAN LAYAR SANGAT KECIL (≈320–374px)
   Tombol dibuat selebar penuh agar teks & ikon tidak pernah terpotong,
   dan tidak pernah memicu horizontal scroll pada perangkat tersempit.
   ========================================================================== */
@media (max-width: 374px) {
	.hero-cta, .not-found .hero-cta { flex-direction: column; align-items: stretch; }
	.hero-cta .btn, .not-found .hero-cta .btn { width: 100%; }
	.btn-lg { padding: 15px 20px; font-size: 15px; }
	.h1 { font-size: 27px; }
}

/* Kartu "Layanan Terkait" & CTA di halaman layanan tetap penuh di mobile kecil */
@media (max-width: 480px) {
	.page-cta-inline .btn { width: 100%; }
	.mobil-showcase-card .btn-wa { width: 100%; }
}

/* ==========================================================================
   25. UTILITAS UMUM
   ========================================================================== */
::selection { background: var(--gold-300); color: var(--navy-950); }

/* Pastikan iframe peta tidak pernah menyebabkan overflow horizontal */
iframe { max-width: 100%; }

/* Gambar dalam entry-content selalu rapi bila suatu saat ditambahkan admin */
.entry-content-inner img { border-radius: var(--radius-md); margin-block: 18px; }
