
html {
    scroll-behavior: smooth;
}
/* =========================================
   PPA HERO BANNER
========================================= */

.ppa-hero-banner {
    position: relative;
    min-height: 740px;
    display: flex;
    align-items: center;
    background-image: url('/assets-landing/img/lembaga-layanan-banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.ppa-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgb(34 11 27 / 76%) 0%, rgb(55 12 12 / 0%) 45%, rgba(12, 55, 47, 0.55) 100%);
}

.ppa-hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.ppa-hero-content h1 {
    margin: 0 0 25px;
    color: #ffffff;
    font-size: clamp(48px, 5vw, 76px);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -2px;
}

.ppa-hero-content p {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 20px;
    line-height: 1.6;
}


/* =========================================
   SEARCH CARD
========================================= */

.ppa-search-card {
    position: relative;
    z-index: 2;
    padding: 38px 34px 32px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.20);
}

.ppa-search-card h3 {
    margin: 0 0 8px;
    color: #203b38;
    font-size: 25px;
    line-height: 1.35;
    font-weight: 700;
}

.ppa-search-description {
    margin-bottom: 22px;
    color: #647573;
    font-size: 16px;
}


/* =========================================
   INPUT
========================================= */

.ppa-input-wrapper {
    position: relative;
}

.ppa-input-wrapper > i {
    position: absolute;
    top: 50%;
    left: 18px;
    z-index: 2;
    transform: translateY(-50%);
    color: #853366;
    font-size: 21px;
}

.ppa-input-wrapper .form-control,
.ppa-input-wrapper .form-select {
    width: 100%;
    height: 54px;
    padding: 0 18px;
    color: #344542;
    background: #ffffff;
    border: 1px solid #e2d4e0;
    border-radius: 14px;
    font-size: 16px;
    box-shadow: none;
}

.ppa-input-wrapper .form-control {
    padding-left: 48px;
}

.ppa-input-wrapper .form-control::placeholder {
    color: #a7afbd;
}

.ppa-input-wrapper .form-control:focus,
.ppa-input-wrapper .form-select:focus {
    border-color: #a5c443;
    box-shadow: 0 0 0 3px rgba(165, 196, 67, 0.12);
}


/* =========================================
   BUTTON
========================================= */

.ppa-search-button {
    width: 100%;
    height: 56px;
    margin-bottom: 15px;
    border: 0;
    border-radius: 14px;
    color: #ffffff;
    background: #853366;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.ppa-search-button:hover {
    transform: translateY(-1px);
    border: 1px solid #853366;
    background: white;
    color: #853366;
    box-shadow: 0 8px 20px rgba(150, 180, 50, 0.25);
}


/* =========================================
   LOCATION BUTTON
========================================= */

.ppa-location-button {
    width: 100%;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid #dce2d4;
    border-radius: 14px;
    color: #263b38;
    background: #ffffff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
}

.ppa-location-button i {
    font-size: 21px;
}

.ppa-location-button:hover {
    border-color: #a5c443;

    background: #f8faef;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .ppa-hero-banner {
        min-height: auto;
        padding: 100px 0;
    }

    .ppa-hero-content {
        margin-bottom: 45px;
    }

    .ppa-hero-content h1 {
        font-size: 52px;
    }

    .ppa-search-card {
        max-width: 600px;
    }
}

@media (max-width: 575px) {

    .ppa-hero-banner {
        padding: 80px 0;
    }

    .ppa-hero-content h1 {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .ppa-hero-content p {
        font-size: 17px;
    }

    .ppa-search-card {
        padding: 28px 22px;
        border-radius: 16px;
    }

    .ppa-search-card h3 {
        font-size: 22px;
    }
}

.ppa-result-section {
    padding: 75px 0 100px;
    background: #fff;
}

.ppa-result-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 35px;
}

.ppa-result-header h2 {
    margin: 0 0 5px;
    color: #203b38;
    font-size: 36px;
    font-weight: 700;
}

.ppa-result-header p {
    margin: 0;
    color: #607471;
    font-size: 17px;
}

.ppa-view-all {
    padding: 14px 25px;
    color: #263b38;
    border: 1px solid #dce2d4;
    border-radius: 14px;
    text-decoration: none;
    font-size: 16px;
}


/* FILTER */

.ppa-filter-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ppa-filter {
    height: 52px;
    padding: 0 18px;
    color: #344542;
    background: #fff;
    border: 1px solid #dce2d4;
    border-radius: 14px;
    font-size: 16px;
    outline: none;
}

.ppa-filter:focus {
    border-color: #853366;
    box-shadow: 0 0 0 3px rgba(133, 51, 102, .08);
}

.ppa-filter-row {
    display: flex;
    align-items: center;
    gap: 18px;
    width: 100%;
}

.ppa-filter {
    flex: 1;
    min-width: 0;
}

.ppa-filter-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    width: 100%;
}

.ppa-filter-reset,
.ppa-filter-submit {
    height: 56px;
    padding: 0 28px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    font-size: 16px;
    font-weight: 600;

    transition: all 0.2s ease;
}

.ppa-filter-reset {
    min-width: 110px;

    background: #fff;
    border: 1px solid #ddd6da;

    color: #853366;
    text-decoration: none;
}

.ppa-filter-reset:hover {
    background: #faf5f8;
    border-color: #853366;
    color: #853366;
}

.ppa-filter-submit {
    min-width: 130px;

    background: #853366;
    border: 1px solid #853366;

    color: #fff;
    cursor: pointer;
}

.ppa-filter-submit:hover {
    background: #702a55;
    border-color: #702a55;
}

@media (max-width: 576px) {
    .ppa-filter-row {
        flex-direction: column;
        gap: 12px;
    }

    .ppa-filter {
        width: 100%;
        flex: none;
    }
}


/* CARDS */

.ppa-result-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.ppa-service-card {
    display: flex;
    flex-direction: column;
    min-height: 290px;
    background: #fff;
    border: 1px solid #e4e7df;
    border-radius: 18px;
    overflow: hidden;
    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.ppa-service-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 15px 35px rgba(30, 50, 45, .10);
}

.ppa-service-card-body {
    flex: 1;
    padding: 26px;
}

.ppa-service-card-header {
    display: flex;
    justify-content: space-between;
}

.ppa-service-services {
    margin-top: 18px;
}

.ppa-service-label {
    display: block;
    margin-bottom: 8px;

    color: #8a9693;

    font-size: 11px;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ppa-service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.ppa-service-tags span {
    display: inline-flex;
    align-items: center;

    padding: 5px 10px;

    color: #853366;
    background: rgba(133, 51, 102, 0.07);

    border: 1px solid rgba(133, 51, 102, 0.12);
    border-radius: 6px;

    font-size: 12px;
    font-weight: 500;
}

.ppa-service-type {
    display: inline-block;

    margin-bottom: 14px;
    padding: 6px 12px;

    color: #853366;
    background: rgba(133, 51, 102, .08);

    border-radius: 20px;

    font-size: 13px;
    font-weight: 600;
}

.ppa-service-card h3 {
    margin-bottom: 20px;

    color: #203b38;

    font-size: 21px;
    line-height: 1.35;
    font-weight: 700;
}

.ppa-service-info {
    display: flex;
    gap: 8px;

    color: #607471;

    font-size: 14px;
    line-height: 1.5;
}

.ppa-service-info i {
    flex-shrink: 0;

    color: #853366;

    font-size: 18px;
}

.ppa-service-location {
    margin-top: 8px;

    color: #607471;

    font-size: 14px;
}

.ppa-service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 20px;
}

.ppa-service-tags span {
    padding: 5px 10px;
    color: #566965;
    background: #f5f6f2;
    border-radius: 8px;
    font-size: 12px;
}

.ppa-service-card-footer {
    padding: 18px 26px;
    border-top: 1px solid #edf0ea;
}

.ppa-service-card-footer a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #853366;
    text-decoration: none;
    font-weight: 600;
}

.ppa-empty-result {
    padding: 90px 20px;
    text-align: center;
}

.ppa-empty-result h3 {
    margin-bottom: 10px;
    color: #45625e;
    font-size: 22px;
}

.ppa-empty-result p {
    margin: 0;
    color: #607471;
    font-size: 17px;
}

.ppa-service-classification {
    display: flex;
    flex-direction: column;
    margin-top: 22px;
    padding-top: 16px;
    border-top: 1px solid #edf0ea;
}

.ppa-service-classification span {
    margin-bottom: 4px;
    color: #8a9693;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.ppa-service-classification strong {
    color: #853366;
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 991px) {
    .ppa-filter-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .ppa-result-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .ppa-result-header {
        display: block;
    }

    .ppa-view-all {
        display: inline-block;
        margin-top: 15px;
    }

    .ppa-filter-wrapper {
        grid-template-columns: 1fr;
    }

    .ppa-result-grid {
        grid-template-columns: 1fr;
    }
}

.ppa-map-section {
    margin-top: 80px;
    padding-bottom: 80px;
}

.ppa-map-header {
    margin-bottom: 25px;
}

.ppa-map-header h2 {
    margin-bottom: 8px;
    color: #203b38;
    font-size: 42px;
    font-weight: 700;
}

.ppa-map-header p {
    margin: 0;
    color: #607471;
    font-size: 17px;
}

.ppa-map-marker {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #853366;
    color: #fff;

    border: 4px solid #fff;
    border-radius: 50%;

    font-size: 18px;
    font-weight: 700;

    box-shadow: 0 3px 10px rgba(0, 0, 0, .2);
}

.ppa-lembaga-popup .leaflet-popup-content-wrapper {
    padding: 0;

    border-radius: 18px;

    box-shadow: 0 8px 30px rgba(0, 0, 0, .18);
}

.ppa-lembaga-popup .leaflet-popup-content {
    width: 320px !important;

    margin: 0;
}

.ppa-lembaga-popup .leaflet-popup-tip {
    box-shadow: none;
}

.ppa-map-popup-footer {
    padding: 16px;
    border-top: 1px solid #eee;
    color: #853366 !important;
}

.ppa-map-popup-detail {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    color: #8e326b;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;

    transition: gap 0.2s ease;
}

.ppa-map-popup-detail:hover {
    color: #8e326b;
    gap: 10px;
}

.ppa-map-popup-detail i {
    font-size: 18px;
}

/*
|--------------------------------------------------------------------------
| Popup
|--------------------------------------------------------------------------
*/

.ppa-map-popup {
    overflow: hidden;
}

.ppa-map-popup-header {
    padding: 20px 22px 14px;
}

.ppa-map-popup-header h3 {
    margin: 0;

    color: #203b38;

    font-size: 20px;
    font-weight: 700;
}

.ppa-map-popup-content {
    padding: 0 22px 22px;
}

.ppa-map-popup-item {
    display: flex;
    flex-direction: column;

    gap: 3px;

    margin-top: 14px;
}

.ppa-map-popup-item span {
    color: #8a9693;

    font-size: 11px;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: .5px;
}

.ppa-map-popup-item strong {
    color: #304844;

    font-size: 15px;
    font-weight: 600;
}


/*
|--------------------------------------------------------------------------
| Jenis Lembaga
|--------------------------------------------------------------------------
*/

.ppa-map-popup-list {
    display: flex;
    flex-direction: column;

    gap: 5px;

    margin: 3px 0 0;
    padding: 0;

    list-style: none;
}

.ppa-map-popup-list li {
    position: relative;

    padding-left: 14px;

    color: #304844;

    font-size: 14px;
    line-height: 1.4;
}

.ppa-map-popup-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    background: #853366;
    border-radius: 50%;
}

#lembagaLayananMap {
    width: 100%;
    height: 620px;
    border-radius: 20px;
    overflow: hidden;
}

/*
|--------------------------------------------------------------------------
| Lembaga marker
|--------------------------------------------------------------------------
*/

.ppa-lembaga-marker {
    background: #853366;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border: 3px solid #fff;
    box-shadow:
        0 2px 6px rgba(0, 0, 0, .3);
}

.ppa-detail-modal {
    border: 0;
    border-radius: 20px;
    overflow: hidden;
}

.ppa-detail-modal .modal-header {
    padding: 28px 30px 22px;
    border-bottom: 1px solid #edf0ea;
}

.ppa-modal-header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.ppa-google-maps-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #853366;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    border: 1px solid #853366;
    border-radius: 8px;
    padding: 8px 10px;
}

.ppa-google-maps-link i {
    font-size: 19px;
}

.ppa-google-maps-link:hover {
    color: white;
    text-decoration: none;
    background: #853366;
    border: 1px solid #853366;
    border-radius: 8px;
    padding: 8px 10px;
}

.ppa-google-maps-link-mobile {
    display: none;
}

@media (max-width: 576px) {
    .ppa-google-maps-link {
        display: none !important;
    }

    .ppa-google-maps-link-mobile {
        display: inline-flex !important;
        align-items: center;
        gap: 7px;
        color: #853366;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        white-space: nowrap;
        border: 1px solid #853366;
        border-radius: 8px;
        padding: 8px 10px;
    }

    .ppa-google-maps-link-mobile i {
        font-size: 19px;
    }

    .ppa-google-maps-link-mobile:hover {
        color: white;
        text-decoration: none;
        background: #853366;
        border: 1px solid #853366;
        border-radius: 8px;
        padding: 8px 10px;
    }
}

.ppa-detail-modal .modal-footer {
    display: flex;
    align-items: center;
}

.ppa-modal-close {
    margin-left: auto;
}

@media (max-width: 576px) {
    .ppa-detail-modal .modal-footer {
        display: flex;
        align-items: center;
    }

    .ppa-detail-modal .ppa-modal-close {
        margin-left: auto;
    }
}

.ppa-detail-modal .modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ppa-modal-label {
    display: block;
    margin-bottom: 6px;
    color: #853366;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.ppa-service-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
}

.ppa-service-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 11px;
    color: #853366 !important;
    background: rgba(133, 51, 102, 0.08);
    border: 1px solid rgba(133, 51, 102, 0.16);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
}

.ppa-service-badge-secondary {
    display: inline-flex;
    align-items: center;
    padding: 6px 11px;
    color: #676366 !important;
    background: rgba(221, 184, 207, 0.08);
    border: 1px solid #b20771;
    border-radius:8px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 5px;
}

.ppa-detail-modal .modal-title {
    margin: 0;
    color: #203b38;
    font-size: 25px;
    font-weight: 700;
}

.ppa-detail-modal .modal-body {
    padding: 30px;
}

.ppa-detail-section {
    padding-bottom: 28px;
    margin-bottom: 28px;
    border-bottom: 1px solid #edf0ea;
}

.ppa-detail-section:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.ppa-detail-section h5 {
    margin: 0 0 18px;
    color: #203b38;
    font-size: 18px;
    font-weight: 700;
}

.ppa-detail-grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.ppa-detail-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 15px 16px;
    background: #f8f9f6;
    border-radius: 12px;
}

.ppa-detail-item span {
    color: #84918e;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .4px;
}

.ppa-detail-item strong,
.ppa-detail-item a {
    color: #853366;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 600;
    word-break: break-word;
}

.ppa-detail-item a {
    color: #853366;
    text-decoration: none;
}

.ppa-detail-item a:hover {
    text-decoration: underline;
}

.ppa-copy-value {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    width: 100%;
}

.ppa-copy-value strong,
.ppa-copy-value a {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ppa-copy-button {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #853366;
    cursor: pointer;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.ppa-copy-button:hover {
    background: #f8eaf3;
    color: #853366;
}

.ppa-copy-button i {
    font-size: 18px;
}

.ppa-detail-full {
    grid-column: 1 / -1;
}

.ppa-description {
    padding: 18px;
    color: #853366;
    background: #f8f9f6;
    border-radius: 12px;
    font-size: 15px;
    line-height: 1.7;
}

.ppa-detail-modal .modal-footer {
    padding: 18px 30px;
    border-top: 1px solid #edf0ea;
}

.ppa-modal-close {
    padding: 10px 22px;
    color: #fff;
    background: #853366;
    border: 0;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
}

.ppa-modal-close:hover {
    background: #702952;
}

.ppa-detail-service-tag {
    color: #853366 !important;
}

.ppa-pagination-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    margin-top: 40px;
    margin-bottom: 20px;
}

.ppa-pagination-pages {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ppa-pagination-page,
.ppa-pagination-button {
    width: 40px;
    height: 40px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #304844;
    background: #fff;

    border: 1px solid #e2e6e3;
    border-radius: 10px;

    font-size: 14px;
    font-weight: 500;

    text-decoration: none;

    transition:
        background-color .2s ease,
        color .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.ppa-pagination-page:hover,
.ppa-pagination-button:hover {
    color: #853366;

    border-color: #853366;
    background: rgba(133, 51, 102, .05);

    text-decoration: none;
}

.ppa-pagination-page.active {
    color: #fff;
    background: #853366;
    border-color: #853366;

    font-weight: 600;
}

.ppa-pagination-button {
    font-size: 18px;
}

.ppa-pagination-button.disabled {
    color: #c5ccca;

    background: #f7f8f7;
    border-color: #ecefed;

    cursor: not-allowed;
}

/* =========================================================
   LIST LEMBAGA LAYANAN
   ========================================================= */

.ppa-list-page {
    padding: 80px 0;
}

.ppa-list-page-header {
    margin-bottom: 35px;
}

.ppa-list-page-header h1 {
    margin: 8px 0 10px;
    color: #203b38;
    font-size: 40px;
    font-weight: 700;
}

.ppa-list-page-header p {
    max-width: 700px;
    margin: 0;
    color: #647571;
    font-size: 16px;
}


/* =========================================================
   TABS
   ========================================================= */

.ppa-view-tabs {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px;

    background: #f3f3f3;
    border-radius: 12px;
    border: 1px solid #853366;
}

.ppa-view-tab {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 10px 18px;

    color: #61706c;
    background: transparent;

    border-radius: 9px;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition: .2s ease;
}

.ppa-view-tab:hover {
    color: #853366;
    text-decoration: none;
}

.ppa-view-tab.active {
    color: #fff;
    background: #853366;
}

/* =========================================================
   RESULT TOOLBAR
========================================================= */

.ppa-result-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 20px;
}


/* =========================================================
   SORT
========================================================= */

.ppa-sort-form {
    display: flex;
    align-items: center;
    gap: 12px;

    margin: 0;
}

.ppa-sort-form label {
    margin: 0;

    font-size: 14px;
    font-weight: 600;

    color: #526461;
}

.ppa-sort-select-wrapper {
    position: relative;

    min-width: 170px;
}

.ppa-sort-select-wrapper i {
    position: absolute;

    left: 14px;
    top: 50%;

    transform: translateY(-50%);

    color: #853366;
    font-size: 17px;

    pointer-events: none;
}

.ppa-sort-select-wrapper select {
    width: 100%;
    height: 48px;

    padding: 0 38px 0 42px;

    border: 1px solid #e4d8df;
    border-radius: 10px;

    background: #fff;

    color: #263f3c;

    font-size: 14px;
    font-weight: 500;

    outline: none;

    cursor: pointer;

    appearance: none;

    transition: all 0.2s ease;
}

.ppa-sort-select-wrapper select:hover {
    border-color: #853366;
}

.ppa-sort-select-wrapper select:focus {
    border-color: #853366;

    box-shadow:
        0 0 0 3px rgba(133, 51, 102, 0.08);
}


/* =========================================================
   FILTER
   ========================================================= */

.ppa-list-filter {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;

    padding: 28px;

    background: #ffffff;
    border: 1px solid #eadde6;
    border-radius: 20px;

    box-shadow: 0 8px 30px rgba(133, 51, 102, 0.06);
}


/* =========================================================
   FILTER ITEM
========================================================= */

.ppa-list-filter-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ppa-list-filter-item label {
    margin: 0;

    font-size: 14px;
    font-weight: 600;
    color: #263f3c;
}


/* =========================================================
   INPUT & SELECT
========================================================= */

.ppa-list-filter-item input,
.ppa-list-filter-item select {
    width: 100%;
    height: 48px;

    padding: 0 14px;

    border: 1px solid #ddd8d5;
    border-radius: 10px;

    background: #fff;

    color: #263f3c;
    font-size: 15px;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.ppa-list-filter-item input:focus,
.ppa-list-filter-item select:focus {
    border-color: #853366;

    box-shadow:
        0 0 0 3px rgba(133, 51, 102, 0.08);
}


/* =========================================================
   SEARCH INPUT
========================================================= */

.ppa-list-input-wrapper {
    position: relative;
}

.ppa-list-input-wrapper i {
    position: absolute;

    left: 15px;
    top: 50%;

    transform: translateY(-50%);

    font-size: 19px;
    color: #853366;

    pointer-events: none;
}

.ppa-list-input-wrapper input {
    padding-left: 44px;
}


/* =========================================================
   ACTIONS
========================================================= */

.ppa-list-filter-actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    padding-top: 6px;
}


/* =========================================================
   RESET
========================================================= */

.ppa-filter-reset {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    height: 46px;

    padding: 0 20px;

    border: 1px solid #ddd8d5;
    border-radius: 10px;

    background: #fff;

    color: #5c5c5c;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition: all 0.2s ease;
}

.ppa-filter-reset:hover {
    border-color: #853366;

    color: #853366;

    background: #fdf7fb;
}

.ppa-filter-reset i {
    font-size: 17px;
}


/* =========================================================
   SEARCH BUTTON
========================================================= */

.ppa-filter-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    height: 46px;

    min-width: 120px;

    padding: 0 24px;

    border: 1px solid #853366;
    border-radius: 10px;

    background: #853366;

    color: #fff;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    transition: all 0.2s ease;
}

.ppa-filter-submit:hover {
    background: #702953;
    border-color: #702953;
}

.ppa-filter-submit i {
    font-size: 17px;
}


/* =========================================================
   RESULT HEADER
   ========================================================= */

.ppa-list-result-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.ppa-list-result-header h2 {
    margin: 0;

    color: #203b38;

    font-size: 26px;
    font-weight: 700;
}

.ppa-list-result-header p {
    margin: 5px 0 0;

    color: #6c7b77;

    font-size: 14px;
}

.ppa-map-view-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    margin-top: 6px;

    color: #853366;

    font-size: 15px;
    font-weight: 600;

    text-decoration: none;

    transition:
        color 0.2s ease,
        gap 0.2s ease;
}

.ppa-map-view-link:hover {
    color: #6d2854;
    gap: 10px;
}

.ppa-map-view-link i {
    font-size: 18px;
}

/* =========================================================
   LIST VIEW
========================================================= */

.ppa-list-view {
    display: flex;
    flex-direction: column;
    gap: 12px;
}


/* =========================================================
   ROW
========================================================= */

/* =========================================================
   LIST ROW
========================================================= */

.ppa-list-row {
    padding: 28px 32px;

    background: #ffffff;

    border: 1px solid #eee6eb;
    border-radius: 18px;

    box-shadow: 0 2px 8px rgba(133, 51, 102, 0.04);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;

    margin-bottom: 16px;
}

.ppa-list-row:hover {
    border-color: #e2c5d8;
    box-shadow: 0 6px 18px rgba(133, 51, 102, 0.08);
}


/* =========================
   TITLE
========================= */

.ppa-list-title {
    margin: 0;

    color: #213a3a;

    font-size: 28px;
    font-weight: 700;
    line-height: 1.25;
}


/* =========================
   LOCATION
========================= */

.ppa-list-row-location {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #718080;

    font-size: 17px;
    line-height: 1.4;
}

.ppa-list-row-location i {
    color: #8d316b;
    font-size: 20px;
}

.ppa-location-separator {
    margin: 0 8px;
    color: #aeb8b8;
}


/* =========================
   METADATA
========================= */

.ppa-list-meta-card {
    display: flex;
    align-items: center;
    min-height: 96px;
    padding: 5px 16px;
    background: #ffffff;
    border: 1px solid #eee6eb;
    border-radius: 14px;
}

.ppa-list-meta-icon {
    width: 52px;
    height: 52px;

    flex: 0 0 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-right: 14px;

    background: #faedf6;

    border-radius: 12px;

    overflow: hidden;
}

.ppa-list-meta-icon img {
    width: 34px;
    height: 34px;

    object-fit: contain;
}

.ppa-list-meta-content {
    min-width: 0;
}

.ppa-list-meta-label {
    display: block;
    margin-bottom: 4px;
    color: #7c8888;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
}

.ppa-list-meta-value {
    display: block;
    color: #294343;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    word-break: break-word;
}


/* =========================
   ACTION
========================= */

.ppa-list-row-action a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px;
    color: #8d316b;
    background: #ffffff;
    border: 1px solid #d98ab9;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.ppa-list-row-action a:hover {
    color: #ffffff;
    background: #8d316b;
    border-color: #8d316b;
}

.ppa-list-row-action i {
    font-size: 19px;
}


/* =========================
   SERVICES
========================= */

.ppa-list-services {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 10px;
}

.ppa-service-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    color: #853366;
    background: #faedf6;
    border: 1px solid #f0d4e5;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
}

.ppa-service-badge img {
    width: 20px;
    height: 20px;

    object-fit: contain;
}

.ppa-service-badge i {
    font-size: 18px;
}

.ppa-service-empty {
    color: #8a9696;

    font-size: 14px;
    font-style: italic;
}


@media (max-width: 575px) {

    .ppa-detail-modal .modal-header {
        padding: 22px;
    }

    .ppa-detail-modal .modal-body {
        padding: 22px;
    }

    .ppa-detail-grid {
        grid-template-columns: 1fr;
    }

    .ppa-detail-full {
        grid-column: auto;
    }

    .ppa-detail-modal .modal-title {
        font-size: 21px;
    }

    .ppa-modal-header-actions {
        gap: 10px;
    }

    .ppa-google-maps-link span {
        display: none;
    }
}

@media (max-width: 991px) {
    .ppa-list-filter {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .ppa-list-filter {
        grid-template-columns: 1fr;

        padding: 20px;
        gap: 16px;
    }

    .ppa-list-filter-actions {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .ppa-filter-reset,
    .ppa-filter-submit {
        width: 100%;
    }

    .ppa-result-toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .ppa-view-tabs {
        width: 100%;
    }

    .ppa-view-tab {
        flex: 1;
        justify-content: center;
    }

    .ppa-sort-form {
        justify-content: space-between;
    }

    .ppa-sort-select-wrapper {
        min-width: 160px;
    }
}

@media (max-width: 767.98px) {

    .ppa-list-row {
        padding: 20px;
        border-radius: 14px;
    }

    .ppa-list-title {
        font-size: 22px;
    }

    .ppa-list-row-location {
        font-size: 15px;
    }

    .ppa-list-meta-card {
        min-height: 80px;
        padding: 12px;
    }

    .ppa-list-meta-icon {
        width: 44px;
        height: 44px;

        flex-basis: 44px;

        margin-right: 12px;
    }

    .ppa-list-meta-icon img {
        width: 28px;
        height: 28px;
    }

    .ppa-list-meta-label {
        font-size: 13px;
    }

    .ppa-list-meta-value {
        font-size: 17px;
    }

    .ppa-list-row-action {
        margin-top: 4px;
    }

    .ppa-list-row-action a {
        min-height: 48px;
    }

    .ppa-service-badge {
        padding: 8px 12px;
        font-size: 14px;
    }
}

#kabupaten_id:disabled {
    background: #d3d3d3;
    cursor: not-allowed;
}