/* ============================================
   DONATION PAGE SPECIFIC STYLES
   ============================================ */

/* Hero Section */
.donate-hero {
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.8)), url('../images/donate-hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0 80px;
    position: relative;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 5px;
}

.stat-text {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Quick Donate Section */
.quick-donate {
    background: #f8f9fa;
    padding: 80px 0;
}

.section-header-center {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-subtitle {
    color: #7f8c8d;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.quick-amounts {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.amount-btn {
    padding: 15px 30px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.amount-btn:hover {
    border-color: #4CAF50;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.amount-btn.active {
    background: #4CAF50;
    color: white;
    border-color: #4CAF50;
}

#customAmountBtn {
    background: #3498db;
    color: white;
    border-color: #3498db;
}

.custom-amount-input {
    max-width: 500px;
    margin: 0 auto;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: none;
}

.custom-amount-input.show {
    display: block;
}

.input-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.input-group .currency {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.2rem;
}

.input-group input {
    flex: 1;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1.1rem;
}

.input-group input:focus {
    outline: none;
    border-color: #4CAF50;
}

/* Main Donation Section */
.main-donate {
    padding: 80px 0;
}

.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

@media (max-width: 992px) {
    .two-column-layout {
        grid-template-columns: 1fr;
    }
}

/* Donation Form */
.donation-form-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.form-header {
    background: linear-gradient(135deg, #2c3e50, #4a6491);
    color: white;
    padding: 30px;
    text-align: center;
}

.form-header h2 {
    margin: 0 0 10px 0;
    font-size: 1.8rem;
}

.form-header p {
    opacity: 0.9;
    margin: 0;
}

.form-section {
    padding: 30px;
    border-bottom: 1px solid #eee;
}

.form-section:last-child {
    border-bottom: none;
}

.form-section h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

/* Donation Type Selection */
.donation-type-select {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

@media (max-width: 576px) {
    .donation-type-select {
        grid-template-columns: 1fr;
    }
}

.donation-type-option {
    cursor: pointer;
}

.donation-type-option input {
    display: none;
}

.donation-type-option .option-content {
    padding: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.donation-type-option .option-content i {
    font-size: 1.5rem;
    color: #7f8c8d;
}

.donation-type-option .option-content span {
    font-weight: 600;
    color: #2c3e50;
}

.donation-type-option input:checked + .option-content {
    border-color: #4CAF50;
    background: #f0fff4;
}

.donation-type-option input:checked + .option-content i {
    color: #4CAF50;
}

/* Amount Display */
.selected-amount-display {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.amount-display {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
}

.amount-display .currency {
    font-size: 1.5rem;
    color: #7f8c8d;
}

#displayAmount {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
}

/* Form Elements */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #4CAF50;
}

.form-check label {
    margin: 0;
    font-weight: normal;
    cursor: pointer;
}

/* Payment Methods */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .payment-methods {
        grid-template-columns: 1fr;
    }
}

.payment-method {
    cursor: pointer;
}

.payment-method input {
    display: none;
}

.payment-method .method-content {
    padding: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.payment-method .method-content i {
    font-size: 1.5rem;
    color: #7f8c8d;
}

.payment-method .method-content span {
    font-weight: 600;
    color: #2c3e50;
}

.payment-method input:checked + .method-content {
    border-color: #4CAF50;
    background: #f0fff4;
}

.payment-method input:checked + .method-content i {
    color: #4CAF50;
}

.payment-method.active .method-content {
    border-color: #4CAF50;
    background: #f0fff4;
}

.payment-method.active .method-content i {
    color: #4CAF50;
}

/* Payment Fields */
.payment-fields {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.secure-payment {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-top: 20px;
}

.secure-payment i.fa-lock {
    color: #4CAF50;
    font-size: 1.2rem;
}

.secure-payment span {
    flex: 1;
    color: #666;
}

.card-icons {
    display: flex;
    gap: 10px;
}

.card-icons i {
    font-size: 1.5rem;
    color: #666;
}

/* Bank Details */
.bank-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.bank-details h4 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #2c3e50;
}

.detail-item {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #ddd;
}

.detail-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.payment-note {
    background: #fff9e6;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    border-left: 4px solid #ffc107;
}

.payment-note p {
    margin: 0;
    color: #856404;
}

.payment-note i {
    color: #856404;
    margin-right: 10px;
}

/* Form Actions */
.form-actions {
    padding: 30px;
    background: #f8f9fa;
}

.btn-block {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    font-weight: 600;
}

.secure-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
    color: #666;
    font-size: 0.9rem;
}

.secure-notice i {
    color: #4CAF50;
}

/* Error Messages */
.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 5px;
    display: none;
}

.error-message.show {
    display: block;
}

.form-group.error input,
.form-group.error select {
    border-color: #dc3545;
}

/* Donation Summary */
.donation-summary {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 30px;
}

.summary-header {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 20px;
    text-align: center;
}

.summary-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.summary-content {
    padding: 25px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item.total {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    padding-top: 20px;
    margin-top: 10px;
    border-top: 2px solid #4CAF50;
}

/* Impact Preview */
.impact-preview {
    padding: 25px;
    background: #f0fff4;
    border-radius: 10px;
    margin: 20px;
}

.impact-preview h4 {
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.2rem;
}

.impact-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.impact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.impact-item i {
    color: #4CAF50;
    font-size: 1.2rem;
}

.impact-item span {
    flex: 1;
    font-size: 0.95rem;
    color: #2c3e50;
}

/* Trust Badges */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-top: 1px solid #eee;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.badge i {
    font-size: 1.5rem;
    color: #4CAF50;
}

.badge span {
    font-size: 0.8rem;
    color: #666;
}

/* Tax Info */
.tax-info,
.security-info {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.tax-info h4,
.security-info h4 {
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tax-info h4 i,
.security-info h4 i {
    color: #4CAF50;
}

.tax-info p,
.security-info p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Alternative Payments */
.alt-payments {
    background: #f8f9fa;
    padding: 80px 0;
}

.payment-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .payment-options-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .payment-options-grid {
        grid-template-columns: 1fr;
    }
}

.payment-option {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.payment-option:hover {
    transform: translateY(-5px);
}

.option-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.option-icon i {
    font-size: 1.8rem;
    color: white;
}

.payment-option h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.payment-option p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* QR Code */
.qr-code-placeholder {
    margin: 20px 0;
}

.qr-simulated {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.qr-pattern {
    width: 150px;
    height: 150px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-instructions {
    margin-top: 10px;
}

.qr-instructions small {
    color: #666;
    font-size: 0.85rem;
}

/* Check Info */
.check-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.check-info p {
    margin: 10px 0;
}

.check-info strong {
    color: #2c3e50;
    display: block;
    margin: 15px 0;
}

.check-note {
    margin-top: 20px;
    padding: 15px;
    background: #fff9e6;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
}

.check-note p {
    margin: 0;
    color: #856404;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-note i {
    color: #856404;
}

/* Corporate Benefits */
.corporate-benefits {
    margin-top: 20px;
    text-align: left;
}

.corporate-benefits p {
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
}

.corporate-benefits i {
    color: #4CAF50;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.faq-item {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-item p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.faq-contact {
    text-align: center;
    padding: 30px;
    background: #f0fff4;
    border-radius: 10px;
    border-left: 4px solid #4CAF50;
}

.faq-contact a {
    color: #4CAF50;
    font-weight: 600;
    text-decoration: none;
}

.faq-contact a:hover {
    text-decoration: underline;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #4CAF50;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-content h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.loading-content p {
    color: #666;
    margin: 0;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.modal-content {
    background: white;
    border-radius: 15px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 25px 30px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.5rem;
}

.close-modal {
    background: none;
    border: none;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    color: #333;
}

.modal-body {
    padding: 30px;
    text-align: center;
}

.success-icon {
    font-size: 5rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.error-icon {
    font-size: 5rem;
    color: #dc3545;
    margin-bottom: 20px;
}

.modal-body h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.modal-body p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.donation-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
    text-align: left;
}

.donation-details p {
    margin: 10px 0;
    display: flex;
    justify-content: space-between;
}

.donation-details strong {
    color: #2c3e50;
}

.impact-thankyou {
    background: #f0fff4;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #4CAF50;
}

.impact-thankyou p {
    margin: 0;
    color: #2c3e50;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.impact-thankyou i {
    color: #4CAF50;
}

.modal-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Error Modal */
.error-modal .modal-header {
    border-bottom-color: #ffebee;
}

.error-modal .modal-body {
    background: #fff5f5;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: white;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.footer-logo span {
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-about {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-social-title {
    color: white;
    margin-bottom: 15px;
    font-size: 1rem;
}

.social-icons-grid {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon.facebook {
    background: #3b5998;
}

.social-icon.twitter {
    background: #1da1f2;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.social-icon.linkedin {
    background: #0077b5;
}

.social-icon.youtube {
    background: #ff0000;
}

.footer-title {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: #bdc3c7;
}

.footer-contact i {
    color: #4CAF50;
    width: 20px;
}

.financial-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
}

.financial-info p {
    margin-top: 0;
    margin-bottom: 15px;
    color: white;
}

.btn-link {
    display: block;
    color: #4CAF50;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.btn-link:hover {
    text-decoration: underline;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.copyright {
    color: #bdc3c7;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 25px;
}

.footer-legal a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: white;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #4CAF50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #45a049;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .page-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .form-header h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .amount-btn {
        min-width: 120px;
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .modal-actions .btn {
        width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .back-to-top,
    .modal-overlay,
    .loading-overlay {
        display: none !important;
    }
    
    .page-hero,
    .quick-donate,
    .alt-payments,
    .faq-section {
        display: none;
    }
    
    .main-donate {
        padding: 20px 0;
    }
    
    .donation-form-container {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .donation-summary {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}
/* Fix for elliptical logo */
.logo-img {
    width: 60px; /* Set specific width */
    height: 60px; /* Set specific height - SAME as width */
    object-fit: contain; /* Keeps image proportion */
    border-radius: 0; /* Remove any border-radius if present */
    display: block;
}
/* Fix donation form labels and placeholders */
.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.form-group input::placeholder {
    color: #95a5a6;
    font-size: 0.9rem;
}

/* Add clear labels to all inputs */
#firstName::placeholder {
    content: "Enter your first name";
}

#lastName::placeholder {
    content: "Enter your last name";
}

#email::placeholder {
    content: "Enter your email address";
}

#phone::placeholder {
    content: "Enter your phone number (optional)";
}

#cardNumber::placeholder {
    content: "Enter card number";
}

#cardExpiry::placeholder {
    content: "MM/YY";
}

#cardCVC::placeholder {
    content: "123";
}

#cardName::placeholder {
    content: "Name on card";
}

#mobileNumber::placeholder {
    content: "07XX XXX XXX";
}

#reference::placeholder {
    content: "Your name for reference";
}

/* Make form boxes more visible */
.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    background: #fff;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #4CAF50;
    outline: none;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

/* Add help text under inputs */
.form-group .help-text {
    font-size: 0.85rem;
    color: #7f8c8d;
    margin-top: 5px;
    display: block;
}

/* Required field indicator */
.form-group.required label::after {
    content: " *";
    color: #e74c3c;
}