/* Additional styles for enhanced visual appeal */

/* Enhanced logo animation */
.logo:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Gradient text animations */
.highlight {
    background: linear-gradient(45deg, #ffd700, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Enhanced hero graphics */
.hero-graphic {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-graphic::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, #667eea, #764ba2, #ffd700, #ff6b6b);
    border-radius: 50%;
    opacity: 0.1;
    animation: rotate 15s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Enhanced button animations */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

/* Enhanced card hover effects */
.stat-item,
.feature-item,
.support-card,
.contact-method {
    position: relative;
    overflow: hidden;
}

.stat-item::before,
.feature-item::before,
.support-card::before,
.contact-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(231, 76, 60, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.stat-item:hover::before,
.feature-item:hover::before,
.support-card:hover::before,
.contact-method:hover::before {
    transform: translateX(100%);
}

/* Pulse animation for call-to-action elements */
.btn-primary {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(231, 76, 60, 0); }
    100% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0); }
}

/* Enhanced modal animations */
.modal-content {
    transform: scale(0.7);
    opacity: 0;
    transition: all 0.3s ease;
}

.modal[style*="block"] .modal-content {
    transform: scale(1);
    opacity: 1;
}

/* Loading states */
.btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Enhanced typography */
.section-header h2 {
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #e74c3c, #ffd700);
    border-radius: 2px;
}

/* Enhanced stats animation */
.stat-number {
    position: relative;
    overflow: hidden;
}

.stat-number::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(231, 76, 60, 0.1), transparent);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

/* Enhanced social icons */
.footer-social a {
    position: relative;
    overflow: hidden;
}

.footer-social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #667eea, #764ba2);
    transform: scale(0);
    transition: transform 0.3s ease;
    border-radius: 50%;
}

.footer-social a:hover::before {
    transform: scale(1);
}

.footer-social a i {
    position: relative;
    z-index: 1;
}

/* Enhanced form elements */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.2);
}

/* Responsive enhancements */
@media (max-width: 768px) {
    .hero-graphic {
        width: 200px;
        height: 200px;
    }
    
    .hero-graphic i {
        font-size: 5rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .hero {
        background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    }
    
    .highlight {
        background: linear-gradient(45deg, #ffd700, #e74c3c);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .modal,
    .btn,
    .hero-buttons {
        display: none !important;
    }
    
    .hero {
        background: none !important;
        color: #333 !important;
    }
    
    .section-header h2::after {
        display: none;
    }
}

/* Payment Modal Styles */
.payment-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.payment-modal-content {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.payment-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 24px 16px;
    border-bottom: 1px solid #e1e5e9;
}

.payment-modal-header h3 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 600;
}

.payment-modal-header h3 i {
    color: #8b1538;
    margin-right: 8px;
}

.payment-modal-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #6c757d;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.payment-modal-close:hover {
    background: #f8f9fa;
    color: #495057;
}

.payment-modal-body {
    padding: 24px;
}

.donation-summary {
    text-align: center;
    margin-bottom: 24px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border: 1px solid #dee2e6;
}

.donation-summary h4 {
    margin: 0 0 12px 0;
    color: #495057;
    font-size: 1.1rem;
    font-weight: 500;
}

.donation-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.donation-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #8b1538;
}

/* Donation amount input styling */
.donation-amount-input-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.dollar-sign {
    display: inline-block;
    color: #8b1538;
    font-weight: bold;
    font-size: 2rem;
}

.donation-amount-input {
    width: 200px;
    padding: 8px 12px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    color: #8b1538;
    background-color: white;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.donation-amount-input::placeholder {
    color: #6c757d;
    font-style: italic;
    font-weight: normal;
}

.donation-amount-input:focus {
    outline: none;
    border-color: #8b1538;
    box-shadow: 0 0 0 3px rgba(139, 21, 56, 0.1);
}

.donation-amount-input::-webkit-outer-spin-button,
.donation-amount-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.donation-amount-input[type=number] {
    -moz-appearance: textfield;
}

.donation-label {
    color: #6c757d;
    font-size: 0.9rem;
}

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

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

.payment-form .form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.payment-form .form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.payment-form input[type="text"],
.payment-form input[type="number"],
.payment-fields input[type="text"],
.payment-fields input[type="number"] {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(139, 21, 56, 0.15);
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    color: #000 !important;
    font-weight: 700 !important;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 249, 250, 0.95) 100%);
    box-shadow: 
        0 4px 15px rgba(139, 21, 56, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    position: relative;
    z-index: 2;
}

.payment-form input[type="text"]::placeholder,
.payment-form input[type="number"]::placeholder,
.payment-fields input[type="text"]::placeholder,
.payment-fields input[type="number"]::placeholder {
    color: #666 !important;
    opacity: 1 !important;
    font-weight: 500 !important;
    font-style: normal !important;
}

.payment-form input[type="text"]:hover,
.payment-form input[type="number"]:hover {
    border-color: rgba(139, 21, 56, 0.3);
    box-shadow: 
        0 6px 20px rgba(139, 21, 56, 0.15),
        0 3px 12px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(252, 252, 252, 1) 100%);
}

.payment-form input[type="text"]:focus,
.payment-form input[type="number"]:focus,
.payment-fields input[type="text"]:focus,
.payment-fields input[type="number"]:focus {
    outline: none;
    border-color: #8b1538;
    box-shadow: 
        0 0 0 4px rgba(139, 21, 56, 0.15),
        0 6px 20px rgba(139, 21, 56, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(252, 252, 252, 1) 100%);
    color: #000 !important;
    font-weight: 700 !important;
}

.payment-form .input-icon-group {
    position: relative;
}

/* Add margin bottom to card name input */
.card-name-group {
    margin-bottom: 20px !important;
}

.payment-form .input-icon,
.payment-fields .input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #8b1538 !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    z-index: 3 !important;
    background: rgba(255, 255, 255, 0.9) !important;
    padding: 4px 6px !important;
    border-radius: 6px !important;
    box-shadow: 0 2px 6px rgba(139, 21, 56, 0.1) !important;
    transition: all 0.3s ease !important;
}

.payment-form .input-icon-group:hover .input-icon,
.payment-fields .input-icon-group:hover .input-icon {
    color: #fd79a8 !important;
    background: rgba(255, 255, 255, 1) !important;
    box-shadow: 0 3px 8px rgba(139, 21, 56, 0.2) !important;
    transform: translateY(-50%) scale(1.05) !important;
}

.payment-form label {
    display: block;
    margin-bottom: 8px;
    color: #495057;
    font-weight: 500;
    font-size: 0.9rem;
}

.card-element-container {
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    padding: 12px 16px;
    background: white;
    transition: border-color 0.2s ease;
}

.card-element-container:focus-within {
    border-color: #8b1538;
    box-shadow: 0 0 0 3px rgba(139, 21, 56, 0.1);
}

.card-errors {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 8px;
    min-height: 20px;
    display: none;
}

.card-errors.show {
    display: block;
}

.btn-payment {
    width: 100%;
    background: linear-gradient(135deg, #8b1538 0%, #a61e4d 100%);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-payment:hover {
    background: linear-gradient(135deg, #7a1230 0%, #8b1538 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 21, 56, 0.3);
}

.btn-payment:active {
    transform: translateY(0);
}

.btn-payment.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-payment.loading .btn-text {
    opacity: 0;
}

.btn-payment.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.payment-security {
    text-align: center;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.payment-security p {
    margin: 4px 0;
    color: #6c757d;
    font-size: 0.85rem;
}

.payment-security i {
    color: #8b1538;
    margin-right: 6px;
}

/* Payment buttons container */
.payment-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.payment-buttons .btn-payment {
    flex: 2;
}

.payment-buttons .btn-cancel {
    flex: 1;
}

/* Cancel button styles */
.btn-cancel {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.btn-cancel:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(108, 117, 125, 0.4);
    background: linear-gradient(135deg, #5a6268 0%, #343a40 100%);
}

.btn-cancel:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

/* Inline Form Styles */
.donation-toggle {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 25px auto;
    padding: 16px 24px;
    max-width: 400px;
    width: fit-content;
    background: linear-gradient(-45deg, 
        #ff69b4, 
        #ff1493, 
        #c71585, 
        #db7093, 
        #ff69b4);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.15),
        0 4px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.donation-toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(139, 21, 56, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    z-index: 1;
}

.donation-toggle:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.25),
        0 8px 25px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
    animation: gradientShift 4s ease infinite;
}

.donation-toggle:hover::after {
    width: 200px;
    height: 200px;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 55px;
    height: 28px;
    z-index: 2;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #e8eaed 0%, #d1d5db 100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 28px;
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.08),
        0 2px 6px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.9);
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 2px;
    bottom: 2px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
    box-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.15),
        0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.9);
}

input:checked + .slider {
    background: linear-gradient(135deg, #8b1538 0%, #fd79a8 100%);
    box-shadow: 
        inset 0 2px 6px rgba(139, 21, 56, 0.3),
        0 5px 15px rgba(139, 21, 56, 0.4),
        0 0 0 3px rgba(139, 21, 56, 0.1);
}

input:checked + .slider:before {
    transform: translateX(25px);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 
        0 3px 8px rgba(0, 0, 0, 0.2),
        0 2px 4px rgba(0, 0, 0, 0.15);
}

.toggle-switch:hover .slider {
    box-shadow: 
        inset 0 2px 6px rgba(0, 0, 0, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.15);
}

.toggle-switch:hover input:checked + .slider {
    box-shadow: 
        inset 0 2px 6px rgba(139, 21, 56, 0.4),
        0 8px 20px rgba(139, 21, 56, 0.5),
        0 0 0 4px rgba(139, 21, 56, 0.15);
}

.toggle-label {
    font-weight: 600;
    color: #ffffff;
    font-size: 1.1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.toggle-label::before {
    content: '💝';
    font-size: 1.1rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.donation-toggle:hover .toggle-label {
    color: #ffffff;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
    transform: translateX(5px);
}

.donation-toggle:hover .toggle-label::before {
    opacity: 1;
    transform: scale(1.1) rotate(5deg);
}

.donation-amount-section {
    animation: slideDown 0.3s ease-out;
    margin-top: 16px;
    padding: 30px;
    background: linear-gradient(135deg, 
        rgba(139, 21, 56, 0.08) 0%, 
        rgba(255, 255, 255, 0.95) 50%, 
        rgba(139, 21, 56, 0.05) 100%);
    border-radius: 20px;
    border: 2px solid transparent;
    background-clip: padding-box;
    box-shadow: 
        0 8px 32px rgba(139, 21, 56, 0.15),
        0 4px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.donation-amount-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        #8b1538, 
        #a61e4d, 
        #d63384, 
        #8b1538);
    background-size: 300% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

.donation-amount-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, 
        rgba(139, 21, 56, 0.1) 0%, 
        transparent 50%),
        radial-gradient(circle at 70% 80%, 
        rgba(214, 51, 132, 0.1) 0%, 
        transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.donation-amount-section:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 40px rgba(139, 21, 56, 0.2),
        0 6px 20px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(139, 21, 56, 0.3);
}

/* Enhanced donation amount select styling */
.donation-amount-section select {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 249, 250, 0.95) 100%);
    border: 2px solid rgba(139, 21, 56, 0.15);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 3px 12px rgba(139, 21, 56, 0.1),
        0 2px 6px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%238b1538' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(5px);
    width: 100%;
    box-sizing: border-box;
    margin: 20px auto 0 auto;
}

.donation-amount-section select:hover {
    border-color: #8b1538;
    box-shadow: 
        0 4px 15px rgba(139, 21, 56, 0.2),
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(252, 252, 252, 1) 100%);
}

.donation-amount-section select:focus {
    outline: none;
    border-color: #8b1538;
    box-shadow: 
        0 0 0 3px rgba(139, 21, 56, 0.15),
        0 4px 15px rgba(139, 21, 56, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(252, 252, 252, 1) 100%);
}

/* Custom dropdown options styling */
.donation-amount-section select option {
    background: white;
    color: #333;
    padding: 12px;
    font-weight: 500;
    border: none;
}

.donation-amount-section select option:hover {
    background: rgba(139, 21, 56, 0.1);
    color: #8b1538;
}

.donation-amount-section select option:checked {
    background: linear-gradient(135deg, #8b1538 0%, #a61e4d 100%);
    color: white;
    font-weight: 600;
}

/* Donation amount section header */
.donation-amount-section::before {
    content: '💝 Choose Your Support Level';
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: #8b1538;
    margin-bottom: 16px;
    text-align: center;
    text-shadow: 0 2px 4px rgba(139, 21, 56, 0.15);
    position: relative;
    z-index: 2;
}

.custom-amount-section {
    margin-top: 20px;
    animation: slideDown 0.4s ease-out;
    padding: 25px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(248, 249, 250, 0.9) 100%);
    border-radius: 18px;
    border: 2px solid rgba(139, 21, 56, 0.12);
    box-shadow: 
        0 6px 25px rgba(139, 21, 56, 0.12),
        0 3px 12px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-amount-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        #8b1538, 
        #a61e4d, 
        #d63384, 
        #8b1538);
    background-size: 200% 100%;
    animation: shimmer 2.5s ease-in-out infinite;
}

.custom-amount-section:hover {
    transform: translateY(-1px);
    box-shadow: 
        0 8px 30px rgba(139, 21, 56, 0.15),
        0 4px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(139, 21, 56, 0.2);
}

.custom-amount-section::before {
    content: '💝 Enter Custom Amount';
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #8b1538;
    margin-bottom: 12px;
    text-align: center;
}

.custom-amount-section input {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 249, 250, 0.95) 100%) !important;
    border: 2px solid rgba(139, 21, 56, 0.15) !important;
    border-radius: 12px !important;
    padding: 16px 20px 16px 45px !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: #333 !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 15px rgba(139, 21, 56, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
    width: 100% !important;
    box-sizing: border-box !important;
    position: relative !important;
    z-index: 10 !important;
    backdrop-filter: blur(5px) !important;
}

.custom-amount-section input::placeholder {
    color: #666 !important;
    opacity: 1 !important;
    font-weight: 500 !important;
    font-style: normal !important;
}

/* Enhanced styling for custom amount input icon */
.custom-amount-section .input-icon {
    position: absolute !important;
    left: 12px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: #8b1538 !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    z-index: 15 !important;
    background: white !important;
    padding: 2px 4px !important;
    border-radius: 4px !important;
    box-shadow: 0 1px 3px rgba(139, 21, 56, 0.1) !important;
}

.custom-amount-section .input-icon i {
    color: #8b1538 !important;
    font-weight: 600 !important;
}

.custom-amount-section input:hover {
    border-color: #8b1538;
    box-shadow: 0 4px 12px rgba(139, 21, 56, 0.15);
}

.custom-amount-section input:focus {
    outline: none;
    border-color: #8b1538;
    box-shadow: 0 0 0 3px rgba(139, 21, 56, 0.1);
    transform: translateY(-1px);
}

.payment-fields {
    animation: slideDown 0.4s ease-out;
    margin-top: 20px;
    padding: 30px;
    background: linear-gradient(135deg, 
        rgba(139, 21, 56, 0.08) 0%, 
        rgba(255, 255, 255, 0.95) 50%, 
        rgba(139, 21, 56, 0.05) 100%);
    border-radius: 20px;
    border: 2px solid transparent;
    background-clip: padding-box;
    box-shadow: 
        0 8px 32px rgba(139, 21, 56, 0.15),
        0 4px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.payment-fields::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        #8b1538, 
        #a61e4d, 
        #d63384, 
        #8b1538);
    background-size: 300% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

.payment-fields::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, 
        rgba(139, 21, 56, 0.1) 0%, 
        transparent 50%),
        radial-gradient(circle at 70% 80%, 
        rgba(214, 51, 132, 0.1) 0%, 
        transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.payment-fields:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 40px rgba(139, 21, 56, 0.2),
        0 6px 20px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(139, 21, 56, 0.3);
}

.payment-fields::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8b1538, #a61e4d, #8b1538);
    background-size: 200% 100%;
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.payment-section-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px 0;
    border-bottom: 2px solid rgba(139, 21, 56, 0.08);
    position: relative;
    z-index: 2;
}

.payment-section-header::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, 
        #8b1538, 
        #a61e4d, 
        #d63384, 
        #8b1538);
    background-size: 200% 100%;
    animation: shimmer 2.5s ease-in-out infinite;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(139, 21, 56, 0.3);
}

.payment-section-header h4 {
    margin: 0 0 12px 0;
    color: #8b1538;
    font-size: 1.4rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(139, 21, 56, 0.15);
    position: relative;
    z-index: 2;
}

.payment-section-header p {
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.payment-section-header h4 i {
    margin-right: 10px;
    color: #a61e4d;
    font-size: 1.2em;
}

.payment-section-header p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.8);
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    box-shadow: 0 2px 6px rgba(139, 21, 56, 0.1);
}

.card-details-row {
    display: flex;
    flex-direction: row;
    gap: 35px;
    margin-top: 12px;
    justify-content: center;
    align-items: flex-start;
}

.card-details-row .input-icon-group {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
}

.card-details-row .input-icon-group input {
    width: 100%;
    min-width: 0;
}

/* Make expiry date field wider */
.card-details-row .input-icon-group:nth-child(1) {
    max-width: 140px;
    min-width: 140px;
}

/* Make CVC field smaller */
.card-details-row .input-icon-group:last-child {
    max-width: 120px;
    min-width: 120px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
        max-height: 0;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        max-height: 500px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .payment-modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .payment-modal-header {
        padding: 20px 20px 12px;
    }
    
    .payment-modal-body {
        padding: 20px;
    }
    
    .donation-amount {
        font-size: 1.75rem;
    }
    
    .btn-payment {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    .payment-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .payment-buttons .btn-payment,
    .payment-buttons .btn-cancel {
        flex: none;
        width: 100%;
    }
    
    .card-details-row {
        flex-direction: column;
        gap: 8px;
    }
    
    .donation-toggle {
        padding: 10px;
        gap: 10px;
    }
    
    .toggle-label {
        font-size: 0.9rem;
    }
}

/* Complete Donation Button Styles */
.btn-donation {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg,
        #00b894 0%,
        #00cec9 50%,
        #00d2a2 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 8px 25px rgba(0, 184, 148, 0.3),
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-donation::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    transition: left 0.6s ease;
}

.btn-donation:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 35px rgba(0, 184, 148, 0.4),
        0 6px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, 
        #00cec9 0%, 
        #00d2a2 50%, 
        #00b894 100%);
}

.btn-donation:hover::before {
    left: 100%;
}

.btn-donation:active {
    transform: translateY(-1px);
    box-shadow: 
        0 6px 20px rgba(0, 184, 148, 0.3),
        0 3px 10px rgba(0, 0, 0, 0.2);
}

.btn-donation .btn-text {
    position: relative;
    z-index: 2;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.btn-donation i {
    position: relative;
    z-index: 2;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-donation:hover i {
    transform: translateX(3px);
}

/* Suggestions Modal Styles */
.suggestions-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease-out;
}

.suggestions-modal-content {
    position: relative;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(248, 249, 250, 0.95) 100%);
    margin: 2% auto;
    padding: 0;
    border-radius: 24px;
    width: 90%;
    max-width: 500px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(139, 21, 56, 0.1);
    animation: slideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}



.suggestions-modal-header {
    background: linear-gradient(135deg, #8b1538 0%, #fd79a8 100%);
    color: white;
    padding: 15px 30px 20px 30px;
    border-radius: 24px 24px 0 0;
    text-align: center;
    position: relative;
}

.suggestions-modal-header h3 {
    margin: 0 0 10px 0;
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.suggestions-modal-header p {
    margin: 0;
    font-size: 1.1rem;
    opacity: 0.95;
    font-weight: 500;
}

.suggestions-modal-body {
    padding: 30px;
}

.suggestions-modal-body p {
    margin: 0 0 20px 0;
    font-size: 1.1rem;
    color: #495057;
    line-height: 1.6;
    text-align: center;
}

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

.suggestions-form textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    min-height: 120px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.9);
}

.suggestions-form textarea:focus {
    outline: none;
    border-color: #8b1538;
    box-shadow: 0 0 0 3px rgba(139, 21, 56, 0.1);
    background: white;
}

.suggestions-char-count {
    text-align: right;
    margin-top: 8px;
    font-size: 0.9rem;
    color: #6c757d;
}

.suggestions-modal-footer {
    padding: 20px 30px 30px 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-no-suggestions,
.btn-submit-suggestions {
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 120px;
    justify-content: center;
}

.btn-no-suggestions {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

.btn-no-suggestions:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(108, 117, 125, 0.4);
}

.btn-submit-suggestions {
    background: linear-gradient(135deg, #8b1538 0%, #fd79a8 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(139, 21, 56, 0.3);
}

.btn-submit-suggestions:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(139, 21, 56, 0.4);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Validation animations */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

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

@keyframes slideInRight {
    from { 
        opacity: 0; 
        transform: translateX(100%); 
    }
    to { 
        opacity: 1; 
        transform: translateX(0); 
    }
}

/* Error message styling */
.error-message {
    color: #dc3545 !important;
    font-size: 0.875rem !important;
    margin-top: 0.25rem !important;
    margin-left: 0.5rem !important;
    font-weight: 500 !important;
    animation: fadeIn 0.3s ease !important;
    display: block !important;
    position: relative !important;
    z-index: 10 !important;
}

/* Input field text styling */
input[type="text"], 
input[type="email"], 
input[type="number"],
select,
textarea {
    color: #000 !important;
    font-weight: bold !important;
}

input[type="text"]::placeholder, 
input[type="email"]::placeholder, 
input[type="number"]::placeholder,
textarea::placeholder {
    color: white !important;
    font-weight: normal !important;
}

/* Donation dropdown styling */
#donationAmount {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
    border: 2px solid #e9ecef !important;
    border-radius: 12px !important;
    color: #495057 !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

/* Dynamic color classes for donation select - More specific selectors */
#donationAmount.donation-color-5 {
    background-color: #fff0f5 !important;
    color: #8b1538 !important;
    font-weight: bold !important;
}

#donationAmount.donation-color-10 {
    background-color: #ffe4e1 !important;
    color: #8b1538 !important;
    font-weight: bold !important;
}

#donationAmount.donation-color-25 {
    background-color: #ffdab9 !important;
    color: #8b1538 !important;
    font-weight: bold !important;
}

#donationAmount.donation-color-50 {
    background-color: #ffb6c1 !important;
    color: #8b1538 !important;
    font-weight: bold !important;
}

#donationAmount.donation-color-100 {
    background-color: #ff69b4 !important;
    color: white !important;
    font-weight: bold !important;
}

#donationAmount.donation-color-250 {
    background-color: #ff1493 !important;
    color: white !important;
    font-weight: bold !important;
}

#donationAmount.donation-color-500 {
    background-color: #c71585 !important;
    color: white !important;
    font-weight: bold !important;
}

#donationAmount.donation-color-1000 {
    background-color: #8b1538 !important;
    color: white !important;
    font-weight: bold !important;
}

#donationAmount.donation-color-custom {
    background-color: #f8f8ff !important;
    color: #8b1538 !important;
    font-weight: bold !important;
}

#donationAmount:focus {
    outline: none !important;
    border-color: #8b1538 !important;
    box-shadow: 0 0 0 3px rgba(139, 21, 56, 0.1) !important;
    background: linear-gradient(135deg, #ffffff 0%, #fff5f7 100%) !important;
}

#donationAmount option {
    background-color: white !important;
    color: #495057 !important;
    font-weight: 500 !important;
    padding: 8px 12px !important;
}

/* Selected option colors based on value */
#donationAmount option[value="5"]:checked,
#donationAmount option[value="5"]:selected {
    background-color: #fff0f5 !important;
    color: #8b1538 !important;
    font-weight: bold !important;
}

#donationAmount option[value="10"]:checked,
#donationAmount option[value="10"]:selected {
    background-color: #ffe4e1 !important;
    color: #8b1538 !important;
    font-weight: bold !important;
}

#donationAmount option[value="25"]:checked,
#donationAmount option[value="25"]:selected {
    background-color: #ffdab9 !important;
    color: #8b1538 !important;
    font-weight: bold !important;
}

#donationAmount option[value="50"]:checked,
#donationAmount option[value="50"]:selected {
    background-color: #ffb6c1 !important;
    color: #8b1538 !important;
    font-weight: bold !important;
}

#donationAmount option[value="100"]:checked,
#donationAmount option[value="100"]:selected {
    background-color: #ff69b4 !important;
    color: white !important;
    font-weight: bold !important;
}

#donationAmount option[value="250"]:checked,
#donationAmount option[value="250"]:selected {
    background-color: #ff1493 !important;
    color: white !important;
    font-weight: bold !important;
}

#donationAmount option[value="500"]:checked,
#donationAmount option[value="500"]:selected {
    background-color: #c71585 !important;
    color: white !important;
    font-weight: bold !important;
}

#donationAmount option[value="1000"]:checked,
#donationAmount option[value="1000"]:selected {
    background-color: #8b1538 !important;
    color: white !important;
    font-weight: bold !important;
}

#donationAmount option[value="custom"]:checked,
#donationAmount option[value="custom"]:selected {
    background-color: #f8f8ff !important;
    color: #8b1538 !important;
    font-weight: bold !important;
}

#donationAmount option:hover {
    background-color: #f8f9fa !important;
    color: #8b1538 !important;
}

/* Input error state */
.input-error {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1) !important;
    color: #000 !important;
    font-weight: bold !important;
}

/* Flash animation for error state */
@keyframes flashWhite {
    0% { background-color: #fff5f5; }
    50% { background-color: white; }
    100% { background-color: #fff5f5; }
}

.input-error-flash {
    animation: flashWhite 2s ease-in-out;
}

/* Input success state */
.input-success {
    border-color: #28a745 !important;
    background-color: #f8fff9 !important;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1) !important;
    color: #000 !important;
    font-weight: bold !important;
}

/* Congratulations Effect */
.congratulations-effect {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 999;
    animation: congratulationsAnimation 2s ease-out forwards;
}

@keyframes congratulationsAnimation {
    0% {
        background: radial-gradient(circle, rgba(139, 21, 56, 0.8) 0%, transparent 70%);
        opacity: 0;
    }
    50% {
        background: radial-gradient(circle, rgba(139, 21, 56, 0.6) 0%, transparent 70%);
        opacity: 1;
    }
    100% {
        background: radial-gradient(circle, rgba(139, 21, 56, 0) 0%, transparent 70%);
        opacity: 0;
    }
}

/* Responsive styles for suggestions modal */
@media (max-width: 768px) {
    .suggestions-modal-content {
        width: 95%;
        max-width: 400px;
        margin: 5% auto;
    }
    
    .suggestions-modal-header {
        padding: 20px 20px 15px 20px;
    }
    
    .suggestions-modal-header h3 {
        font-size: 1.5rem;
    }
    
    .suggestions-modal-body {
        padding: 20px;
    }
    
    .suggestions-modal-footer {
        padding: 15px 20px 20px 20px;
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-no-suggestions,
    .btn-submit-suggestions {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .suggestions-modal-content {
        width: 98%;
        max-width: 350px;
        margin: 2% auto;
    }
    
    .suggestions-modal-header {
        padding: 15px 15px 10px 15px;
    }
    
    .suggestions-modal-header h3 {
        font-size: 1.3rem;
    }
    
    .suggestions-modal-body {
        padding: 15px;
    }
    
    .suggestions-modal-footer {
        padding: 10px 15px 15px 15px;
    }
    
    .suggestions-form textarea {
        min-height: 100px;
        padding: 12px;
    }
}
