/* ============================================
   ARISE BY GRACE - PARTNER PAGE STYLES
   ============================================ */

/* ----- PAGE BANNER ----- */
.page-banner {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px;
}

/* Partner page banner with image - SAME AS ABOUT PAGE */
.partner-banner {
    background: 
        linear-gradient(135deg, rgba(27, 94, 32, 0.75), rgba(13, 71, 161, 0.65)),
        url('images/image6.jpeg') center/cover no-repeat;
    background-attachment: fixed;
}

/* Banner overlay - SAME GREEN-BLUE OVERLAY AS ABOUT PAGE */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.05), rgba(13, 71, 161, 0.05));
}

.banner-content {
    position: relative;
    z-index: 1;
    color: #FFFFFF;
    padding: 40px 20px;
}

.banner-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.banner-content h1 {
    font-family: 'Merriweather', serif;
    font-size: 3.5rem;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.banner-content p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* ----- PARTNER INTRO ----- */
.partner-intro {
    padding: 80px 0;
    background: #FFFFFF;
}

.partner-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.partner-intro-text .section-tag {
    margin-bottom: 8px;
}

.partner-intro-text h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.8rem;
    color: #1B5E20;
    line-height: 1.2;
    margin-bottom: 20px;
}

.partner-intro-text p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.partner-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: #F8FAF8;
    border-radius: 10px;
    border: 1px solid rgba(27, 94, 32, 0.08);
}

.benefit-item i {
    color: #1B5E20;
    font-size: 1.2rem;
}

.benefit-item span {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
}

.partner-intro-image img {
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 450px;
    object-fit: cover;
}

/* ----- WAYS TO PARTNER ----- */
.ways-to-partner {
    padding: 80px 0;
    background: #F8FAF8;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.partner-card {
    background: #FFFFFF;
    padding: 35px 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(27, 94, 32, 0.05);
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: #1B5E20;
}

.partner-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.1), rgba(13, 71, 161, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-card-icon i {
    font-size: 2rem;
    color: #1B5E20;
}

.partner-card h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.2rem;
    color: #0D47A1;
    margin-bottom: 12px;
}

.partner-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.partner-card .btn {
    font-size: 0.9rem;
    padding: 10px 24px;
}

.donate-btn {
    background: linear-gradient(135deg, #1B5E20, #2E7D32) !important;
}

.volunteer-btn {
    background: linear-gradient(135deg, #0D47A1, #1976D2) !important;
}

.support-btn {
    background: linear-gradient(135deg, #E65100, #F57C00) !important;
}

.church-btn {
    background: linear-gradient(135deg, #4A148C, #7B1FA2) !important;
}

/* ----- DONATION SECTION ----- */
.donation-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.donation-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.donation-info h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    color: #1B5E20;
    margin-bottom: 16px;
}

.donation-info > p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.donation-impacts {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.impact-item {
    display: flex;
    gap: 16px;
    padding: 16px 20px;
    background: #F8FAF8;
    border-radius: 12px;
    border-left: 4px solid #1B5E20;
}

.impact-item i {
    font-size: 1.5rem;
    color: #1B5E20;
    margin-top: 4px;
}

.impact-item h4 {
    font-size: 1rem;
    color: #0D47A1;
    margin-bottom: 4px;
}

.impact-item p {
    color: #555;
    font-size: 0.9rem;
    margin: 0;
}

/* ----- DONATION FORM ----- */
.donation-form-wrapper {
    background: #F8FAF8;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.donation-form h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.6rem;
    color: #1B5E20;
    text-align: center;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1B5E20;
}

.amount-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

.amount-btn {
    padding: 8px 16px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    background: #FFFFFF;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
    transition: all 0.3s ease;
}

.amount-btn:hover {
    border-color: #1B5E20;
    background: rgba(27, 94, 32, 0.05);
}

.amount-btn.active {
    border-color: #1B5E20;
    background: #1B5E20;
    color: #FFFFFF;
}

.custom-amount {
    display: none;
    width: 100%;
    padding: 10px 16px;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    font-size: 1rem;
}

.custom-amount:focus {
    outline: none;
    border-color: #1B5E20;
}

.submit-donation {
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
    padding: 16px;
}

.donation-note {
    text-align: center;
    font-size: 0.85rem;
    color: #777;
    margin-top: 12px;
}

.donation-note i {
    color: #1B5E20;
    margin-right: 6px;
}

/* ----- VOLUNTEER SECTION ----- */
.volunteer-section {
    padding: 80px 0;
    background: #F8FAF8;
}

.volunteer-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.volunteer-image img {
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.volunteer-content .section-tag {
    margin-bottom: 8px;
}

.volunteer-content h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    color: #1B5E20;
    line-height: 1.2;
    margin-bottom: 16px;
}

.volunteer-content > p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.volunteer-opportunities {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 30px;
}

.vol-opp {
    display: flex;
    gap: 16px;
    padding: 14px 18px;
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid rgba(27, 94, 32, 0.08);
}

.vol-opp i {
    font-size: 1.3rem;
    color: #1B5E20;
    margin-top: 2px;
}

.vol-opp h4 {
    font-size: 1rem;
    color: #0D47A1;
    margin-bottom: 2px;
}

.vol-opp p {
    color: #555;
    font-size: 0.9rem;
    margin: 0;
}

/* ----- PARTNER TESTIMONIALS ----- */
.partner-testimonials {
    padding: 80px 0;
    background: #FFFFFF;
}

/* ============================================
   PARTNER PAGE RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .partner-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .partner-intro-image img {
        height: 350px;
    }

    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .donation-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .volunteer-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .volunteer-image img {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .page-banner {
        min-height: 350px;
        background-attachment: scroll;
    }

    .banner-content h1 {
        font-size: 2.5rem;
    }

    .banner-content p {
        font-size: 1rem;
    }

    .partner-benefits {
        grid-template-columns: 1fr;
    }

    .partner-grid {
        grid-template-columns: 1fr;
    }

    .partner-intro-text h2 {
        font-size: 2rem;
    }

    .donation-form-wrapper {
        padding: 25px 20px;
    }

    .amount-buttons {
        gap: 8px;
    }

    .amount-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .volunteer-content h2 {
        font-size: 2rem;
    }

    .donation-info h2 {
        font-size: 2rem;
    }

    .donation-impacts {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .page-banner {
        min-height: 280px;
    }

    .banner-content h1 {
        font-size: 2rem;
    }

    .banner-content p {
        font-size: 0.9rem;
    }

    .partner-intro-text h2 {
        font-size: 1.6rem;
    }

    .partner-intro-image img {
        height: 250px;
    }

    .volunteer-image img {
        height: 250px;
    }

    .donation-info h2 {
        font-size: 1.6rem;
    }

    .donation-form-wrapper {
        padding: 20px 15px;
    }

    .donation-form h3 {
        font-size: 1.3rem;
    }

    .amount-buttons {
        gap: 6px;
    }

    .amount-btn {
        padding: 5px 10px;
        font-size: 0.75rem;
    }

    .impact-item {
        padding: 12px 14px;
    }

    .vol-opp {
        padding: 12px 14px;
    }

    .volunteer-content h2 {
        font-size: 1.6rem;
    }
}
/* ============================================
   DONATION MODAL POPUP
   ============================================ */

.donation-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.3s ease;
}

.donation-modal.active {
    display: flex;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    background: #FFFFFF;
    border-radius: 24px;
    max-width: 560px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px 35px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    animation: modalSlideUp 0.4s ease;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: #F5F5F5;
    color: #333;
    transform: rotate(90deg);
}

/* ----- MODAL HEADER ----- */
.modal-header {
    text-align: center;
    margin-bottom: 28px;
}

.modal-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.1), rgba(13, 71, 161, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-icon i {
    font-size: 2.2rem;
    color: #1B5E20;
}

.modal-header h2 {
    font-family: 'Merriweather', serif;
    font-size: 1.8rem;
    color: #1B5E20;
    margin-bottom: 8px;
}

.modal-subtitle {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ----- BANK DETAILS ----- */
.bank-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.bank-detail-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: #F8FAF8;
    border-radius: 12px;
    border: 1px solid rgba(27, 94, 32, 0.06);
    transition: all 0.3s ease;
}

.bank-detail-item:hover {
    background: #F0F5F0;
    border-color: rgba(27, 94, 32, 0.15);
}

.bank-detail-item.paybill {
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.08), rgba(13, 71, 161, 0.08));
    border-color: #1B5E20;
    border-width: 2px;
}

.detail-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.detail-icon i {
    font-size: 1.1rem;
    color: #1B5E20;
}

.detail-info {
    flex: 1;
}

.detail-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888;
    font-weight: 600;
}

.detail-value {
    display: block;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1A1A1A;
}

.detail-value.highlight {
    color: #1B5E20;
    font-size: 1.3rem;
    font-weight: 700;
}

.detail-copy {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #E0E0E0;
}

.detail-copy:hover {
    background: #1B5E20;
    border-color: #1B5E20;
}

.detail-copy:hover i {
    color: #FFFFFF;
}

.detail-copy i {
    font-size: 0.85rem;
    color: #777;
    transition: color 0.3s ease;
}

/* ----- MODAL INSTRUCTIONS ----- */
.modal-instructions {
    background: #F8FAF8;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 24px;
    border-left: 4px solid #1B5E20;
}

.modal-instructions h4 {
    font-size: 0.95rem;
    color: #0D47A1;
    margin-bottom: 12px;
}

.modal-instructions h4 i {
    color: #1B5E20;
    margin-right: 8px;
}

.modal-instructions ol {
    padding-left: 20px;
    margin: 0;
}

.modal-instructions ol li {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.8;
    padding-left: 4px;
}

.modal-instructions ol li strong {
    color: #1B5E20;
}

/* ----- MODAL FOOTER ----- */
.modal-footer {
    text-align: center;
}

.modal-thanks {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 16px;
}

.modal-thanks i {
    margin-right: 6px;
}

.modal-done-btn {
    padding: 12px 40px;
    font-size: 1rem;
    background: linear-gradient(135deg, #1B5E20, #2E7D32) !important;
}

.modal-done-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 94, 32, 0.3);
}

/* ----- COPY TOAST NOTIFICATION ----- */
.copy-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #1B5E20;
    color: #FFFFFF;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    opacity: 0;
    transition: all 0.4s ease;
}

.copy-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.copy-toast i {
    margin-right: 8px;
}

/* ============================================
   MODAL RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .modal-content {
        padding: 30px 20px;
        max-width: 95%;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .bank-detail-item {
        padding: 12px 14px;
        gap: 12px;
    }

    .detail-value {
        font-size: 0.95rem;
    }

    .detail-value.highlight {
        font-size: 1.1rem;
    }

    .detail-icon {
        width: 34px;
        height: 34px;
        min-width: 34px;
    }

    .detail-icon i {
        font-size: 0.9rem;
    }

    .modal-instructions {
        padding: 16px 18px;
    }

    .modal-instructions ol li {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .modal-content {
        padding: 24px 16px;
        border-radius: 16px;
    }

    .modal-header h2 {
        font-size: 1.3rem;
    }

    .modal-subtitle {
        font-size: 0.85rem;
    }

    .bank-detail-item {
        padding: 10px 12px;
        gap: 10px;
        flex-wrap: wrap;
    }

    .detail-value {
        font-size: 0.9rem;
    }

    .detail-value.highlight {
        font-size: 1rem;
    }

    .detail-copy {
        width: 30px;
        height: 30px;
        min-width: 30px;
    }

    .detail-copy i {
        font-size: 0.7rem;
    }

    .modal-done-btn {
        padding: 10px 30px;
        font-size: 0.9rem;
    }
}
/* ============================================
   DONATION OPTION 6 - BANK DETAILS
   ============================================ */

.donation-option6-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

/* ----- DONATION CARDS ----- */
.donation-card {
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(27, 94, 32, 0.06);
}

.donation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.bank-card:hover {
    border-color: #1B5E20;
}

.mpesa-card:hover {
    border-color: #4CAF50;
}

/* ----- CARD HEADER ----- */
.card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    background: #F8FAF8;
    border-bottom: 1px solid rgba(27, 94, 32, 0.06);
}

.card-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bank-card .card-icon {
    background: rgba(27, 94, 32, 0.1);
    color: #1B5E20;
}

.mpesa-card .card-icon {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.card-icon i {
    font-size: 1.3rem;
}

.card-header h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.2rem;
    color: #1A1A1A;
    margin: 0;
}

/* ----- CARD BODY ----- */
.card-body {
    padding: 20px 24px;
}

.detail-row {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    gap: 8px;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row.highlight {
    background: rgba(27, 94, 32, 0.03);
    margin: 0 -12px;
    padding: 10px 12px;
    border-radius: 8px;
    border-bottom: none;
}

.detail-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888;
    font-weight: 600;
    min-width: 100px;
}

.detail-value {
    flex: 1;
    font-size: 1rem;
    font-weight: 600;
    color: #1A1A1A;
}

.detail-row.highlight .detail-value {
    color: #1B5E20;
}

.copy-btn {
    background: none;
    border: none;
    padding: 4px 8px;
    cursor: pointer;
    color: #999;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.copy-btn:hover {
    background: #F0F0F0;
    color: #1B5E20;
}

.copy-btn i {
    font-size: 0.85rem;
}

/* ----- M-PESA INSTRUCTIONS ----- */
.mpesa-instructions {
    padding: 16px 24px 20px;
    background: #F8FAF8;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.mpesa-instructions p {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.mpesa-instructions p i {
    color: #4CAF50;
    margin-right: 6px;
}

.mpesa-instructions ol {
    padding-left: 20px;
    margin: 0;
}

.mpesa-instructions ol li {
    color: #555;
    font-size: 0.85rem;
    line-height: 1.8;
}

.mpesa-instructions ol li strong {
    color: #4CAF50;
}

/* ----- DONATION HELP ----- */
.donation-help {
    grid-column: 1 / -1;
    text-align: center;
    padding: 24px;
    background: #F8FAF8;
    border-radius: 16px;
    border: 1px solid rgba(27, 94, 32, 0.06);
}

.donation-help p {
    font-size: 1rem;
    color: #555;
}

.donation-help p i {
    color: #1B5E20;
    margin-right: 8px;
}

.help-contact {
    font-size: 1.05rem !important;
    margin-top: 6px;
}

.help-contact a {
    color: #1B5E20;
    font-weight: 600;
    text-decoration: none;
}

.help-contact a:hover {
    text-decoration: underline;
}

.social-donate {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
}

.social-donate span {
    font-size: 0.9rem;
    color: #888;
}

.social-donate a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    color: #555;
    transition: all 0.3s ease;
    border: 1px solid #E0E0E0;
}

.social-donate a:hover {
    background: #1B5E20;
    color: #FFFFFF;
    border-color: #1B5E20;
    transform: translateY(-2px);
}

/* ----- COPY TOAST ----- */
.copy-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #1B5E20;
    color: #FFFFFF;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    opacity: 0;
    transition: all 0.4s ease;
}

.copy-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.copy-toast i {
    margin-right: 10px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .donation-option6-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .donation-option6-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
    }

    .detail-row {
        flex-wrap: wrap;
        gap: 4px;
    }

    .detail-label {
        min-width: 100%;
        font-size: 0.7rem;
    }

    .detail-value {
        font-size: 0.95rem;
    }

    .card-header {
        padding: 16px 18px;
    }

    .card-body {
        padding: 16px 18px;
    }

    .mpesa-instructions {
        padding: 14px 18px 16px;
    }

    .mpesa-instructions ol li {
        font-size: 0.8rem;
    }

    .donation-help {
        padding: 18px;
    }

    .help-contact {
        font-size: 0.95rem !important;
    }

    .social-donate {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .card-header h3 {
        font-size: 1rem;
    }

    .card-icon {
        width: 36px;
        height: 36px;
    }

    .card-icon i {
        font-size: 1rem;
    }

    .detail-value {
        font-size: 0.85rem;
    }

    .copy-btn {
        padding: 2px 6px;
    }

    .copy-btn i {
        font-size: 0.7rem;
    }

    .donation-help p {
        font-size: 0.9rem;
    }

    .mpesa-instructions ol li {
        font-size: 0.75rem;
    }
}