/* Section Background Gradient */
.section_space_lg {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

/* Modern Donation Card Styles */
.donation-option {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    padding: 25px 20px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.donation-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, rgb(79, 205, 240), rgb(5, 188, 255));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.donation-option:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(58, 125, 68, 0.2);
    border-color: rgb(30, 130, 207);
}

.donation-option:hover::before {
    transform: scaleX(1);
}

.donation-amount {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3a7d44, #5cb85c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.donation-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 700;
}

.donation-description {
    color: #666;
    margin-bottom: 15px;
    min-height: 50px;
    line-height: 1.5;
    font-size: 0.9rem;
}

.donation-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.donation-benefits li {
    padding: 10px 0;
    position: relative;
    padding-left: 35px;
    color: #555;
    transition: all 0.2s ease;
}

.donation-benefits li:hover {
    color: #3a7d44;
    padding-left: 40px;
}

.donation-benefits li:before {
    content: '✓';
    color: #3a7d44;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
    background: #e8f5e9;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.btn-donate {
    background: linear-gradient(135deg, #41a6ef, #127def);
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(58, 125, 68, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-donate::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:hover::before {
    left: 100%;
}

.btn-donate:hover {
    background: linear-gradient(2.3876rad, #37c8e0, #0ba21b);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(58, 125, 68, 0.4);
    color: white;
}

/* Ticket Section Styles */
.ticket-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid #e9ecef;
    overflow: hidden;
}

.ticket-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: #3a7d44;
}

.ticket-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.ticket-image-wrapper img {
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
}

.ticket-card:hover .ticket-image-wrapper img {
    transform: scale(1.05);
}

.ticket-price {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #d4af37, #ffd700);
    -webkit-background-clip: text;
    /* -webkit-text-fill-color: transparent; */
    background-clip: text;
    margin-bottom: 10px;
}

.ticket-badge {
    display: inline-block;
    background: linear-gradient(135deg, #3a7d44, #5cb85c);
    color: white;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-divider {
    height: 3px;
    background: linear-gradient(90deg, transparent, #0699b3, transparent);
    margin: 60px 0;
}

/* Enhanced Input Styles */
.custom-amount-input {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 10px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.custom-amount-input:focus {
    border-color: #3a7d44;
    box-shadow: 0 0 0 0.2rem rgba(58, 125, 68, 0.15);
}

.input-group-text {
    background: linear-gradient(135deg, #41a6ef, #127def);
    color: white;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 10px 0 0 10px;
    padding: 10px 15px;
}