/* ========== BPN Template — modern govt portal style ==========
   Distinct from DUKCAPIL/PDAM/KPP/BPJS:
   - Sticky header dengan search bar
   - Full-bleed hero dengan dark overlay (bukan split layout)
   - Tab-based service section (no JS tab, but visually tabbed)
   - Process timeline horizontal 4-step
   - FAQ accordion (HTML <details>)
   - Download cards dengan file-type icon
   - Footer 4-col dengan info widget
========================================================== */

:root {
    --primary: #a16207;        /* yellow-700 — BPN warm gold */
    --primary-dark: #713f12;   /* yellow-900 — deep brown-gold */
    --primary-light: #fef3c7;  /* yellow-100 */
    --primary-glow: #fde68a;   /* yellow-200 */
    --accent: #1e293b;         /* slate-800 — formal navy */
    --accent-light: #f1f5f9;   /* slate-100 */
    --accent-soft: #64748b;    /* slate-500 */
    --notif: #facc15;          /* yellow-400 */
    --text: #0f172a;           /* slate-900 */
    --text-soft: #475569;      /* slate-600 */
    --border: #e2e8f0;         /* slate-200 */
    --bg: #ffffff;
    --bg-soft: #f8fafc;        /* slate-50 */
    --bg-section: #fefce8;     /* yellow-50 cream */
    --success: #15803d;        /* green-700 */
    --max-w: 1240px;
    --radius: 14px;
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, .08);
    --shadow-md: 0 4px 16px rgba(15, 23, 42, .08);
    --shadow-lg: 0 16px 40px rgba(15, 23, 42, .1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============= Header ============= */
.utility-bar {
    background: var(--accent);
    color: rgba(255, 255, 255, .85);
    font-size: .82rem;
    padding: .55rem 0;
}
.utility-bar .container { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.utility-bar a { color: inherit; text-decoration: none; transition: color .2s; }
.utility-bar a:hover { color: var(--primary-glow); }
.utility-info { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
.utility-info span { display: inline-flex; align-items: center; gap: .4rem; }
.utility-info svg { width: 14px; height: 14px; opacity: .8; }
.utility-social { display: flex; gap: .8rem; }
.utility-social a { display: inline-flex; width: 22px; height: 22px; align-items: center; justify-content: center; opacity: .75; transition: opacity .2s; }
.utility-social a:hover { opacity: 1; }
.utility-social svg { width: 14px; height: 14px; fill: currentColor; }

.site-header {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}
.site-header .container { display: flex; align-items: center; gap: 2rem; padding-top: 1rem; padding-bottom: 1rem; }

.brand { display: flex; align-items: center; gap: .85rem; text-decoration: none; color: var(--text); flex-shrink: 0; }
.brand-mark {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff;
    box-shadow: 0 4px 12px rgba(161, 98, 7, .25);
}
.brand-mark svg { width: 26px; height: 26px; }
.brand-text strong { display: block; font-size: 1.02rem; font-weight: 800; color: var(--text); line-height: 1.15; letter-spacing: -.01em; }
.brand-text small { display: block; font-size: .72rem; color: var(--text-soft); text-transform: uppercase; letter-spacing: .08em; margin-top: 2px; }

.main-nav { flex: 1; }
.main-nav ul { list-style: none; display: flex; gap: .2rem; align-items: center; justify-content: flex-end; flex-wrap: wrap; }
.main-nav a {
    color: var(--text-soft);
    text-decoration: none;
    font-weight: 600;
    font-size: .89rem;
    padding: .55rem .9rem;
    border-radius: 8px;
    transition: all .2s;
    position: relative;
}
.main-nav a:hover { color: var(--primary-dark); background: var(--primary-light); }
.main-nav a.active { color: var(--primary-dark); background: var(--primary-light); }
.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 50%; transform: translateX(-50%);
    width: 4px; height: 4px; border-radius: 50%;
    background: var(--primary);
}

.header-search { display: flex; align-items: center; background: var(--bg-soft); border: 1px solid var(--border); border-radius: 99px; padding: .35rem .35rem .35rem 1rem; gap: .5rem; min-width: 220px; transition: all .2s; }
.header-search:focus-within { border-color: var(--primary); background: #fff; box-shadow: 0 0 0 3px rgba(161, 98, 7, .12); }
.header-search input { border: 0; background: transparent; outline: none; font-size: .85rem; color: var(--text); width: 100%; }
.header-search button { background: var(--primary); border: 0; color: #fff; width: 32px; height: 32px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; transition: background .2s; }
.header-search button:hover { background: var(--primary-dark); }
.header-search svg { width: 16px; height: 16px; }

.mobile-toggle { display: none; background: none; border: 0; color: var(--text); padding: .5rem; cursor: pointer; }
.mobile-toggle svg { width: 24px; height: 24px; }

/* ============= Hero (full-bleed dengan overlay) ============= */
.hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
    isolation: isolate;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, .85) 0%, rgba(113, 63, 18, .8) 100%);
    z-index: -1;
}
.hero-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    z-index: -2;
}
.hero .container { padding-top: 5rem; padding-bottom: 5rem; max-width: 920px; text-align: center; }
.hero .eyebrow { display: inline-block; padding: .35rem 1rem; background: rgba(250, 204, 21, .2); border: 1px solid rgba(250, 204, 21, .5); color: #fde68a; border-radius: 99px; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 1.5rem; }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1.1; font-weight: 800; letter-spacing: -.02em; margin-bottom: 1.5rem; }
.hero h1 .accent { color: var(--notif); position: relative; display: inline-block; }
.hero p.lead { font-size: 1.1rem; color: rgba(255, 255, 255, .92); max-width: 720px; margin: 0 auto 2.5rem; line-height: 1.7; }

.hero .btn-row { display: flex; gap: .85rem; justify-content: center; flex-wrap: wrap; }

.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .85rem 1.6rem; border-radius: 10px; font-weight: 700; font-size: .92rem; text-decoration: none; transition: all .2s; cursor: pointer; border: 0; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 6px 20px rgba(161, 98, 7, .35); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 10px 28px rgba(113, 63, 18, .4); }
.btn-outline-light { background: transparent; color: #fff; border: 1.5px solid rgba(255, 255, 255, .5); }
.btn-outline-light:hover { background: rgba(255, 255, 255, .12); border-color: #fff; }
.btn-outline { background: #fff; color: var(--primary-dark); border: 1.5px solid var(--primary); }
.btn-outline:hover { background: var(--primary-light); }
.btn-dark { background: var(--accent); color: #fff; }
.btn-dark:hover { background: #0f172a; }

/* ============= Stats block (different from DUKCAPIL statistik-card) ============= */
.stat-block {
    background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.6rem;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: all .25s;
}
.stat-block:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--primary-glow); }
.stat-block .stat-icon-wrap {
    width: 52px; height: 52px;
    border-radius: 12px;
    background: var(--primary-light);
    color: var(--primary-dark);
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 1.2rem;
}
.stat-block .stat-icon-wrap svg { width: 26px; height: 26px; }
.stat-block .stat-num { font-size: 2.2rem; font-weight: 800; color: var(--text); letter-spacing: -.025em; line-height: 1; margin-bottom: .35rem; }
.stat-block .stat-label { font-size: .85rem; color: var(--text-soft); font-weight: 600; }

.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

/* ============= Generic section ============= */
section { padding: 5rem 0; }
section.alt { background: var(--bg-section); }
section.dark { background: var(--accent); color: rgba(255, 255, 255, .92); }
section.dark h2, section.dark h3 { color: #fff; }

.section-head { text-align: center; margin-bottom: 3rem; }
.section-head .eyebrow { display: inline-block; padding: .3rem .9rem; background: var(--primary-light); color: var(--primary-dark); border-radius: 99px; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 1rem; }
.section-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 800; letter-spacing: -.025em; color: var(--text); margin-bottom: .85rem; line-height: 1.2; }
.section-head p { font-size: 1.05rem; color: var(--text-soft); max-width: 720px; margin: 0 auto; }
section.dark .section-head h2 { color: #fff; }
section.dark .section-head p { color: rgba(255, 255, 255, .8); }
section.dark .section-head .eyebrow { background: rgba(250, 204, 21, .15); color: var(--notif); }

/* ============= Feature grid (services overview) ============= */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feature-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    transition: all .25s;
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--primary);
    transform: scaleX(0); transform-origin: left;
    transition: transform .3s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
    width: 56px; height: 56px;
    background: var(--primary-light);
    color: var(--primary-dark);
    border-radius: 14px;
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
}
.feature-icon svg { width: 28px; height: 28px; }
.feature-card h3 { font-size: 1.18rem; font-weight: 700; color: var(--text); margin-bottom: .6rem; line-height: 1.3; }
.feature-card p { font-size: .92rem; color: var(--text-soft); line-height: 1.65; margin-bottom: 1rem; }
.feature-link { display: inline-flex; align-items: center; gap: .35rem; color: var(--primary-dark); font-weight: 700; font-size: .88rem; text-decoration: none; }
.feature-link:hover { color: var(--primary); gap: .55rem; transition: gap .2s; }

/* ============= Process timeline ============= */
.process { position: relative; margin-top: 2rem; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; position: relative; }
.process-grid::before {
    content: '';
    position: absolute;
    top: 32px; left: 8%; right: 8%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary), var(--primary-light));
    z-index: 0;
}
.process-step { background: var(--bg); border-radius: var(--radius); padding: 1.5rem; text-align: center; border: 1px solid var(--border); position: relative; z-index: 1; }
.process-num {
    width: 64px; height: 64px;
    background: var(--bg);
    color: var(--primary-dark);
    border: 3px solid var(--primary);
    border-radius: 50%;
    font-size: 1.5rem; font-weight: 800;
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 0 0 6px var(--bg-section);
}
.process-step h4 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: .5rem; }
.process-step p { font-size: .85rem; color: var(--text-soft); line-height: 1.5; }

/* ============= Tab/pill section ============= */
.pill-section { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.pill-nav { display: flex; gap: 0; background: var(--bg-soft); border-bottom: 1px solid var(--border); overflow-x: auto; }
.pill-nav a { padding: 1rem 1.5rem; font-weight: 700; color: var(--text-soft); text-decoration: none; font-size: .9rem; white-space: nowrap; border-bottom: 3px solid transparent; transition: all .2s; }
.pill-nav a:hover, .pill-nav a.active { color: var(--primary-dark); border-bottom-color: var(--primary); background: var(--bg); }
.pill-content { padding: 2rem; }
.pill-content h3 { color: var(--primary-dark); font-size: 1.3rem; margin-bottom: 1rem; }
.pill-content + .pill-content { border-top: 1px solid var(--border); }

/* ============= Info banner / CTA section ============= */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent) 100%);
    color: #fff;
    border-radius: var(--radius);
    padding: 3rem 2.5rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
}
.cta-banner h3 { font-size: 1.7rem; color: #fff; margin-bottom: .75rem; line-height: 1.2; }
.cta-banner p { color: rgba(255, 255, 255, .88); font-size: 1rem; }
.cta-banner .cta-action { text-align: right; }

/* ============= Prose ============= */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { font-size: 1.7rem; font-weight: 800; color: var(--primary-dark); margin: 2rem 0 1rem; letter-spacing: -.02em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.18rem; font-weight: 700; color: var(--text); margin: 1.5rem 0 .75rem; }
.prose p { font-size: 1rem; color: var(--text); margin-bottom: 1rem; line-height: 1.75; }
.prose ul, .prose ol { margin: 0 0 1.25rem 1.25rem; padding: 0; }
.prose li { margin-bottom: .55rem; color: var(--text); line-height: 1.7; }
.prose ul li::marker { color: var(--primary); }
.prose ol li::marker { color: var(--primary-dark); font-weight: 700; }
.prose strong { color: var(--primary-dark); font-weight: 700; }
.prose a { color: var(--primary-dark); text-decoration: underline; text-decoration-color: var(--primary-glow); text-underline-offset: 3px; }

.info-card {
    background: var(--primary-light);
    border-left: 4px solid var(--primary);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
    color: var(--primary-dark);
}
.info-card strong { color: var(--primary-dark); }
.info-card.dark { background: var(--accent-light); border-left-color: var(--accent); color: var(--accent); }
.info-card.dark strong { color: var(--accent); }

/* ============= Table (for biaya/PNBP rates) ============= */
.table-pricing { width: 100%; border-collapse: collapse; margin: 1.5rem 0; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.table-pricing th { background: var(--accent); color: #fff; text-align: left; padding: 1rem 1.25rem; font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.table-pricing td { padding: .85rem 1.25rem; border-top: 1px solid var(--border); font-size: .94rem; }
.table-pricing tr:nth-child(even) td { background: var(--bg-soft); }
.table-pricing .price { font-weight: 700; color: var(--primary-dark); text-align: right; white-space: nowrap; }
.table-pricing .price-small { color: var(--text-soft); font-weight: 500; font-size: .82rem; }

/* ============= FAQ accordion ============= */
.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all .2s;
}
.faq-item:hover { border-color: var(--primary-glow); }
.faq-item[open] { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.faq-item summary {
    padding: 1.1rem 1.5rem;
    font-weight: 700;
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    list-style: none;
    font-size: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    margin-left: auto;
    font-size: 1.4rem;
    color: var(--primary);
    transition: transform .2s;
    font-weight: 400;
    line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-q-num { width: 28px; height: 28px; background: var(--primary-light); color: var(--primary-dark); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: .8rem; font-weight: 800; flex-shrink: 0; }
.faq-answer { padding: 0 1.5rem 1.25rem 4.25rem; color: var(--text-soft); line-height: 1.7; font-size: .95rem; }

/* ============= News cards ============= */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.news-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all .25s;
    display: flex; flex-direction: column;
}
.news-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.news-card .news-thumb { aspect-ratio: 16/10; overflow: hidden; background: var(--bg-soft); }
.news-card .news-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.news-card:hover .news-thumb img { transform: scale(1.04); }
.news-card .news-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.news-card .news-cat { display: inline-block; padding: .2rem .65rem; background: var(--primary-light); color: var(--primary-dark); font-size: .7rem; font-weight: 700; border-radius: 99px; margin-bottom: .75rem; text-transform: uppercase; letter-spacing: .05em; }
.news-card h3 { font-size: 1.1rem; font-weight: 700; line-height: 1.35; color: var(--text); margin-bottom: .55rem; }
.news-card .news-excerpt { font-size: .88rem; color: var(--text-soft); line-height: 1.6; margin-bottom: 1rem; flex: 1; }
.news-card .news-meta { font-size: .78rem; color: var(--accent-soft); margin-top: auto; display: flex; align-items: center; gap: .35rem; }
.news-card .news-meta svg { width: 14px; height: 14px; }

/* ============= Sambutan profile (alt design - centered with quote) ============= */
.sambutan-block {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 3rem;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-md);
}
.sambutan-block::before {
    content: '"';
    position: absolute;
    top: 1rem; left: 2rem;
    font-size: 6rem; line-height: 1;
    color: var(--primary-light);
    font-family: Georgia, serif;
}
.sambutan-avatar {
    width: 88px; height: 88px;
    border-radius: 50%;
    margin: 0 auto 1.25rem;
    background-size: cover; background-position: center;
    border: 4px solid var(--primary-light);
}
.sambutan-block .quote { font-size: 1.15rem; font-style: italic; color: var(--text); max-width: 720px; margin: 0 auto 1.5rem; line-height: 1.7; }
.sambutan-block .author-name { font-weight: 800; color: var(--primary-dark); font-size: 1.05rem; margin-bottom: .25rem; }
.sambutan-block .author-role { font-size: .85rem; color: var(--text-soft); }

/* ============= Form (kontak) ============= */
.contact-form .form-group { margin-bottom: 1.25rem; }
.contact-form label { display: block; font-size: .85rem; font-weight: 700; color: var(--text); margin-bottom: .4rem; }
.contact-form .form-control {
    width: 100%; padding: .75rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: .95rem;
    background: var(--bg);
    font-family: inherit;
    transition: all .2s;
}
.contact-form .form-control:focus { outline: 0; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(161, 98, 7, .12); }
.contact-form textarea.form-control { min-height: 130px; resize: vertical; }

/* ============= Download cards ============= */
.download-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.download-card {
    display: flex;
    gap: 1rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: all .2s;
    text-decoration: none;
    color: inherit;
}
.download-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); }
.download-icon {
    width: 56px; height: 56px;
    background: var(--primary-light);
    color: var(--primary-dark);
    border-radius: 10px;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.download-icon svg { width: 28px; height: 28px; }
.download-meta { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.download-name { font-weight: 700; color: var(--text); margin-bottom: .25rem; }
.download-desc { font-size: .85rem; color: var(--text-soft); line-height: 1.5; }
.download-size { font-size: .75rem; color: var(--accent-soft); margin-top: .35rem; }

/* ============= Footer ============= */
.site-footer {
    background: var(--accent);
    color: rgba(255, 255, 255, .8);
    padding: 4rem 0 2rem;
    margin-top: 5rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
}
.footer-brand-wrap { display: flex; align-items: center; gap: .85rem; margin-bottom: 1rem; }
.footer-mark { width: 42px; height: 42px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; }
.footer-mark svg { width: 22px; height: 22px; color: #fff; }
.footer-brand-text strong { display: block; color: #fff; font-size: 1rem; line-height: 1.2; }
.footer-brand-text small { font-size: .72rem; color: rgba(255, 255, 255, .55); text-transform: uppercase; letter-spacing: .08em; }
.footer-desc { font-size: .9rem; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: .6rem; }
.footer-social a { width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; background: rgba(255, 255, 255, .08); border-radius: 8px; color: rgba(255, 255, 255, .7); transition: all .2s; }
.footer-social a:hover { background: var(--primary); color: #fff; }
.footer-social svg { width: 16px; height: 16px; fill: currentColor; }

.site-footer h4 { color: #fff; font-size: .9rem; font-weight: 700; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: .08em; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .55rem; }
.site-footer a { color: rgba(255, 255, 255, .7); text-decoration: none; font-size: .9rem; transition: color .2s; }
.site-footer a:hover { color: var(--primary-glow); }

.footer-contact li { display: flex; gap: .65rem; align-items: flex-start; }
.footer-contact svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: var(--primary-glow); }

.copyright {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, .12);
    text-align: center;
    font-size: .82rem;
    color: rgba(255, 255, 255, .55);
}

/* ============= Map/lokasi widget ============= */
.map-placeholder {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--bg-soft) 100%);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 2rem;
    overflow: hidden;
    position: relative;
}
.map-placeholder svg.map-icon { width: 56px; height: 56px; color: var(--primary); margin-bottom: 1rem; }
.map-placeholder h3 { font-size: 1.2rem; color: var(--primary-dark); margin-bottom: .35rem; }
.map-placeholder p { color: var(--text-soft); font-size: .9rem; margin-bottom: 1rem; }

/* ============= Responsive ============= */
@media (max-width: 900px) {
    .stat-grid, .feature-grid, .news-grid, .process-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .cta-banner { grid-template-columns: 1fr; text-align: center; }
    .cta-banner .cta-action { text-align: center; }
    .download-grid { grid-template-columns: 1fr; }
    .process-grid::before { display: none; }
    .header-search { display: none; }
}

@media (max-width: 640px) {
    .stat-grid, .feature-grid, .news-grid, .process-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .main-nav ul { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff; padding: 1rem; box-shadow: var(--shadow-lg); border-top: 2px solid var(--primary); gap: 0; }
    .main-nav.open ul { display: flex; }
    .main-nav a { width: 100%; padding: .85rem 1rem; }
    .mobile-toggle { display: inline-flex; }
    .hero { min-height: 480px; }
    .utility-bar .container { font-size: .75rem; }
    .utility-info { gap: 1rem; }
    .sambutan-block { padding: 2rem 1.5rem; }
    .sambutan-block::before { font-size: 4rem; top: .5rem; left: 1rem; }
}
