:root {
            --primary-color: #3E67A3;
            --secondary-color: #03A180;
            --success-color: #2ecc71;
            --warning-color: #f39c12;
            --danger-color: #e74c3c;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Tajawal', sans-serif;
            background: linear-gradient(145deg, #f6f9fc 0%, #eef2f7 100%);
            min-height: 100vh;
            margin: 0;
            padding: 0;
        }

        .evaluation-container {
            width: 100%;
            max-width: 700px;
            margin: 50px auto;
            padding: 0 15px;
        }

        .evaluation-card {
            background: #ffffff;
            border-radius: 32px;
            box-shadow: 0 25px 50px -12px rgba(62, 103, 163, 0.15);
            overflow: hidden;
            animation: fadeInUp 0.6s ease;
            border: 1px solid rgba(62, 103, 163, 0.1);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .evaluation-header {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            text-align: center;
            padding: 45px 30px;
            position: relative;
            overflow: hidden;
        }

        .evaluation-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .evaluation-header h1 {
            font-size: 2rem;
            margin-bottom: 12px;
            font-weight: 700;
            letter-spacing: 1px;
            position: relative;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }

        .evaluation-header p {
            opacity: 0.95;
            font-size: 1rem;
            font-weight: 300;
            position: relative;
        }

        .evaluation-body {
            padding: 40px 35px;
            background: #ffffff;
        }

        .form-group {
            margin-bottom: 24px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #1e293b;
            font-size: 0.95rem;
        }

        .form-group label .required {
            color: var(--danger-color);
            margin-right: 4px;
        }

        .section-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary-color);
            margin: 20px 0 15px 0;
            padding-bottom: 10px;
            border-bottom: 2px solid #e2e8f0;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .section-title i {
            font-size: 1.3rem;
        }

        .input-with-icon {
            position: relative;
        }

        .input-with-icon i {
            position: absolute;
            right: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: #94a3b8;
            font-size: 1.1rem;
            transition: color 0.3s ease;
        }

        .input-with-icon select {
            width: 100%;
            padding: 16px 50px 16px 20px;
            border: 2px solid #e2e8f0;
            border-radius: 16px;
            font-size: 1rem;
            font-family: 'Tajawal', sans-serif;
            transition: all 0.3s ease;
            background: #f8fafd;
            cursor: pointer;
            appearance: none;
        }

        .input-with-icon input,
        .input-with-icon textarea {
            width: 100%;
            padding: 16px 50px 16px 20px;
            border: 2px solid #e2e8f0;
            border-radius: 16px;
            font-size: 1rem;
            font-family: 'Tajawal', sans-serif;
            transition: all 0.3s ease;
            background: #f8fafd;
        }

        .input-with-icon textarea {
            resize: vertical;
            min-height: 100px;
        }

        .input-with-icon input:focus,
        .input-with-icon select:focus,
        .input-with-icon textarea:focus {
            border-color: var(--primary-color);
            outline: none;
            background: #ffffff;
            box-shadow: 0 0 0 4px rgba(62, 103, 163, 0.1);
        }

        .input-with-icon input:focus + i,
        .input-with-icon select:focus + i,
        .input-with-icon textarea:focus + i {
            color: var(--primary-color);
        }

        /* Radio group styles */
        .radio-group {
            display: flex;
            gap: 30px;
            padding: 12px 0;
            flex-wrap: wrap;
        }

        .radio-option {
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            padding: 10px 20px;
            border-radius: 12px;
            background: #f8fafd;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .radio-option:hover {
            background: #f1f5f9;
            border-color: var(--primary-color);
        }

        .radio-option input[type="radio"] {
            width: 18px;
            height: 18px;
            cursor: pointer;
            accent-color: var(--primary-color);
            margin: 0;
        }

        .radio-option span {
            font-size: 1rem;
            font-weight: 500;
            color: #1e293b;
        }

        /* Rating options (ممتاز, جيد جداً, غير مناسب) */
        .rating-group {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            margin-top: 10px;
        }

        .rating-option {
            flex: 1;
            min-width: 100px;
        }

        .rating-option input {
            display: none;
        }

        .rating-option label {
            display: block;
            text-align: center;
            padding: 12px 15px;
            background: #f8fafd;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
            margin-bottom: 0;
        }

        .rating-option input:checked + label {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            border-color: transparent;
            box-shadow: 0 4px 12px rgba(62, 103, 163, 0.3);
        }

        .rating-option label:hover {
            border-color: var(--primary-color);
            transform: translateY(-2px);
        }

        /* Yes/No options */
        .yesno-group {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .yesno-option {
            flex: 1;
            min-width: 80px;
        }

        .yesno-option input {
            display: none;
        }

        .yesno-option label {
            display: block;
            text-align: center;
            padding: 12px 15px;
            background: #f8fafd;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
            margin-bottom: 0;
        }

        .yesno-option input:checked + label {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            border-color: transparent;
        }

        .yesno-option label:hover {
            border-color: var(--primary-color);
        }

        .btn {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            border: none;
            border-radius: 16px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-family: 'Tajawal', sans-serif;
            position: relative;
            overflow: hidden;
            margin-top: 20px;
        }

        .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 {
            transform: translateY(-2px);
            box-shadow: 0 20px 30px -10px var(--primary-color);
        }

        .btn:hover::before {
            left: 100%;
        }

        .alert {
            padding: 16px 20px;
            border-radius: 16px;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.95rem;
            animation: slideIn 0.4s ease;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .alert-success {
            background: #ecfdf5;
            color: #065f46;
            border: 1px solid #a7f3d0;
        }

        .alert-error {
            background: #fef2f2;
            color: #991b1b;
            border: 1px solid #fecaca;
        }

        .alert i {
            font-size: 1.2rem;
        }

        .info-box {
            background: #f0f9ff;
            padding: 16px 20px;
            border-radius: 16px;
            margin-bottom: 30px;
            border-right: 4px solid var(--primary-color);
            display: flex;
            align-items: center;
            gap: 12px;
            color: #1e40af;
            font-size: 0.9rem;
        }

        .info-box i {
            font-size: 1.2rem;
            color: var(--primary-color);
        }

        hr {
            margin: 25px 0;
            border: none;
            border-top: 1px solid #e2e8f0;
        }

        @media (max-width: 600px) {
            .evaluation-body { padding: 30px 20px; }
            .evaluation-header { padding: 35px 20px; }
            .evaluation-header h1 { font-size: 1.8rem; }
            .input-with-icon input,
            .input-with-icon select,
            .input-with-icon textarea {
                padding: 14px 45px 14px 16px;
            }
            .rating-group, .yesno-group {
                flex-direction: column;
                gap: 10px;
            }
            .rating-option, .yesno-option {
                min-width: auto;
            }
        }