/* =====================================================================
   Paslogistik Ekspedisi — Landing Page
   Mobile-first, mengikuti design token di custom.css
   ===================================================================== */

.lp-body {
    background: #fff;
    overflow-x: hidden;
}

/* Container */
.lp-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}
@media (min-width: 768px) {
    .lp-container { padding-left: 1.5rem; padding-right: 1.5rem; }
}

/* Helper sections */
.lp-section {
    padding: 3rem 0;
    background: #fff;
}
.lp-section--alt {
    background: var(--neutral-50);
}
@media (min-width: 768px) {
    .lp-section { padding: 4.5rem 0; }
}
.lp-section__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 2rem;
}
.lp-section__head h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--neutral-900);
    margin: 0.35rem 0 0.65rem;
    line-height: 1.2;
}

/* Heading section yang menyertakan logo brand inline (mis. "Mengapa <logo>?") */
.lp-section__head h2.lp-section__head-h2--brand {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.4rem 0.7rem;
    margin: 0.35rem auto 0.65rem;
}
.lp-section__head-prefix {
    display: inline-block;
}
.lp-section__head-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.9rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--neutral-50) 100%);
    border: 1px solid var(--neutral-100);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 14px rgba(11, 61, 145, 0.08);
}
.lp-section__brand-img {
    display: block;
    width: auto;
    height: 38px;
    max-width: 180px;
    object-fit: contain;
}
.lp-section__head-q {
    color: var(--brand-primary);
    font-weight: 800;
    font-size: 1.15em;
    line-height: 1;
}
@media (min-width: 768px) {
    .lp-section__brand-img { height: 50px; max-width: 220px; }
    .lp-section__head-brand { padding: 0.4rem 1rem; }
}
@media (max-width: 575.98px) {
    .lp-section__brand-img { height: 32px; max-width: 150px; }
    .lp-section__head-brand { padding: 0.25rem 0.7rem; gap: 0.25rem; }
    .lp-section__head h2.lp-section__head-h2--brand { gap: 0.3rem 0.5rem; }
}
.lp-section__head p {
    color: var(--neutral-500);
    margin: 0;
    font-size: 0.95rem;
}
.lp-section__eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--brand-accent);
    background: rgba(249, 115, 22, 0.1);
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
}
@media (min-width: 768px) {
    .lp-section__head h2 { font-size: 2rem; }
    .lp-section__head p { font-size: 1.05rem; }
}

.lp-empty {
    text-align: center;
    color: var(--neutral-500);
    background: var(--neutral-100);
    border-radius: var(--radius-md);
    padding: 1.25rem;
}
.lp-empty i { color: var(--brand-primary); margin-right: 0.35rem; }

/* ===================== NAVBAR ===================== */
.lp-navbar {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--neutral-100);
    z-index: 1030;
    transition: box-shadow 0.2s ease, background 0.2s ease;
}
.lp-navbar.is-scrolled {
    background: #fff;
    box-shadow: var(--shadow-md);
}
.lp-navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    height: 72px;
}
@media (max-width: 575.98px) {
    .lp-navbar__inner { height: 64px; }
}
.lp-navbar__brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    color: var(--neutral-900);
    min-width: 0;
}
.lp-navbar__brand img {
    width: 40px; height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Banner-style brand: pakai logo horizontal (logo_paslogistics.png) tanpa teks pendamping */
.lp-navbar__brand--banner {
    gap: 0;
    flex-shrink: 1;
    min-width: 0;
    padding: 4px 0;
}
.lp-navbar__brand--banner .lp-navbar__brand-img {
    display: block;
    width: auto;
    height: 52px;
    max-width: 100%;
    object-fit: contain;
    flex-shrink: 1;
}
@media (min-width: 992px) {
    .lp-navbar__brand--banner .lp-navbar__brand-img { height: 58px; }
}
@media (max-width: 575.98px) {
    .lp-navbar__brand--banner .lp-navbar__brand-img { height: 42px; }
}
.lp-navbar__brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    min-width: 0;
}
.lp-navbar__brand-name {
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--brand-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 60vw;
}
.lp-navbar__brand-tag {
    font-size: 0.72rem;
    color: var(--neutral-500);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.lp-navbar__menu {
    display: flex;
    gap: 0.25rem;
    align-items: center;
}
.lp-navbar__link {
    color: var(--neutral-700);
    text-decoration: none;
    padding: 0.55rem 0.85rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.92rem;
    transition: color 0.15s ease, background 0.15s ease;
}
.lp-navbar__link:hover, .lp-navbar__link.is-active {
    color: var(--brand-primary);
    background: rgba(11, 61, 145, 0.06);
}
.lp-navbar__actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.lp-navbar__toggle {
    width: 44px; height: 44px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--neutral-300);
    background: #fff;
    color: var(--brand-primary);
    font-size: 1.4rem;
    display: inline-flex; align-items: center; justify-content: center;
}
.lp-navbar__toggle:hover { background: var(--neutral-50); }

/* ===================== DRAWER (mobile offcanvas) ===================== */
.lp-drawer {
    --bs-offcanvas-width: 300px;
    background: var(--brand-primary-dark);
    color: #fff;
}
.lp-drawer__header {
    padding: 1rem;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.lp-drawer__brand { display: flex; align-items: center; gap: 0.75rem; color: #fff; }
.lp-drawer__brand img {
    width: 44px; height: 44px;
    object-fit: contain;
    background: #fff;
    border-radius: var(--radius-sm);
    padding: 4px;
}
.lp-drawer__body {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
    overflow-y: auto;
}
.lp-drawer__menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.lp-drawer__menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    color: rgba(255,255,255,0.92);
    text-decoration: none;
    font-weight: 500;
    min-height: 48px;
    transition: background 0.15s ease, color 0.15s ease;
}
.lp-drawer__menu a:hover, .lp-drawer__menu a:focus-visible {
    background: rgba(255,255,255,0.1);
    color: #fff;
    outline: none;
}
.lp-drawer__menu i { font-size: 1.15rem; opacity: 0.85; min-width: 22px; }
.lp-drawer__cta { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 1rem; }
.lp-drawer__cta .btn-outline-light {
    border-color: rgba(255,255,255,0.4);
    color: #fff;
}
.lp-drawer__footer {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.lp-drawer__footer a {
    color: rgba(255,255,255,0.75);
    font-size: 0.85rem;
    text-decoration: none;
    padding: 0.4rem 0;
}
.lp-drawer__footer a:hover { color: #fff; }
.lp-drawer__footer i { margin-right: 0.45rem; }

/* ===================== HERO ===================== */
.lp-hero {
    position: relative;
    color: #fff;
    overflow: hidden;
    isolation: isolate;
    padding: 3rem 0 2.5rem;
}
.lp-hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}
.lp-hero__bg img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.lp-hero__overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(135deg, rgba(11,61,145,0.92) 0%, rgba(7,42,101,0.86) 60%, rgba(7,42,101,0.65) 100%);
}
.lp-hero__inner { position: relative; z-index: 1; }

/* Hero brand mark — logo PAS LOGISTICS tampil apa adanya (transparan, tanpa frame) */
.lp-hero__brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 1.1rem;
    max-width: 100%;
}
.lp-hero__brand-mark-img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 72px;
}
@media (min-width: 768px) {
    .lp-hero__brand-mark { margin-bottom: 1.25rem; }
    .lp-hero__brand-mark-img { max-height: 88px; }
}
@media (max-width: 575.98px) {
    .lp-hero__brand-mark-img { max-height: 56px; }
}

.lp-hero__pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 500;
    backdrop-filter: blur(6px);
    margin-bottom: 1rem;
}
.lp-hero__pill i { color: var(--brand-accent); }
.lp-hero__title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 0.85rem;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.lp-hero__sub {
    font-size: 1rem;
    line-height: 1.55;
    opacity: 0.92;
    max-width: 640px;
    margin: 0 0 1.5rem;
}
@media (min-width: 768px) {
    .lp-hero { padding: 5rem 0 4rem; }
    .lp-hero__title { font-size: 3rem; }
    .lp-hero__sub { font-size: 1.1rem; }
}
@media (min-width: 992px) {
    .lp-hero { padding: 6rem 0 5rem; }
    .lp-hero__title { font-size: 3.5rem; }
}

/* Hero search */
.lp-hero__search {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 0.85rem;
    box-shadow: var(--shadow-lg);
    color: var(--neutral-900);
    margin-bottom: 1.25rem;
    max-width: 560px;
}
.lp-hero__search-row {
    display: flex;
    align-items: stretch;
    gap: 0.5rem;
    position: relative;
}
.lp-hero__search-ic {
    position: absolute;
    left: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--neutral-500);
    pointer-events: none;
    font-size: 1.1rem;
}
.lp-hero__search-input {
    flex: 1 1 auto;
    min-height: 52px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--neutral-300);
    padding-left: 2.5rem;
    font-family: var(--font-mono);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--neutral-900);
    background: var(--neutral-50);
}
.lp-hero__search-input:focus {
    outline: none;
    border-color: var(--brand-primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(11,61,145,0.15);
}
.lp-hero__search-btn {
    flex: 0 0 auto;
    min-height: 52px;
    padding: 0 1.1rem;
    font-weight: 700;
}
.lp-hero__search-hint {
    display: block;
    color: var(--neutral-500);
    font-size: 0.78rem;
    margin-top: 0.45rem;
}

/* Hero CTA */
.lp-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 0.5rem;
}
.lp-hero__cta-btn {
    min-height: 48px;
    font-weight: 600;
    padding: 0 1.25rem;
}

/* Hero card right */
.lp-hero__card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    color: #fff;
    backdrop-filter: blur(10px);
}
.lp-hero__card-head {
    display: flex; justify-content: space-between; align-items: flex-start;
    gap: 1rem; margin-bottom: 1rem;
}
.lp-hero__card-head small { display: block; opacity: 0.75; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; }
.lp-hero__card-head h3 { margin-top: 0.2rem; font-size: 1.4rem; font-weight: 700; }
.lp-hero__card-head i { font-size: 2.2rem; color: var(--brand-accent); }
.lp-hero__card-list {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 0.6rem;
}
.lp-hero__card-list li {
    display: flex; align-items: center; gap: 0.55rem;
    font-size: 0.95rem;
}
.lp-hero__card-list i { color: #16A34A; font-size: 1.1rem; }

/* ===================== STATISTIK ===================== */
.lp-stats {
    background: linear-gradient(180deg, var(--neutral-50) 0%, #fff 100%);
    padding: 2rem 0;
    margin-top: -2rem;
    position: relative;
    z-index: 2;
}
@media (min-width: 768px) {
    .lp-stats { padding: 2.5rem 0; }
}
.lp-stat {
    background: #fff;
    border: 1px solid var(--neutral-100);
    border-radius: var(--radius-md);
    padding: 1.1rem 1rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
}
.lp-stat:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.lp-stat__ic {
    width: 44px; height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(11, 61, 145, 0.1);
    color: var(--brand-primary);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}
.lp-stat__num {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--neutral-900);
    line-height: 1.1;
    font-feature-settings: "tnum";
}
.lp-stat__lbl {
    color: var(--neutral-500);
    font-size: 0.82rem;
    font-weight: 500;
    margin-top: 0.25rem;
}
@media (min-width: 768px) {
    .lp-stat { padding: 1.5rem 1.25rem; }
    .lp-stat__num { font-size: 2.1rem; }
    .lp-stat__lbl { font-size: 0.9rem; }
}
.lp-stats__since {
    color: var(--neutral-700);
    font-size: 0.92rem;
}
.lp-stats__since i { color: var(--brand-accent); margin-right: 0.2rem; }

/* ===================== LAYANAN ===================== */
.lp-service {
    background: #fff;
    border: 1px solid var(--neutral-100);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    display: flex;
    flex-direction: column;
}
.lp-service:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand-primary-light);
}
.lp-service__img { aspect-ratio: 16/9; background: var(--neutral-100); overflow: hidden; }
.lp-service__img img { width: 100%; height: 100%; object-fit: cover; }
.lp-service__body { padding: 1.25rem; flex: 1; }
.lp-service__ic {
    width: 52px; height: 52px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 0.85rem;
    box-shadow: 0 4px 12px rgba(11,61,145,0.25);
}
.lp-service__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin: 0 0 0.35rem;
}
.lp-service__desc {
    color: var(--neutral-500);
    font-size: 0.92rem;
    margin: 0;
    line-height: 1.5;
}

.lp-service-mini {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background: #fff;
    border: 1px solid var(--neutral-100);
    border-radius: var(--radius-md);
    padding: 0.85rem 1rem;
    height: 100%;
}
.lp-service-mini i {
    width: 40px; height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(249, 115, 22, 0.12);
    color: var(--brand-accent);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.lp-service-mini strong { color: var(--neutral-900); }

/* ===================== KEUNGGULAN ===================== */
.lp-feature {
    background: #fff;
    border: 1px solid var(--neutral-100);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.lp-feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.lp-feature__ic {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.12);
    color: var(--brand-accent);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}
.lp-feature__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin: 0 0 0.5rem;
}
.lp-feature__desc {
    color: var(--neutral-700);
    font-size: 0.92rem;
    margin: 0;
    line-height: 1.6;
}

.lp-list-card {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--neutral-100);
    padding: 1.5rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
}
.lp-list-card__head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--neutral-100);
}
.lp-list-card__head i {
    width: 44px; height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(11,61,145,0.1);
    color: var(--brand-primary);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
}
.lp-list-card__head h4 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--neutral-900);
}
.lp-list-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}
.lp-list-card li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    color: var(--neutral-700);
    font-size: 0.95rem;
}
.lp-list-card li i { color: #16A34A; margin-top: 3px; }
.lp-list-card--accent .lp-list-card__head i {
    background: rgba(249,115,22,0.12);
    color: var(--brand-accent);
}

/* ===================== JANGKAUAN ===================== */
.lp-region {
    background: #fff;
    border: 1px solid var(--neutral-100);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.lp-region:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.lp-region__head {
    display: flex; align-items: center; gap: 0.5rem;
    padding-bottom: 0.85rem;
    margin-bottom: 0.85rem;
    border-bottom: 1px dashed var(--neutral-300);
}
.lp-region__head i { color: var(--brand-primary); font-size: 1.15rem; }
.lp-region__head h3 { margin: 0; font-size: 1rem; font-weight: 700; color: var(--neutral-900); flex: 1; }
.lp-region__count {
    background: var(--brand-primary);
    color: #fff;
    font-weight: 700;
    font-size: 0.78rem;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
}
.lp-region ul {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column;
    gap: 0.45rem;
}
.lp-region li {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.92rem;
    color: var(--neutral-700);
}
.lp-region li i { color: var(--brand-accent); font-size: 0.85rem; }

.lp-pickup {
    background: linear-gradient(135deg, rgba(249,115,22,0.08) 0%, rgba(11,61,145,0.05) 100%);
    border: 1px dashed var(--brand-accent);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    display: flex; align-items: center; gap: 1rem;
}
.lp-pickup__ic {
    width: 52px; height: 52px;
    border-radius: var(--radius-sm);
    background: var(--brand-accent);
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}
.lp-pickup strong { color: var(--neutral-900); display: block; }

/* ===================== ARMADA ===================== */
.lp-armada {
    background: #fff;
    border: 1px solid var(--neutral-100);
    border-radius: var(--radius-md);
    padding: 1.1rem 0.85rem;
    text-align: center;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.lp-armada:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.lp-armada__ic {
    color: var(--brand-primary);
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 0.4rem;
}
.lp-armada__num {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--brand-accent);
    line-height: 1;
}
.lp-armada__name {
    font-weight: 700;
    color: var(--neutral-900);
    font-size: 0.92rem;
    margin-top: 0.35rem;
}
.lp-armada__cap {
    color: var(--neutral-500);
    font-size: 0.78rem;
    margin-top: 0.2rem;
}

.lp-armada-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}
@media (min-width: 576px) { .lp-armada-gallery { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 992px) { .lp-armada-gallery { grid-template-columns: repeat(8, 1fr); } }
.lp-armada-gallery__item {
    display: block;
    aspect-ratio: 1;
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
    background: var(--neutral-100);
}
.lp-armada-gallery__item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.3s ease;
}
.lp-armada-gallery__item:hover img { transform: scale(1.06); }
.lp-armada-gallery__item span {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 100%);
    color: #fff;
    font-size: 0.7rem;
    padding: 0.5rem 0.45rem 0.35rem;
    text-align: center;
}

/* ===================== GALERI ===================== */
.lp-gallery-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.lp-chip {
    background: #fff;
    border: 1px solid var(--neutral-300);
    color: var(--neutral-700);
    border-radius: 999px;
    padding: 0.4rem 0.95rem;
    font-size: 0.85rem;
    font-weight: 500;
    min-height: 36px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex; align-items: center; gap: 0.4rem;
}
.lp-chip:hover { border-color: var(--brand-primary); color: var(--brand-primary); }
.lp-chip.is-active {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: #fff;
}
.lp-chip__count {
    background: rgba(0,0,0,0.1);
    color: inherit;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.05rem 0.45rem;
    border-radius: 999px;
}
.lp-chip.is-active .lp-chip__count { background: rgba(255,255,255,0.25); }

.lp-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
}
@media (min-width: 576px) { .lp-gallery { grid-template-columns: repeat(3, 1fr); gap: 0.85rem; } }
@media (min-width: 992px) { .lp-gallery { grid-template-columns: repeat(4, 1fr); } }

.lp-gallery__item {
    display: block;
    aspect-ratio: 1 / 1;
    background: var(--neutral-100);
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    text-decoration: none;
    opacity: 1;
    transform: translateY(0);
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.3s ease;
    will-change: opacity, transform;
}
.lp-gallery__item.is-hidden { display: none; }
.lp-gallery__item.is-entering {
    opacity: 0;
    transform: translateY(10px);
}
.lp-gallery__item:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.lp-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}
.lp-gallery__item:hover img { transform: scale(1.07); }
.lp-gallery__cap {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.75) 100%);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 500;
    padding: 1.2rem 0.6rem 0.55rem;
}
.lp-gallery__tag {
    position: absolute;
    top: 0.5rem; right: 0.5rem;
    background: rgba(11, 61, 145, 0.92);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-sm);
}

/* ===================== TESTIMONI ===================== */
.lp-testi {
    background: #fff;
    border: 1px solid var(--neutral-100);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}
.lp-testi__rate { color: #f59e0b; font-size: 1rem; margin-bottom: 0.85rem; }
.lp-testi__rate i { margin-right: 1px; }
.lp-testi__msg {
    color: var(--neutral-700);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 1.25rem;
    flex: 1;
}
.lp-testi__user {
    display: flex; align-items: center; gap: 0.75rem;
    border-top: 1px solid var(--neutral-100);
    padding-top: 0.85rem;
}
.lp-testi__user img {
    width: 44px; height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--neutral-100);
}
.lp-testi__user strong { color: var(--neutral-900); font-size: 0.92rem; }

/* ===================== KLIEN — Overview Kategori ===================== */
.lp-klien-overview {
    /* container untuk grid kategori */
}
.lp-klien-cats {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.85rem;
}
@media (min-width: 576px) { .lp-klien-cats { grid-template-columns: repeat(2, 1fr); gap: 1rem; } }
@media (min-width: 992px) { .lp-klien-cats { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }

.lp-klien-cat {
    /* Card kategori — pakai <button> agar accessible (tap target full card). */
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    background: #fff;
    border: 1px solid var(--neutral-100);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    text-align: left;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    color: var(--neutral-700);
    width: 100%;
    font: inherit;
}
.lp-klien-cat::before {
    /* aksen strip atas — warna sesuai tone */
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--brand-primary);
    opacity: 0.85;
}
.lp-klien-cat:hover, .lp-klien-cat:focus-visible {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand-primary-light);
    outline: none;
}
.lp-klien-cat__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}
.lp-klien-cat__ic {
    width: 52px; height: 52px;
    border-radius: var(--radius-md);
    background: rgba(11, 61, 145, 0.1);
    color: var(--brand-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}
.lp-klien-cat__count {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--neutral-500);
    background: var(--neutral-100);
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    white-space: nowrap;
}
.lp-klien-cat__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--neutral-900);
    line-height: 1.2;
}
.lp-klien-cat__desc {
    font-size: 0.85rem;
    color: var(--neutral-500);
    line-height: 1.45;
}
.lp-klien-cat__strip {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.4rem;
    padding-top: 0.85rem;
    border-top: 1px dashed var(--neutral-300);
    flex-wrap: wrap;
}
.lp-klien-cat__strip-item {
    width: 38px; height: 38px;
    border-radius: var(--radius-sm);
    background: #fff;
    border: 1px solid var(--neutral-100);
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--neutral-700);
    flex-shrink: 0;
}
.lp-klien-cat__strip-item img {
    max-width: 100%; max-height: 100%;
    object-fit: contain;
    padding: 4px;
}
.lp-klien-cat__strip-more {
    background: var(--neutral-100);
    color: var(--brand-primary);
}
.lp-klien-cat__cta {
    margin-top: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--brand-primary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: gap 0.2s ease;
}
.lp-klien-cat:hover .lp-klien-cat__cta { gap: 0.65rem; }
.lp-klien-cat__cta i { transition: transform 0.2s ease; }
.lp-klien-cat:hover .lp-klien-cat__cta i { transform: translateX(2px); }

/* Tone variants — warna ikon + aksen strip atas */
.lp-klien-cat--primary::before  { background: var(--brand-primary); }
.lp-klien-cat--primary .lp-klien-cat__ic { background: rgba(11,61,145,0.1); color: var(--brand-primary); }

.lp-klien-cat--info::before     { background: #0EA5E9; }
.lp-klien-cat--info .lp-klien-cat__ic { background: rgba(14,165,233,0.1); color: #0EA5E9; }

.lp-klien-cat--success::before  { background: #16A34A; }
.lp-klien-cat--success .lp-klien-cat__ic { background: rgba(22,163,74,0.1); color: #16A34A; }

.lp-klien-cat--warning::before  { background: #F59E0B; }
.lp-klien-cat--warning .lp-klien-cat__ic { background: rgba(245,158,11,0.12); color: #B45309; }

.lp-klien-cat--accent::before   { background: var(--brand-accent); }
.lp-klien-cat--accent .lp-klien-cat__ic { background: rgba(249,115,22,0.12); color: var(--brand-accent); }

.lp-klien-cat--secondary::before { background: var(--neutral-500); }
.lp-klien-cat--secondary .lp-klien-cat__ic { background: var(--neutral-100); color: var(--neutral-700); }

/* ===================== KLIEN — Detail Mode (tabs + grid) ===================== */
.lp-klien-detail {
    animation: lpFadeUp 0.3s ease;
}
.lp-klien-detail[hidden] { display: none; }

@keyframes lpFadeUp {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.lp-klien-detail__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}
.lp-klien-detail__back {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: #fff;
    border: 1px solid var(--neutral-300);
    color: var(--neutral-700);
    border-radius: 999px;
    padding: 0.5rem 1rem;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    min-height: 40px;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.lp-klien-detail__back:hover, .lp-klien-detail__back:focus-visible {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: #fff;
    outline: none;
}
.lp-klien-detail__back i { font-size: 0.95rem; }
.lp-klien-detail__title {
    font-size: 0.85rem;
    color: var(--neutral-500);
    font-weight: 500;
}
.lp-klien-detail__title strong { color: var(--neutral-900); font-weight: 700; }

/* Tabs filter */
.lp-klien-tabs {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding: 0.25rem 0.1rem 0.5rem;
    margin: 0 -0.1rem 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}
.lp-klien-tabs::-webkit-scrollbar { height: 4px; }
.lp-klien-tabs::-webkit-scrollbar-thumb { background: var(--neutral-300); border-radius: 2px; }
.lp-klien-tabs__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: #fff;
    border: 1px solid var(--neutral-300);
    color: var(--neutral-700);
    border-radius: 999px;
    padding: 0.5rem 0.95rem;
    font-size: 0.88rem;
    font-weight: 500;
    min-height: 40px;
    cursor: pointer;
    flex-shrink: 0;
    scroll-snap-align: start;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.lp-klien-tabs__btn:hover { border-color: var(--brand-primary); color: var(--brand-primary); }
.lp-klien-tabs__btn[aria-selected="true"] {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(11,61,145,0.22);
}
.lp-klien-tabs__btn[aria-selected="true"] .lp-klien-tabs__cnt {
    background: rgba(255,255,255,0.25);
    color: #fff;
}
.lp-klien-tabs__lbl { line-height: 1; }
.lp-klien-tabs__cnt {
    font-size: 0.72rem;
    font-weight: 700;
    background: var(--neutral-100);
    color: var(--neutral-700);
    padding: 0.1rem 0.45rem;
    border-radius: 999px;
    line-height: 1.4;
}
.lp-klien-tabs__btn:hover .lp-klien-tabs__cnt {
    background: rgba(11,61,145,0.1);
    color: var(--brand-primary);
}
.lp-klien-tabs__btn[aria-selected="true"]:hover .lp-klien-tabs__cnt {
    background: rgba(255,255,255,0.25);
    color: #fff;
}

/* Detail panel header (per kelompok) */
.lp-klien-detail__head {
    margin-bottom: 1.25rem;
    padding: 1rem 1.1rem;
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid var(--neutral-100);
}
.lp-klien-detail__group {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}
.lp-klien-detail__group-ic {
    width: 48px; height: 48px;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}
/* Re-pakai tone variant — namun yang ditarget cuma background ikon */
.lp-klien-detail__group-ic.lp-klien-cat--primary::before,
.lp-klien-detail__group-ic.lp-klien-cat--info::before,
.lp-klien-detail__group-ic.lp-klien-cat--success::before,
.lp-klien-detail__group-ic.lp-klien-cat--warning::before,
.lp-klien-detail__group-ic.lp-klien-cat--accent::before,
.lp-klien-detail__group-ic.lp-klien-cat--secondary::before {
    /* Hilangkan strip atas pseudo-element yang inherit dari .lp-klien-cat--*. */
    display: none;
}
.lp-klien-detail__group h3 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--neutral-900);
    line-height: 1.2;
}
.lp-klien-detail__group small {
    color: var(--neutral-500);
    font-size: 0.82rem;
}

.lp-klien-detail__panel {
    animation: lpFadeUp 0.25s ease;
}
.lp-klien-detail__panel[hidden] { display: none; }

@media (max-width: 575.98px) {
    .lp-klien-detail__back span { display: none; }
    .lp-klien-detail__back { padding: 0.5rem 0.7rem; }
    .lp-klien-detail__back i { font-size: 1.1rem; }
    .lp-klien-detail__title { font-size: 0.8rem; flex: 1; text-align: right; }
    .lp-klien-cat { padding: 1rem; }
    .lp-klien-cat__title { font-size: 1.05rem; }
}

/* ===================== KLIEN — Grid (existing, pertahankan) ===================== */
.lp-klien-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}
@media (min-width: 576px) { .lp-klien-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .lp-klien-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; } }
@media (min-width: 1200px) { .lp-klien-grid { grid-template-columns: repeat(6, 1fr); } }

.lp-klien {
    /* Button reset (semua kartu mitra sekarang <button> agar bisa trigger modal). */
    background: #fff;
    border: 1px solid var(--neutral-100);
    border-radius: var(--radius-md);
    padding: 1rem 0.85rem;
    text-align: center;
    text-decoration: none;
    color: var(--neutral-700);
    font: inherit;
    cursor: pointer;
    width: 100%;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 130px;
    gap: 0.5rem;
}
.lp-klien:hover, .lp-klien:focus-visible {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand-primary-light);
    color: var(--brand-primary);
    outline: none;
}
.lp-klien:focus-visible {
    box-shadow: 0 0 0 3px rgba(11,61,145,0.18), var(--shadow-md);
}
.lp-klien img {
    max-width: 100%;
    max-height: 56px;
    width: auto;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
}
.lp-klien__name {
    font-size: 0.78rem;
    font-weight: 500;
    line-height: 1.25;
    color: var(--neutral-700);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Badge counter (jumlah kegiatan) di pojok kanan-atas card mitra */
.lp-klien__badge {
    position: absolute;
    top: 0.45rem;
    right: 0.45rem;
    background: var(--brand-primary);
    color: #fff;
    border-radius: 999px;
    font-size: 0.62rem;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    line-height: 1.5;
    box-shadow: 0 2px 6px rgba(11,61,145,0.25);
    pointer-events: none;
}
.lp-klien__badge i { font-size: 0.7rem; }

/* Hint ikon di pojok kanan-bawah — animasi muncul saat hover */
.lp-klien__hint {
    position: absolute;
    bottom: 0.4rem;
    right: 0.5rem;
    color: var(--brand-accent);
    font-size: 1.1rem;
    line-height: 1;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
}
.lp-klien:hover .lp-klien__hint,
.lp-klien:focus-visible .lp-klien__hint {
    opacity: 1;
    transform: translateY(0);
}

/* ===================== KLIEN — Modal Detail (portfolio kegiatan) ===================== */
.lp-klien-modal .modal-content {
    border: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(15,23,42,0.25);
}
.lp-klien-modal__header {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
    color: #fff;
    border: 0;
    padding: 1.25rem 1.5rem;
    align-items: center;
    gap: 1rem;
}
.lp-klien-modal__header .btn-close {
    filter: invert(1) brightness(2);
    opacity: 0.85;
}
.lp-klien-modal__header .btn-close:hover { opacity: 1; }
.lp-klien-modal__brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 0;
}
.lp-klien-modal__logo {
    width: 64px; height: 64px;
    border-radius: var(--radius-md);
    background: #fff;
    padding: 6px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}
.lp-klien-modal__logo img {
    max-width: 100%; max-height: 100%;
    object-fit: contain;
}
.lp-klien-modal__title-wrap { flex: 1; min-width: 0; }
.lp-klien-modal__title-wrap .modal-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 0 0.3rem;
    line-height: 1.25;
    word-break: break-word;
}
.lp-klien-modal__meta {
    display: flex; align-items: center; flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.82rem;
    opacity: 0.95;
}
.lp-klien-modal__group {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.28);
    color: #fff;
    border-radius: 999px;
    padding: 0.2rem 0.7rem;
    font-weight: 600;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    backdrop-filter: blur(4px);
}
.lp-klien-modal__group::before {
    content: "\F1F2"; /* bi-buildings */
    font-family: bootstrap-icons;
    font-size: 0.85rem;
}
.lp-klien-modal__count {
    color: rgba(255,255,255,0.9);
    font-size: 0.82rem;
    font-weight: 500;
}
.lp-klien-modal__count i { color: var(--brand-accent); margin-right: 0.2rem; }

.lp-klien-modal__body {
    padding: 1.5rem;
    background: var(--neutral-50);
}

.lp-klien-modal__empty {
    text-align: center;
    padding: 2rem 1rem;
    background: #fff;
    border-radius: var(--radius-md);
    border: 2px dashed var(--neutral-300);
    color: var(--neutral-700);
}
.lp-klien-modal__empty i {
    font-size: 2.6rem;
    color: var(--neutral-300);
    display: block;
    margin-bottom: 0.5rem;
}
.lp-klien-modal__empty h5 {
    color: var(--neutral-900);
    font-weight: 700;
    margin: 0.5rem 0 0.35rem;
}
.lp-klien-modal__empty p {
    margin: 0 auto;
    max-width: 460px;
    font-size: 0.92rem;
    color: var(--neutral-700);
    line-height: 1.55;
}

/* Timeline kegiatan di modal — vertical dot + line connector */
.lp-klien-modal__timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}
.lp-klien-modal__timeline::before {
    content: "";
    position: absolute;
    left: 11px;
    top: 0; bottom: 0;
    width: 2px;
    background: var(--neutral-300);
}
.lp-klien-modal__item {
    position: relative;
    padding-left: 38px;
    padding-bottom: 1.25rem;
}
.lp-klien-modal__item:last-child { padding-bottom: 0; }
.lp-klien-modal__dot {
    position: absolute;
    left: 4px;
    top: 14px;
    width: 16px; height: 16px;
    border-radius: 50%;
    background: var(--brand-primary);
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--brand-primary);
}
.lp-klien-modal__card {
    background: #fff;
    border: 1px solid var(--neutral-100);
    border-radius: var(--radius-md);
    padding: 1rem 1.1rem;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.lp-klien-modal__card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}
.lp-klien-modal__head {
    display: flex; justify-content: space-between; align-items: center;
    gap: 0.5rem; flex-wrap: wrap;
    margin-bottom: 0.45rem;
}
.lp-klien-modal__date {
    display: inline-flex; align-items: center; gap: 0.3rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--brand-primary);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.lp-klien-modal__date i { font-size: 0.85rem; }
.lp-klien-modal__title {
    margin: 0 0 0.4rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--neutral-900);
    line-height: 1.3;
    word-break: break-word;
}
.lp-klien-modal__desc {
    margin: 0 0 0.65rem;
    color: var(--neutral-700);
    font-size: 0.92rem;
    line-height: 1.6;
    white-space: pre-line;
}
.lp-klien-modal__foto {
    position: relative;
    display: block;
    width: 100%;
    max-width: 320px;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--neutral-100);
    border: 0;
    padding: 0;
    cursor: pointer;
    margin-top: 0.4rem;
}
.lp-klien-modal__foto img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.lp-klien-modal__foto:hover img,
.lp-klien-modal__foto:focus-visible img { transform: scale(1.05); }
.lp-klien-modal__foto:focus-visible {
    outline: 3px solid var(--brand-accent);
    outline-offset: 2px;
}
.lp-klien-modal__zoom {
    position: absolute;
    top: 0.5rem; right: 0.5rem;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(15,23,42,0.7);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: background 0.2s ease;
}
.lp-klien-modal__foto:hover .lp-klien-modal__zoom { background: var(--brand-accent); }

.lp-klien-modal__footer {
    background: #fff;
    border-top: 1px solid var(--neutral-100);
    padding: 0.85rem 1.5rem;
    gap: 0.5rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
}
.lp-klien-modal__visit { font-weight: 600; }
.lp-klien-modal__visit[hidden] { display: none !important; }

/* Mobile tweaks */
@media (max-width: 575.98px) {
    .lp-klien-modal__header { padding: 1rem; gap: 0.75rem; flex-wrap: wrap; }
    .lp-klien-modal__logo { width: 52px; height: 52px; }
    .lp-klien-modal__title-wrap .modal-title { font-size: 1.05rem; }
    .lp-klien-modal__body { padding: 1rem; }
    .lp-klien-modal__item { padding-left: 32px; }
    .lp-klien-modal__dot { left: 2px; width: 14px; height: 14px; }
    .lp-klien-modal__timeline::before { left: 8px; }
    .lp-klien-modal__footer { padding: 0.75rem 1rem; flex-direction: column-reverse; align-items: stretch; }
    .lp-klien-modal__footer .btn { width: 100%; }
}

/* ===================== CTA AKHIR ===================== */
.lp-cta {
    background:
        radial-gradient(ellipse at top right, rgba(249,115,22,0.25) 0%, transparent 50%),
        linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
    color: #fff;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}
.lp-cta__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
}
.lp-cta h2 {
    margin: 0 0 0.5rem;
    font-size: 1.65rem;
    font-weight: 800;
    color: #fff;
}
.lp-cta p {
    margin: 0;
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
}
.lp-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
}
.lp-cta__actions .btn { min-height: 48px; font-weight: 600; padding: 0 1.25rem; }
@media (min-width: 768px) {
    .lp-cta { padding: 4rem 0; }
    .lp-cta h2 { font-size: 2.2rem; }
    .lp-cta__inner { flex-direction: row; text-align: left; justify-content: space-between; }
}

/* ===================== MAPS ===================== */
.lp-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 16/9;
    background: var(--neutral-100);
}
.lp-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ===================== FOOTER ===================== */
.lp-footer {
    background: var(--neutral-900);
    color: rgba(255,255,255,0.85);
    padding: 3rem 0 1.5rem;
}
.lp-footer__brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.lp-footer__brand img {
    width: 48px; height: 48px;
    object-fit: contain;
    background: #fff;
    border-radius: var(--radius-sm);
    padding: 4px;
}
.lp-footer__about {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 360px;
}
.lp-footer__title {
    color: #fff;
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 1rem;
}
.lp-footer__list, .lp-footer__contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}
.lp-footer__list a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.15s ease;
}
.lp-footer__list a:hover { color: var(--brand-accent); }
.lp-footer__contact li {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
}
.lp-footer__contact i {
    color: var(--brand-accent);
    margin-top: 3px;
    flex-shrink: 0;
}
.lp-footer__contact a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
}
.lp-footer__contact a:hover { color: var(--brand-accent); }
.lp-footer__schedule { white-space: pre-line; }
.lp-footer__social {
    display: flex; gap: 0.5rem;
    margin-top: 1rem;
}
.lp-footer__social a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.2s ease;
}
.lp-footer__social a:hover {
    background: var(--brand-accent);
    transform: translateY(-2px);
}
.lp-footer__divider {
    border: 0;
    border-top: 1px solid rgba(255,255,255,0.12);
    margin: 2rem 0 1rem;
}
.lp-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    color: rgba(255,255,255,0.55);
    font-size: 0.78rem;
}
.lp-footer__bottom-links {
    display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.lp-footer__bottom-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    padding: 0.35rem 0.85rem;
    font-size: 0.78rem;
    transition: all 0.2s ease;
}
.lp-footer__bottom-links a:hover { border-color: var(--brand-accent); color: #fff; }
.lp-footer__bottom-links .lp-footer__kurir {
    background: var(--brand-accent);
    border-color: var(--brand-accent);
    color: #fff;
}
.lp-footer__bottom-links .lp-footer__kurir:hover {
    background: var(--brand-accent-dark);
    border-color: var(--brand-accent-dark);
}

/* ===================== BOTTOM NAV (mobile) ===================== */
.lp-bottomnav {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    height: 64px;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(14px);
    border-top: 1px solid var(--neutral-100);
    z-index: 1025;
    box-shadow: 0 -4px 14px rgba(15,23,42,0.06);
    padding-bottom: env(safe-area-inset-bottom);
}
.lp-bottomnav__link {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: var(--neutral-500);
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 500;
    text-align: center;
    transition: color 0.15s ease;
}
.lp-bottomnav__link i { font-size: 1.2rem; }
.lp-bottomnav__link.active { color: var(--brand-primary); }
.lp-bottomnav__link--cta {
    position: relative;
}
.lp-bottomnav__link--cta .lp-bottomnav__cta {
    position: absolute;
    top: -22px;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-accent) 0%, var(--brand-accent-dark) 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 8px 22px rgba(249,115,22,0.45);
    border: 4px solid #fff;
}
.lp-bottomnav__link--cta { color: var(--brand-accent-dark); padding-top: 36px; font-weight: 700; }

/* push body content above bottom nav when on mobile (avoid overlap with footer) */
@media (max-width: 991.98px) {
    .lp-footer { padding-bottom: calc(80px + env(safe-area-inset-bottom)); }
}

/* ===================== FAB ===================== */
.lp-fab {
    position: fixed;
    right: 1rem;
    bottom: 5.5rem;
    width: 52px; height: 52px;
    border-radius: 50%;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    z-index: 1024;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
@media (min-width: 992px) {
    .lp-fab { bottom: 1.25rem; right: 1.5rem; width: 56px; height: 56px; }
}
.lp-fab--whatsapp { background: #25D366; }
.lp-fab--whatsapp:hover { background: #1ebd5b; transform: scale(1.05); color: #fff; }
.lp-fab--top {
    background: var(--brand-primary);
    bottom: calc(5.5rem + 64px);
}
@media (min-width: 992px) {
    .lp-fab--top { bottom: calc(1.25rem + 70px); }
}
.lp-fab--top:hover { background: var(--brand-primary-dark); transform: scale(1.05); }
.lp-fab[hidden] { display: none !important; }

/* ===================== HALUSAN MOBILE ===================== */
@media (max-width: 575.98px) {
    .lp-section__head h2 { font-size: 1.45rem; }
    .lp-hero__title { font-size: 1.85rem; }
    .lp-hero__sub { font-size: 0.95rem; }
    .lp-hero__search { padding: 0.65rem; }
    .lp-hero__search-row { flex-direction: column; }
    .lp-hero__search-btn { width: 100%; }
    .lp-hero__pill { font-size: 0.72rem; }
}

/* ===================== ANCHOR OFFSET supaya sticky navbar tidak menutupi ===================== */
section[id] { scroll-margin-top: 90px; }
@media (max-width: 575.98px) {
    section[id] { scroll-margin-top: 78px; }
}

/* =====================================================================
   ENHANCEMENTS — Collapsible Jangkauan, Gallery empty state, Lightbox
   ===================================================================== */

/* ---------- Collapsible Region (Jangkauan accordion per provinsi) ---------- */
.lp-region--collapsible {
    padding: 0;
    overflow: hidden;
    transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.lp-region--collapsible.is-open {
    border-color: var(--brand-primary-light);
    box-shadow: var(--shadow-md);
}
.lp-region__toggle {
    width: 100%;
    background: transparent;
    border: 0;
    padding: 1rem 1.1rem;
    text-align: left;
    cursor: pointer;
    color: var(--neutral-900);
    transition: background 0.15s ease;
    min-height: 56px;
    display: block;
}
.lp-region__toggle:hover { background: var(--neutral-50); }
.lp-region__toggle:focus-visible {
    outline: 2px solid var(--brand-primary);
    outline-offset: -2px;
}
.lp-region--collapsible .lp-region__head {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    border: 0;
    padding: 0;
    margin: 0;
}
.lp-region--collapsible .lp-region__head i.bi-geo-alt-fill {
    color: var(--brand-primary);
    font-size: 1.15rem;
    flex-shrink: 0;
}
.lp-region__name {
    font-weight: 700;
    color: var(--neutral-900);
    font-size: 1rem;
    flex: 1;
    line-height: 1.2;
}
.lp-region--collapsible .lp-region__count {
    background: var(--brand-primary);
    color: #fff;
    font-weight: 700;
    font-size: 0.78rem;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    line-height: 1;
}
.lp-region__chev {
    color: var(--neutral-500);
    font-size: 1.05rem;
    transition: transform 0.25s ease, color 0.2s ease;
}
.lp-region--collapsible.is-open .lp-region__chev {
    transform: rotate(180deg);
    color: var(--brand-primary);
}
.lp-region__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.lp-region__body ul {
    list-style: none;
    padding: 0 1.1rem 1.1rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    border-top: 1px dashed var(--neutral-300);
    margin-top: 0;
    padding-top: 0.85rem;
}
.lp-region__body li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.92rem;
    color: var(--neutral-700);
}
.lp-region__body li i { color: var(--brand-accent); font-size: 0.85rem; }

/* ---------- Galeri item button reset & state ---------- */
.lp-gallery__item {
    border: 0;
    background: var(--neutral-100);
    padding: 0;
    cursor: pointer;
    width: 100%;
    text-align: left;
    color: inherit;
    font: inherit;
}
.lp-gallery__item:focus-visible {
    outline: 3px solid var(--brand-accent);
    outline-offset: 2px;
}
.lp-gallery__zoom {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    color: var(--brand-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.lp-gallery__item:hover .lp-gallery__zoom,
.lp-gallery__item:focus-visible .lp-gallery__zoom {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Galeri empty state (hanya muncul bila kategori kosong) ---------- */
.lp-gallery-empty {
    text-align: center;
    background: #fff;
    border: 2px dashed var(--neutral-300);
    border-radius: var(--radius-lg);
    padding: 2.25rem 1.25rem;
    color: var(--neutral-700);
    margin-top: 1rem;
}
.lp-gallery-empty.is-hidden { display: none; }

/* ---------- Galeri Muat Lainnya ---------- */
.lp-gallery-more {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    text-align: center;
}
.lp-gallery-more[hidden] { display: none !important; }
.lp-gallery-more__info {
    color: var(--neutral-500);
    font-size: 0.85rem;
    font-weight: 500;
}
.lp-gallery-more__btn {
    background: #fff;
    border: 1.5px solid var(--brand-primary);
    color: var(--brand-primary);
    border-radius: 999px;
    padding: 0.65rem 1.5rem;
    font-weight: 600;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
.lp-gallery-more__btn:hover,
.lp-gallery-more__btn:focus-visible {
    background: var(--brand-primary);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
    outline: none;
}
.lp-gallery-more__btn:active { transform: translateY(0); }
.lp-gallery-more__btn i { font-size: 1.05rem; line-height: 1; }
.lp-gallery-empty__ic {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: rgba(11, 61, 145, 0.08);
    color: var(--brand-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 0.85rem;
}
.lp-gallery-empty h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.4rem;
    color: var(--neutral-900);
}
.lp-gallery-empty p {
    margin: 0 auto;
    color: var(--neutral-500);
    font-size: 0.92rem;
    max-width: 420px;
}

/* Galeri filter chip dengan ikon */
.lp-chip i {
    font-size: 0.95rem;
    line-height: 1;
}
.lp-chip[aria-selected="true"],
.lp-chip.is-active {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: #fff;
}

/* ---------- LIGHTBOX MODAL ---------- */
.lp-lightbox .modal-dialog {
    max-width: min(1100px, 96vw);
    margin: 0.75rem auto;
}
.lp-lightbox__content {
    background: rgba(15, 23, 42, 0.96);
    border: 0;
    border-radius: var(--radius-lg);
    color: #fff;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 70px rgba(0,0,0,0.45);
}
.lp-lightbox__close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    z-index: 10;
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 0;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}
.lp-lightbox__close:hover { background: var(--brand-accent); transform: scale(1.05); }
.lp-lightbox__close:focus-visible { outline: 2px solid var(--brand-accent); outline-offset: 2px; }

.lp-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 0;
    background: rgba(0,0,0,0.5);
    color: #fff;
    font-size: 1.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}
.lp-lightbox__nav:hover { background: var(--brand-primary); }
.lp-lightbox__nav:focus-visible { outline: 2px solid var(--brand-accent); outline-offset: 2px; }
.lp-lightbox__nav[hidden] { display: none !important; }
.lp-lightbox__nav--prev { left: 0.65rem; }
.lp-lightbox__nav--next { right: 0.65rem; }
@media (min-width: 768px) {
    .lp-lightbox__nav { width: 56px; height: 56px; font-size: 1.65rem; }
    .lp-lightbox__nav--prev { left: 1rem; }
    .lp-lightbox__nav--next { right: 1rem; }
}

.lp-lightbox__stage {
    position: relative;
    background: #000;
    min-height: 50vh;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.lp-lightbox__img {
    display: block;
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
    background: #000;
    transition: opacity 0.2s ease;
}
.lp-lightbox__img.is-loading { opacity: 0; }
.lp-lightbox__spinner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.4);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s ease;
}
.lp-lightbox__spinner.is-visible { opacity: 1; }

.lp-lightbox__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(15, 23, 42, 0.92);
    color: #fff;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.lp-lightbox__caption {
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.3;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.lp-lightbox__counter {
    flex-shrink: 0;
    background: rgba(255,255,255,0.12);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    font-family: var(--font-mono);
}
.lp-lightbox__counter:empty { display: none; }

@media (max-width: 575.98px) {
    .lp-lightbox .modal-dialog { margin: 0.5rem; max-width: calc(100vw - 1rem); }
    .lp-lightbox__stage { min-height: 40vh; max-height: 70vh; }
    .lp-lightbox__caption { white-space: normal; }
}
