        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body{
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
        min-height: 100vh;
        padding: 20px;
        font-family: 'Tajawal', sans-serif;
        color: #cbd5e1;
        line-height: 1.6;
        }

        .request-page-root{
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        }
        
        /* الحاوية الرئيسية */
        .request-container {
            width: 100%;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        /* بطاقة طلب المشروع */
        .request-card {
            background: rgba(30, 41, 59, 0.85);
            border: 1px solid rgba(59, 130, 246, 0.2);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
            animation: fadeIn 0.6s ease;
        }
        
        /* رأس البطاقة */
        .request-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .request-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
        }
        
        .request-icon i {
            font-size: 2rem;
            color: white;
        }
        
        .request-title {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #60a5fa, #a5b4fc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
        }
        
        .request-subtitle {
            font-size: 1.1rem;
            color: #94a3b8;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* قسم المعلومات المهمة */
        .important-section {
            background: rgba(59, 130, 246, 0.1);
            border: 1px solid rgba(59, 130, 246, 0.2);
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 30px;
        }
        
        .important-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: #93c5fd;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .important-list {
            list-style: none;
            padding-right: 20px;
        }
        
        .important-list li {
            margin-bottom: 8px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
            color: #cbd5e1;
            font-size: 0.95rem;
        }
        
        .important-list li i {
            color: #60a5fa;
            font-size: 0.8rem;
            margin-top: 4px;
        }
        
        /* نموذج طلب المشروع */
        .request-form {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        
        /* أقسام النموذج */
        .form-section {
            padding-bottom: 30px;
            border-bottom: 1px solid rgba(59, 130, 246, 0.1);
        }
        
        .form-section:last-of-type {
            border-bottom: none;
            padding-bottom: 20px;
        }
        
        .section-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: #93c5fd;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .section-title i {
            color: #60a5fa;
        }
        
        /* شبكة الحقول */
        .form-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 20px;
        }
        
        @media (max-width: 768px) {
            .form-grid {
                grid-template-columns: 1fr;
            }
        }
        
        /* مجموعة الحقول */
        .form-group {
            margin-bottom: 20px;
            position: relative;
        }
        
        .form-label {
            display: block;
            color: #cbd5e1;
            margin-bottom: 8px;
            font-weight: 500;
            font-size: 0.95rem;
        }
        
        .required {
            color: #ef4444;
            margin-right: 3px;
        }
        
        .form-input, .form-textarea, .form-select {
            width: 100%;
            padding: 12px 15px;
            background: rgba(15, 23, 42, 0.6);
            border: 1px solid rgba(59, 130, 246, 0.2);
            border-radius: 10px;
            color: #cbd5e1;
            font-size: 0.95rem;
            font-family: 'Tajawal', sans-serif;
            transition: all 0.3s ease;
        }
        
        .form-input:focus, .form-textarea:focus, .form-select:focus {
            outline: none;
            border-color: rgba(59, 130, 246, 0.5);
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
            background: rgba(15, 23, 42, 0.8);
        }
        
        .form-textarea {
            min-height: 120px;
            resize: vertical;
            line-height: 1.6;
        }
        
        .form-select {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2360a5fa' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: left 15px center;
            background-size: 14px;
            padding-left: 40px;
        }
        
        .form-help {
            font-size: 0.85rem;
            color: #94a3b8;
            margin-top: 5px;
            line-height: 1.5;
        }
        
        /* عناصر الراديو */
        .radio-group {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 10px;
        }
        
        .radio-option {
            flex: 1;
            min-width: 200px;
        }
        
        @media (max-width: 768px) {
            .radio-option {
                min-width: 100%;
            }
        }
        
        .radio-label {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            cursor: pointer;
            user-select: none;
            background: rgba(15, 23, 42, 0.4);
            border: 1px solid rgba(59, 130, 246, 0.2);
            border-radius: 10px;
            padding: 15px;
            transition: all 0.3s ease;
        }
        
        .radio-label:hover {
            border-color: rgba(59, 130, 246, 0.4);
            transform: translateY(-2px);
        }
        
        .radio-label input[type="radio"] {
            display: none;
        }
        
        .radio-label input[type="radio"]:checked ~ .radio-custom {
            border-color: #3b82f6;
            background-color: #3b82f6;
        }
        
        .radio-label input[type="radio"]:checked ~ .radio-custom::after {
            content: '';
            width: 8px;
            height: 8px;
            background: white;
            border-radius: 50%;
            position: absolute;
            top: 50%;
            right: 50%;
            transform: translate(50%, -50%);
        }
        
        .radio-custom {
            width: 18px;
            height: 18px;
            border: 2px solid rgba(59, 130, 246, 0.3);
            border-radius: 50%;
            position: relative;
            flex-shrink: 0;
            margin-top: 2px;
            transition: all 0.3s ease;
        }
        
        .radio-content {
            flex: 1;
        }
        
        .radio-title {
            font-weight: 600;
            color: #93c5fd;
            margin-bottom: 4px;
            font-size: 0.95rem;
        }
        
        .radio-description {
            font-size: 0.85rem;
            color: #94a3b8;
            line-height: 1.5;
        }
        
        /* عناصر الشيك بوكس */
        .checkbox-group {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 10px;
        }
        
        .checkbox-label {
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            user-select: none;
        }
        
        .checkbox-custom {
            width: 18px;
            height: 18px;
            border: 2px solid rgba(59, 130, 246, 0.3);
            border-radius: 4px;
            position: relative;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }
        
        .checkbox-label input[type="checkbox"] {
            display: none;
        }
        
        .checkbox-label input[type="checkbox"]:checked ~ .checkbox-custom {
            border-color: #3b82f6;
            background-color: #3b82f6;
        }
        
        .checkbox-label input[type="checkbox"]:checked ~ .checkbox-custom::after {
            content: '✓';
            position: absolute;
            top: 50%;
            right: 50%;
            transform: translate(50%, -50%);
            color: white;
            font-size: 0.8rem;
            font-weight: bold;
        }
        
        .checkbox-text {
            color: #cbd5e1;
            font-size: 0.95rem;
        }
        
        /* قسم الاتفاقيات */
        .terms-section {
            background: rgba(15, 23, 42, 0.4);
            border-radius: 10px;
            padding: 20px;
            margin-top: 20px;
        }
        
        .terms-label {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 15px;
        }
        
        .terms-link {
            color: #60a5fa;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        
        .terms-link:hover {
            color: #93c5fd;
            text-decoration: underline;
        }
        
        /* أزرار الإرسال */
        .form-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid rgba(59, 130, 246, 0.1);
        }
        
        .back-link {
            color: #94a3b8;
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .back-link:hover {
            color: #60a5fa;
        }
        
        .submit-btn {
            padding: 15px 35px;
            background: linear-gradient(135deg, #10b981, #3b82f6);
            border: none;
            border-radius: 10px;
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: 'Tajawal', sans-serif;
        }
        
        .submit-btn:hover:not(:disabled) {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
        }
        
        .submit-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }
        
        /* الإشعارات */
        .notification {
            position: fixed;
            top: 20px;
            right: 20px;
            left: 20px;
            background: rgba(30, 41, 59, 0.95);
            border: 1px solid rgba(59, 130, 246, 0.3);
            border-radius: 10px;
            padding: 15px 20px;
            color: #93c5fd;
            font-size: 0.95rem;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: space-between;
            backdrop-filter: blur(10px);
            transform: translateY(-100px);
            opacity: 0;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            display: none;
        }
        
        .notification.show {
            transform: translateY(0);
            opacity: 1;
            display: flex;
        }
        
        .notification.success {
            background: rgba(34, 197, 94, 0.1);
            border-color: rgba(34, 197, 94, 0.3);
            color: #86efac;
        }
        
        .notification.error {
            background: rgba(239, 68, 68, 0.1);
            border-color: rgba(239, 68, 68, 0.3);
            color: #fca5a5;
        }
        
        .notification-content {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .notification-close {
            background: none;
            border: none;
            color: inherit;
            cursor: pointer;
            font-size: 1rem;
            opacity: 0.7;
            transition: opacity 0.2s ease;
        }
        
        .notification-close:hover {
            opacity: 1;
        }
        
        /* تأثيرات */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
            20%, 40%, 60%, 80% { transform: translateX(5px); }
        }
        
        /* رسائل الخطأ */
        .error-message {
            color: #ef4444;
            font-size: 0.85rem;
            margin-top: 5px;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .has-error .form-input,
        .has-error .form-textarea,
        .has-error .form-select {
            border-color: #ef4444;
        }
        
        /* تحسينات للجوال */
        @media (max-width: 768px) {
            .request-card {
                padding: 25px;
            }
            
            .request-title {
                font-size: 1.8rem;
            }
            
            .request-subtitle {
                font-size: 1rem;
            }
            
            .section-title {
                font-size: 1.2rem;
            }
            
            .form-actions {
                flex-direction: column;
                gap: 20px;
            }
            
            .submit-btn {
                width: 100%;
                justify-content: center;
            }
            
            .back-link {
                order: 2;
            }
            
            .notification {
                right: 10px;
                left: 10px;
            }
        }
        
        @media (max-width: 480px) {
            .request-title {
                font-size: 1.6rem;
            }
            
            .request-icon {
                width: 60px;
                height: 60px;
            }
            
            .request-icon i {
                font-size: 1.5rem;
            }
            
            .menu-toggle-btn {
                width: 45px;
                height: 45px;
                top: 15px;
                left: 15px;
            }
            
            .important-section {
                padding: 15px;
            }
        }