/* ==========================================================================
   DONASI - ELEGANT UNIFIED DESIGN
   ========================================================================== */

/* 1. HERO MINI */
.hero-mini {
    background: linear-gradient(135deg, hsla(224, 64%, 33%, 1) 0%, hsla(221, 83%, 53%, 1) 50%, hsla(224, 64%, 33%, 1) 100%);
    color: white;
    padding: 4rem 1rem 5rem 1rem; /* Padding lebih lega */
    margin-bottom: -3rem; /* Overlap effect ke card bawah */
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-mini h1 {
    margin: 0 0 0.8rem 0;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.hero-mini p {
    opacity: 0.9;
    font-size: 1.15rem;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 2. MAIN CARD LAYOUT */
.content-wrapper {
    padding-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.donasi-main-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
    padding: 3rem 2rem;
    overflow: hidden;
}

@media(max-width: 768px) {
    .donasi-main-card { padding: 2rem 1.5rem; }
}

/* 3. CONTENT TYPOGRAPHY */
.section-title {
    color: #1E3A8A;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background: #3b82f6;
    margin: 10px auto 0 auto;
    border-radius: 2px;
}

.text-content {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* 4. DONATION GRID OPTIONS */
.donasi-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.donasi-item {
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
}

.donasi-item:hover {
    border-color: #3b82f6;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -10px rgba(59, 130, 246, 0.15);
}

.donasi-item.featured {
    border-color: #f59e0b; /* Emas */
    background: #fffbeb;
}

.badge-rec {
    position: absolute;
    top: 15px;
    right: -30px;
    background: #f59e0b;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 30px;
    transform: rotate(45deg);
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.d-logo {
    height: 50px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    color: #334155;
}

.d-desc {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.btn-donate {
    display: block;
    width: 100%;
    padding: 12px 0;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-trakteer {
    background: #be1e2d; /* Warna Trakteer */
    color: white;
}
.btn-trakteer:hover { background: #9e1925; }

.btn-saweria {
    background: #f59e0b; /* Warna Saweria */
    color: white;
}
.btn-saweria:hover { background: #d97706; }

.btn-bank {
    background: #1e3a8a;
    color: white;
}
.btn-bank:hover { background: #172554; }

/* 5. IMPACT SECTION (Untuk Apa Donasi?) */
.impact-box {
    background: #F8FAFC;
    border-radius: 12px;
    padding: 2.5rem;
    margin-top: 3rem;
}

.impact-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.impact-list li {
    display: flex;
    align-items: start;
    gap: 12px;
}

.check-icon {
    color: #10b981;
    flex-shrink: 0;
    margin-top: 4px;
}

.impact-list strong {
    display: block;
    color: #1e293b;
    margin-bottom: 4px;
}

.impact-list span {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
}
