                    <style>
                        .orders-container {
                            padding: 20px;
                        }

                        .orders-tabs {
                            display: grid;
                            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                            gap: 15px;
                            margin-bottom: 30px;
                        }

                        .orders-tab-btn {
                            background: white;
                            border: 2px solid #e0e0e0;
                            border-radius: 12px;
                            padding: 20px;
                            cursor: pointer;
                            transition: all 0.3s ease;
                            display: flex;
                            flex-direction: column;
                            align-items: center;
                            gap: 10px;
                            position: relative;
                        }

                        .orders-tab-btn:hover {
                            transform: translateY(-2px);
                            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
                        }

                        .orders-tab-btn.active {
                            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                            border-color: #667eea;
                            color: white;
                        }

                        .orders-tab-btn i {
                            font-size: 24px;
                        }

                        .orders-tab-btn span {
                            font-weight: 600;
                        }

                        .tab-badge {
                            position: absolute;
                            top: 10px;
                            right: 10px;
                            background: #ff4757;
                            color: white;
                            border-radius: 50%;
                            width: 25px;
                            height: 25px;
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            font-size: 12px;
                            font-weight: bold;
                        }

                        .orders-tab-btn.active .tab-badge {
                            background: white;
                            color: #667eea;
                        }

                        .orders-list {
                            display: grid;
                            gap: 20px;
                        }

                        .order-card {
                            background: white;
                            border-radius: 12px;
                            padding: 20px;
                            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
                            transition: all 0.3s ease;
                        }

                        .order-card:hover {
                            transform: translateY(-2px);
                            box-shadow: 0 4px 16px rgba(0,0,0,0.15);
                        }

                        .order-header {
                            display: flex;
                            justify-content: space-between;
                            align-items: center;
                            margin-bottom: 15px;
                            padding-bottom: 15px;
                            border-bottom: 2px solid #f0f0f0;
                        }

                        .order-header h4 {
                            margin: 0;
                            color: #2c3e50;
                        }

                        .status-badge {
                            padding: 6px 12px;
                            border-radius: 20px;
                            font-size: 12px;
                            font-weight: 600;
                        }

                        .status-incomplete {
                            background: #ffe5e5;
                            color: #ff4757;
                        }

                        .status-pending {
                            background: #fff3e0;
                            color: #ff9800;
                        }

                        .status-payment {
                            background: #e3f2fd;
                            color: #2196f3;
                        }

                        .status-processing {
                            background: #e8f5e9;
                            color: #4caf50;
                        }

                        .order-body {
                            display: grid;
                            gap: 10px;
                        }

                        .order-body p {
                            margin: 0;
                            color: #555;
                        }

                        .order-actions {
                            margin-top: 15px;
                            padding-top: 15px;
                            border-top: 2px solid #f0f0f0;
                            display: flex;
                            gap: 10px;
                        }

                        .btn-upload, .btn-pay, .btn-contact {
                            flex: 1;
                            padding: 10px;
                            border: none;
                            border-radius: 8px;
                            cursor: pointer;
                            font-weight: 600;
                            transition: all 0.3s ease;
                        }

                        .btn-upload {
                            background: #667eea;
                            color: white;
                        }

                        .btn-upload:hover {
                            background: #5568d3;
                        }

                        .btn-pay {
                            background: #2196f3;
                            color: white;
                        }

                        .btn-pay:hover {
                            background: #1976d2;
                        }

                        .btn-contact {
                            background: #25d366;
                            color: white;
                        }

                        .btn-contact:hover {
                            background: #1ebc59;
                        }

                        .empty-state {
                            text-align: center;
                            padding: 60px 20px;
                            color: #999;
                        }

                        .empty-state i {
                            font-size: 64px;
                            margin-bottom: 20px;
                        }

                        .empty-state h3 {
                            margin: 0 0 10px 0;
                            color: #666;
                        }
                    </style>
                <style>
                    .upload-modal {
                        position: fixed;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        background: rgba(0,0,0,0.5);
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        z-index: 10000;
                    }
                    
                    .upload-modal-content {
                        background: white;
                        border-radius: 16px;
                        max-width: 600px;
                        width: 90%;
                        max-height: 90vh;
                        overflow-y: auto;
                        box-shadow: 0 10px 40px rgba(0,0,0,0.3);
                    }
                    
                    .upload-modal-header {
                        padding: 20px;
                        border-bottom: 2px solid #f0f0f0;
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
                    }
                    
                    .upload-modal-header h3 {
                        margin: 0;
                        color: #2c3e50;
                    }
                    
                    .close-modal {
                        background: none;
                        border: none;
                        font-size: 24px;
                        cursor: pointer;
                        color: #999;
                    }
                    
                    .close-modal:hover {
                        color: #ff4757;
                    }
                    
                    .upload-modal-body {
                        padding: 20px;
                    }
                    
                    .file-upload-section {
                        margin-bottom: 20px;
                        padding: 15px;
                        border: 2px dashed #e0e0e0;
                        border-radius: 8px;
                    }
                    
                    .file-upload-section label {
                        display: block;
                        margin-bottom: 10px;
                        font-weight: 600;
                        color: #2c3e50;
                    }
                    
                    .file-upload-section input[type="file"] {
                        width: 100%;
                        padding: 10px;
                        border: 1px solid #ddd;
                        border-radius: 8px;
                    }
                    
                    .file-preview {
                        margin-top: 10px;
                    }
                    
                    .file-preview img {
                        max-width: 100%;
                        max-height: 200px;
                        border-radius: 8px;
                    }
                    
                    .upload-modal-footer {
                        padding: 20px;
                        border-top: 2px solid #f0f0f0;
                        display: flex;
                        gap: 10px;
                        justify-content: flex-end;
                    }
                </style>
    <style>
        :root {
            --primary-color: #1a1a2e;
            --secondary-color: #16213e;
            --accent-color: #0f3460;
            --gold-color: #d4af37;
            --gold-light: #f4e4b5;
            --success-color: #28a745;
            --danger-color: #dc3545;
            --text-primary: #2c3e50;
            --text-secondary: #7f8c8d;
            --bg-light: #f8f9fa;
            --bg-white: #ffffff;
            --border-color: #e0e0e0;
            --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.15);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Cairo', sans-serif;
            background: var(--bg-light);
            color: var(--text-primary);
            line-height: 1.6;
        }

        /* ============================================ */
        /* Login Screen */
        /* ============================================ */
        .login-screen {
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            padding: 20px;
        }

        .login-card {
            background: var(--bg-white);
            border-radius: 20px;
            box-shadow: var(--shadow-lg);
            overflow: hidden;
            max-width: 450px;
            width: 100%;
            animation: slideIn 0.5s ease;
        }

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

        .login-header {
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: white;
            padding: 40px 30px;
            text-align: center;
        }

        .login-header i {
            font-size: 50px;
            margin-bottom: 15px;
        }

        .login-header h1 {
            font-size: 26px;
            margin-bottom: 8px;
        }

        .login-header p {
            font-size: 13px;
            opacity: 0.9;
        }

        .login-tabs {
            display: flex;
            border-bottom: 2px solid var(--border-color);
        }

        .login-tab {
            flex: 1;
            background: transparent;
            border: none;
            padding: 15px;
            font-family: 'Cairo', sans-serif;
            font-size: 15px;
            font-weight: 600;
            color: var(--text-secondary);
            cursor: pointer;
            transition: all 0.3s ease;
            border-bottom: 3px solid transparent;
        }

        .login-tab.active {
            color: var(--primary-color);
            border-bottom-color: var(--gold-color);
        }

        .login-body {
            padding: 35px 30px;
        }

        .login-form {
            display: none;
        }

        .login-form.active {
            display: block;
            animation: fadeIn 0.3s ease;
        }

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

        /* ============================================ */
        /* Dashboard */
        /* ============================================ */
        .dashboard-header {
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: white;
            padding: 20px;
            box-shadow: var(--shadow);
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .user-info {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .user-avatar img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 3px solid var(--gold-color);
            object-fit: cover;
        }

        .user-details h3 {
            font-size: 18px;
            margin-bottom: 3px;
        }

        .user-details p {
            font-size: 13px;
            opacity: 0.9;
        }

        .btn-logout {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            padding: 10px 20px;
            border-radius: 8px;
            font-family: 'Cairo', sans-serif;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-logout:hover {
            background: rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.5);
        }

        /* ============================================ */
        /* Tabs */
        /* ============================================ */
        .tabs-container {
            background: var(--bg-white);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .tabs {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            gap: 5px;
            padding: 0 20px;
        }

        .tab-btn {
            flex: 1;
            background: transparent;
            border: none;
            padding: 18px 20px;
            font-family: 'Cairo', sans-serif;
            font-size: 15px;
            font-weight: 600;
            color: var(--text-secondary);
            cursor: pointer;
            transition: all 0.3s ease;
            border-bottom: 3px solid transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .tab-btn i {
            font-size: 18px;
        }

        .tab-btn.active {
            color: var(--primary-color);
            border-bottom-color: var(--gold-color);
        }

        #tab-content {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
        }

        /* ============================================ */
        /* Form Fields with Golden Border */
        /* ============================================ */
        .form-field {
            margin-bottom: 20px;
            position: relative;
        }

        .form-field label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .form-field input,
        .form-field textarea,
        .form-field select {
            width: 100%;
            padding: 12px 45px 12px 15px;
            border: 2px solid var(--gold-light);
            border-radius: 10px;
            font-family: 'Cairo', sans-serif;
            font-size: 14px;
            transition: all 0.3s ease;
            background: var(--bg-white);
        }

        .form-field input:focus,
        .form-field textarea:focus,
        .form-field select:focus {
            outline: none;
            border-color: var(--gold-color);
            box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
            transform: translateY(-1px);
        }

        .form-field textarea {
            padding: 12px 15px;
            resize: vertical;
            min-height: 80px;
        }

        .form-field i {
            position: absolute;
            right: 15px;
            top: 38px;
            color: var(--gold-color);
            font-size: 16px;
        }

        /* ============================================ */
        /* Buttons */
        /* ============================================ */
        .btn-primary {
            width: 100%;
            background: linear-gradient(135deg, var(--gold-color), #c9a227);
            color: white;
            border: none;
            padding: 14px 20px;
            border-radius: 10px;
            font-family: 'Cairo', sans-serif;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: var(--shadow);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .btn-primary:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        /* ============================================ */
        /* Services Grid */
        /* ============================================ */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }

        .service-card {
            background: var(--bg-white);
            border: 2px solid var(--gold-light);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: var(--shadow);
        }

        .service-card:hover {
            border-color: var(--gold-color);
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, var(--gold-light), var(--gold-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .service-icon i {
            font-size: 32px;
            color: white;
        }

        .service-card h3 {
            font-size: 20px;
            margin-bottom: 10px;
            color: var(--text-primary);
        }

        .service-card p {
            font-size: 14px;
            color: var(--text-secondary);
        }

        /* ============================================ */
        /* Service Wizard */
        /* ============================================ */
        .service-wizard {
            background: var(--bg-white);
            border: 2px solid var(--gold-light);
            border-radius: 15px;
            padding: 30px;
            box-shadow: var(--shadow);
        }

        .wizard-header {
            margin-bottom: 30px;
            text-align: center;
        }

        .wizard-header h2 {
            font-size: 24px;
            margin-bottom: 20px;
            color: var(--text-primary);
        }

        .wizard-steps {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .step {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--bg-light);
            border: 2px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            color: var(--text-secondary);
            transition: all 0.3s ease;
        }

        .step.active {
            background: var(--gold-color);
            border-color: var(--gold-color);
            color: white;
        }

        .wizard-body {
            min-height: 300px;
        }

        .wizard-step {
            display: none;
        }

        .wizard-step.active {
            display: block;
            animation: fadeIn 0.3s ease;
        }

        /* ============================================ */
        /* Upload Area */
        /* ============================================ */
        .upload-area {
            border: 3px dashed var(--gold-light);
            border-radius: 15px;
            padding: 60px 30px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            background: var(--bg-light);
        }

        .upload-area:hover {
            border-color: var(--gold-color);
            background: rgba(212, 175, 55, 0.05);
        }

        .upload-area i {
            font-size: 50px;
            color: var(--gold-color);
            margin-bottom: 15px;
        }

        .upload-area p {
            font-size: 16px;
            color: var(--text-secondary);
        }

        /* ============================================ */
        /* Nationality Grid (Smaller Flags) */
        /* ============================================ */
        .nationality-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 12px;
            margin-top: 20px;
        }

        .nationality-btn {
            background: var(--bg-white);
            border: 2px solid var(--gold-light);
            border-radius: 10px;
            padding: 12px 15px;
            font-family: 'Cairo', sans-serif;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }

        .nationality-btn:hover {
            border-color: var(--gold-color);
            background: rgba(212, 175, 55, 0.05);
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }

        /* ============================================ */
        /* Options Grid */
        /* ============================================ */
        .options-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }

        .option-btn {
            background: var(--bg-white);
            border: 2px solid var(--gold-light);
            border-radius: 10px;
            padding: 20px;
            font-family: 'Cairo', sans-serif;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .option-btn:hover {
            border-color: var(--gold-color);
            background: rgba(212, 175, 55, 0.05);
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }

        /* ============================================ */
        /* Messages */
        /* ============================================ */
        .loading {
            text-align: center;
            padding: 60px 20px;
        }

        .loading i {
            font-size: 40px;
            color: var(--gold-color);
            margin-bottom: 15px;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .loading p {
            font-size: 16px;
            color: var(--text-secondary);
        }

        .success-message {
            background: #d4edda;
            color: #155724;
            padding: 12px 20px;
            border-radius: 8px;
            margin-bottom: 20px;
            font-size: 14px;
            border: 1px solid #c3e6cb;
        }

        .error-message {
            background: #f8d7da;
            color: #721c24;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            border: 2px solid #f5c6cb;
        }

        .error-message i {
            font-size: 50px;
            margin-bottom: 15px;
        }

        .error-message p {
            font-size: 16px;
            margin-bottom: 20px;
        }

        /* ============================================ */
        /* Review Card */
        /* ============================================ */
        .review-card {
            background: var(--bg-light);
            border: 2px solid var(--gold-light);
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 20px;
        }

        .review-card p {
            font-size: 14px;
            margin-bottom: 10px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border-color);
        }

        .review-card p:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .review-card strong {
            color: var(--text-primary);
            font-weight: 600;
        }

        /* ============================================ */
        /* Orders List */
        /* ============================================ */
        .orders-list {
            display: grid;
            gap: 20px;
        }

        .order-card {
            background: var(--bg-white);
            border: 2px solid var(--gold-light);
            border-radius: 12px;
            padding: 20px;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
        }

        .order-card:hover {
            border-color: var(--gold-color);
            box-shadow: var(--shadow-lg);
        }

        .order-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--bg-light);
        }

        .order-header h4 {
            font-size: 16px;
            color: var(--text-primary);
        }

        .status-badge {
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }

        .status-pending {
            background: #fff3cd;
            color: #856404;
        }

        .status-approved {
            background: #d4edda;
            color: #155724;
        }

        .status-rejected {
            background: #f8d7da;
            color: #721c24;
        }

        .order-body p {
            font-size: 14px;
            margin-bottom: 8px;
            color: var(--text-secondary);
        }

        /* ============================================ */
        /* Profile */
        /* ============================================ */
        .profile-container {
            max-width: 600px;
            margin: 0 auto;
        }

        .profile-header {
            background: var(--bg-white);
            border: 2px solid var(--gold-light);
            border-radius: 15px;
            padding: 40px;
            text-align: center;
            margin-bottom: 30px;
            box-shadow: var(--shadow);
        }

        .profile-avatar {
            width: 120px;
            height: 120px;
            margin: 0 auto 20px;
            border-radius: 50%;
            overflow: hidden;
            border: 4px solid var(--gold-color);
        }

        .profile-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .profile-header h2 {
            font-size: 24px;
            margin-bottom: 8px;
            color: var(--text-primary);
        }

        .profile-header p {
            font-size: 14px;
            color: var(--text-secondary);
        }

        .profile-body {
            background: var(--bg-white);
            border: 2px solid var(--gold-light);
            border-radius: 15px;
            padding: 30px;
            box-shadow: var(--shadow);
        }

        /* ============================================ */
        /* Empty State */
        /* ============================================ */
        .empty-state {
            text-align: center;
            padding: 80px 20px;
        }

        .empty-state i {
            font-size: 60px;
            color: var(--text-secondary);
            margin-bottom: 20px;
            opacity: 0.5;
        }

        .empty-state h3 {
            font-size: 22px;
            margin-bottom: 10px;
            color: var(--text-primary);
        }

        .empty-state p {
            font-size: 15px;
            color: var(--text-secondary);
        }

        /* ============================================ */
        /* Responsive */
        /* ============================================ */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 15px;
            }

            .tabs {
                flex-direction: column;
            }

            .tab-btn {
                border-bottom: none;
                border-right: 3px solid transparent;
            }

            .tab-btn.active {
                border-right-color: var(--gold-color);
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .nationality-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
    </style>
