/* Add these styles for new elements */

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.objective-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.objective-card:hover {
    transform: translateY(-5px);
}

.objective-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.story-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 40px;
}

.story-content {
    padding: 30px;
}

.story-meta {
    color: var(--primary-color);
    font-weight: 600;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.approach-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step {
    text-align: center;
    padding: 25px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    font-weight: bold;
}

.impact-layers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.layer {
    text-align: center;
    padding: 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .story-card {
        grid-template-columns: 1fr;
    }
    
    .objectives-grid {
        grid-template-columns: 1fr;
    }
}


/* Main Section */
.donation-section {
    background: linear-gradient(rgba(31, 77, 58, 0.95), rgba(12, 28, 21, 0.95));
    color: white;
    padding: 60px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.highlight {
    color: #C9A961;
}

/* Impact Cards */
.impact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.impact-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}

.impact-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.impact-card.active {
    border-color: #C9A961;
    background: rgba(201, 169, 97, 0.1);
    transform: translateY(-5px);
}

.card-icon {
    font-size: 2.5rem;
    color: #C9A961;
    margin-bottom: 15px;
}

.impact-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.impact-reason {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
    min-height: 45px;
}

.quick-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.impact-btn {
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.impact-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.impact-btn.active {
    background: #C9A961;
    border-color: #C9A961;
}

/* Custom Amount */
.custom-amount-section {
    max-width: 400px;
    margin: 30px auto;
    text-align: center;
    animation: fadeIn 0.5s;
}

.amount-input-group {
    position: relative;
    margin: 20px 0;
}

.currency {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    font-weight: bold;
}

.amount-input {
    width: 100%;
    padding: 15px 15px 15px 40px;
    font-size: 1.3rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    text-align: center;
}

.amount-input:focus {
    outline: none;
    border-color: #C9A961;
}

.action-btn {
    padding: 15px 40px;
    background: #C9A961;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.action-btn:hover {
    background: #b8944c;
    transform: translateY(-2px);
}

/* Donation Summary */
.donation-summary {
    max-width: 500px;
    margin: 30px auto;
    animation: fadeIn 0.5s;
}

.summary-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    color: #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.summary-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.impact-text {
    color: #C9A961;
    font-weight: 600;
    text-align: right;
    max-width: 200px;
}

.donate-btn {
    width: 100%;
    padding: 18px;
    background: #354c3e;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    transition: all 0.3s;
}

.donate-btn:hover {
    background: #2a3d32;
    transform: translateY(-2px);
}

/* Payment Methods */
.payment-methods {
    max-width: 800px;
    margin: 40px auto;
    animation: fadeIn 0.5s;
}

.payment-suggestion {
    background:  rgba(16, 15, 15, 0.112);
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 30px;
    text-align: center;
}

.payment-suggestion i {
    color: #C9A961;
    margin-right: 8px;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.payment-option {
    background:  rgba(16, 15, 15, 0.112);
    border-radius: 10px;
    overflow: hidden;
}

.option-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(16, 15, 15, 0.112);
}

.option-header i {
    font-size: 1.8rem;
    color: #C9A961;
}

.option-details {
    padding: 20px;
}

.provider, .bank-details {
    margin-bottom: 20px;
}

.provider h5, .bank-details h5 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #C9A961;
}

.copy-btn {
    width: 100%;
    padding: 12px;
    background: #354c3e;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
}

.copy-btn:hover {
    background: #2a3d32;
}

.after-payment {
    margin-top: 30px;
    padding: 20px;
    background: rgba(16, 16, 16, 0.229);
    border-radius: 8px;
}

.after-payment ol {
    padding-left: 20px;
    margin-top: 10px;
}

.after-payment li {
    margin-bottom: 10px;
    line-height: 1.5;
}

/* Trust Indicators */
.trust-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
    text-align: center;
}

.trust-item {
    padding: 25px;
}

.trust-item i {
    font-size: 2.5rem;
    color: #C9A961;
    margin-bottom: 15px;
}

.trust-item h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.trust-item p {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .impact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .impact-cards {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}
