        .add-job-section {
            padding: 60px 20px 100px;
            background: linear-gradient(135deg, #F8FFFE 0%, #FFFFFF 50%, #F3F8F6 100%);
            min-height: 100vh;
        }

        .add-job-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .page-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .page-title {
            font-size: 36px;
            font-weight: 800;
            color: #0B3B23;
            margin-bottom: 12px;
        }

        .page-subtitle {
            font-size: 18px;
            color: #4B5B52;
        }

        .selected-type-badge {
            display: inline-block;
            padding: 12px 24px;
            background: linear-gradient(135deg, #00A651 0%, #006C35 100%);
            color: white;
            border-radius: 999px;
            font-size: 16px;
            font-weight: 700;
            margin-top: 16px;
            box-shadow: 0 4px 12px rgba(0, 108, 53, 0.25);
        }

        .job-form {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0, 108, 53, 0.1);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
            margin-bottom: 24px;
        }

        .form-row.two-cols {
            grid-template-columns: 1fr 1fr;
        }

        .form-field {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-label {
            font-weight: 700;
            font-size: 15px;
            color: #0B3B23;
        }

        .form-label .required {
            color: #C5405A;
            margin-right: 4px;
        }

        .form-input,
        .form-select,
        .form-textarea {
            padding: 14px 16px;
            border: 2px solid #E6EEE9;
            border-radius: 12px;
            font-family: 'Cairo', sans-serif;
            font-size: 15px;
            transition: all 0.3s;
            background-color: #F8F9FA;
            width: 100%;
            box-sizing: border-box;
        }

        .input-error {
            border-color: #dc2626 !important;
            background-color: #fff5f5 !important;
        }

        .field-error {
            color: #dc2626;
            font-size: 13px;
            font-weight: 600;
        }

        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            outline: none;
            border-color: #006C35;
            background-color: white;
            box-shadow: 0 0 0 3px rgba(0, 108, 53, 0.1);
        }

        .form-textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-actions {
            display: flex;
            gap: 16px;
            margin-top: 32px;
            justify-content: center;
        }

        .submit-btn {
            padding: 16px 48px;
            background: linear-gradient(135deg, #00A651 0%, #006C35 100%);
            color: white;
            border: none;
            border-radius: 999px;
            font-family: 'Cairo', sans-serif;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 8px 20px rgba(0, 108, 53, 0.25);
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 28px rgba(0, 108, 53, 0.35);
        }

        .cancel-btn {
            padding: 16px 48px;
            background: transparent;
            color: #006C35;
            border: 2px solid #006C35;
            border-radius: 999px;
            font-family: 'Cairo', sans-serif;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-block;
        }

        .cancel-btn:hover {
            background: #006C35;
            color: white;
        }

        /* Custom Select Dropdown */
        .custom-select-wrapper {
            position: relative;
        }

        .custom-select {
            position: relative;
            width: 100%;
        }

        .custom-select-trigger {
            padding: 14px 16px;
            border: 2px solid #E6EEE9;
            border-radius: 12px;
            background-color: #F8F9FA;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
            user-select: none;
        }

        .custom-select-trigger:hover {
            border-color: #006C35;
            background-color: white;
        }

        .custom-select.open .custom-select-trigger {
            border-color: #006C35;
            background-color: white;
            box-shadow: 0 0 0 3px rgba(0, 108, 53, 0.1);
            border-bottom-left-radius: 0;
            border-bottom-right-radius: 0;
        }

        .selected-option {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Cairo', sans-serif;
            font-size: 15px;
            color: #333;
        }

        .option-icon {
            font-size: 20px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .option-text {
            flex: 1;
        }

        .dropdown-arrow {
            font-size: 12px;
            color: #006C35;
            transition: transform 0.3s;
        }

        .custom-select.open .dropdown-arrow {
            transform: rotate(180deg);
        }

        .custom-options {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            border: 2px solid #006C35;
            border-top: none;
            border-radius: 0 0 12px 12px;
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1000;
            box-shadow: 0 8px 20px rgba(0, 108, 53, 0.15);
        }

        .custom-select.open .custom-options {
            max-height: 400px;
            overflow-y: auto;
            opacity: 1;
            transform: translateY(0);
        }

        .custom-option {
            padding: 14px 16px;
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            transition: all 0.2s;
            font-family: 'Cairo', sans-serif;
            font-size: 15px;
            color: #333;
            animation: slideIn 0.3s ease-out backwards;
        }

        .custom-option:hover {
            background-color: #F0FDF4;
            color: #006C35;
        }

        .custom-option.selected {
            background-color: #E6F7ED;
            color: #006C35;
            font-weight: 700;
        }

        .custom-option:last-child {
            border-radius: 0 0 10px 10px;
        }

        /* Stagger animation for options */
        .custom-select.open .custom-option:nth-child(1) { animation-delay: 0.05s; }
        .custom-select.open .custom-option:nth-child(2) { animation-delay: 0.1s; }
        .custom-select.open .custom-option:nth-child(3) { animation-delay: 0.15s; }
        .custom-select.open .custom-option:nth-child(4) { animation-delay: 0.2s; }
        .custom-select.open .custom-option:nth-child(5) { animation-delay: 0.25s; }
        .custom-select.open .custom-option:nth-child(6) { animation-delay: 0.3s; }
        .custom-select.open .custom-option:nth-child(7) { animation-delay: 0.35s; }

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

        /* Step Indicator Styles */
        .step-indicator {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 40px;
            position: relative;
            padding: 0 20px;
        }

        .step-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .step-circle {
            width: 40px;
            height: 40px;
            background-color: #fff;
            border: 2px solid #E6EEE9;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: #666;
            margin-bottom: 8px;
            transition: all 0.3s;
        }

        .step-check {
            display: none;
            font-size: 20px;
        }

        .step-label {
            font-size: 14px;
            color: #666;
            font-weight: 600;
            white-space: nowrap;
        }

        .step-item.active .step-circle {
            background-color: #006C35;
            border-color: #006C35;
            color: white;
            box-shadow: 0 4px 10px rgba(0, 108, 53, 0.2);
        }

        .step-item.active .step-label {
            color: #006C35;
        }

        .step-item.completed .step-circle {
            background-color: #006C35;
            border-color: #006C35;
            color: white;
        }

        .step-item.completed .step-number {
            display: none;
        }

        .step-item.completed .step-check {
            display: block;
        }

        .step-line {
            flex: 1;
            height: 2px;
            background-color: #E6EEE9;
            margin: 0 10px;
            max-width: 150px;
            margin-bottom: 24px;
            position: relative;
        }

        .step-line::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            height: 100%;
            width: 0;
            background-color: #006C35;
            transition: width 0.3s;
        }

        .step-item.completed ~ .step-line::after {
            width: 100%;
        }

        /* Form Steps Visibility */
        .form-step {
            display: none;
            animation: fadeIn 0.4s ease;
        }

        .form-step.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Navigation Buttons */
        .step-navigation {
            display: flex;
            justify-content: space-between;
            margin-top: 30px;
            gap: 16px;
        }

        .next-step-btn, .submit-btn {
            background: linear-gradient(135deg, #006C35 0%, #00A651 100%);
            color: white;
            border: none;
            padding: 14px 32px;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            flex: 1;
            font-family: 'Cairo', sans-serif;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .submit-btn.is-loading {
            pointer-events: none;
            opacity: 0.85;
            gap: 10px;
        }

        .submit-btn.is-loading::after {
            content: '';
            width: 16px;
            height: 16px;
            border: 2px solid rgba(255, 255, 255, 0.45);
            border-top-color: #fff;
            border-radius: 50%;
            display: inline-block;
            animation: spin 0.9s linear infinite;
        }

        .prev-step-btn {
            background: white;
            color: #666;
            border: 2px solid #E6EEE9;
            padding: 14px 32px;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            flex: 1;
            font-family: 'Cairo', sans-serif;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .next-step-btn:hover, .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0, 108, 53, 0.2);
        }

        .prev-step-btn:hover {
            border-color: #999;
            color: #333;
        }

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

        /* Image Upload Styles */
        .image-upload-container {
            width: 100%;
        }

        .upload-area {
            border: 2px dashed #E6EEE9;
            border-radius: 12px;
            padding: 40px 20px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
            background-color: #F8F9FA;
        }

        .upload-area:hover {
            border-color: #006C35;
            background-color: #F0FDF4;
        }

        .upload-icon {
            font-size: 48px;
            margin-bottom: 12px;
        }

        .upload-text {
            font-size: 16px;
            font-weight: 700;
            color: #006C35;
            margin-bottom: 6px;
            font-family: 'Cairo', sans-serif;
        }

        .upload-hint {
            font-size: 13px;
            color: #666;
            font-family: 'Cairo', sans-serif;
        }

        .image-preview-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            gap: 12px;
            margin-top: 16px;
        }

        .image-preview-item {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            aspect-ratio: 1;
            border: 2px solid #E6EEE9;
        }

        .image-preview-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .image-remove-btn {
            position: absolute;
            top: 4px;
            right: 4px;
            background: rgba(255, 0, 0, 0.9);
            color: white;
            border: none;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            cursor: pointer;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }

        .image-remove-btn:hover {
            background: rgba(255, 0, 0, 1);
            transform: scale(1.1);
        }

        @media (max-width: 768px) {
            .form-row.two-cols {
                grid-template-columns: 1fr;
            }

            .job-form {
                padding: 24px;
            }

            .form-actions {
                flex-direction: column;
            }

            .submit-btn,
            .cancel-btn {
                width: 100%;
            }

            .form-input,
            .form-select,
            .form-textarea {
                font-size: 14px;
                padding: 12px 14px;
            }
        }

