/* Donate Page Styles - Enhanced Vibrant Design */

/* Hero Section */
.donate-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background-size: 200% 200%;
    animation: gradientShift 10s ease infinite;
    color: #ffffff;
    padding: 100px 0 80px 0;
    position: relative;
    overflow: hidden;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.donate-hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.donate-hero-icon {
    width: 100px;
    height: 100px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    animation: floatIcon 3s ease-in-out infinite;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.donate-hero-icon i {
    font-size: 3rem;
    color: #ffffff;
}

.donate-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.donate-hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
}

/* Section Styles */
.donate-section {
    padding: 80px 0;
}

.donate-benefits {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.donate-form-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.donate-info {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin: 0;
}

/* Benefit Cards */
.benefit-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 16px 40px rgba(102, 126, 234, 0.25);
    border-color: rgba(102, 126, 234, 0.3);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.benefit-card:hover .benefit-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}

.benefit-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.benefit-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a6c7d;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Donation Card */
.donation-wrapper {
    position: relative;
}

.donation-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(102, 126, 234, 0.1);
    position: relative;
    overflow: hidden;
}

.donation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

.donation-header {
    text-align: center;
    margin-bottom: 3rem;
}

/* Payment Method Styles */
.payment-method-card {
    max-width: 900px;
    margin: 0 auto;
}

.payment-info-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.payment-info-section {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #e8ecf1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.payment-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #667eea;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payment-info-table {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-info-row {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 1.5rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.payment-info-row:last-child {
    border-bottom: none;
}

.payment-info-label {
    font-weight: 600;
    color: #5a6c7d;
    font-size: 0.95rem;
    min-width: 200px;
}

.payment-info-value {
    color: #2c3e50;
    font-size: 0.95rem;
    font-weight: 500;
    word-break: break-word;
}

.donation-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.donation-title i {
    color: #667eea;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.9;
    }
}

.donation-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin: 0;
}

/* Amount Selection */
.donation-amount-selection {
    margin-bottom: 2.5rem;
}

.amount-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.amount-btn {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid #e8ecf1;
    border-radius: 16px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.amount-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s ease;
}

.amount-btn:hover::before {
    left: 100%;
}

.amount-btn:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.2);
}

.amount-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
}

.amount-btn.active .currency,
.amount-btn.active .amount {
    color: #ffffff;
}

.amount-btn .currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: #667eea;
}

.amount-btn .amount {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
}

.custom-amount {
    margin-top: 1.5rem;
}

.custom-amount-label {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.custom-amount-label i {
    color: #667eea;
}

.input-group {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.input-group-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    font-weight: 600;
    padding: 0.75rem 1rem;
}

.form-control {
    border: 2px solid #e8ecf1;
    padding: 0.75rem 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    outline: none;
}

/* Donation Summary */
.donation-summary {
    margin-bottom: 2.5rem;
}

.summary-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(102, 126, 234, 0.2);
}

.summary-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.summary-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.summary-content {
    flex: 1;
}

.summary-label {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.summary-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #667eea;
    line-height: 1;
}

.summary-description {
    font-size: 0.95rem;
    color: #5a6c7d;
    margin: 0;
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.summary-description i {
    color: #667eea;
}

/* Donation Actions */
.donation-actions {
    text-align: center;
}

.btn-donate-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-donate-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-donate-primary:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}

.btn-donate-primary:hover::before {
    left: 100%;
}

.btn-donate-primary i {
    transition: transform 0.3s ease;
}

.btn-donate-primary:hover i {
    transform: scale(1.2);
}

.donation-note {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 1rem;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.donation-note i {
    color: #667eea;
}

/* Info Cards */
.info-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    border: 2px solid #e8ecf1;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.info-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.info-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.info-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a6c7d;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .donate-hero {
        padding: 80px 0 60px 0;
    }
    
    .donate-hero h1 {
        font-size: 2.5rem;
    }
    
    .donate-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .donate-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .donation-card {
        padding: 2rem;
    }
    
    .amount-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .donate-hero {
        padding: 60px 0 50px 0;
    }
    
    .donate-hero-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }
    
    .donate-hero-icon i {
        font-size: 2.5rem;
    }
    
    .donate-hero h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .donate-hero-subtitle {
        font-size: 1rem;
    }
    
    .donate-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .benefit-card {
        padding: 2rem;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .benefit-icon i {
        font-size: 2rem;
    }
    
    .benefit-card h3 {
        font-size: 1.25rem;
    }
    
    .donation-card {
        padding: 1.5rem;
    }
    
    .donation-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .amount-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .amount-btn {
        padding: 1.25rem;
    }
    
    .amount-btn .amount {
        font-size: 1.75rem;
    }
    
    .summary-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .summary-value {
        font-size: 2rem;
    }
    
    .btn-donate-primary {
        padding: 0.875rem 2rem;
        font-size: 1.1rem;
        width: 100%;
        justify-content: center;
    }
    
    .info-card {
        padding: 2rem;
    }
    
    /* Payment Method Responsive */
    .payment-info-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .payment-info-label {
        min-width: auto;
        font-size: 0.9rem;
    }
    
    .payment-info-value {
        font-size: 0.9rem;
        margin-left: 0;
    }
    
    .payment-info-section {
        padding: 1.5rem;
    }
    
    .payment-section-title {
        font-size: 1.1rem;
    }
}

