

    .modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.payment-modal.human-style {
    background: #ffffff;
    padding: 45px 30px;
    max-width: 420px;
    border-radius: 22px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    animation: scaleUp 0.3s ease-out;
}

.icon-heart {
    font-size: 48px;
    margin-bottom: 15px;
}

.payment-modal h3 {
    color: #145c3a;
    font-weight: 800;
    margin-bottom: 12px;
    font-size: 20px;
}

.payment-modal p {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 28px;
}

.btn.primary {


    background: #0f6b44;
    color: #fff;
    padding: 14px;
    border-radius: 35px;
    border: none;
    width: 100%;
    font-weight: 600;
    transition: 0.3s;
}

.btn.primary:hover {
    background: #0c5738;
    transform: translateY(-2px);
}

.btn.soft {
    background: #f1f7f4;
    color: #0f6b44;
    padding: 12px;
    border-radius: 35px;
    border: none;
    width: 100%;
    margin-top: 10px;
    transition: 0.3s;
}

.btn.soft:hover {
    background: #e4f2ec;
}



.floating-donate {
    position: fixed;
    bottom: 25px;
    right: 25px; /* لو عربي خليه يمين بدل شمال */
    background: linear-gradient(135deg, #0f6b44, #148a57);
    color: #fff;
    padding: 14px 22px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    z-index: 9999;
}

.floating-donate.show {
    opacity: 1;
    transform: translateY(0);
}

/* حركة نبض خفيفة */
.floating-donate {
    animation: pulse 2.5s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(20,138,87, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(20,138,87, 0); }
    100% { box-shadow: 0 0 0 0 rgba(20,138,87, 0); }
}

.floating-donate:hover {
    transform: translateY(-3px) scale(1.05);
}

/* ========================================
   Login Modal Styles
   ======================================== */

.login-modal-container {
    background: white;
    width: 90%;
    max-width: 450px;
    border-radius: 24px;
    overflow: hidden;
    animation: modalSlideUp 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    position: relative;
}

.login-modal {
    padding: 40px 35px;
    position: relative;
}

.login-close-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #64748b;
    border: none;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.login-close-btn:hover {
    background: #e2e8f0;
    color: #ef4444;
    transform: rotate(90deg);
}

.login-header {
    text-align: center;
    margin-bottom: 35px;
}

.login-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #006C35 0%, #10b981 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 108, 53, 0.3);
}

.login-logo svg {
    width: 40px;
    height: 40px;
}

.login-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 8px;
}

.login-header p {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.login-field {
    margin-bottom: 20px;
}

.login-field label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #334155;
    margin-bottom: 8px;
}

.login-field label svg {
    width: 18px;
    height: 18px;
    color: #006C35;
}

.login-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Cairo', sans-serif;
    transition: all 0.3s;
    background: #f8fafc;
}

.login-input:focus {
    outline: none;
    border-color: #006C35;
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 108, 53, 0.1);
}

.password-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #94a3b8;
    transition: color 0.3s;
}

.toggle-password:hover {
    color: #006C35;
}

.toggle-password svg {
    width: 20px;
    height: 20px;
}

.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 13px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #475569;
    font-weight: 600;
}

.remember-me input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #006C35;
}

.forgot-password {
    color: #006C35;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
}

.forgot-password:hover {
    color: #004d25;
    text-decoration: underline;
}

.login-submit-btn {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #006C35 0%, #10b981 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(0, 108, 53, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Cairo', sans-serif;
}

.login-submit-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

.login-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 108, 53, 0.4);
}

.login-submit-btn:hover svg {
    transform: translateX(-5px);
}

.login-submit-btn:active {
    transform: translateY(0);
}

.login-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.login-divider {
    position: relative;
    text-align: center;
    margin: 30px 0;
}

.login-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e2e8f0;
}

.login-divider span {
    position: relative;
    background: white;
    padding: 0 15px;
    color: #94a3b8;
    font-size: 13px;
    font-weight: 600;
}

.login-footer {
    text-align: center;
}

.login-footer p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 12px;
    font-weight: 600;
}

.register-link {
    background: #f0fdf4;
    color: #006C35;
    border: 2px solid #bbf7d0;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Cairo', sans-serif;
}

.register-link:hover {
    background: #dcfce7;
    border-color: #86efac;
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .login-modal-container {
        width: 95%;
        max-width: none;
        border-radius: 20px;
    }
    
    .login-modal {
        padding: 35px 25px;
    }
    
    .login-header h2 {
        font-size: 24px;
    }
    
    .login-logo {
        width: 70px;
        height: 70px;
    }
    
    .login-logo svg {
        width: 35px;
        height: 35px;
    }
    
    .login-input {
        padding: 12px 14px;
        font-size: 14px;
    }
    
    .login-submit-btn {
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .login-options {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
}

/* OTP Code Inputs */
.code-inputs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.code-input {
    width: 100%;
    padding: 16px 0;
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-family: 'Cairo', sans-serif;
    background: #f8fafc;
    transition: all 0.3s;
}

.code-input:focus {
    outline: none;
    border-color: #006C35;
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 108, 53, 0.1);
    transform: scale(1.05);
}

.otp-timer {
    text-align: center;
    margin: 20px 0;
    padding: 12px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 10px;
    color: #166534;
    font-weight: 700;
    font-size: 14px;
}

.otp-timer.expired {
    background: #fef2f2;
    border-color: #fecaca;
    color: #991b1b;
}

.resend-link {
    color: #006C35;
    text-decoration: none;
    font-weight: 800;
    cursor: pointer;
    transition: color 0.3s;
}

.resend-link:hover {
    color: #004d25;
    text-decoration: underline;
}

.btn-change-phone {
    width: 100%;
    padding: 14px 20px;
    background: #f8fafc;
    color: #64748b;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 15px;
    font-family: 'Cairo', sans-serif;
}

.btn-change-phone:hover {
    background: white;
    border-color: #cbd5e1;
    color: #475569;
}

/* Mobile Optimization */
@media (max-width: 640px) {
    .code-inputs {
        gap: 6px;
    }
    
    .code-input {
        padding: 14px 0;
        font-size: 20px;
    }
}



