* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
    background-color: #F8F3EA;
    color: #0B1957;
    line-height: 1.5;
    scroll-behavior: smooth;
}
:root {
    --dark-blue: #0B1957;
    --pink: #FA9EBC;
    --yellow: #FFDB11;
    --white: #ffffff;
    --soft-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
    --card-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
/* Navbar */
.navbar {
    background: var(--white);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(2px);
    background: rgba(255,255,255,0.92);
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 16px 24px;
    max-width: 1280px;
    margin: 0 auto;
}
.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}
.logo-svg img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}
.logo-text h1 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark-blue);
}
.logo-text p {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--pink);
}
.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}
.nav-links li {
    font-weight: 600;
    cursor: pointer;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: 0.2s;
}
.nav-links li.active {
    color: var(--dark-blue);
    border-bottom-color: var(--pink);
}
.nav-links li:hover {
    color: var(--pink);
    border-bottom-color: var(--yellow);
}
.menu-toggle {
    display: none;
    font-size: 1.6rem;
    cursor: pointer;
}
/* Pages */
.page {
    display: none;
    animation: fadeIn 0.35s ease;
}
.active-page {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px);}
    to { opacity: 1; transform: translateY(0);}
}
/* Hero */
.hero {
    background: linear-gradient(135deg, #FFFFFF 0%, #FEF3E9 100%);
    border-radius: 48px;
    padding: 48px 40px;
    margin: 40px 0 32px;
    box-shadow: var(--soft-shadow);
}
.hero h2 {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--dark-blue);
}
.hero .highlight {
    color: var(--pink);
}
.hero p {
    font-size: 1.1rem;
    margin-top: 20px;
    max-width: 80%;
}
.btn-primary {
    background-color: var(--pink);
    color: var(--dark-blue);
    border: none;
    padding: 12px 28px;
    border-radius: 60px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 28px;
    display: inline-block;
}
.btn-primary:hover {
    background-color: #ff8ab0;
    transform: translateY(-2px);
}
.btn-secondary {
    background: #0B1957;
    color: white;
    border-radius: 40px;
    padding: 12px 28px;
    font-weight: 600;
    border: none;
    cursor: pointer;
}
.btn-secondary:hover {
    background: #1e2f7a;
}
.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 48px 0 24px;
    border-left: 6px solid var(--yellow);
    padding-left: 20px;
}
/* Grids */
.kegiatan-grid, .program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}
.card {
    background: var(--white);
    border-radius: 28px;
    overflow: hidden;
    transition: 0.25s;
    box-shadow: var(--card-shadow);
    border: 1px solid #f0e4d8;
}
.card:hover {
    transform: translateY(-6px);
}
.card-img {
    height: 180px;
    background-size: cover;
    background-position: center;
}
.card-content {
    padding: 20px 24px 24px;
}
.card-tag {
    background: #FFDB11;
    color: #0B1957;
    font-weight: 700;
    font-size: 0.7rem;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 60px;
    margin-bottom: 12px;
}
.card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}
.program-list {
    margin: 12px 0 16px;
    padding-left: 20px;
}
.program-list li {
    margin: 6px 0;
}
.card-desc {
    color: #3e4663;
    margin-bottom: 20px;
}
.detail-btn {
    background: none;
    border: none;
    color: var(--pink);
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.program-icon {
    font-size: 2.4rem;
    margin-bottom: 12px;
    color: var(--pink);
    text-align: center;
}
.text-center {
    text-align: center;
}
/* About */
.about-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin: 40px 0 60px;
}
.about-card {
    background: white;
    border-radius: 32px;
    padding: 36px 40px;
    box-shadow: var(--soft-shadow);
}
.about-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}
.visi-misi {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 24px;
}
.visi-misi div {
    background: #FFF8F2;
    border-radius: 28px;
    padding: 24px;
}
.visi-misi ul {
    list-style: none;
    padding-left: 0;
}
.logo-meaning-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
    margin-top: 20px;
}
.logo-meaning-item {
    flex: 1;
    min-width: 150px;
    text-align: center;
}
.logo-meaning-item img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}
.color-palette {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 28px;
}
.color-badge {
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
}
/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11,25,87,0.75);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: 0.2s;
}
.modal-overlay.active {
    visibility: visible;
    opacity: 1;
}
.modal-container {
    background: white;
    max-width: 650px;
    width: 90%;
    border-radius: 40px;
    padding: 28px 32px;
    position: relative;
    max-height: 85vh;
    overflow-y: auto;
}
.modal-close {
    position: absolute;
    top: 22px;
    right: 28px;
    font-size: 1.6rem;
    cursor: pointer;
}
.modal-img {
    width: 100%;
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 28px;
    margin: 16px 0;
}
/* Footer */
.footer {
    background: #FFFFFFDD;
    margin-top: 60px;
    padding: 36px 0 24px;
    border-top: 1px solid #FFE6DB;
    text-align: center;
}
.logo-meaning-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin: 24px 0;
}
.meaning-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffffd0;
    padding: 8px 18px;
    border-radius: 60px;
}
/* Responsive */
@media (max-width: 800px) {
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        padding: 20px 0;
    }
    .nav-links.show {
        display: flex;
    }
    .menu-toggle {
        display: block;
    }
    .hero h2 {
        font-size: 1.8rem;
    }
    .hero p {
        max-width: 100%;
    }
    .visi-misi {
        grid-template-columns: 1fr;
    }
}

.footer-donation {
    background: linear-gradient(135deg, #0B1957 0%, #1a2a6e 100%);
    color: white;
    margin-top: 60px;
    padding: 48px 0 20px;
}
.donation-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 32px;
}
.donation-info h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: #FFDB11;
}
.donation-info p {
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 24px;
}
.donation-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 20px;
}
.stat {
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 40px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.stat i {
    color: #FA9EBC;
    font-size: 1.2rem;
}
.stat span {
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 4px;
}
.donation-form {
    background: white;
    border-radius: 32px;
    padding: 28px 32px;
    color: #0B1957;
    box-shadow: 0 20px 35px -12px rgba(0,0,0,0.2);
}
.donation-form h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #0B1957;
    border-left: 5px solid #FA9EBC;
    padding-left: 16px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.85rem;
}
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 28px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    transition: 0.2s;
    background: #F8F3EA;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: #FA9EBC;
    box-shadow: 0 0 0 3px rgba(250,158,188,0.2);
}
.nominal-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}
.nominal-btn {
    background: #F8F3EA;
    border: 1px solid #ddd;
    padding: 8px 16px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.2s;
}
.nominal-btn.active, .nominal-btn:hover {
    background: #FA9EBC;
    color: #0B1957;
    border-color: #FA9EBC;
}
.btn-donate {
    background: #FA9EBC;
    color: #0B1957;
    border: none;
    padding: 14px 24px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.btn-donate:hover {
    background: #ff8ab0;
    transform: translateY(-2px);
}
.btn-donate:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}
.donation-note {
    font-size: 0.7rem;
    margin-top: 16px;
    color: #6c6f8a;
    text-align: center;
}
.footer-bottom {
    text-align: center;
    padding-top: 16px;
    border-top: none;
    font-size: 0.85rem;
    opacity: 0.8;
}
@media (max-width: 800px) {
    .donation-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .donation-info h3 {
        font-size: 1.5rem;
    }
}

/* Tombol Volunteer Navbar */
.nav-volunteer {
    margin-left: 20px;
}
.btn-volunteer-nav {
    background: #FA9EBC;
    color: #0B1957;
    padding: 8px 20px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
    border: 1px solid transparent;
}
.btn-volunteer-nav:hover {
    background: #ff8ab0;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(250,158,188,0.3);
}

/* Tombol Volunteer Hero */
.btn-volunteer-hero {
    background: #0B1957;
    color: white;
    padding: 12px 28px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.2s;
    border: 2px solid #FA9EBC;
}
.btn-volunteer-hero:hover {
    background: #FA9EBC;
    color: #0B1957;
    border-color: #0B1957;
    transform: translateY(-2px);
}

/* Responsif navbar */
@media (max-width: 800px) {
    .nav-volunteer {
        margin-left: 0;
        margin-top: 12px;
        width: 100%;
        text-align: center;
    }
    .btn-volunteer-nav {
        width: 100%;
        justify-content: center;
    }
}

/* Volunteer footer */
.volunteer-cta {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 28px 32px;
    margin: 32px 0 24px;
    text-align: center;
    backdrop-filter: blur(2px);
}
.volunteer-cta-content i {
    font-size: 2.5rem;
    color: #FFDB11;
    margin-bottom: 12px;
}
.volunteer-cta h4 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #FFDB11;
}
.volunteer-cta p {
    margin-bottom: 20px;
    opacity: 0.9;
}
.btn-volunteer-footer {
    background: #FA9EBC;
    color: #0B1957;
    padding: 12px 28px;
    border-radius: 60px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.2s;
    border: none;
    cursor: pointer;
}
.btn-volunteer-footer:hover {
    background: #ff8ab0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(250,158,188,0.4);
}

/* Volunteer section di kolom kiri */
.volunteer-section {
    margin-top: 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.volunteer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #FFDB11;
    display: flex;
    align-items: center;
    gap: 10px;
}
.volunteer-section p {
    font-size: 0.85rem;
    margin-bottom: 16px;
    opacity: 0.9;
}
.btn-volunteer-submit {
    background: #FFDB11;
    color: #0B1957;
    border: none;
    padding: 12px 20px;
    border-radius: 60px;
    font-weight: 700;
    width: 100%;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
}
.btn-volunteer-submit:hover {
    background: #f5d100;
    transform: translateY(-2px);
}
.volunteer-note {
    font-size: 0.7rem;
    margin-top: 12px;
    text-align: center;
    opacity: 0.7;
}
/* volunteer section */
.volunteer-section .form-group {
    margin-bottom: 16px;
}
.volunteer-section label {
    font-size: 0.8rem;
    font-weight: 500;
}
.volunteer-section input, 
.volunteer-section textarea {
    background: #F8F3EA;
    border: 1px solid #ddd;
    border-radius: 28px;
    padding: 10px 16px;
    width: 100%;
    font-family: 'Inter', sans-serif;
}
/* Responsif */
@media (max-width: 800px) {
    .volunteer-section {
        margin-top: 20px;
    }
}

/* Tombol volunteer*/
.btn-volunteer-direct {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #FFDB11;
    color: #0B1957;
    padding: 12px 24px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: 0.2s;
    width: 100%;
    border: none;
    cursor: pointer;
}
.btn-volunteer-direct:hover {
    background: #f5d100;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,219,17,0.3);
}

/* Testimoni Grid */
.testimoni-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px;
    margin: 40px 0 60px;
}
.testimoni-card {
    background: white;
    border-radius: 28px;
    padding: 24px;
    box-shadow: var(--card-shadow);
    transition: 0.2s;
    border: 1px solid #f0e4d8;
}
.testimoni-card:hover {
    transform: translateY(-4px);
}
.testimoni-header {
    margin: 40px 0 20px;
}
.testimoni-card .rating {
    margin: 12px 0;
    color: #FFDB11;
}
.testimoni-card .review-text {
    font-style: italic;
    line-height: 1.5;
    margin: 12px 0;
    color: #2c3a6e;
}
.testimoni-card .reviewer {
    font-weight: 700;
    margin-top: 12px;
    border-top: 1px solid #eee;
    padding-top: 12px;
    display: flex;
    justify-content: space-between;
}
.rating-stars i {
    font-size: 1.6rem;
    cursor: pointer;
    margin-right: 8px;
    color: #ddd; 
    transition: 0.1s;
}
.rating-stars i.active {
    color: #FFDB11; 
}

select#testiRole {
    width: 100%;
    padding: 12px 16px;
    border-radius: 28px;
    border: 1px solid #ddd;
    background-color: #F8F3EA;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%230B1957" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>');
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.donation-manual {
    text-align: left;
}
.bank-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 24px 0;
}
.bank-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #F8F3EA;
    padding: 16px 20px;
    border-radius: 28px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
    border: 1px solid #f0e4d8;
}
.bank-logo {
    width: 56px;
    height: auto;
    max-height: 48px;
    object-fit: contain;
}
.bank-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.bank-details strong {
    font-size: 1rem;
    color: #0B1957;
}
.bank-details span {
    font-family: monospace;
    font-size: 0.9rem;
    color: #2c3a6e;
}

.social-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
}
.social-footer p {
    font-size: 0.85rem;
    margin-bottom: 12px;
    color: #fff;
}
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.social-icons a {
    color: white;
    font-size: 1.8rem;
    transition: transform 0.2s, color 0.2s;
}
.social-icons a:hover {
    transform: translateY(-3px);
    color: #FA9EBC;
}