/* Quick Donate Section Styles */
.quick-donate-section {
    background-color: #f8f9fa;
    padding: 30px 0;
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    z-index: 900;
}

.quick-donate-section.sticky {
    position: fixed;
    top: 60px; /* Below sticky navigation */
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    z-index: 1900;
}

.quick-donate-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.quick-donate-title {
    font-family: 'Roboto Condensed', sans-serif;
     
    font-size: 28px;
    color: #333333;
    text-align: center;
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mobile-title {
    display: none;
}

.desktop-title {
    display: block;
}

.quick-donate-section.sticky .quick-donate-title {
    display: none;
}

.quick-donate-form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.quick-donate-section.sticky .quick-donate-form {
    gap: 15px;
}

/* Payment Type Selection */
.payment-type-selection {
    display: flex;
    gap: 0;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.payment-type-btn {
    background-color: #ffffff;
    color: #666666;
    border: 1px solid #e0e0e0;
    padding: 12px 20px;
    font-family: 'Roboto Condensed', sans-serif;
     
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payment-type-btn:first-child {
    border-right: none;
}

.payment-type-btn.active {
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    color: #ffffff;
    border-color: #2c5aa0;
}

.payment-type-btn:hover:not(.active) {
    background-color: #f0f4f8;
    color: #2c5aa0;
}

.quick-donate-section.sticky .payment-type-btn {
    padding: 8px 15px;
    font-size: 12px;
}

/* Amount Selection */
.amount-selection {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.amount-options {
    display: flex;
    gap: 10px;
}

.amount-btn {
    background-color: #ffffff;
    color: #333333;
    border: 2px solid #e0e0e0;
    padding: 12px 18px;
    font-family: 'Roboto Condensed', sans-serif;
     
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.amount-btn:hover {
    border-color: #2c5aa0;
    color: #2c5aa0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.2);
}

.amount-btn.active {
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    color: #ffffff;
    border-color: #2c5aa0;
}

.custom-amount-toggle {
    background-color: #f8f9fa;
    color: #666666;
    border: 2px solid #e0e0e0;
    padding: 12px 18px;
    font-family: 'Roboto Condensed', sans-serif;
     
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.custom-amount-toggle:hover {
    border-color: #2c5aa0;
    color: #2c5aa0;
    background-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.2);
}

.quick-donate-section.sticky .amount-btn,
.quick-donate-section.sticky .custom-amount-toggle {
    padding: 8px 12px;
    font-size: 12px;
}

/* Custom Amount Section */
.custom-amount-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.custom-amount-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.custom-amount-input-container {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.custom-amount-input-container.active {
    border-color: #2c5aa0;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.currency-symbol {
    background-color: #f8f9fa;
    color: #666666;
    padding: 12px 15px;
    font-family: 'Roboto Condensed', sans-serif;
     
    font-size: 16px;
    border-right: 1px solid #e0e0e0;
}

.custom-amount-input {
    border: none;
    outline: none;
    padding: 12px 15px;
    font-family: 'Roboto Condensed', sans-serif;
     
    font-size: 16px;
    color: #2c5aa0;
    background-color: transparent;
    width: 150px;
}

.custom-amount-input::placeholder {
    color: #cccccc;
}

.back-to-preset {
    background-color: #f8f9fa;
    color: #666666;
    border: 2px solid #e0e0e0;
    padding: 10px 15px;
    font-family: 'Roboto Condensed', sans-serif;
     
    font-size: 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.back-to-preset:hover {
    border-color: #2c5aa0;
    color: #2c5aa0;
    background-color: #ffffff;
}

.quick-donate-section.sticky .currency-symbol,
.quick-donate-section.sticky .custom-amount-input {
    padding: 8px 12px;
    font-size: 14px;
}

.quick-donate-section.sticky .custom-amount-input {
    width: 120px;
}

.quick-donate-section.sticky .back-to-preset {
    padding: 6px 10px;
    font-size: 10px;
}

/* Donation Type Selection */
.donation-type-selection {
    position: relative;
}

.donation-type-select {
    background-color: #ffffff;
    color: #333333;
    border: 2px solid #e0e0e0;
    padding: 12px 40px 12px 15px;
    font-family: 'Roboto Condensed', sans-serif;
     
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 180px;
}

.donation-type-select:hover,
.donation-type-select:focus {
    border-color: #2c5aa0;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.quick-donate-section.sticky .donation-type-select {
    padding: 8px 35px 8px 12px;
    font-size: 12px;
    min-width: 150px;
}

/* Quick Donate Button */
.quick-donate-btn {
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    font-family: 'Roboto Condensed', sans-serif;
     
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}

.quick-donate-btn:hover {
    background: linear-gradient(135deg, #1a4480, #2c5aa0);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.4);
}

.quick-donate-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(44, 90, 160, 0.3);
}

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

.quick-donate-section.sticky .quick-donate-btn {
    padding: 10px 20px;
    font-size: 14px;
}

/* Mobile Quotations Styles */
.mobile-quotations {
    display: none;
}

.quotation-container {
    position: relative;
    width: 100%;
    height: 120px;
    overflow: hidden;
    border-radius: 8px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.quotation-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.quotation-slide.active {
    opacity: 1;
    transform: translateY(0);
    z-index: 2;
}

.quotation-slide.fade-out {
    opacity: 0;
    transform: translateY(-20px);
    transition: all 1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.quotation-text {
    font-family: 'Roboto Condensed', sans-serif;
     
    font-size: 20px;
    color: #2c5aa0;
    text-align: center;
    line-height: 1.4;
    margin: 0;
    padding: 20px;
    font-style: italic;
    letter-spacing: 0.5px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .quick-donate-section {
        padding: 20px 0;
    }
    
    .quick-donate-section.sticky {
        position: relative !important;
        top: auto !important;
        box-shadow: none;
        background-color: #f8f9fa;
    }
    
    .quick-donate-container {
        padding: 0 15px;
    }
    
    .quick-donate-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    /* Hide desktop title and form on mobile */
    .desktop-title {
        display: none !important;
    }
    
    .desktop-donate-form {
        display: none !important;
    }
    
    /* Show mobile title and quotations on mobile */
    .mobile-title {
        display: block !important;
        color: #2c5aa0;
        font-size: 26px;
        margin-bottom: 25px;
    }
    
    .mobile-quotations {
        display: block !important;
    }
    
    .quotation-container {
        height: 100px;
        margin: 0 10px;
        box-shadow: 0 2px 10px rgba(44, 90, 160, 0.1);
    }
    
    .quotation-text {
        font-size: 18px;
        padding: 15px;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .quick-donate-title {
        font-size: 20px;
    }
    
    .quotation-text {
        font-size: 16px;
        padding: 10px;
    }
}
