/* Hero Banner */
.sip-hero-banner {
    position: relative;
    width: 100%;
    height: 100px;
    background-image: url('../images/Rectangle-204.png');
    background-size: cover;
    background-position: center;
}

.sip-hero-overlay {
    position: absolute;
    margin-top: 4rem;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sip-hero-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

/* Programs List Section */
.sip-programs-list-section {
    padding-top: 60px;
    padding-bottom: 80px;
    background: linear-gradient(180deg, #e8f5ee 0%, #f5f9f7 50%, #ffffff 100%);
}

.sip-list-header {
    text-align: center;
    margin-bottom: 40px;
}

.sip-list-main-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.sip-list-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #0066cc;
}

/* ===== SEARCH & FILTER SECTION ===== */

/* Search Wrapper - Grid Layout untuk 4 elemen */
.sip-search-wrapper {
    display: grid;
    grid-template-columns: 180px 1fr 220px auto;
    gap: 12px;
    max-width: 100%;
    margin: 0 auto 50px;
}

/* Search Input Box */
.sip-search-input-box {
    padding: 14px 20px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    background: #ffffff;
    transition: border-color 0.3s ease;
}

.sip-search-input-box:focus {
    outline: none;
    border-color: #00A652;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.sip-search-input-box::placeholder {
    color: #9ca3af;
}

/* Filter Select Dropdowns */
.sip-filter-select {
    padding: 14px 20px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    background: #ffffff;
    cursor: pointer;
    transition: border-color 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.sip-filter-select:focus {
    outline: none;
    border-color: #00A652;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.sip-filter-select:hover {
    border-color: #9ca3af;
}

/* Search Button */
.sip-search-btn {
    padding: 14px 28px;
    background: #00A652;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sip-search-btn:hover {
    background: #16a34a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.sip-search-btn:active {
    transform: translateY(0);
}

.sip-search-btn i {
    font-size: 18px;
}

/* No Results Message */
.sip-no-results {
    text-align: center;
    padding: 60px 20px;
    background: #ffffff;
    border-radius: 12px;
    margin-top: 20px;
}

.sip-no-results i {
    font-size: 48px;
    color: #d1d5db;
    margin-bottom: 16px;
}

.sip-no-results h3 {
    font-size: 20px;
    color: #6b7280;
    margin-bottom: 8px;
}

.sip-no-results p {
    font-size: 14px;
    color: #9ca3af;
}

/* Programs Grid */
.sip-programs-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sip-program-item {
    display: flex;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sip-program-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.sip-program-thumb-wrapper {
    width: 220px;
    padding: 1rem;
    flex-shrink: 0;
}

.sip-program-thumb-img {
    width: 100%;
    height: 100%;
    border-radius: 0.7rem;
    object-fit: cover;
}

.sip-program-content {
    flex: 1;
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
}

.sip-program-item-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.sip-program-item-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 16px;
    flex: 1;
}

.sip-program-meta-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.sip-meta-tag {
    font-size: 12px;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.sip-meta-author {
    font-size: 13px;
    color: #6b7280;
}

.sip-program-detail-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #00A652;
    color: #ffffff;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    align-self: flex-start;
    transition: background 0.3s ease;
}

.sip-program-detail-btn:hover {
    background: #028041;
}

.sip-program-detail-btn i {
    font-size: 14px;
}

/* Partners Bottom Section */
.sip-partners-bottom-section {
    padding-top: 60px;
    padding-bottom: 60px;
    background: #ffffff;
}

.sip-partners-bottom-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

.sip-partners-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sip-logo-sadulur {
    width: auto;
    height: 50px;
}

.sip-logo-sbm {
    width: auto;
    height: 70px;
}

.sip-partners-bottom-right {
    flex: 1;
}

.sip-partners-bottom-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.sip-partners-bottom-logos {
    background: #ffffff;
    border-radius: 999px;
    padding: 16px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.sip-partner-logo-item {
    height: 60px;
    width: auto;
}

/* Footer Bottom */
.sip-footer-bottom {
    background: #0f1419;
    color: #ffffff;
    padding: 30px 0;
}

.sip-footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sip-footer-bottom-text {
    font-size: 14px;
    margin: 0;
    color: #d1d5db;
}

.sip-footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sip-footer-bottom-link {
    font-size: 14px;
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sip-footer-bottom-link:hover {
    color: #ffffff;
}

.sip-footer-bottom-separator {
    color: #6b7280;
}

/* Program Header */
.sipd-program-header {
    margin-bottom: 50px;
}

.sipd-program-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.sipd-program-description {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 30px;
}

.sipd-program-meta {
    display: flex;
    gap: 60px;
}

.sipd-meta-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sipd-meta-label {
    font-size: 12px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sipd-meta-value {
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
}

/* Profile Section */
.sipd-profile-section {
    display: flex;
    gap: 24px;
    padding: 0px;
    background: transparent;
    border-radius: 12px;
    margin-bottom: 40px;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06); */
}

.sipd-profile-avatar {
    flex-shrink: 0;
    border-right: 1px solid #CCC;
    padding-right: 28px;
}

.sipd-profile-avatar img {
    width: 220px;
    height: 220px;
    border-radius: 12px;
    object-fit: cover;
}

.sipd-profile-avatar-placeholder {
    width: auto;
    height: 200px;
    aspect-ratio: 3 / 4;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
}

.sipd-profile-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sipd-profile-label {
    font-size: 11px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sipd-profile-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.sipd-profile-bio {
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 8px;
}

.sipd-profile-keahlian,
.sipd-profile-anggota {
    margin-top: 4px;
}

.sipd-profile-keahlian-text,
.sipd-profile-anggota-text {
    font-size: 14px;
    line-height: 1.6;
    color: #4b5563;
    margin-top: 4px;
}

/* SROI Section */
.sipd-sroi-section {
    margin-bottom: 40px;
}

.sipd-sroi-title {
    font-size: 28px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 30px;
}

.sipd-sroi-year-label {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.sipd-sroi-year-value {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 30px;
}

/* SROI Cards */
.sipd-sroi-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.sipd-sroi-card {
    padding: 20px 24px;
    border-radius: 12px;
    border: 2px solid;
    background: #ffffff;
}

.sipd-card-blue {
    border-color: #3b82f6;
}

.sipd-card-green {
    border-color: #00A652;
}

.sipd-card-orange {
    border-color: #f97316;
}

.sipd-card-red {
    border-color: #ef4444;
}

.sipd-card-label {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.sipd-card-value {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

/* Action Buttons */
.sipd-action-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.sipd-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sipd-btn-green {
    background: #00A652;
    color: #ffffff;
}

.sipd-btn-green:hover {
    background: #028142;
}

.sipd-btn-blue {
    background: #3b82f6;
    color: #ffffff;
}

.sipd-btn-blue:hover {
    background: #2563eb;
}

/* Info Note */
.sipd-info-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.6;
    color: #92400e;
}

.sipd-info-note i {
    color: #f59e0b;
    font-size: 18px;
    margin-top: 2px;
}

/* Table Wrapper */
.sipd-table-wrapper {
    overflow-x: auto;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

/* SROI Table */
.sipd-sroi-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.sipd-sroi-table thead {
    background: #00A652;
    color: #ffffff;
}

.sipd-sroi-table th {
    padding: 14px 12px;
    text-align: left;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    white-space: nowrap;
}

.sipd-sroi-table td {
    padding: 16px 12px;
    border-bottom: 1px solid #e5e7eb;
    vertical-align: top;
}

.sipd-sroi-table tbody tr:last-child td {
    border-bottom: none;
}

.sipd-sroi-table tbody tr:hover {
    background: #f9fafb;
}

.sipd-td-stakeholder {
    font-weight: 600;
    color: #1a1a1a;
}

.sipd-td-subtitle {
    font-weight: 400;
    color: #6b7280;
    font-size: 12px;
}

.sipd-output-item,
.sipd-outcome-item {
    margin-bottom: 8px;
    line-height: 1.5;
}

.sipd-output-item:last-child,
.sipd-outcome-item:last-child {
    margin-bottom: 0;
}

.sipd-td-impact,
.sipd-td-input {
    font-weight: 600;
    color: #1a1a1a;
}

.sipd-td-deadweight,
.sipd-td-attribution {
    text-align: center;
}

.sipd-btn-icon {
    background: #3b82f6;
    color: #ffffff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.sipd-btn-icon:hover {
    background: #2563eb;
}

/* Reset Button */
.sip-btn-reset {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 24px;
    background: #6b7280;
    color: #ffffff;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s ease;
}

.sip-btn-reset:hover {
    background: #4b5563;
}

/* Active Filter Indicator */
.sip-filter-select.active,
.sip-search-input-box.active {
    border-color: #00A652;
    background: #f0fdf4;
}

/* Empty Text */
.sipd-empty-text {
    color: #9ca3af;
    font-style: italic;
}


/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .sip-hero-title {
        font-size: 36px;
    }

     .sipd-sroi-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .sip-program-item {
        flex-direction: column;
    }

    .sip-program-thumb-wrapper {
        width: 100%;
        height: 200px;
    }

    .sip-partners-bottom-wrapper {
        flex-direction: column;
        gap: 50px;
    }

    .sip-partners-bottom-left {
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .sip-partners-bottom-right {
        text-align: center;
    }

    .sipd-sroi-cards {
        grid-template-columns: 1fr;
    }

    .sipd-program-meta {
        flex-direction: column;
        gap: 20px;
    }

    .sip-search-wrapper {
        grid-template-columns: 140px 1fr 180px auto;
        gap: 10px;
    }

    .sip-filter-select,
    .sip-search-input-box {
        font-size: 13px;
        padding: 12px 16px;
    }

    .sip-search-btn {
        padding: 12px 20px;
    }
}

@media (max-width: 768px) {
    .sip-hero-banner {
        height: 220px;
        /* margin-top: 70px; */
    }

    .sip-hero-title {
        font-size: 28px;
    }

    .sip-list-main-title {
        font-size: 28px;
    }

    .sip-list-subtitle {
        font-size: 20px;
    }

    .sip-search-wrapper {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .sip-filter-select,
    .sip-search-input-box,
    .sip-search-btn {
        width: 100%;
    }

    .sip-search-btn {
        padding: 14px 24px;
        font-size: 15px;
    }

    .sip-programs-list-section {
        padding-top: 40px;
        padding-bottom: 60px;
    }

    .sip-footer-bottom-container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .sip-footer-bottom-right {
        flex-wrap: wrap;
        justify-content: center;
    }

    .sip-partners-bottom-left {
        flex-direction: column;
        gap: 20px;
    }

    .sip-partners-bottom-logos {
        flex-wrap: wrap;
        gap: 24px;
        padding: 20px;
    }

    .sip-partner-logo-item {
        height: 50px;
    }

    .sipd-program-title {
        font-size: 28px;
    }

    .sipd-sroi-title {
        font-size: 24px;
    }

    .sipd-action-buttons {
        flex-direction: column;
    }

    .sipd-btn {
        width: 100%;
    }

    .sipd-table-wrapper {
        border-radius: 0;
    }
}
