/* DONATE PAGE */

/* ══════════  DONATE SECTION  ══════════ */
.donate-sec {
    background: #fff;
    padding: 80px 40px;
}
.donate-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: start;
}

/* ── Why donate ── */
.donate-points {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 28px 0 32px;
}
.donate-point {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.dp-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(2,108,51,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.dp-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--green-dk);
    margin-bottom: 4px;
}
.dp-text {
    font-size: 13.5px;
    color: #666;
    line-height: 1.65;
}

.donate-links {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}
.donate-link-pill {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 100px;
    border: 1.5px solid rgba(2,108,51,0.2);
    color: var(--green-dk);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}
.donate-link-pill:hover {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
}

/* ── Form card ── */
.donate-form-card {
    background: var(--off);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(2,108,51,0.1);
    box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}
.form-head {
    background: var(--green-dk);
    padding: 28px 32px;
    color: white;
}
.form-head-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 6px;
}
.form-head-sub {
    font-size: 0.83rem;
    opacity: 0.75;
    line-height: 1.6;
}

/* Amount selector */
.amount-row {
    display: flex;
    gap: 10px;
    padding: 28px 32px 0;
    flex-wrap: wrap;
}
.amt-btn {
    flex: 1;
    min-width: 60px;
    padding: 11px 0;
    border: 2px solid rgba(2,108,51,0.2);
    border-radius: 8px;
    background: #fff;
    color: var(--green-dk);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}
.amt-btn:hover,
.amt-btn.active {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
}
.custom-amt-wrap {
    display: flex;
    align-items: center;
    margin: 12px 32px 0;
    border: 2px solid rgba(2,108,51,0.2);
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}
.amt-prefix {
    padding: 0 12px;
    font-size: 16px;
    font-weight: 700;
    color: var(--green);
    border-right: 1px solid rgba(2,108,51,0.15);
}
.custom-amt {
    flex: 1;
    border: none;
    outline: none;
    padding: 11px 14px;
    font-size: 15px;
    background: transparent;
    font-family: inherit;
}

/* Form fields */
.dform {
    padding: 20px 32px 32px;
}
.dform-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}
.dform-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}
.dform-group:last-of-type {
    margin-bottom: 20px;
}
.dform-label {
    font-size: 12px;
    font-weight: 700;
    color: #555;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.dform-input {
    padding: 11px 14px;
    border: 1.5px solid rgba(2,108,51,0.2);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
    background: #fff;
}
.dform-input:focus {
    border-color: var(--green);
}
.dform-textarea {
    resize: vertical;
    min-height: 80px;
}
.donate-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 15px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    letter-spacing: 0.04em;
    transition: background 0.2s, transform 0.15s;
}
.donate-submit-btn:hover {
    background: #c9141a;
    transform: translateY(-2px);
}
.form-note {
    margin-top: 14px;
    font-size: 12px;
    color: #888;
    line-height: 1.6;
    text-align: center;
}
.form-note a {
    color: var(--green);
    font-weight: 600;
}

/* ══════════  OTHER WAYS  ══════════ */
.other-help-sec {
    background: var(--off);
    padding: 80px 40px;
}
.other-help-inner {
    max-width: 1000px;
    margin: 0 auto;
}
.other-help-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.help-card {
    background: #fff;
    border-radius: 18px;
    padding: 32px 28px;
    border: 1px solid rgba(2,108,51,0.08);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all 0.25s;
}
.help-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 44px rgba(2,108,51,0.12);
}
.help-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(2,108,51,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}
.help-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--green-dk);
}
.help-text {
    font-size: 13.5px;
    color: #666;
    line-height: 1.65;
    flex: 1;
}
.help-arrow {
    font-size: 12px;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 8px;
}

/* ══════════  RESPONSIVE  ══════════ */
@media (max-width: 900px) {
    .donate-inner { grid-template-columns: 1fr; gap: 40px; }
    .other-help-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .donate-sec, .other-help-sec { padding: 56px 20px; }
    .form-head { padding: 24px 20px; }
    .amount-row { padding: 20px 20px 0; }
    .custom-amt-wrap { margin: 12px 20px 0; }
    .dform { padding: 16px 20px 24px; }
    .dform-row { grid-template-columns: 1fr; }
}
