/* ==========================================
   PAGE DON - LAYOUT 2 COLONNES
   ========================================== */

/* Header de la page */
.page-header {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #003893 0%, #0056d2 100%);
    color: white;
    text-align: center;
}

.page-header.full-width {
    width: 100%;
}

.page-header .page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.page-header .page-subtitle {
    font-size: 1.2rem;
    margin-top: 15px;
    opacity: 0.95;
}

/* Section 2 colonnes */
.donation-two-columns {
    padding: 80px 0;
    background: #f8f9fa;
}

.two-columns-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

/* Colonne gauche */
.left-column {
    display: flex;
    flex-direction: column;
    gap: 0 !important;
}

.right-column {
    display: flex;
    flex-direction: column;
}

/* Ensure main blocks in each column stretch to equal height */
.left-column > .donation-block:first-child,
.right-column > .donation-form-block {
    flex: 1 1 auto;
}

.donation-block h2 {
    font-size: 1.8rem;
    color: #003893;
    margin-bottom: 32px;
    font-weight: 600;
}

.donation-block .block-content {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
}

.donation-block .block-content p {
    margin-bottom: 10px;
}

/* Espacement visuel entre les blocs de la colonne gauche */
.left-column > .donation-block + .donation-block {
    margin-top: 36px !important;
}

/* Espacement spécifique entre le bloc intro et le carousel témoignages */
.left-column > .donation-block:first-child {
    margin-bottom: 0 !important;
}
.left-column > .testimonials-carousel {
    margin-top: 0;
}

/* Section supporters */
.supporters-section {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* Testimonials Carousel */
.testimonials-carousel {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: relative;
}

.testimonials-carousel h3 {
    font-size: 1.5rem;
    color: #003893;
    margin-bottom: 15px;
    font-weight: 600;
}

.testimonial-item {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.testimonial-item.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    margin-bottom: 15px;
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-content {
    padding: 12px 0;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding-top: 8px;
    border-top: 2px solid #e0e0e0;
}

.testimonial-author strong {
    color: #003893;
    font-size: 1rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.85rem;
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.testimonial-prev,
.testimonial-next {
    background: #003893;
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: #0056d2;
    transform: scale(1.1);
}

.testimonial-prev:disabled,
.testimonial-next:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: scale(1);
}

.testimonial-counter {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

.supporters-intro {
    font-size: 1rem;
    color: #666;
    margin-bottom: 25px;
    text-align: center;
}

.supporters-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.supporter-logo {
    background: #f5f5f5;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: #003893;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.supporter-logo:hover {
    border-color: #003893;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,56,147,0.15);
}

/* Colonne droite - Formulaire */
.right-column {
    position: sticky;
    top: 100px;
}

.donation-form-block {
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 2px solid #e0e0e0;
}

.donation-form-block h2 {
    font-size: 1.8rem;
    color: #003893;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}


/* Formulaire - Nouveaux champs */
.form-field {
    margin-bottom: 0 !important;
}

.form-field label {
    display: block;
    font-size: 0.95rem;
    color: #333;
        margin-bottom: 0 !important;
    font-weight: 600;
}

.form-field .required {
    color: #dc143c;
    margin-left: 3px;
}

.form-field select {
    width: 100%;
    padding: 12px 15px;
    font-size: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.form-field select:focus {
    outline: none;
    border-color: #003893;
}

/* Boutons de devise */
.currency-buttons {
    display: flex;
    gap: 10px;
}

.currency-btn {
    flex: 1;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid #ddd;
    border-radius: 8px;
    background: white;
    color: #444;
    cursor: pointer;
    transition: all 0.3s ease;
}

.currency-btn:hover {
    background: #f0f0f0;
    border-color: #003893;
}

.currency-btn.active {
    background: #003893;
    color: white;
    border-color: #003893;
}

.email-field {
    margin-bottom: 5px;
    background: linear-gradient(135deg, #e3f2fd 0%, #f0f7ff 100%);
    padding: 10px;
    border-radius: 12px;
    border: 2px solid #2196f3;
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.15);
}

.email-field label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    color: #003893;
    margin-bottom: 4px;
    font-weight: 700;
}

.email-field label::before {
    content: "✉️";
    font-size: 1.3rem;
}

#donor-email {
    width: 100%;
    padding: 14px 18px;
    font-size: 1.05rem;
    border: 2px solid #2196f3;
    border-radius: 10px;
    background: white;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}

#donor-email:focus {
    outline: none;
    border-color: #003893;
    box-shadow: 0 0 0 4px rgba(33, 150, 243, 0.2), inset 0 1px 3px rgba(0,0,0,0.1);
    transform: translateY(-1px);
}

.email-field p {
    font-size: 0.9rem;
    color: #1565c0;
    margin-top: 8px;
    font-weight: 500;
}

.comment-field {
    margin-bottom: 5px;
    background: white;
    padding: 10px;
    border-radius: 12px;
    border: 2px solid #ffa726;
    box-shadow: 0 2px 8px rgba(255, 167, 38, 0.15);
}

.comment-field label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    color: #e65100;
    margin-bottom: 4px;
    font-weight: 700;
}

.comment-field label::before {
    content: "💬";
    font-size: 1.3rem;
}

.comment-input-wrapper {
    position: relative;
}

.comment-input-wrapper i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffa726;
    font-size: 1.2rem;
    pointer-events: none;
    z-index: 1;
}

.donor-comment {
    width: 100%;
    padding: 14px 18px 14px 45px; /* Add left padding for icon */
    font-size: 1.05rem;
    border: 2px solid #ffa726;
    border-radius: 10px;
    background: white;
    resize: vertical;
    font-family: inherit;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
    min-height: 90px;
}

.donor-comment:focus {
    outline: none;
    border-color: #f57c00;
    box-shadow: 0 0 0 4px rgba(255, 167, 38, 0.2), inset 0 1px 3px rgba(0,0,0,0.1);
    transform: translateY(-1px);
}

.donor-comment::placeholder {
    color: #ff9800;
    font-style: italic;
}

/* Boutons de montant */
.amount-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    margin-bottom: 5px;
}

.amount-btn {
    padding: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #003893;
    background: white;
    border: 2px solid #003893;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.amount-btn:hover {
    background: #003893;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,56,147,0.3);
}

.amount-btn.active {
    background: #dc143c;
    color: white;
    border-color: #dc143c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220,20,60,0.4);
}

.amount-input {
    padding: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #003893;
    background: white;
    border: 2px solid #003893;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
}

.amount-input:focus {
    outline: none;
    color: blue;
    background: white;
    border-color: #003893;
    box-shadow: 0 0 0 3px rgba(0,56,147,0.1);
}

.amount-input.filled {
    background: #dc143c;
    color: white;
    border-color: #dc143c;
}

.amount-input.filled:focus {
    color: blue !important;
}

/* Montant personnalisé */
.custom-amount-input {
    margin-bottom: 5px;
}

.custom-amount-input label {
    display: block;
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
}

.custom-amount-input input {
    width: 100%;
    padding: 15px;
    font-size: 1.2rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.custom-amount-input input:focus {
    outline: none;
    border-color: #003893;
}

/* Informations de paiement */
.payment-info {
    margin-bottom: 15px;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border: 1px solid #dee2e6;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.payment-info h4 {
    margin: 0 0 15px 0;
    font-size: 1.1rem;
    color: #003893;
    font-weight: 600;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.payment-info h4 i {
    color: #dc143c;
}

.payment-info .form-field:nth-child(2) {
    margin-bottom: 20px;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.payment-method-btn {
    padding: 10px 15px;
    font-size: 0.9rem;
    border: 2px solid #ddd;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-method-btn:hover {
    border-color: #003893;
}

.payment-method-btn.active {
    background: #003893;
    color: white;
    border-color: #003893;
}

.payment-form {
    margin-top: 20px;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon input {
    flex: 1;
    padding-right: 50px; /* Space for icon */
}

.card-icon-container {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.card-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.field-microcopy {
    /* Removed */
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* États de validation */
.payment-info .form-field input.invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.25);
}

.payment-info .form-field input.valid {
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.25);
}

.paypal-btn, .moncash-btn {
    width: 100%;
    padding: 12px;
    background: #0070ba;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 10px;
}

.paypal-btn:hover {
    background: #005ea6;
}

.moncash-btn {
    background: #ff6b35;
}

.moncash-btn:hover {
    background: #e55a2b;
}

.bank-info {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 15px;
}

.bank-info h5 {
    margin: 0 0 10px 0;
    color: #003893;
}

.bank-info p {
    margin: 5px 0;
    font-size: 0.9rem;
    color: #003893;
}

.bank-info strong {
    color: #003893;
}

.payment-info-box {
    background: #e8f4fd;
    border: 1px solid #b8daff;
    border-radius: 6px;
    padding: 12px 15px;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #004085;
}

.payment-info-box i {
    color: #0066cc;
    margin-right: 8px;
}

.payment-info-box p {
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.bank-details {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 15px;
    margin: 10px 0;
}

.bank-details p {
    margin: 8px 0;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    word-break: break-all;
}

.paypal-login-section {
    text-align: center;
    padding: 20px 0;
}

.paypal-description {
    margin-bottom: 20px;
    color: #003893;
    font-size: 1rem;
    line-height: 1.5;
}

.paypal-process-info {
    background: #e8f4fd;
    border: 1px solid #b8daff;
    border-radius: 6px;
    padding: 12px 15px;
    margin: 15px 0;
    font-size: 0.9rem;
    color: #004085;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.paypal-process-info i {
    color: #0066cc;
    margin-top: 2px;
}

.paypal-login-btn {
    background: #0070ba;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 112, 186, 0.3);
}

.paypal-login-btn:hover {
    background: #005ea6;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 112, 186, 0.4);
}

.paypal-login-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 112, 186, 0.3);
}

.paypal-login-btn i {
    font-size: 1.2rem;
}

.paypal-login-btn:disabled {
    background: #cccccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.payment-info .form-field input {
    width: 100%;
    padding: 12px 15px;
    font-size: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: white;
}

.payment-info .form-field label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #333;
}

.payment-info .form-field label i {
    color: #003893;
    font-size: 1.1rem;
}

/* Colonne droite - ajustements d'espacement */
.right-column .donation-form-wrapper .form-field {
    margin-bottom: 10px !important;
}

.right-column .donation-form-wrapper .amount-buttons {
    margin-bottom: 15px;
}

.right-column .donation-form-wrapper .payment-info {
    margin-bottom: 15px;
}

.right-column .donation-form-wrapper .comment-field {
    margin-bottom: 15px;
}

/* Fréquence du don */
.frequency-choice {
    display: flex;
    gap: 8px;
    margin-bottom: 5px;
    padding: 8px;
    background: #f8f9fa;
    border-radius: 8px;
}

.frequency-choice label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: #444;
    cursor: pointer;
    font-weight: 500;
}

.frequency-choice input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

/* Bouton de don */
.donate-btn {
    width: 100%;
    padding: 18px 30px;
    font-size: 1.3rem;
    font-weight: 700;
    background: #dc143c;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.donate-btn:hover {
    background: #b01030;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
}

.donate-btn i {
    font-size: 1.2rem;
}

/* Infos paiement sécurisé */
.payment-secure {
    text-align: center;
    border-top: 1px solid #e0e0e0;
    padding-top: 15px;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.payment-secure p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-secure i {
    color: #28a745;
    font-size: 1rem;
}

/* Remonter le premier champ du formulaire */
.donation-form-wrapper .form-field:first-child {
    margin-top: -18px;
}

/* Rapprocher les boutons de montant */
.amount-buttons {
    gap: 2px !important;
}

/* Rapprocher les radios de fréquence */
.frequency-choice {
    gap: 2px !important;
}

/* Responsive */
@media (max-width: 992px) {
    .two-columns-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .right-column {
        position: static;
    }
    
    .page-header .page-title {
        font-size: 2.5rem;
    }
    
    .amount-buttons {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 60px 0 40px;
    }
    
    .page-header .page-title {
        font-size: 2rem;
    }
    
    .donation-two-columns {
        padding: 50px 0;
    }
    
    .donation-form-block {
        padding: 30px 20px;
    }
    
    .amount-buttons {
        grid-template-columns: 1fr;
    }
    
    .supporters-grid {
        grid-template-columns: 1fr;
    }
    
    .frequency-choice {
        flex-direction: column;
        gap: 15px;
    }
}

    /* Classic spacing overrides for left column donation form */
    .left-column .donation-block .donor-fields-flex {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
    }

    .left-column .donation-block .donor-fields-flex > .form-field,
    .left-column .donation-block .donor-fields-flex > .email-field {
        margin-bottom: 8px !important;
    }

    .left-column .donation-block .donor-fields-flex .name-row {
        display: flex !important;
        gap: 12px !important;
    }

    .left-column .donation-block .donor-fields-flex label {
        margin-bottom: 6px !important;
        display: block !important;
    }

    .left-column .donation-block .donor-fields-flex input,
    .left-column .donation-block .donor-fields-flex select {
        padding: 10px 12px !important;
        height: auto !important;
    }

    .left-column .donation-block .donor-fields-flex .frequency-choice {
        background: #f8f9fa !important;
        padding: 8px !important;
        gap: 8px !important;
        border-radius: 8px !important;
    }

/* ==========================================
   MULTI-STEP FORM
   ========================================== */

.multi-step-form {
    width: 100%;
    padding: 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-progress {
    margin-bottom: 30px;
}

.progress-bar {
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    margin-bottom: 20px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #003893, #0056d2);
    width: 0%;
    transition: width 0.3s ease;
}

.step-indicators {
    display: flex;
    justify-content: space-between;
}

.step-indicator {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.step-indicator.active {
    background: #003893;
    color: white;
}

.form-step {
    display: none;
    animation: fadeIn 0.3s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-step h3 {
    color: #003893;
    margin-bottom: 30px;
    font-size: 1.6rem;
    font-weight: 600;
}

.currency-btn, .amount-btn, .sector-btn, .payment-btn, .freq-btn, .name-btn {
    display: block;
    width: 100%;
    padding: 18px;
    margin: 12px 0;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
}

.currency-btn:hover, .amount-btn:hover, .sector-btn:hover, .payment-btn:hover, .freq-btn:hover, .name-btn:hover {
    border-color: #003893;
    background: #f8f9ff;
}

.currency-btn.active, .amount-btn.active, .sector-btn.active, .payment-btn.active, .freq-btn.active, .name-btn.active {
    border-color: #003893;
    background: #003893;
    color: white;
}

.amount-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.amount-input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    margin-top: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
}

.next-btn, .prev-btn, .submit-btn, .restart-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 10px 5px 0;
}

.next-btn, .submit-btn {
    background: #003893;
    color: white;
}

.next-btn:hover, .submit-btn:hover {
    background: #0056d2;
}

.prev-btn {
    background: #f8f9fa;
    color: #666;
    border: 1px solid #e0e0e0;
}

.prev-btn:hover {
    background: #e9ecef;
}

.restart-btn {
    background: #28a745;
    color: white;
}

.restart-btn:hover {
    background: #218838;
}

.next-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.donation-summary {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.donation-summary p {
    margin: 10px 0;
}

/* Left column styles */
.donation-encouragement {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.donation-encouragement h2 {
    color: #003893;
    margin-bottom: 15px;
}

.subscribe-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 20px;
    transition: background 0.3s ease;
}

.subscribe-btn:hover {
    background: #218838;
}

.testimonial-section {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.testimonial-section h3 {
    color: #003893;
    margin-bottom: 20px;
}

.testimonial {
    margin-bottom: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #003893;
}

.testimonial blockquote {
    font-style: italic;
    margin: 0 0 10px;
    color: #555;
}

.testimonial cite {
    font-weight: 600;
    color: #003893;
}

/* ==========================================
   BANK TRANSFER STYLES - FIX VISIBILITY
   ========================================== */

.bank-transfer-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.bank-details h5 {
    color: #003893;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.bank-detail-row {
    margin-bottom: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
}

.bank-detail-row:last-child {
    border-bottom: none;
}

.bank-detail-row strong {
    color: #003893;
    font-weight: 600;
    display: inline-block;
    min-width: 140px;
}

/* Force visible text color for bank transfer section */
.bank-transfer-info,
.bank-transfer-info .bank-details,
.bank-transfer-info .bank-detail-row,
.bank-transfer-info .transfer-instructions,
.bank-transfer-info .transfer-instructions h6,
.bank-transfer-info .transfer-instructions ol,
.bank-transfer-info .transfer-instructions li {
    color: #333 !important;
}

.bank-transfer-info .visible-text {
    color: #333 !important;
}

.transfer-instructions {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.transfer-instructions h6 {
    color: #003893;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.transfer-instructions ol {
    padding-left: 20px;
}

.transfer-instructions li {
    margin-bottom: 8px;
    line-height: 1.5;
}

/* ==========================================
   PAYMENT VALIDATION STYLES
   ========================================== */

.payment-form-detail input.valid {
    border-color: #28a745 !important;
    background-color: #f8fff8 !important;
}

.payment-form-detail input.invalid {
    border-color: #dc3545 !important;
    background-color: #fff8f8 !important;
}

.payment-form-detail input.valid:focus {
    box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.25);
}

.payment-form-detail input.invalid:focus {
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.25);
}

/* Validation feedback */
.payment-form-detail .form-group {
    position: relative;
}

.payment-form-detail .form-group::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
}

.payment-form-detail input.valid + .form-group::after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2328a745"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>');
}

.payment-form-detail input.invalid + .form-group::after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23dc3545"><path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"/></svg>');
}

