/* ==========================================
   MAKE DONATION PAGE STYLES
   ========================================== */

/* Section Header */
.donate-subtitle {
    color: #f26522;
    letter-spacing: 3px;
    font-weight: 600;
}

.donate-title {
    color: #1a1b2e;
    font-weight: 700;
}

.donate-desc {
    color: #888;
    max-width: 700px;
    margin: 10px auto 0;
}

/* Form Card */
.donate-form-card {
    background: #fff;
    border-radius: 14px;
    padding: 35px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}

.donate-form-card h4 {
    color: #1a1b2e;
    font-weight: 700;
    margin-bottom: 8px;
}

.donate-form-card .form-hint {
    color: #999;
    font-size: 0.88rem;
    margin-bottom: 25px;
}

/* Amount Options */
.amt-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    color: #333;
}

.amt-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.amt-btn {
    padding: 10px 22px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    background: #f9fafb;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s;
    color: #333;
}

.amt-btn.active {
    border-color: #f26522;
    background: #f26522;
    color: #fff;
}

/* Form Fields */
.donate-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.donate-field-label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    color: #333;
}

.donate-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: all 0.3s;
    background: #f9fafb;
}

.donate-input:focus {
    border-color: #f26522;
    box-shadow: 0 0 0 3px rgba(242, 101, 34, 0.1);
    background: #fff;
    outline: none;
}

.donate-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    font-size: 0.9rem;
    font-family: inherit;
    resize: vertical;
    transition: all 0.3s;
    background: #f9fafb;
}

.donate-textarea:focus {
    border-color: #f26522;
    box-shadow: 0 0 0 3px rgba(242, 101, 34, 0.1);
    background: #fff;
    outline: none;
}

.donate-submit-btn {
    background: #f26522;
    color: #fff;
    border: none;
    padding: 14px 35px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s;
    min-width: 160px;
}

.donate-submit-btn:hover {
    background: #d4541a;
    box-shadow: 0 8px 25px rgba(242, 101, 34, 0.3);
}

/* Why Donate Section */
.donate-why-card {
    background: #fff;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    margin-bottom: 20px;
}

.donate-why-card h5 {
    color: #1a1b2e;
    font-weight: 700;
    margin-bottom: 15px;
}

.donate-why-card h5 i {
    color: #f26522;
    margin-right: 8px;
}

.donate-why-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.donate-why-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f9fafb;
    border-radius: 10px;
}

.donate-why-icon {
    width: 40px;
    height: 40px;
    background: rgba(242, 101, 34, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.donate-why-icon i {
    color: #f26522;
}

.donate-why-item strong {
    color: #1a1b2e;
    font-size: 0.85rem;
}

.donate-why-item p {
    color: #888;
    font-size: 0.78rem;
    margin: 0;
}

/* Tax Benefits Section */
.donate-tax-card {
    background: linear-gradient(135deg, #1a1b2e, #2d2e45);
    border-radius: 14px;
    padding: 25px;
    color: #fff;
}

.donate-tax-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.donate-tax-card h5 i {
    color: #f26522;
    margin-right: 8px;
}

.donate-tax-card p {
    color: #ccc;
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

/* Message Area */
.donate-msg-wrap {
    margin-bottom: 20px;
}

@media (max-width: 576px) {
    .donate-form-grid {
        grid-template-columns: 1fr;
    }

    .donate-form-card {
        padding: 20px;
    }
}
